From 4809ee25ff5e8e51d4dccf113e2b81488a9c0d7c Mon Sep 17 00:00:00 2001 From: c4llv07e Date: Fri, 17 Jan 2025 10:24:50 +0300 Subject: [PATCH 001/103] Add option to disable bwoink sound. (#33782) * Add option to disable bwoink sound. * Now it's working only with active admin status. * No bwoink, only "notification sound" * Moar changes * Another one --- Content.Client/Options/UI/Tabs/AudioTab.xaml | 1 + .../Options/UI/Tabs/AudioTab.xaml.cs | 24 ++++++++++++++++++- .../Systems/Bwoink/AHelpUIController.cs | 4 +++- Content.Shared/CCVar/CCVars.Sounds.cs | 3 +++ .../en-US/escape-menu/ui/options-menu.ftl | 1 + 5 files changed, 31 insertions(+), 2 deletions(-) diff --git a/Content.Client/Options/UI/Tabs/AudioTab.xaml b/Content.Client/Options/UI/Tabs/AudioTab.xaml index c374af31c58..5764755bb9a 100644 --- a/Content.Client/Options/UI/Tabs/AudioTab.xaml +++ b/Content.Client/Options/UI/Tabs/AudioTab.xaml @@ -19,6 +19,7 @@ + diff --git a/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs b/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs index 78186d446c7..d57f36e74f8 100644 --- a/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs +++ b/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs @@ -1,3 +1,4 @@ +using Content.Client.Administration.Managers; using Content.Client.Audio; using Content.Shared.CCVar; using Robust.Client.Audio; @@ -12,8 +13,9 @@ namespace Content.Client.Options.UI.Tabs; [GenerateTypedNameReferences] public sealed partial class AudioTab : Control { - [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IAudioManager _audio = default!; + [Dependency] private readonly IClientAdminManager _admin = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; public AudioTab() { @@ -61,10 +63,30 @@ public AudioTab() Control.AddOptionCheckBox(CCVars.RestartSoundsEnabled, RestartSoundsCheckBox); Control.AddOptionCheckBox(CCVars.EventMusicEnabled, EventMusicCheckBox); Control.AddOptionCheckBox(CCVars.AdminSoundsEnabled, AdminSoundsCheckBox); + Control.AddOptionCheckBox(CCVars.BwoinkSoundEnabled, BwoinkSoundCheckBox); Control.Initialize(); } + protected override void EnteredTree() + { + base.EnteredTree(); + _admin.AdminStatusUpdated += UpdateAdminButtonsVisibility; + UpdateAdminButtonsVisibility(); + } + + protected override void ExitedTree() + { + base.ExitedTree(); + _admin.AdminStatusUpdated -= UpdateAdminButtonsVisibility; + } + + + private void UpdateAdminButtonsVisibility() + { + BwoinkSoundCheckBox.Visible = _admin.IsActive(); + } + private void OnMasterVolumeSliderChanged(float value) { // TODO: I was thinking of giving OptionsTabControlRow a flag to "set CVar immediately", but I'm deferring that diff --git a/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs b/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs index 9f75b5cecde..445bcc8601a 100644 --- a/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs +++ b/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs @@ -45,6 +45,7 @@ public sealed class AHelpUIController: UIController, IOnSystemChanged _aHelpSound = v, true); + _config.OnValueChanged(CCVars.BwoinkSoundEnabled, v => _bwoinkSoundEnabled = v, true); } public void UnloadButton() @@ -135,7 +137,7 @@ private void ReceivedBwoink(object? sender, SharedBwoinkSystem.BwoinkTextMessage } if (message.PlaySound && localPlayer.UserId != message.TrueSender) { - if (_aHelpSound != null) + if (_aHelpSound != null && (_bwoinkSoundEnabled || !_adminManager.IsActive())) _audio.PlayGlobal(_aHelpSound, Filter.Local(), false); _clyde.RequestWindowAttention(); } diff --git a/Content.Shared/CCVar/CCVars.Sounds.cs b/Content.Shared/CCVar/CCVars.Sounds.cs index 73d9d3852f1..5e2a8251830 100644 --- a/Content.Shared/CCVar/CCVars.Sounds.cs +++ b/Content.Shared/CCVar/CCVars.Sounds.cs @@ -21,6 +21,9 @@ public sealed partial class CCVars public static readonly CVarDef AdminSoundsEnabled = CVarDef.Create("audio.admin_sounds_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY); + public static readonly CVarDef BwoinkSoundEnabled = + CVarDef.Create("audio.bwoink_sound_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY); + public static readonly CVarDef AdminChatSoundPath = CVarDef.Create("audio.admin_chat_sound_path", "/Audio/Items/pop.ogg", diff --git a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl index bcc5a994b8b..c13dbb516fc 100644 --- a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl +++ b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl @@ -37,6 +37,7 @@ ui-options-lobby-music = Lobby & Round-end Music ui-options-restart-sounds = Round Restart Sounds ui-options-event-music = Event Music ui-options-admin-sounds = Play Admin Sounds +ui-options-bwoink-sound = Play AHelp Notification Sound ui-options-volume-label = Volume ## Graphics menu From 40e049603e43d17137de5a14b80de1b54285300e Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 17 Jan 2025 07:25:58 +0000 Subject: [PATCH 002/103] Automatic changelog update --- Resources/Changelog/Admin.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index b8694a8d672..3e29fcedd36 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -721,5 +721,12 @@ Entries: id: 89 time: '2025-01-15T21:10:54.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34406 +- author: c4llv07e + changes: + - message: Added an option to disable the bwoink sound! + type: Add + id: 90 + time: '2025-01-17T07:24:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33782 Name: Admin Order: 1 From 8295bfbf8dd8e5deabe4cfe1ae4dc0072642fd24 Mon Sep 17 00:00:00 2001 From: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Date: Fri, 17 Jan 2025 06:35:03 -0500 Subject: [PATCH 003/103] Pride Scarves (#34448) * More scarfs (#216) * Sprites + Colored Scarf Implimentation Doesn't include into quickthreads or other clothing vendors * File Paths are important * Metas, items exist, winterdrobe I'm iffy on them being in the winterdrobe but the other option is quickthreads so idk * File Path Fix * Typo fix * Resolved merge conflict * Moved scarves around * Moved scarf textures out of the _CD directory * Removed final CD folder * Removed extra scarfs * Removed extra scarfs, again * Replaced ClothingNeckBase with ClothingScarfBase --------- Co-authored-by: PursuitInAshes <91865152+PursuitInAshes@users.noreply.github.com> Co-authored-by: TakoDragon <69509841+BackeTako@users.noreply.github.com> --- .../VendingMachines/Inventories/pride.yml | 19 +-- .../Entities/Clothing/Neck/scarfs.yml | 111 ++++++++++++++++++ .../PrideScarfs/ace.rsi/equipped-NECK.png | Bin 0 -> 644 bytes .../Neck/Scarfs/PrideScarfs/ace.rsi/icon.png | Bin 0 -> 366 bytes .../PrideScarfs/ace.rsi/inhand-left.png | Bin 0 -> 535 bytes .../PrideScarfs/ace.rsi/inhand-right.png | Bin 0 -> 552 bytes .../Neck/Scarfs/PrideScarfs/ace.rsi/meta.json | 26 ++++ .../PrideScarfs/aro.rsi/equipped-NECK.png | Bin 0 -> 681 bytes .../Neck/Scarfs/PrideScarfs/aro.rsi/icon.png | Bin 0 -> 351 bytes .../PrideScarfs/aro.rsi/inhand-left.png | Bin 0 -> 531 bytes .../PrideScarfs/aro.rsi/inhand-right.png | Bin 0 -> 543 bytes .../Neck/Scarfs/PrideScarfs/aro.rsi/meta.json | 26 ++++ .../PrideScarfs/bi.rsi/equipped-NECK.png | Bin 0 -> 663 bytes .../Neck/Scarfs/PrideScarfs/bi.rsi/icon.png | Bin 0 -> 331 bytes .../Scarfs/PrideScarfs/bi.rsi/inhand-left.png | Bin 0 -> 547 bytes .../PrideScarfs/bi.rsi/inhand-right.png | Bin 0 -> 534 bytes .../Neck/Scarfs/PrideScarfs/bi.rsi/meta.json | 26 ++++ .../PrideScarfs/gay.rsi/equipped-NECK.png | Bin 0 -> 657 bytes .../Neck/Scarfs/PrideScarfs/gay.rsi/icon.png | Bin 0 -> 704 bytes .../PrideScarfs/gay.rsi/inhand-left.png | Bin 0 -> 549 bytes .../PrideScarfs/gay.rsi/inhand-right.png | Bin 0 -> 543 bytes .../Neck/Scarfs/PrideScarfs/gay.rsi/meta.json | 26 ++++ .../PrideScarfs/inter.rsi/equipped-NECK.png | Bin 0 -> 538 bytes .../Scarfs/PrideScarfs/inter.rsi/icon.png | Bin 0 -> 336 bytes .../PrideScarfs/inter.rsi/inhand-left.png | Bin 0 -> 466 bytes .../PrideScarfs/inter.rsi/inhand-right.png | Bin 0 -> 487 bytes .../Scarfs/PrideScarfs/inter.rsi/meta.json | 26 ++++ .../PrideScarfs/lesbian.rsi/equipped-NECK.png | Bin 0 -> 672 bytes .../Scarfs/PrideScarfs/lesbian.rsi/icon.png | Bin 0 -> 370 bytes .../PrideScarfs/lesbian.rsi/inhand-left.png | Bin 0 -> 539 bytes .../PrideScarfs/lesbian.rsi/inhand-right.png | Bin 0 -> 548 bytes .../Scarfs/PrideScarfs/lesbian.rsi/meta.json | 26 ++++ .../PrideScarfs/non.rsi/equipped-NECK.png | Bin 0 -> 769 bytes .../Neck/Scarfs/PrideScarfs/non.rsi/icon.png | Bin 0 -> 364 bytes .../PrideScarfs/non.rsi/inhand-left.png | Bin 0 -> 545 bytes .../PrideScarfs/non.rsi/inhand-right.png | Bin 0 -> 518 bytes .../Neck/Scarfs/PrideScarfs/non.rsi/meta.json | 26 ++++ .../PrideScarfs/pan.rsi/equipped-NECK.png | Bin 0 -> 663 bytes .../Neck/Scarfs/PrideScarfs/pan.rsi/icon.png | Bin 0 -> 326 bytes .../PrideScarfs/pan.rsi/inhand-left.png | Bin 0 -> 566 bytes .../PrideScarfs/pan.rsi/inhand-right.png | Bin 0 -> 549 bytes .../Neck/Scarfs/PrideScarfs/pan.rsi/meta.json | 26 ++++ .../PrideScarfs/rainbow.rsi/equipped-NECK.png | Bin 0 -> 763 bytes .../Scarfs/PrideScarfs/rainbow.rsi/icon.png | Bin 0 -> 361 bytes .../PrideScarfs/rainbow.rsi/inhand-left.png | Bin 0 -> 620 bytes .../PrideScarfs/rainbow.rsi/inhand-right.png | Bin 0 -> 589 bytes .../Scarfs/PrideScarfs/rainbow.rsi/meta.json | 26 ++++ .../PrideScarfs/trans.rsi/equipped-NECK.png | Bin 0 -> 689 bytes .../Scarfs/PrideScarfs/trans.rsi/icon.png | Bin 0 -> 324 bytes .../PrideScarfs/trans.rsi/inhand-left.png | Bin 0 -> 540 bytes .../PrideScarfs/trans.rsi/inhand-right.png | Bin 0 -> 542 bytes .../Scarfs/PrideScarfs/trans.rsi/meta.json | 26 ++++ 52 files changed, 381 insertions(+), 9 deletions(-) create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/ace.rsi/equipped-NECK.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/ace.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/ace.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/ace.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/ace.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/aro.rsi/equipped-NECK.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/aro.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/aro.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/aro.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/aro.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/bi.rsi/equipped-NECK.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/bi.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/bi.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/bi.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/bi.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/equipped-NECK.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/inter.rsi/equipped-NECK.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/inter.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/inter.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/inter.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/inter.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian.rsi/equipped-NECK.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/non.rsi/equipped-NECK.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/non.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/non.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/non.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/non.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/pan.rsi/equipped-NECK.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/pan.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/pan.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/pan.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/pan.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/rainbow.rsi/equipped-NECK.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/rainbow.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/rainbow.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/rainbow.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/rainbow.rsi/meta.json create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/trans.rsi/equipped-NECK.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/trans.rsi/icon.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/trans.rsi/inhand-left.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/trans.rsi/inhand-right.png create mode 100644 Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/trans.rsi/meta.json diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml index d4ffe6be33d..5b99555c3be 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml @@ -17,15 +17,16 @@ PlushieSharkBlue: 2 PlushieSharkPink: 2 PlushieSharkGrey: 2 - ClothingNeckCloakAce: 2 - ClothingNeckCloakAro: 2 - ClothingNeckCloakBi: 2 - ClothingNeckCloakEnby: 2 - ClothingNeckCloakGay: 2 - ClothingNeckCloakIntersex: 2 - ClothingNeckCloakLesbian: 2 - ClothingNeckCloakPan: 2 - ClothingNeckCloakTrans: 2 + ClothingNeckScarfStripedAce: 2 + ClothingNeckScarfStripedAro: 2 + ClothingNeckScarfStripedBiSexual: 2 + ClothingNeckScarfStripedGay: 2 + ClothingNeckScarfStripedInter: 2 + ClothingNeckScarfStripedLesbian: 2 + ClothingNeckScarfStripedPan: 2 + ClothingNeckScarfStripedNonBinary: 2 + ClothingNeckScarfStripedRainbow: 2 + ClothingNeckScarfStripedTrans: 2 ClothingHeadHatXmasCrown: 2 BedsheetRainbow: 2 ClothingNeckHeadphones: 2 diff --git a/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml b/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml index abb3df78e74..82ebfa2b94c 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml @@ -129,3 +129,114 @@ sprite: Clothing/Neck/Scarfs/zebra.rsi - type: Clothing sprite: Clothing/Neck/Scarfs/zebra.rsi + +# Pride Scarves +- type: entity + parent: ClothingScarfBase + id: ClothingNeckScarfStripedAce + name: striped asexual scarf + description: A stylish striped asexual scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/PrideScarfs/ace.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/PrideScarfs/ace.rsi + +- type: entity + parent: ClothingScarfBase + id: ClothingNeckScarfStripedAro + name: striped aromantic scarf + description: A stylish striped aromantic scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/PrideScarfs/aro.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/PrideScarfs/aro.rsi + +- type: entity + parent: ClothingScarfBase + id: ClothingNeckScarfStripedBiSexual + name: striped bisexual scarf + description: A stylish striped bisexual scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/PrideScarfs/bi.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/PrideScarfs/bi.rsi + +- type: entity + parent: ClothingScarfBase + id: ClothingNeckScarfStripedGay + name: striped gay scarf + description: A stylish striped gay scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/PrideScarfs/gay.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/PrideScarfs/gay.rsi + +- type: entity + parent: ClothingScarfBase + id: ClothingNeckScarfStripedInter + name: striped intersex scarf + description: A stylish striped intersex scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/PrideScarfs/inter.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/PrideScarfs/inter.rsi + +- type: entity + parent: ClothingScarfBase + id: ClothingNeckScarfStripedLesbian + name: striped lesbian scarf + description: A stylish striped lesbian scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/PrideScarfs/lesbian.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/PrideScarfs/lesbian.rsi + +- type: entity + parent: ClothingScarfBase + id: ClothingNeckScarfStripedPan + name: striped pan scarf + description: A stylish striped pan scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/PrideScarfs/pan.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/PrideScarfs/pan.rsi + +- type: entity + parent: ClothingScarfBase + id: ClothingNeckScarfStripedNonBinary + name: striped non-binary scarf + description: A stylish striped non-binary scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/PrideScarfs/non.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/PrideScarfs/non.rsi + +- type: entity + parent: ClothingScarfBase + id: ClothingNeckScarfStripedRainbow + name: rainbow scarf + description: A stylish rainbow scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/PrideScarfs/rainbow.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/PrideScarfs/rainbow.rsi + +- type: entity + parent: ClothingScarfBase + id: ClothingNeckScarfStripedTrans + name: striped trans scarf + description: A stylish striped trans scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + components: + - type: Sprite + sprite: Clothing/Neck/Scarfs/PrideScarfs/trans.rsi + - type: Clothing + sprite: Clothing/Neck/Scarfs/PrideScarfs/trans.rsi diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/ace.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/ace.rsi/equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..5a6cf559b72ae6070ca8793ce4cef5be596d8b52 GIT binary patch literal 644 zcmV-~0(Px%K1oDDRCt{2nlWzcFbsx&7rlhJs)K=|qfX(s7I1+MMUPQ*5Ky#-@Ckf?*HdT= zx>c*P1jv?EZwTb)q)BVZQI#P4CW1*oiYATNKLLhe7=~dO=4Ygo?sN9xc73+be`vmo zFQp95;bQC;TeMCH0V)X!%K2h=+xwfQNm2+YrBhIjO6qNYXzv$7KtTn?A6)$kAbS{FeXjHK(j!ou#1KV*2J z#&8+(Wg!HfUtdt6`f}*2o9m#!G2G8?@%;J%V+<-(uygyx?$9N<007oEn$=?IR*U7{ zn_+6Cl&(eVR*R);nx?m7Zh$~w2i!eA^z)u-)_+24UDT-E_SKIay`Uc{C`TYzSSYA; zt#+*V5y;j4DTo?@Tmufq`tpR*4)l&YsB62kU=0Eak-(YtlhX}-e-94tH6s9H$;`fq=GYwzMy z{qv$~ywaX*5SS=0-Vn6!)1ju{z2!X}7Sb<%9Nopm9M9{jlD=L&PpBIm literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/ace.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/ace.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..70b5ebe8583f7cf7a6d54c1f534fe11f93e9be91 GIT binary patch literal 535 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zFM7H-hE&XX zJIgTZu!Df>f42Jvd+eniN;SDg5Fy{5!vU^C35r9j?KLui7_mf zmd+J9cqmXYdUb67&7{o8Y1%R3(&U!Z1p z{DCWr{C+OB1-TB=L=v+#7$uVTynAlaaV76Znz+*o?#op>V!teY!;t;fb6v;Ut&>!@ zO?I2Y5Hvk(|86OpGTGu<@!YwKZ|0|zWp>HkX1RM-spO-~m-$&nGf(8HE!bbyVJjCr z-?iY})_?O77@wR-ZD2IJvA`$op0i-CrcdD7*~-_gtDMfVl+0B8@KN@SgpI5I{|me9 sSTGNPx$;z>k7RCt{2n!ifJKpe+^Cw&8lV%9hmI$xj;PHq9`c8h(5zCgSA29EX-T>1(M zW-J|qL^?$T!9j5SIoOm`?48ZOUt_-?Cd>+`D^+eEFa{9aU9)rI zQ1X({%|%xoKi8#IjPzfR<_jiEFE<7-7zUJf|MT+vDo1P0uItiZ7+B9W2H=O;?oZT| z@t^e$Da?PNXujajw|9=_3m&zuqDFAG@Zfs@0+1Gv1_4M5NP_^R1*Aa$(gM;T0BHef5P-CR zGzdUiKpF%fEg%g7kQR`}xGF5oZ|iwwuTvHZ;HO~Oa?EU9)GSJ&A;8R}wXS99SZmEe zPnUk(!gGKh`s?GXGq337jO|PxLQ+aq+Rg^sijOI2(X@`j>8QP~_Z!`|xo#uZ9FVQQ z*I6_j3ph)TmeY!8))i&1polpTfPAFi7!nCC?&-J0000Px%V@X6oRCt{2nlWqJKorOSDg|lLro~z>TS&JXwFpn9-BrAlege-STS(?YKR_pe zKR_2RT{>zE*>bBq^uW-9k*4clPDqZO=p(n1q8{V7T%oxMX-7U&b1%&w1*!0EKrP0D&`0?R8ZtiX& zgn%b~sE3NmAKeUVwmM1$_ScrRsNE zz5W_mmN}7()%Mfx+ImJmiqcrQfrnBS_&xn)uhfne-2y|EzYRLIz)-sl#Dwkn z1YmPwJzh-g4M=G6WnSrn;V5ie(|((*lzlKt6YcS(Qj$vM)FGj-1Hpeh8(3f5b z$g<4wX1;O*?|jvwQx{BoRRD1Mf@$vroV{R5EkG@B<}E-F1VIo4ajN_W1D%l$x}&#} P00000NkvXXu0mjf6qq~n literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/aro.rsi/icon.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/aro.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..832d1080f7750dd5691d50ee8b68a78660d3d08b GIT binary patch literal 351 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|bOU@sT!FO5 zl4H^5eqEk4|Nn*qcP?N3_U3)yt_M%&tuZwq978O6w@z~8V^QQ_*}H|a0(|xKQ<<&ZES4Rey!zGW6JVu&StlmZp&w(5FshnzP4UN`FvFK~P zcc?I>z(FhH+*giU!V*h#Yo5I5&q(D;zUC_-x$HsUn==kePk8NG>pV~WME26z8={hP z{|L-FUw3myr>Pb1N%LL*SIt@_ar;CKe~{)TPMbH*2iG`1{kg9x-K)iQ^1DM*c5PU& mqHq5$~QR_Y_cq0>kv9+!UYy< zj!VyqT6DKtS6^=XuDV>W^7FgY=XyIOm4Ft&z&}wpua23W9V@QCE}W!dGXH$$hgmZ} zPFm{q=E#g+{g)@1U6d=$DE;I3HnjboT3A$FePUWtn%D1XU6JSJuP)b1vs_-gdvEx6 ztu)KLOG{#0I2Y_b@y+Xa z>yPvR;rZtu1hUApvoc*UTfj>s;X8$)$1v{ybCV8}ydP=8O<(vgXYEk@73kNnb=$=F zBiEw*ekU3q)?nP?K38JXIjd)Hc1@h+cdGf!goQ8S+ZW7^Z4o%XD1X(%f)lgnHoQ|> zeB-s@)z}uD(^>ZYH@rV2Rh@k5m?pg2(Y{PDZ}Id$vMc8{Ops-gzn`SOpfmE{x?Of1 nk-16J_HSO7#?8QRK=Bi6X5PQm+1Yu^Kr!Iy>gTe~DWM4fm4NG% literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/aro.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/aro.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..e7e34681b7bce78b54f4da04a81868e2037ad15e GIT binary patch literal 543 zcmV+)0^t3LP)Px$*-1n}RCt{2nz2s8P!xtw4MUesm=Ia(#(bM-qL1JVF)@WFAn*oG4(yJ;f=|F= z;-Dj8D~`y}#Du~1I4D?*+zah(PpkizFj0EG{@i=h+;fQl0000000000008(`IJz&H znSvl--}h-Yn^CJq&fVivQEpan9PJ}gP5a~H3p%^@C_Y@08+%kAjIGL*0c`-${S7yd znlyi%)9qDDA7zPH{p-s2tWYR0@5G=X#r^vfV6-#2tZmu8U!FMAPoYL7LW!3 zNDD}V0Hg(^K>*SM(r9;urTJ|?&-OlLrT~5l+LmKxPx%QAtEWRCt{2n!RqLKoo_K(V`Tr=vE3%3L-_?D#bSLY4ZRn+@|vr_yO_+?$T2D z0n*ZK5g~2C7GBAPBhlcrNUoxIwixgNF}rhz*kio+lPrw@>)g3BclbF2Fbu;m48t)0 zCbScQ;Y{p2*>?P+`HOyJjma@ssuxDqSX^D41CEc#8jCU++jenHeEG7MM9i&;)M?Xq ze0XqC#-fUH0zA02cA1Q3dy%dv`pRU;rB0iELA9-dasmLz&aIcN$1~&@y)i3l-n=f=q*r6n*_%L5 zz*L7#z>Q6*e}qPP6-&jUJs&Yxo4oSZc+Cs%Z6#c x4bx5~0QBE5o=vHQrl3wS$@fj2o}9}&W=YG?zivH@aViBWwU;7&bNqvC&PC7bI!js|241Y X3r@efpl^qP9%Arx^>bP0l+XkK&H0T( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/bi.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/bi.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..9d36d37d39099b24d8b83aaeff4a51533e4fca63 GIT binary patch literal 547 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%z?|Qm8hE&XX zJ8Prgp#YJ#|BGHI6i#3j^Sv;mq)4#!$l1H<1rHcYJ{v~(+>uzz$=`U6DU+vw@MUUG zd#~+sOSN@E#f5WTY~Oq)cacrzLW3xG$@~`~tL}Wd+1laYl5u6V!&+a9cY;~DSyxsc zEDy9_vGwKdeILIYp4g~ru+-ws;m@&O=52rQGfzqPeEG%Ob*lRI3%Z4FXZ>aREtJv6 zS?>M(ppl1@)ag!J1_lc|3#MyY2Yw6imK-hhiQqi&Ikx7X@R~)N_17mK@?v=CZq99` zwuYsk_C{)Da^cGv8-yGRZ=9df$N6pU0+qtDrZ>ME_P4PqEAwoW@aB#!*qF; zyhn4cxUDpPZFl^r7sFG}(`{=u_H8bnXkt-^@C}O}{?w?qvxG i)84yO)HU!QtNbbsQ|Px$&`Cr=RCt{2+ObZ;P#6W^Q?+r>IA{p6pbcr zug#Qed+Pq;3`(g&y`pUC-n34y@iITc?qm-YeBogHX{_A5&=!Ewt!f>g0N-OclN&3e zOo>_6Z`5W_0np~w7T^vVs8sbZ!BNxT-#Ii>LEr0A9oSgY73~$yNla@2%zmp z@2NZp=Z>N+pmlx)>;zk&V=Q3W!nyIT&;2*IKq$A-El?E3w!m|#Q?*JAc9Y7ijkPaY?1xN>w#sZ`RNMixg0i>}2=>XDLfOG(9 zEI>MdG!`HoKw9n#uq-R`xn2_b!_gSR;nIAF8mwb_jl_3=YkQeIIu7O&OiNrqW!^QB zBi1^Z&nHAqT{L^jDFaS<^|hv6P8q>@zc!oE36WL8=kHk_n!1Aq>b02~O?@EZP$#an z3Xqr^X!{DUn~#fiA1*)e^wv-OxoZ_5H8-%d?%2$_>umv{xq&p+HL?Y=Qq*|`BBI>- Y0X6`bM!6=7%m4rY07*qoM6N<$f-$J>=Kufz literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/bi.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/bi.rsi/meta.json new file mode 100644 index 00000000000..71cdeb174df --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/bi.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da | In hand sprites sprited by PuroSlavKing (Github) for Space Station 14, recolored by MrGreen06 (Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..83f81988daf77dc5bae3594f3176d4da84a69204 GIT binary patch literal 657 zcmV;C0&e|@P)Px%OG!jQRCt{2nz3r*KoEw19nuRJ%;6=)38FMdnvf=i$`ClNzU~Th%{_w11B5(+ zn!G^jH0DYdcg2y$sEG}BwJt28PK^Y6g;^sD>7rd(SsTw+4J(;{b~GcbodF1fAP9mW zh_`V^p_ok~QFX0ueb@X?-)Dic4{USUD7Z6(wPIZNhH!Z5ow&% zz6`s@XMs3-eiUh(h^xzojji(n1QavinvdaR>l#x{wOujh_m;Z~MfvHEx!#jk`jO89 zkuwiApK1#pG_nLtrGFP_m4K=A?*gR&oD3JpnFE_IFz?EveTGVaO5n&#fFKBhAa={` z)2&f`BVTlNo4)&c_s*Uu9*OOW;zmtux`>egRAqpvKo~pJCG@|1SPx9_B}cY;-Lku;N>keNo1e;m?X|uI z+)*e_h6@1eX${GHHBF_y)Hc?v-G_OBwkS15%Iw3uKwDa;4b2Q3c*C?+2>^%RFl`-x rqi>i}2~Y_fc?l2%K@bE%94h|+!AheNe%~x#00000NkvXXu0mjf)ZZ%J literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/icon.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..71a2bf0d3ef4e15e974881bf5ad5e94b91aaeff0 GIT binary patch literal 704 zcmV;x0zdtUP)Px%dPzh-q6}Ruz~0Pz!rf4pk_Wf*TQ_LWg`3; zIDs!N#{htMECT>ouBO_11~MQ6?<*e5V99_Y>b74L0;M3^Y1og2bJWZy=V?W{z4_sM zKPlvu4DASHI}JPbGq)=;W+=gwCW_P_F#rIY*_#$Ph_q8ct#`(II5x-FG6U__sSxab z@>0KxNwqHJXhpzX{SPPt_eCYRvKau7M=Y=bx7ZN_w>U)YNZ=s)qWectL2-+NTO5_m zKnRbdlZd7g$aWg`haZ2-w+4!=Zf}`^cr4>7Hg0j8@g5@Sr1Ji|NFIQ^9RsD{;&P1T zYKnI26s3L_(Nw}0OlD>BHPE`RIdGC$ZUap*+zr-|(tx}AZ*O+jYNmM3%fQ^?o#lnU#(w@cw1pW(h8{n0000^vj@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..c69df6d95c2db8079e056d1fd5e2df88f02f646c GIT binary patch literal 549 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%z?|Zs9hE&XX zJL{kqQ=-7}bmw>l&ORFfv<3#OTh&E7W_EV0`10q(&F0#u zGtWv&YhQ0&rZY83cb@qF_bE$UMWlqIo^77;QT}+x~SY@5-RkuFjR=y6{MRWe7r@N*{@5s ze?_uxlvW?7I@^2Vlx*Ft zCj~)_$Nl*m7pY9XWl{Mmbobna!pvN~o!uLb+1z`Xs%6>RB0kg1`{I8+$MEeOX0u$i zAH4b7npHQw<4#^_nA@5>!Bc6eVb-L7@@h03=B8i>KLySu>V>WuzEEpHauPZT-G@yGywp7Sm%@g literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..a3e6ba1f6d8685d8b72b9c9be58c4f86b0596f4e GIT binary patch literal 543 zcmV+)0^t3LP)Px$*-1n}RCt{2nlVemKp2LBY-0JsIXK>*wW+#mpM0d5cgw*WT? zfLnkY1i&r84Fcd6;06J33vhz~xCOXLeE>oT?RUL6#10@3Oj0r!CkbK)Q0=s>d^)an z+R{C!8NY7q04na#fW~6u6rL^jCqxw=1A?NdjlyZ8G_Ut7-J)EhP?pA`2-n|j7ESAZ zm-e1+=^(6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/meta.json new file mode 100644 index 00000000000..41651e25011 --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/gay.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da | In hand sprites sprited by PuroSlavKing (Github) for Space Station 14, recolored by BackeTako (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/inter.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/inter.rsi/equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..a996e93b2c62b3d658664ed80b7df49e2735671e GIT binary patch literal 538 zcmV+#0_FXQP)Px$)Ja4^RCt{2nlX-oKoo|5CVK=+D=NIg9>G|1k*)9mT5*XjsW%>hBdk+VS$c+@ zEzFRSfbxK0H2hy;UO=4p=JAWjKL88<6&L907VUO(zpj9< zzt2ckLO-GekBH_Yb0vaDVpHNy zG{mG`f;6B_0ihZZ?4d@p389rh2qA=!{xmJ|kk1Ln>{82luF2ipjUS$N&HU07*qoM6N<$f?GlDsQ>@~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/inter.rsi/icon.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/inter.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ee40d83e54c9b7a2d416cd88be3f0f0401b586dc GIT binary patch literal 336 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|v;urWT!FO5 zl4H^5eqEk4|Nn*qcP?N3_U3)yt_M%&t+~F9;r|VWN~Tr4Ovk1%U0!*AgBDOVUrCT( zFvEXj5bkwb1Sqr1)5S5wqId5kN3p{S94>eJdcN<^V>C2fwC-2eY?aT#KW7Bh#V};; zeHO~CwERx;gge3?c4W#n%E@ywDqoK)uM~D$6Fs-l;HH(9py7ns4fg93H@&>1n!o7Y zE!Pm~kSBtzD}1WL`UO>CL_9M>@X(v%d?I>Xm?BKg<5pm~Blj%yD5Fgd0mByhap zu!4)o!m4QkvH!Kitdwizw(J(YkjlSwd7XWJ;1h1n$5par54XIT8uHlsc0t>}73-$PjUrLkyY}#ev?s4Y=OaJ>N6e#O~YQwR*!0U#(yuv1fh8G^bZzx2hk=1UmG3I-mRcPLbdV{>k4rL{(qi zV_ETM-RDA~ox7($n_S}ewxle4e^He125(vUSKk>HRLMJZ|85AI>sP?!)n>xz$aG@) z#?#dy%RMJB9J}qi{*_5!Jx|o9N}fKZFNPXC2X--L6H8RfJ51Pq=!xAc8XU$f6_ z_!MToBq{ld+XRMbpH*CL9(%l_`?O!*%@uo&XKxn%^PX?R53z;5=T~um{e97^E1&7u zZQg&ko^KERFZS@8@uuGn4%y0g(wg5~-hM0iK-TnlOT9(s`hIh(C)`(W=*Z~U$B^TH W?}^c}84AEiV(@hJb6Mw<&;$S^navac literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/inter.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/inter.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..d256a771f5b37103ad9a36f0a5d4c9f340805825 GIT binary patch literal 487 zcmVPx$p-DtRRCt{2+ObN*P#6W^bE|LA2A53Y;0rkT4#6?Af^Xnd-@(aM5HiNG5Ff$^ zNT#|JLGTH({0=4dR`4cGuKAPpe2}T7IX%5;Oa2QG5fKp)5fKp)QAI?MXAmhMc?P+@ zynu*|>Zo(l>(7GjIPx%T1iAfRCt{2nlWqJKorOS5(-_^p_{DLDWaI*txJb|fzqK%CNJ9R50Jqhz(b*H z+9`|37byJ>fzZtuV{lekgNPO*C^5ba(HTjVTHVQ)v+?^)$4TPP@aF5>5VD{l z?>A$kPQPr62tw|1YzqiJ;}#$AdbP$$w&=mty@9KqkgyCVUw-1De}g%qg8pB&sA4gh zvNTRu8Yi_cL)8SP&yq`zrE$XU%+Yo%^8y3}BjEA-C;Z8B>`^e(cEw)lLUj;%A`2FJ?JOzMzMJDYrlme6jN1g%% zK@bG7TSmV|TJ^R3qpMr=_~ZD6EfG8t+ZFkR>R5ChEe@!P09}sIcBoNyg6>El2!bF8 zqB*=2H5+zWVES4QN@dGpfW$AsG)~xT*kv9ZEGARt*cLoEa67JWZC;kV)4AqiGG)o7 zr>;SQ6E4GT4c_gzg=?yM1M;MCQgC{HELs`|Bph&h)-!vJzX5OoAlh!si?R>>0&QuPwENI6(3aL= zLp=irUNCL_-8%GwX=?`@eZiDcfKuSdQ-B}{f*=UuPjF@-a7mC~FvEXzz#wdEyZ|VD!qdeu#G-fWBu61;MGh8QWyz=i=bv4%VQSDB z&4a<)c28-X^64?tg&vazhY8np0Wp{{zQPjE}bOSL0cJ9_1tD&J4D$k>11*+E}ipx&i9yy!at<{`0r(WU@FS}_ucYTpr05#UHx3vIVCg!0OM($ A%m4rY literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/lesbian.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..bb04c9973ce0f1ee72b253afc4aeb7b2c7ba46b1 GIT binary patch literal 539 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zuX?&ThE&XX zJIm0IDN&&HzLM%xliS`-HVlqhc?Tpr%5DkqC$2bp$S=D80Ox|+0;Wt~#iXQ?oD?Lr z!;b9OvHP>Jz`f}?u123LX5P$6V^e4maNiXsVD~-d)wVi50`nMi_ucyQ$=(suTpn=4R=f7Rr4m!-*>h&f1 zQo00Bif!GU$!uS_H2SJ%luOMJ{WQa0oZ(XV!9AA`JlUo5u%vO?d&^AqQs!F=AAEeF zl*JsKI7)u zn=>Z9ELy$UWZ~0l`#cW6eD}`ZzGoZS@9f;Ob-(z`+dFuFm3B8w{5+?AQK|5Rr)>(o zd0V+|9Mh{WzV~E>Px$-bqA3RCt{2nz2g5P!xvG)sCGkp|xv;4(?^ zzLZkZ%h{f+6bs}|W_08Dtr>13wQE(He7+I-u#&A?-o0rWb5 z%b$!PUAa=5WRk3S(=hsp9J?>SzsAzB`?6J@-xTxkS@sUP#(%j5!gz<;0(l|K7ElIY z8C_xNG)svU?@#ryTS?1goxmr-yc6^!xbZ6h0dNa&g8;Y%xIqBi0^A?~ZUJr(0Ji`) z2!LCF8w9{DzzqW67T^W}a0_sg`2d6vf$#O=5IX=*FiA0k^6GfdtjUw3 z1MTOH9YC+s(BZLGozmM=Dzz5)H6J~^rfC|D(^h%W?^n9{x%#1OjrkF#|E`m1+obV% zUApt8rPx%yGcYrRCt{2nn7zCK^TT#i;;K zf*=TjAc%*#JkPOqv&HVZRw>o)>|ZsD;v1UI{AhUM^~P$s!3y~Vl#Jp8Yd2f$@;t{3 zO=n3d4c-;8+3cA}?xvw+6g+*FfY~#FT{!I^ z;4uN9kWb8M0R8~5HHhGO1^__wYK+cpXRcpP$rxB&bZ$F{Kfj0xDe%bk%}tEQxQ~af z&*FIo0Cwhq1J{7#`0;a$`q@RSjy)Wn2*noW-KST0{pJA8tMQx$-hNxy3*-v`V6Vfh zsm8JZqg?U@Tc85P-NR9sKM1!Pr~Rm%;h0A^KnJzCn$ z7PI=pg|EUWB2)vuy#J1*G{L~?!s-tp?Ys<1*W-lOfUwqo=ob1; zQn0<%0gwww(t7b-1O69;5^&o82(xEGPRT*(AqavXh)v??^eEK$!EGMg!=gbS?;o#O ziQtyls&Ef9j6u5zB>{KMfUpt~$`SzPlMwbyAP9mW2*NvjXSh_6(SeV~sRJYD@<);T3K0RU2~sM-Jk literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/non.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/non.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..cc856f1bee0402fef4dc91979eb26f98be5b5cc5 GIT binary patch literal 545 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zZ+p5phE&XX zduyXNQ=km{hx?P&T$zqKOUd$`+}acrBb{5i`M=_=>({^wG?x7w{Qe@h)s9Bs;vH~vR?lD(W+W=ryu)e-ugRKU0Lq8#&L2#XQX6z5o1>AGTu|Sw{0;J zi%o6aA-&r6*}{nb`s>a!Z@rxS)bc>Stmv)z42#ZIE;trChAX|Dzf>U98R7XtJ{EV#~F0$rsOdkEeCa!wy_Pd%ved_my8I5-TL|6{o zWiTg_*j_K+u+25le3!V7xw!q@UlSumO3$&)c-Eub60oa6$(d0_I9E9J=CO}!LS;{- zE&cua9lNFCqg3%7kuOh$m7dtI>F6?Ldv2uOG$-B#F*+x6AGi5kpV^?0&JptK+BS2E zV{!l975<&?c}dJcqWY)Wv8!Nu_c2xmhWT|2d=HdXvq|j+au^sqUHx3vIVCg!0NHfu AEdT%j literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/non.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/non.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..8ccd72e1bbcaa14b8ad00cc6fea58429f48f7c08 GIT binary patch literal 518 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%z4|uvbhE&XX zd&|(9*-(W2gLvVqi%XM4?HvSn-EtJU-uIWQj{V@tx7!Z;Uvd=KRU+D+ch_}}%emKq z0!unX9tCIz8th!MbKjhQ^##HG&+7YCbf>$s0PTQ)RUcRAK3~sXWRrFJ@?kzt&F1|% zIkWOsxYt(I-(Fnx#U+|Q_qkJ>*9$wJD(9Ok-d-x1cIop9?T!w;;N4us0!beuJo7cq zuit$u{mQupN4a3LlPh-KUD9{FA=TQ_YT8Ye#g208zq!8pWq(`o+t%1GLB+G@1zIy- z`RX4s_iO&-=;(&k-R@aeo|(*DYWI2SIkoTe?=WAvqjrm_}xwr2dC|G@lz9oqtiJB&LP5=lt%yYKv4v;6sQ+oz{k1DL};s;;^$ zB;ZsN>w4~fO+??~zPE=@RXf#y*MY0%0axo- c85$C58BQlmIN>j?y#o~Dp00i_>zopr08jqyC;$Ke literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/non.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/non.rsi/meta.json new file mode 100644 index 00000000000..71cdeb174df --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/non.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da | In hand sprites sprited by PuroSlavKing (Github) for Space Station 14, recolored by MrGreen06 (Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/pan.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/pan.rsi/equipped-NECK.png new file mode 100644 index 0000000000000000000000000000000000000000..dd22f8b80098547c9b31954413d6c88541209244 GIT binary patch literal 663 zcmV;I0%-k-P)Px%QAtEWRCt{2nz3r!KoEw1g{=%J1i2IkVppm15-#l8kcV*c2C1wxDbAJNAbyEJ zYNhZ?xUyFqxH*FgL#l;IvA2#+*2P-sbZc?*!NIa8@z0KCgrt7~hG7_nVHoCRk}FNR z0JZ(MZGPAMPhTgQcMNa39!P0UVkRNyfKD=U$#CQPyl)U)XwzxxOA*6YUvxdNG}Y5s ziWn{#SdZ)TV<1~}n)(2|^*dJp0GL&Y@_ze#X)4@(iXyKFIuhM|jkf7GWAUML1pqd? zCy#{R=9^vgTL7lQ^0SH*0AS%I?#uND1$myMG}VTFGnUZ;&;^KY>~CK;y=O5b8KpnT z#*yYv<32Y)z_S95Z#BfD?J-+ws*mO%)N&Cet1r~N`f9o8b>+QI(n&^A#3)VGTX532 z76?`TW6-MwLY4m*cqQQa`wzGlc>hr0=v_QkT(1*u0d9eREucmUh+!CpVGf9kUl&33 zgS^pgTlD4G<(?z){3Nz3>I)6A=sH0X&{hGV5)tg9Ml%VaD}iAchGCfQI2&3QuvT?X zYigIV^uhZ{kkXuV0TMH5ouaulO{IwUx=F$%-D&D1Bf9a|_f9}*D(lO``t)_=9QgB4 zwVbs(D9tyLULU_?owwojRT!`)BmrbrrQI}fzuq6P9;=Vznk8+TZmdrIAMJa+3+MuL ze5(O$?#M8!a$JADq3^VZ=ne|jxy1ku(=mPx8zzS0eGjOkP7x(nn#63ncG;i=0Bn~{ x-Z36r0aJI3xdn#8EimyGU>JsB7=}4m{sMAxgh_%u(0>2`002ovPDHLkV1j*vFAx9# literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/pan.rsi/icon.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/pan.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4efa017c8d03997c5fe6c7f5b42428254daae22d GIT binary patch literal 326 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|qyv0HT!Hih z+3E-T82;a2_^;R_JLiGo#{b8pa^+Wi+PdD36)4SF666=m@E;1ynPy)B3Lf!vaSXBO z-8$*C&=Ca=mQ<0a|Myq8w_cgnKd0>Djo6mPC0`yhP57*RUS~_$V`gWUb8KvSYgQY4 zyc*C^e6H%zwIhc1rQ$Xx4V8J1H_S6qC|Fx2Vk9%a_1>Y6Cm%F~B%FIKwnbfF1?#<{ z9@SGK$JTTk82Kpr?Mh#8$z+n=^9$*$mVUc9E=m=C^fj3Ox2Q1C(5mf;chw0`MOJ! Q9q1nhPgg&ebxsLQ01$?Wa{vGU literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/pan.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/pan.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..b3762bbc3b9c328279693965a61a26f09edbbfc9 GIT binary patch literal 566 zcmV-60?GY}P)Px$@JU2LRCt{2nz2s8P!xv$n!bP`#>7yl#8+ToU~+fUnHO+!gaHON-T;j85nLHq zNF3w^bZKs5Vn`euTuF|DDIkGj+jDzR&X;r|{O9kVd*SAu11O53D2k#eilQirqA1E< z;cy8N5dffc86dx&uMfp(?JEx)@E5r_zl zS`}slqGym9ff}{y{IjHw8G+W-*z}~~faUF%C57U)e0*QM5C8x+%P<*}XE0{{TrcYzZCZvdJZjC1M4z`g|luxXoet-7F%b?cuiU~GKbFH;}e&3EMciNuj{{dt@jc)!Zj9?W{f7Po5nZW-(Wp3 za6iAN!_INZC7Y-&;3xh*TL5|V^0(FX^DC<;it<1B0+^nj;=xBas{jB107*qoM6N<$ Ef=KuH#sB~S literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/pan.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/pan.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..b7b08f9f860195464080cd8c5b079a2b73bd15cd GIT binary patch literal 549 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%z?|Zs9hE&XX zJIm1fu!G3){}XE%1vN!3hZL3-7o1qMd$yDLe&^#>FD9H_n;dWovNGSe5y`*zxjR8cW=@DKgHME_ONp_DIn0HsE0G`RFt;38ScDom-gP! z&n^Aj+snm~d0_=Ik5vzu)>Zx&(XwoKpQkjhcES8T5mQ$)9b>qX;8R!JQ^EDc`q|we z(J$8P)D)JyDN1H=T=Jmq-1h&Lx58Mu-R!qHiZE;5JH{Zlp8fP&{s+%`-^>*2cz4%t zW;PE)x#9&D1J(;0Q^MJHecxF5YQHtpf%5#-?hEuHteO6*luWoGtlh11Px|Ppkoi~C z5AK@$O=ZV7YX_zWVh`MiB#y;MBtBdIy>i?A;B_($dXdMcuh5of%wOTPGb?|^i$^au z^emkw5cnz}u7A^+^F}38t}o70{w>wYvSGrkhF!c0{SntL=IXrqJM)mA^7Z@%^N{Xe z)iYf$D+Jxx`#m%6%a+R3)k*$ z+LE`fz7eRST9swursRV=^47^7xN077y^hsUpykvj*2=7Px%wMj%lRCt{2nn7zCK@`XTc07nQ3!y!T)kJd$2zv1t3iSi@&{K{Dzkr9vQ%)g; zoI)u50^ZY04}JuZ9!f4Nc&kx^cxWkXiuIsO54)?YUCF-PtfTGw!NNMb%zN|a&CZPP z0Sv=148t(Y!z7CpdAwhiZqHV=KQ?*;u6FbWB;Fm6eR$&e&9g%p(=tfMvuFw-^(v%o zG+C@jXFJsiFW7zObAWC0c)u(c+O;T>#R|!O)bpFhWOlm;;6(y}Wi+N`fZxC7?IEzx zw`DW!Vl$>?Nd0;j0KnL|MSpa^vb_f&RYip4fk#r)X+$4FqW!Rs6ueIXnCgDb7SIFG z8Un300Aqr|&Bw@fw-z~?PD2^I&HGPf?7k9!F|kDNxcU;B19}5e{xGjqAEU5o3L)jC z=>yIVMhdoEc&Ak(5;2#(^?@3(0I0knD!K7V+ZJl<0aYtN z82DQS6s-Wt`4?9KhG7_nQOIfiRH^;&kB}~`8uZ2Mi#2;f{72}qa1K<(pq(fYz%2q) z387>P0Dp_1IuaO$VHk!XVCCZVDr8fLm30H_Ac$@9PVgjmE|bNIgcgO~fXpY%)O9+Z zCFkb-vRs=0%yWj+zQ_XfN1a&?KA&5B7Sl2qeg8@AlEj@5GM}()+jRo*EcRe#iK&nU zxbD`>?XxjKt8E(X!4zg}+#>#bm+l3D<#f0+OveSOBgW t*z%fzz!AVT16#fdFbu;m48#1l`~l9|NNBmGg;W3l002ovPDHLkV1m!PUN`^% literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/rainbow.rsi/icon.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/rainbow.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..bffef995c99cc7f097789d52e56cc779ba11a2af GIT binary patch literal 361 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|3<7*YT!A!0 zmb{cvUYLC1F=pl`%*>Zd7#MoB{`W9kKEm+-Ekm(plafQ<+hzuaYL!gYa)k+fF+eQ> zB|(0{4F6HVfq-sjpxkLs7sn8b-o2L``C1fs90E01b-3>Q-*(ySq(#HJGgo?_*!RHi@(X=ZC>1owKu*Nb)D(_p3irhrscaHSS8C4R$CnUxzL8;WVXW*C*y{>)m~SM zdr~=tGUAwpE`0L3AvDwB;yH2Sj@F!)mc0x1MlyfeB6#AS19Q6H6m^9oQD?V2EqKdU z!d-RGEuggD^E1yE;|b3M7fk-2u|B~m&+5mgK4%nnasG4W!VlbAOwubhgM!J^)z4*}Q$iB}Sc;ci literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/rainbow.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/rainbow.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..27aabe00ec4a4a9912dc7821d1c990adc6c007cb GIT binary patch literal 620 zcmV-y0+aoTP)Px%CP_p=RCt{2nz2h;Q543%QynB2mp3SuLe(yXOb>jZlar%Emab{{c4*Rnz**z& zqTuFYhfdDHh#6m|4$l^8$dV<2;Lvh9h?;^t>wV|G6ZQNc>vz6&jk#_Fbu;m z48t%C!!QivSwT`l%nSf%e<3c-0qriZe*oI*vQ&wCA$s`NnUpp$*qOjD00RKMD3q2L zM|=gmUyU&Al=xL)0T;t_6z1EscXH;W`R?@xKK!{yqxxx##R>?L7LH%8U}|O>m;EBv zGiWt}A{H0weA)kj+8lY=PT~PGWT%B$1MNey7-e{VZ$(tr@&ujWB}82;iByT0000U}E=laSW-L z^LEy5KPE?!w*P`$TniJ0dpia7H*PZ8xZyLWj%nEg<{JyP>M!`j5jI6d%r7MA1-3C{Bu$vwk- zUiQJCH1F7Zb}CQPSeI_;?^yHgaQ5yUxv3Y}E-(jtk<(q}%XW+58=IWzHUE$Q{&pSx zx76+wr_zsW-=}G@I8V)H{?J|dglqGQ^3N6-w}ng29(pGDluPx;U9k_#_J>IyIDXDF z-~`iM#sKznRw;p(WtH#w8|Gd4;`oI%>(_!;ciu0X(H4H=_LrVpTn9uOsu|`=Xcm3o z&(CGpd+WYF!=8n#n^Pn{w%v=Cb~r4(EbTeJ@uR;h_m>^pc=|~4AN3h!KL1&k?_*M7 z$YabSg7~uhP_lqsVPRp@lVAUW;~7_S9Vpo+-WtOCpy>vqN&nfm>e43tj!)m}zW(03 zm-Abe3T+7D^3r@Wop0qs-p~scrH&UqPx%Ye_^wRCt{2+A(X}Koke?zf4;&vOt9_Qne`^f(evDze9(jsnEe&x2_$tWXs3! zR!YE==#cMF@M0V-HYHe=7l943WU!&v!I68eV<=Sjj`DE#6(=di5HC zJKTzYu(b?&eHQss7Wvc6FT<)?w!^~PI~Ms<*6J=d<04;x0A~f%e>!0DXg%gEwSBRz z3u)Hwu=HQwwwl#fp=CR))m;|O_R))5Kvelxp->BmD*q~QCE&|h6N+JO{U$gm)B@B3 zC*A^t5JJd)UH!Nc8vh_08EIJ$ee>bwz$@Y065E&LgNk_QBq0gdRRN+BA*2O>zmp)k z5(puL5RzYfI5KW`m}NUcH%iMK$#ee_jQlAZw>wNRObmK`rpgT{h6!EMOD%*)`hEbg z-mz|Vm(^X6h>i@Sozidiz*=zSBdaUqfg?XKE!6_R@gJC$PQb|@m{JQ+3!Hch5JCtcgdD3s X6BfTMZOQ1^00000NkvXXu0mjfj3hhz literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/trans.rsi/icon.png b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/trans.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..339e0fff20833c138f734c83ecfe5019f585cd3b GIT binary patch literal 324 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|qyv0HT!FO5 zl4H^5eqEk4|Nn*qcP?N3_U3)yt_M%&ttmA(*9S^-mIV0)GyI1FbEer>fP#lST^vI! zdbdt;6k=B7U@0wZ`M=*{v6EKotl*~O@0{Fpo*rji@O}NB%>l1_{dq!drDyy|jBRaQ z-{vs4_?mEjsO;xeyB~P=NoHEGJ(^~$r*6tzEC2TK-=~f*adFXgg@S?|9A2$9R%fTx?AhnJ z{N|(}#s6P#?(qk*GXHK+=X#~C@cD`I)9s3@&wH>Qj)>CS-@D+}1V@7-FPA-EGWQDe ziZ86~+xhS33OH+bmId)MFzA)L-?+zhAzJcb4P(in0-=U9?u-{L4^3N&WtyLaAJYk&pWI7@+kVYnpc;6OWxC9dAHfC;+0567CI0+om~)5AKi)4Zen!?S zYfHwvtD}^{kKA27YYNxLv^GB`jr3x@6zA6!>_=U)+KhGz3#98m*j~->IJU)NUZ{V= zox4E4G47cAs;61vy%NjSHkVxMt@a0#_Uft&H=j`{YhG3^xM+cxgV5$bk)^K%_pJvp qYs5>hGI=CTvtO;J*fPQLCrjaj0PC<@tKEUo&EVPx$*hxe|RCt{2n!irMP!xwxjSd7&jFRvtE=Cy)vnKiw_zErz%#6N(8loeE3Ct## z7+rh<2RjmiiRgkLBZ+k7IuH&;qSk&{b_a`W&e!WICYjstK6BXjq$8ueT`1rhE>o(1G8m^uJPR`#siI@$t zuI^QDc<9N}u;D5IiN1kiSJC0!(|F#sgFWKtS8^4ARNuh2d6}LEt^$zi8}MRYmJ;xb gu=Xne06<{*1TK&xczG^^`2YX_07*qoM6N<$f)0o3^Z)<= literal 0 HcmV?d00001 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/trans.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/trans.rsi/meta.json new file mode 100644 index 00000000000..71cdeb174df --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Scarfs/PrideScarfs/trans.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da | In hand sprites sprited by PuroSlavKing (Github) for Space Station 14, recolored by MrGreen06 (Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} From ac04604b8a136a0d42e78f7b552224c1b333e482 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 17 Jan 2025 11:36:10 +0000 Subject: [PATCH 004/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ba4182b533d..98cdb20b7c3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: PJB3005 - changes: - - message: The emergency shuttle will now wait at the station longer if it couldn't - dock at evac. - type: Tweak - id: 7322 - time: '2024-09-09T18:10:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31496 - author: Boaz1111 changes: - message: Pacifists can now use grapple guns. @@ -3922,3 +3914,10 @@ id: 7821 time: '2025-01-16T20:49:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34197 +- author: southbridge-fur + changes: + - message: Pride-O-Mats now have scarves instead of cloaks + type: Tweak + id: 7822 + time: '2025-01-17T11:35:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34448 From 50bb5e0c13340ac9381b103c2b9a7813129bfbcb Mon Sep 17 00:00:00 2001 From: Minemoder5000 Date: Fri, 17 Jan 2025 06:01:06 -0700 Subject: [PATCH 005/103] Replace the djstation intercoms with freelance intercoms (#34478) * Add Freelance intercom prototype, and replace the djstation ruin with them instead of three master keys * removed a new line --- Resources/Maps/Ruins/djstation.yml | 2 +- .../Entities/Structures/Wallmounts/intercom.yml | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Resources/Maps/Ruins/djstation.yml b/Resources/Maps/Ruins/djstation.yml index 8a81ede4fbe..60214c1c538 100644 --- a/Resources/Maps/Ruins/djstation.yml +++ b/Resources/Maps/Ruins/djstation.yml @@ -1146,7 +1146,7 @@ entities: - type: Transform pos: -4.5,-2.5 parent: 2 -- proto: IntercomAll +- proto: IntercomFreelance entities: - uid: 316 components: diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml index d44bbb9647d..bf0624d4b18 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/intercom.yml @@ -338,3 +338,16 @@ key_slots: - EncryptionKeyCommon - EncryptionKeyStationMaster + +- type: entity + id: IntercomFreelance + parent: Intercom + suffix: Freelance + components: + - type: ContainerFill + containers: + board: + - IntercomElectronics + key_slots: + - EncryptionKeyCommon + - EncryptionKeyFreelance From b07fe8ee10129ca519c17d872cdd9bc0b2b7f063 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 17 Jan 2025 18:22:42 +0100 Subject: [PATCH 006/103] Staging: Add taped logo back for 10th anniversary (#34486) --- Resources/Textures/Logo/logo-tape.png | Bin 0 -> 55400 bytes Resources/manifest.yml | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 Resources/Textures/Logo/logo-tape.png diff --git a/Resources/Textures/Logo/logo-tape.png b/Resources/Textures/Logo/logo-tape.png new file mode 100644 index 0000000000000000000000000000000000000000..f8a7ae898c94d3f46ba946db691c7a434531dff9 GIT binary patch literal 55400 zcmb?hRaYEMx5gPPxD%Y<4#6R~1_|!&?(Xiv-Q68Rn8DqHySw|~e7qOuADmvRt9n&m zRCn3lk3=fUOQIkWAVNSuph!!J{epmiDB?yHS#8ojPW|)p| zKm+}Souh%Q5DHyf3ND zIu8UEFu(L&_zUqH_|^_|(LfB~$PFOb*_Vlri7GXIfkeK7fF6f1Xk=rD5)tSNkP;-e zyOT@6d?W`1aJl!>LvY0cgO6OUKBO~KdT=9VU?P`-CPqvm|0woXEC(Ss_)7H8Jz}x; z(Xif%!(%l7(=ln_9F1EaUGR#(vlc=w8~rJp}x>d_m`4?yY3TN69ZyF5Yb-K$9+V>W)lTI{<1s9Z}+h? zN(`tSn<>g#UST`h$Uakv`(c39Z&JeYWb;?sOA9V34XJx4M@UveNBeL2@Pb+E!h*!X zpqW1QNtfOG&q(hMsk$H`FmmC&Z^K)PzLx+*jHZ&Un@_{QC2YPiJH!pRYl#CDij?+5 z`=whQTo8FkB~3b9&(1nBIr;s-Nn>y)=)K_M_=@Xp9vm}p{7!?qo|Dv#Rf>4D^S5C} zc{bF?%M31Qpn&krGvdQ>OFyrVB_yeP+u5Tq!r@=Cqi1BH+wGDLBv+2);mx};=7-@@ zUNiS1xe|dOq*XQRZ-RWNy+y%*LNrJW=O4|`Z~wUbeYnxOfPnePf%XrEqs^vX(;cd$ ztVfAgO=AbE7Z?jBWA$fwT*TH-L!=J~V&>Lf)dm7?QDx z1!9q^N+GcYjFZ9b0X%=aD*~`!2ZSThP%%WFroWZL(1lkP@RlPy6Z69A2GoiKPYYOJ zWd`|$Z}b7=f-36Ss!_7Kk(Xc}g8Q~o9LRwLlfg*a=MLC9s3gIw+elZgkKg&Bgu>0y z1JKY33d8Woko!>(#0nE&LgK4MqY`9_i7kcy{?^<3#ug+;ajA%h1uHIzUvQ?hQNB-u zW5sFpwGvA;mN&>s@;=|LP(q2lT)~1(3&A#^RrDpF;$P&EjSKo;jP(dRQGJn3iTI*T z0~S0233%h+>p?NYL{@8-lJvK9wQVu8`9KBY=h`}?}nlJ!+Oyr z$1`mr^s*@SAp-kr}rc z!x_&Rff;(XjOw3m-z1Y@_s;je-H6{9-)JL5g*1f3!)P0U#A3xd`hWK$Ndt>hi=+4G zM)*f$Mv@Yt6K8*U(Av^+(U#8fRuEJu|LXhIG=pWye*EK@H@C>yTnAPqn~ct^re>AMmEO&ZOv3bJbWiRjPLRK>2M2W4{;QxithK2v8CYm=$r zxM{S^?-SvvGW10``RfIsH04z1gxz7=BFxh)P;TE>aZ=mTH>f%d$M8 zo^?0k`I%Wr=5xt&!1)j>SF1Ox z+Y{cCv3aC9?RgSQG!8rh1OjY=bprOx%1p@2r_6~=aLbhzat&pTfEGy0d4+cceMP&O zubJ9)&(+7}#wF90_$1La$3^{g;dEoB?}+v8*WJVE`gHhx&0W%+^&LF20kk!AZI55D zuxN8Z4cS!vhQm^X$(~WN>6{IRl^pv67Zb|`i=SbkC5CO|Z1Lh=QbmeorDgCjG&?@K zeiKv^Q`6?e{e*7_`dU*zH9YiqGP zTt|0j1{;C>Q1RpUiRX#q1?B}X1+oOpfz`kTj~uXs_lxJ{9r1(GgW(g$)A-}cW9|L< zHN{itv+9e$^&vb4N(iu9}wmmMeAw9(zk z_C`m>V01eIF{QVZ99#dRbY~lu?i3 zecESjb9Umk`*!D>W(~HNtqKEYJJwXCR4G&>GMXieovbgVCt0EA2&*q+)ni}Iy3e-G z|1`~79ws;)-vDnKbRj!d=#Q`mum~n~7ms#TI@cX+eDxMmp;q0j zb*!;mFKf16?QDNLdlQAvMs1#>TTGqn6dD%rXq&961?hEk-k=>QE)iS**a~l zRBRY5Up>;@J@%xA6LP<0m6jICNRDN0n;G8DHKZGJbvl34HVu@Q)TS(GIS~=z68k^+ zu7TaT;*K+dcRUJ{==P;tu{b?jX^L0eVzX|0(-O+$^C_6JXXqb3GPtAJ`r} zu5wdX&^6XM{bT0~0!>xcol{rktvuJftis#C@!BtK91-a7dbkZ+9`*hNXQkOct^M`$ zUOw;P8@pWl8i!BZKGw`@Y8seI#Jp;E*ZKPI(=K?H4<<#oAYhH zls-y=H?D3t>@s=3F$7-GK3VREoQTa9KkXgUPE`<2sqqu~=U)5x{XJ4Y)(3;8eXslM zC%f(^#3p09_PTT)L3b&=Reg1g`tDP36M}w84`zO~k2Srk6qk6HUYnA@y!5H}fH%c^ zrAy;Q>MjLT+!-94cUb83+gB_ualX%7lGIr0*G~utuWt|#0U;0&&!0^JM-ULMED#VU z1`rUu=@1aO4%vT|_&;C38OchDeb%4XlW2$kXNBM(rRfX-frS3w4e4*9pYYiT?;`zE z9DW-X3zv}fa6#GXvl9quF<}*tl{1iMx{kW*#hbQwp0ibLuH*zUr7UqnEUN+ZAl|q| zSi0vIQPRLGs*tfaCsDja<`B8xNbTT6v|*SK0~>1OZvmJ9vnx{VMpNxplaWLlX~z3C zT~+fX?{y)0)ha5&wRbxoM=8)$QQ7?bysKMY6S!m1Yq7o{n(6OR;r~}b3^@aW)phwd z(6^1dU{3^U-Tt0yG>-z8n?PzH7os|-$c2IDD6BNcUqDl1|NXAln(!HjBB7&1{uGAz?1xdvv_dbCM0CYu)xPoFcj62KXl zi4HZFjE3^Vh}p^V-xnbe1FVWL;~)g0#E*G0@(37{Ol_qi2~F%E%$|sWibSt?crj9C zDpi3yi;qsG0@r^7{th~SpZ63vV`5@7ih{|JHHQN5B%u59Ln~S5s(ZHf9#r!FF=Scc zQ#GbSp?MaVAj480^|62^e>#5qB55@!1OhSI^=9$V?w<=VLp_)a$hk%PG z2Sfw`^ssx1h%sQ8WlD*6VT>8ciHo8%XuO3}oYJQM9_=_rj4k8=pC>h5ZZ;G?NK>4e(5yPv8WVhV@>rfeeoaQ{YPP%t!D zX&^-?;Z);=5n{v@ySJ4lX(2YY(15%^^#~D_9&gD5EEJK<4MPV!$V=>dV$R;?TjYEW zmN{REu|7o$0M?u-jG9H15eyL`O{K_zfF8E^4`lfiz-)CC-`3T&PS`k~hKlJg5XY}b z9M#KH3@u#USCTCtigxcfPZJZ`S8T&>4+&8`R!C^I3IaSBw;}0$QD+_gNL}AVSIaJd zb>VMFB2Xq90n8mP`AHyep6R?b;d@P4xYJDj$Ve4Km>{(4%_WiqP5JNgvT{0-YUN(I z2-b3StavYBSTu!91U&}CJITLdIFsJ}8Zj^d)T;5yXvhnINm{)hN@7&*C^>ymXpsh@ zSxE(u^Z|GTCzzb66?0111%ZZa&Ni+vry>--hzT_CM7(Lo+2|K^S{W=G3~MBOw!F9s zk=NllyAgFn@w@#|+zBDn=^Bj&&w%2Pg zv`z|u*D6p5zyHC^)90d@9+=|H1^PLEBvb3yPbYM<(BMPw;Gr-C3rlH!1=0ADd6|DB z6l@^19|fN38&eT}7s;a$Enu^O@{0Y%s;E3Oz=6NIyX=_V{n}u_yfim zIS^p#s$o5>G7NJib3%jx!(GR%3c_9nMfJrm%J*rb>4o}0=lXPOK754x@Tmc^y@bf1)mvMN2-u+WSe(A;T=<^g_QhJSbj#v{`e8H;>3 zD3A;x4#^Bm`~jmusi{ne8Ga-c1jQI7n(4g)WMxF}+59OQY5!W#>ypGt)Zy3-%Jro>V%y z^61O}Yojfn+*xx_CzW*Y`3CblYjG;&+)sdg`P$%`od7E%1TQoVVQI_G`Ni&9UG_tK`fh? z{gqZDJc~)Dnn$3nRUYux-k!;@0=_7&P#x1;=v1W~tdjE-xa;D>UeEn)sWeD5She7& zo~Dm1244eH0}fg?-d#ns0PZ=U>`*{*mOkwBWb+s#?~7=;D?kPyhlu>-r=ssXF8&yc zelHTgR*5NKQfyO%8}+CREU^jgrpJkh+1uN~Mi0id#Ejhm?cpSN00|hvemL=s6yX_P zZv+A+gRvo1t09G1epHK$dB>p3tzt9+$Vm$|2uUj=;M3?e87~LSzqvDGmi5z7lK1~O zOXevvV@MP=7e9C|y*&o1n_+*$G#u18fEw#G>kUypK);Aj86*DyDO|LJZ$F5qE}l>8 z(u^83GSkz!tsNb&XE=UNU2nv55lsBc@^`sCT5bE-LLcxdi{eZb6PP>goS$6;dUkSx z_~OihvMW|XmrASJ8)Ro zP{}`jh?V2-t6K+YMJr2z3KKDvPf)C2>d>m-jU&YsncGiGqw-+_2gpg|6k(!!02p-iYhBB9}YRb_HxJNZD$iI9iDG=Tx_4O`qz_F3`3p>6yf+Z8R9e+JEbPw7!Y&~ zqs%ec$@4Est^NKN`2NoE(|Y6Zr6wZ3Qp1`SCmI6=5(x>Z*fI(%*t#GuuEcTeV6s5f z`~k!5?D(9@Y}0XVIC8dIW`FV4&!9lRTZDqnYs65bhL2@B2N0Dghn1ns&BOyUGlK3k zM?-zpZ0a~yqS-7MIiXEM3j@%LDpmZOrfe{-@zAU3)Ve)-w1PRK{$?9sG$aR@r`--` zDUVP%z|F|@AVw+!)A_Z&^$K79V`%#=hQ;B&4P{(^LK{(F2Q9`QNb{3^yh?ZliP5ng zb{ow|l`RxmLD`UoL)luaYaXU!3&f$4J{cl?m=0SiK%{D@B;c(~0xTF`%*A}l!pR=> z`POI=ijT6CQ%vO4t5nASn`ZSFO2ydME|0^>ffW8W=C6Kd2O*VF5f<7VbaHZX)x=-F zu9K6OQAxA$^6>CnfHncyJD@tGt%C!PG!iWgh+e8$4@ z!#b3~>ZfVcTHRZ_qS>5uLP5E%Gu#z}t*W-a&x9!yFooM@n z{d?VWce8(yMopadrP@n?YM`u@MBlXtr7DuZPK9wf!7EeUp-t@lPLPxe?j`-;uO1}~ zQO$e?G)+sS@j-g6p}kFS*nWfRo_6F*=RjU|;$TIt_Ko86*P>TzJ6c00wy~yUm}?nw zk)0IM;T9?+4P-SKigr_Ma+r2z$ypu@RUqK!gl4r5{-g^dkU!DigiA582&nu zoVgMdj9(^KwJU{)X~n&#TnembZaQekUVb=LeSeZFbwi{;BK}e~`rgk@>oDBs7m8oE zhVDI9pxYFG$kSlIDd;@=lM6eZi04;K;jqn0bA?WY3S4PfS(P{VqULP9!+pKCxA%#H zfxA1E8R+HGRio=jUv2Dy6vR!kB7ACfnEa1b>%8U@ zYC|8mMO^1As-_~z)wx(Gb5Ry%PT9g_!~S*unvcnRJb0KBye?`Q@eW6cktBP=@q(4; zpEl>`JUwnmtz4|G;C;~d-bYx#Lj)Aii5o}8D6%v&QjsYt1l4bN$TJa&Ay?q`!*Pd> zA6i04g!I3x`6>=XV0a2!BCVbeXK{XWCsCy>H(Eu=WNhHb8Nyrj>)M&4$S{b7GY zR_FNu1XN7A5Gxi5ZUXOa7NbyAwWYLu zf@PyrNX5qAIAb(uVcUsR2ibi*;Vn4E$df!kFdcbhrF_MSO1qAHN5})s_4TX*-)(&9 zoAnU%*>8_$=&=a&!5B6I5nZRi4m*a~jo5eXQKV6M8vFvA&?tcEeR8$p_tYO>3tIAf z@e8n~=%mOL5Qb&NocPMmJ1YVZqzSrJBmtZoavo+7fr$9zp%cJWO%5kt9a3KAT4A<*H!|*5k3zMqhd$Dp_ z?K%QX^ZFQ-^-r<-g{T%cj6ckPAki!?`v;-6kcZYJdBzWxe>>#>WAU+iCAfK3V%WRF zy9mXG-ulN!XQZ1rd$Z+eNwFYEgqB6_FvdH=f)gUq(BH(?G?BBKm+HPib#?5TlxYoQ z8JPAj2B8qbiZLEx=(m;R+zlRBWu8kL-ek%X;tnD}FAS`H(v98Kjx62**^9rCBktS- z#*_-EipJ7DVUqO{-L!#t*;7tNh*XCX_DUn=VWkB!O~=2(db4ji2AnvQ55&?(*vzmG z=7wWtuLJ~cCdpiepuS~Z=Pt`-IP@9@M#6j<=uPf@BlZ>!TwTz}tZcu^l3qQT{fle|8tyq@hV9B524!f?V6GO%?xnT2RP$~TFXLx{gd(l@D#NUDH3XM~P zbZ1e^t_njA8_iaA6fJ|LPlWXe`2XnuC2lP6#XPRh#iUEDkh5ewmm?*WjJsQ873cEt z#IO$8F%&v`p`(X(nqr2vVgM4pdRj)w(|C&YgZcQB8&zC_x97mpRA&$53L%_O>&U1- z<8|N9YVjYY+Q%m=48MhWGK9~@!0V1yk* zO4Z@Je8Wh9cw`9Hwl8XZQybKkD{UV<=47sN0)Y7pjq^F?mFs&^P#(i!r$W^Isy1(` zqqZxT8Ya6>0ADCkg$9>QxzV$oO_r|*Jht_@BPQ!pOAV`b^B2?AQ{|_yid4*iH`?W`MP2}F)HQx#`#n}Gg}>2H ziiua9!t_#S6C>$*29F`56ALKD`|*k-sqtR%K)p?Br;m_D1Fg^zIc@@ac-T0PDJ5*T zl8tXxID&KLosWZj7b_i!FE1x=Pm9j>psJQcu#mfd8id~l3lERx?M9vQyy}kzOisB( zlaZX$-M8K)b#1Mo#Kq26h~Y3E;4Lyu-_zLv7PKY;!hX^c*+XiB>w49ith=GU*t~4JZ3_4l>4* zJ)xby;3OXqTHln!O4$3Okua6BogynwI*9h|U18Z6S)Mv^K14v`X(F&(y%G570k*3qUPy}30~Og;^xlXR)U z&0Q9Bg}JQBF=|Lx&e)?&AB#zdy4rS%s^NzByUm~>zYXFi4<(c^4Ls20=QUY%Tm}=BP_jrr>DIe*Kj!mNG|Mp|RrzTIVUyODR{-Mr5yOw16tb`ocF= zd@EP!z;VkEVd)E8^shE^G1{PD48f-+8gym}g=b55poIq|NXtE_cU)v&FqJU*Ehx@! zeIis6nM4x~yB4~fnSy;@tr-i9jkc`LV~P+_(KRoN#Ag9_=Z0o9)<68ef39mlDTyRg zRNU;Q)>DOaWr2M_6(;geEyQE{rW$knOU+}VT{K+H{N|xTq3}0OrMplNhIoaQCYq_Z z5AcCuhD!`7GVJqKE%VX!-R7T8bJrkxt%d+uGwvsReW+EB>S&4M4z&UE6HFq$zdNtT} zQ4%+vjE;gDoQtn1WPw~n)t8Pt2zyd|Cpk^6=3U+NQ9rCK$bOjDQbDs~9pY!rEuh%% zc|g?l@^R7WUU{3r=YGLpuGvcWb9UY`aV{G?UJ2{$h82V4z!y#K4awJE*&6 za`RmD5vh?(evhnj~r>^bSpg+_;+OfI7uBBg?2q_2v!*jb&dp01SzpBuB+Z$vrFh<6i5 zTm)I2!jCdsKv`IgF@_8D+chhbOl{9P2qUyBrf_gQJ0b4z%f!=G^G`Xl5fhLe+tPvmGvPU73<&^>9{I=s#MhNxg?^tQ{2jNne zz5i9g=2Ni#^NQ=H-$m)qG6rN6)PI|^eJ9sSgM$*smzSmn`FR@~#3%Qa1ja?$ZMOb1 zJ3h`92KhtgR&G@{V0x-%#@^Cs^4lGAEEM>hsXn>$$}hVDf`G`c8fi+{SAz$TZq_3! zJv71O3x$Z03L}6U94SOAhN#_oXC1Vg<-`p+4T%fm~7 zTO^b(Yky;7Q7?>t5-6jkyAC;lJ%$Oq6aeDv!2^QkhwdQKDKE;Mm>-XcT z5-{+vD|bzZWqO>=-{588a)AB`gp}vC466X#T8kIDUUMF_o|jorzAPwf3)iX%idX^z zPi-mey-x{cLP@*fAcgS^YRHg--9i`@KG2gETlMaesmV@gv1ENt{NGhU|1>{xuY*63!}Iyzp&vDW)O|OG1yjw!?go zlk~{dL1v*~yx(8bw2dU1?;LB}`8aq7*+b8HlS1LBB&G9K=;G+1B8If8MMX9E#xtaV zFF1&yU(k4pgPx3@VffxG)ftrt{&hX;DS_eA&p ziVk-#uY=gtHb46pnZcWnw@H8cxcJx{etr&?Y%~1Iq11Bl=+-ppAOZ09JjgsR?YCvw zvaz1u!R*@o%#!gyAztTgj{non*;%&s2=}w30+SBO3q2DvAF*QalH0dbx(%Lwz(xt4 z^$&((;<7K8S`1+fLJ$zv43j0ERm3P)nIvo?eE&MEQnXcHIV;4*>bmOd73F4KXvP`? zzp!dpCvfZ+_o1=~3W?_hrXpsD;K3Cii?WkJ1tP%f>$&(;Kr+|h>1j>AY;wL`o4`5X z{ho6USD%b92%gaP#f287_ohL8JNnrr){vvJD*b#;Iompdj6Ra>%>K#vv1_;4=_a_Y zQ8hCWa|*t8kRUx=@Hsp!*skiYt|}{>-V@BrWH?ob6)0+0LC-QVEpS$;*L?Jod|V9N zd&P>d7HiP_V!)wI8^uCGSHeP_OVlU|JUBvT)ZVmw5oNOtG1)_ zim>Y;j$z_g=7hYU<3@nKDta6z>X`*+&VVz6Eot5RuzxBE9veGf*`*(t`Qsfa*ZVk% zj&_n}TFBy&b6`sV<`KyAgRhOQ+o=Dbwn$m-H`tTC5`ZtUQsdcAv9N=!rJ351C)jo; z7BYM19l>u9V`;P8 zDE^7Q^YAvGChrF}ADKz`X=8dVTwGKnCByLv2~FphSc0LU?@;b$H&^?%rt{C*FW(n> zdv|IN`44BX(WMkXe$Uv<9+S8m9~g_Lg%yt`aZYTNmFkVhg`lV%6Wc93Lu=AxL7vc%;*)- zzCPp!Fw3-hnck(LiN~Lom(KM=!H=h@=Y1B2IoGxO|MLP!2ncYVv=9h@KzDPMD%RMa zJWa~4ND-B->4L~miX`PSNcu|2KUdPY#T0$e^V2d)#g4ONF%{x!;PyHYcio<|h0dU}_< zhH&(>16_aFwd|MJ&cwZ{R$+I7-$+Wi)~<|ouO((!1{RaWaeV#8Ygs+3t`J8d&D%>7 z{<$DD0G#n~8e?GXGq6o3z0Gt6gWxI1oSC*gvB$z+7?CoImLeZrx2C;UQ*)G@vIzxtZAypU^?$+YFJAVCSidilRP*iJ?m28*JLct zq_A4Qz>97PF{`fUx&JD2>7O=D46Sl%Tvnsiv{I)DirU^@W77gz#oV7R44=&JUSm!P zxqrrgYX^s|JEMlH3kF%-N#5JL=*^eYOF?F2sL>RR5~Ijp6;cg~#fmWzg}-THELyc} zmg;jipC`aOzMbh!4Aex2PK<*cSXiU`2~d|t4s9y?;>9mh(=Bg zdE7#lofZw-wHF<4Q$K7pEd)OVj1i#6;_cUzK>nM-Ao{OUwA6K3f^W^SND{~uvhmhJ zMS865sPHTQrfx287hR>zm2JC9+rv`K;wbIjz*%-cQ*mrk^Xe4~tHLg=Rv70=(#$4_ z5XF|!O*yL9a~r?8Y;+ntvTnuh!>_v7QG-ri$!%-xJe>TDzp77uDgV3|QQ{B(eP&&e z!~gp@QT6TZ(!Wbzb&tEOd;gV1Evz6hM#L1Puh{#^)BVHFgl+5p&hd%4caxuR|w z&8fKgo4GHJ-6u_UrocDFYF~Ke;81C!z-SFMl!Vxuz#+sfLFEqiU5(0$iLzJ?z2Gl$ z^Thn*bY|@cNk3&CJmUkBiIr1~6&an(PFLph^QzOOrSiD=cy@la@uMYxwR$Yu^ybhH ze<6^s05bAjJKrVHd)EB@#$KPDW%?2h?zwqGxvZ`%{yk7HEIh2ZtLqYSD=I~=!$04? zPt)Aib8PLE=yaj_pqgEN=!HWFqvpKPHOlLDkQjf`TdO9-%-Ko$HSDztJy?b*D*U^N zom*}}&pWD}Mwi*m#j5{Z#IEN+)h5x!O3NwOW>w&5Zj+I^X}`Dy2rFlfD;U?G3Nni! z1BhO1w)r2nEc)EXeeSic_bTRWaKq+H_X-OjBFTg{a?U$G0l1ls=;@xaR%CPfW2lS) zCXfpGmP)B2IU_4)A9kwiY>eb%cT-!5V#GXUfY&3`NW9oLA2EnV&ePD@#6!P}g_xjn zLm4Hxumwx0+Ffh`1Fz4j>UBQbN&QspO~KHtN4p7SG!x_>FrE0jb;d;fNm-Y<vi`pvw$+FTpgb0sRQW9}~L;e(3h2UZmz_YbL6LsNN>{P~7 z@P?J`-ZQ}b-tF)G@kCvte~MU=I4E5O&aCQsPc>>ds%oKY(MpkNmn+dKEz>K~VE9Fc zLyLvvQD=8+Nl5R1)es-j+WFv*ND#Cm({EPFvf zG#fVE8an5evBJh}%U)oc(7Y~yT&YNd{pT=uUB_el3G8>G@L?cMFtF+W&OCcs`?8SA zG2--9Mzhh4S54hKh>5y(aw=7_F*WI{%kv!J!69y!ps&jms=8PFvzPZqGUf3I9g(~3 z{8~E}a*2`Q2uA&PA*7y&f`1l?ln9!s|13BxzY}n1F%}vHYTLD^eC2bi);i|?mTgv7 zo(|7$Vtdhf@Naew29SG*E3i+BdpEB+#|M=qi44M|L}MUUdQ2-dAEs;R{!Q(%C#C`j z(Fj={Cjl|c!M`s$(T}ueR>pO3)Er;D(5(AXi%y8g04k<(&LBz*LTQ=T@;uc-9gM4e zjL^SC?iVIrO;-MHR$#d_u-;k5*wgNfv?O*#Dj84W9?G1?NMD2fsdD`#2J# zay6Gi7>z;mqEZG+Jjb(evK?#bQ|9_B>8dlnn>(HR@|vc0x!lsh#=$*&HH~(HQHd_@};}n~k4sn6}I&F-czVDZ0+@DO#{?=2YOm zm%3}G80A!-XL>W3PNm9p<9^H@5`C`iHaz(i0&RlYMzZeu9BNC1Ovekgxdn1U^dawK zXC7SR!hkFA*1qeQ_?o(xbe}%i6qB9$WNq6nmF6R4$$ZG~MJ;RUn$sNWRWmxlWpDj< z3ikW6)918tRqFo5hTGDYT~>FX%{wWA$eBA{cNa#){==X>tkpz30~i{M*Vo^V4!kXq zWS7+Q+m{_naY~_-Ua2)L%c7IzF>~K=omzW;d%?}DS(2Ck$u7V?w00KrlH%TZ?+*9; z^1yv)@jZ)3fOq8XjOfcB+tshzU4EAxLVCyCc2T-h+VsCT1TRUx310dha<=^jh#Y|W z+9G=^NHt$*@uS^EP!yC=+)Hwi5Jhr;NDY61vW_&Kbv2i*Yg@&$be@ASp91kT6(j+1y75c-rGw~0U--oF4*2$l|L0FKE;bp@^@E*)6b+r zTp}Uid)4!btyBgL*+c|xW%Z>Hx3ojHtq5qjURHdD8fhHO@<}7|ED(y;=f#zi0tBaL ztklgdr&G0D1W35PThN!FxAm@@xHs)d?vD!T6F7NZOVL)ZdBEvnjj2O@-u3l$iQdm$ z+KLRlW!G12ic(TyD4Qp}bS-0J38 zh#S~ay{w|XK6=}o(b?SRwmBLNt4`hbp#{& z3QaNd)`LPWCPr2RL%bJjo||RWtiF~D-!$rMZ;pIgDUhLJCKMo0dw;VaBLo4n&AmRu zW@J1?YaAJ_IC?ns!{qu^Fo{5=F~mY0VIFM?QomzNOQ`_X03Hnv(pkH|zwv3!svurl zrhXnbFC#p$M?i3R9E;;){d=9z%j2Yf-IJh6Fu0tx%#)&gii?XCPBZ`0$%Ukvtaz)Oq@~AQgQmzT!fv~1os^du626LI_hJ`KWo!TO{?_v8RpE8|=;S;~SEEMplUDm$J)YlvGNNlq-jm`8}1p z3k?O;pF;)K7~CsEPPeMZB|xVaihYE?!S2-c2e^_J&5ZyrJ| z(Di$wB7AxF?z$Q`*Yg?6eR(*0`eZx2YVl|ntyF7NNADi)6d6)!)MfCDhqH@*F)7C& zei}_oGdge6HfE>+dd}*-6kF@8?D@XQn(|B{{`x}s$+A=r=iUL#{`;8=MfkTy#;lB~ zhzv~M<1t(KKIE}l(vES5LUZ{{X32VK5Homr&-FZ>no#|&+Wd?^6>J$;@aLzj#q1VK z&bLrY9y+I$kXcY$9i_Q_ggalR4pNDbA@i^~CMSKb=DT~le4CBB{D-9PvFw2b+j`5t z2cyo8EUHzLtmd4`Ep5?ibbyPKk&#g{AH{Q6J&XVKtLBORX2uf42JM?Kw6^~94E_5> z*5>1A)S&bJn7;dlulGgQS>d%~<^;}Q>&HSXAF;;R#>+$4qR#C-#mB>X-K7u1;fpi9 zTRFLw9I!890Aj-vEjY!;&lvf;Q0~`5=ULf)5i>N`kOIRhXAY3D&dua7T@a!MXSovp zu}}4@ZS@d_O-5&P9(=Kcm&%)v2f?d+`_gLDBPbSF`Kfrktf z{ICp#0V8Zx17eISTz`9edv_GIQ1Bj9w&(LXx(e@nSts#-+-L6C>E!~w&zCTa4eN+x zx~+Zp57JItY&6wO&68VS5Ccv*>-dE0_-LP{uA!Vd$R_qj06rzoND9fd`9(k50Zw{C zuH2U$%E-K=q)`2t^3>=BFA=_E%*cy=fPT1G)Bpz8hD+6Q>-htAyRyBLOAKLJT} zkp_>$m3;8=VHq9gk{yWMOZo$Jz@wQd#C7d?p(!CjDq@1%W+pSy{g-8GXqcXeXz9~* z^N@bEHvDaKy-Ru3c|yl|LS23REtn*y({D;3RCR zr!5;ISTdR4WMdEIoBdLq(i_kIz_#yQFoHJQiqsnUMMN@-HLSZ@%V zHc6%nLjDX7tv^^$+3w^K--!kT7@-@$FyFgn{0e=>_#XP>=0l;ZgZXnroXW6()V)pY z#)oajJS*)FlJ8dv@UEM=i^J>gHS25H3B>fxMBI?{GRr>>3?(alsT6xO;PA5f z5c)amLhV2^#`f`toFgFq{leZmAl~n;%^p$@e3%vc5Y4{W0Y*g{w&&ARU5}c1Hcp4eo*vxre_R0IHns4Vy zm46km^^EFvV$=I#%@`|@G?De)?<~%itG0Y>Skv6bQCnUpmJ}d8D-Th4p4(i*hTezU z<$@iKs_@%PGq>`e1*@kElr>}5>)7Siobm!QJ?zOEpN58xfs4(Zvw5EHfx3PBwZ6KG zzr@hsd!A8)i=H{=s6y*Z2}+3ugM-J;QJc2o>u;EK8PH$5zUP)p;R@bEVxx5}YsU=h zwa&MPD)nbzn0gMcMrCpyeh3+d)|iab4eK)L*4B34XVRtVS$+5Dx*o%<1FZEv!t^trL-jp+Uh;glVcEFa zelUTv@n#moHF$XfGpL+S8LIa)e_@3(FqMvcZkXL}P={Nc#SjUhK+EGUp*^v{OEtTR zp`qc3z!+l$|BC=J^yogD@b5NPVQf~B%mcCydV~Hm%bIt1O9F~ z{T;EdB)@yc*=~`U!1{}h=f3RwtF=DJN*sLDD9bExxrcJ9m)O2GV{XZ`_bzWCYG!so zp#S#l8t++EIiT_3T9>eBKPKnkUCNt62d2c*SHEA?1MTL5#x`Hfv%Wv5ZPip-UBev; zSmk37xH0v{^j4?|ldE9J5yKC6=yPvV$`;&ef^|LIt|!;s1v@zS+RWsB&j~l_!l7vt zFraxqo)q3>z#1yEZUqIgSb2!CL0bTKIFUIs?^2MiSXv0Z+5S+s%-IaCh;$cvmn%_0 zeTylt(U)BK)ge8q7UeV(AK1yH5fA?|7^Ey8BeUk4oJ4+%=!Y7r7zVKY= z*J?COHRK@{>mC)Sm)!3&u`ltFyTtXfy&eZ_Q3Jif3#0me_j&Jr;?eg(NK>mibSe7( zqO@U;L&`u#HpC-H!2#TH%brtAJ8GQ)IE2w0S&TRbxJypYIFo|bNVm7qvN*ETii!+a zo?BbO?}z%YvAQD~YIVHxpP6{)G}Q&hs=Q_W!X9r1&B+b0^1SV1Z*6uFbbZb{y(n6h zLL_NcDN~_htSLU~-jgWgj9=%aJKx9n8m@zUMhO(M8(`$PzTnezze^U}X4#CJUn4pV#1!|Ty; zt8OqNV-eG9??_0H?rs+sU9gKQ*HeOq-*`_7kAKo&f~9)N^r~^$;NQbwL={s3kgzH z$&BRT7AuXizl5#v3^=hLdVHQ7JC4T=$v;fN;pFovmlyDV6UK|NTXSg~A0KaZZqZ2n zl0foTo9^(Rd;m+mhH*qvGRG}D>z{nlb2m&JoqERqX79V>>^RGFpRdf!>D#NMUG=i+a+8~E zVat}~A{#e)Hvxwbz##-eNG=H_A>@WoOdxRx7-M4_1I7kp5=gkuV4$S8Un7bM~J7hcZ3gJs27uG0#40`R~qJx$IdXq_l09y|Q)t$fiwO zEAHXkwR>;m!?(TH&`SDxI}N2gUX?M9qGO};$g$C1K6H<}eAT5jix$ii?QPRBZF)26 z>g!QkSA*7;M$*#K*?HJJdX#jY1EI+%I(a(e+=YewK`W1f;f?6na35^GGo<>ZA;D!iriK#L6dyJ3> z0rr0Ib_mk~q=dF@7-OT8ey)}QCnV5sOWbH_#6U6i14l|#%yKnAAl2|wP7T0z9ruJ? zv|m`W`cex(@l63})2FqxcXf5Y*EBdim0TaU;ssKv43v@(T0(gsh3Z7y1!eukLT*M? zbq%B|{4~P@9>y3=F2xY!;0TP1}ZgkM68wEuZg&#zQd0#D zrTtz#O+et;;Y4GRC%d|P9zXS5N{B0j`2Oxa`=0CW?k^rZ)QNq2_n9BN{e!P;ymmw1 z>)AsKI?kz$hC}amoMOT`T`K|ALVEc|eZ)=+|O*S<)puV9N zRaFVU>mvli;Cldk`b_QrxmsBeVFL6?iQ@ujV+>KEP}D(tnMbM@6wpNU zi;o}g-1*q@MNJtg-`@&#A!U@f+Hbhm8c_-ixC)QvHU2eAaCw-*RSGvp0fPYPS7DU{ z;l{q({us&%A&_p9d=9jCa_vYcjijVVa}$d!fy@Lw;>2TQ$+FV?&GI5ud1JblDC^-( z&%AWtcz3VW+%iY@_Z@NH@PM}dic71PE?%^}Xgibp{($7tsHUpz0!=Q}&5t>gna;^>>>U{C%zx-8aCF_|z zcX_<3y6Ww=W4A=3)vhinYaM%NFHryO2;q`}#8qttB{TNTt)LuBqC8 z$ER*TaqG>$n{e*dO;0KS2Oj_R&kmIT{ojA(f4%NKbjwXQBwAV;J1C*db%p;TgwMr# z5i+9`S6;DpSt!iEarK7FVwAE{*F->bn1+F4M~=nL^e>rq!D2BHA%SpvnFf&DJQ zF(GkP7%+)vq(~`+CSKHLgP~K(=sVk2g!7_sRTafe1`rZTLlEWhW`rU{fPczrJXoMu z8|FCMQm7#W5k@d9gI4jWk3H}H5VQukl%SMAB$G(*KQQIbIsmpy4Ja3_20>ctSB?0@ z-1!p}ZBPK{RJh3RpSUQEffAGC20c63#d5}^=YUu&1qCN*F zz*rcL$l{@g9w8$mm5uGZ@ci>;hQp!jJpjW5iyd#&mx1G5|25BDov4DaUH`g{SAqjR z?S&U!rVsw?;fn8BU;m)K_`-AG+O99|4PHVX;OFxNJontDs^nNY3?O^D_fR&Mx35}% zSxPBDO4t963|h-ldQQO+4)X|zMk0}b5V9mb*1j+}pLg)n2Oln+$^Bo)m=?;v7s{JA z%b_qJG%|`{3D+Jkdg|&D8P7o)VU}`$y;L-^BAMrRhkeegb5HP3V$&o zuuo_-a*g*y6k=3ksY#KQ1Y!!(-t}EKjUY0Ih-!o>Lx=z(n?qrA6jRA=i<)4s zqcKCeSi%jYr@%?2fJlgAsI~#ZbxTr>Am#LAMh+NbF6aCxV{FsOOwq_IBL4T{CB`TB z?s?-!XpjH)ce5_K@LcZNVnXR&DFtpC5JKbSm$yX5QlrH?@BGIJ9MAGqYmAYR`Re{iU9^GzEwA)F#F^Ur8|Ezfw#zWhBgH)}p-CtTu0W>)fHBNAyeYpD5=0SD z;$;d7WLG=G&qGANuZoe?Aqt`bR}ZO?A{2LKf!`Jg&NhK=0qnCS-e1L$(|Xcd#&Qb}aeSz%e$z+=CDs3MTnkl9(Y z+EMViyz*+1X)qLuHeP;t^Q)e}aNcZKArr0?<5er-_k2o;e7>j|=OeqeK3CD(?;SU7 zAQ!Gat5GS!gi;_>mvOxsN+^Uwp`Foa_&<(!ZawYf`uYtwo7L4-?+`+)LRn)xrGZw@ zs|b6r#eAPL&t+rQcqTmn03ZNKL_t)XPEcTsz_FcyH5ae`_!-MixI2R>a4m`Na7GZK z1O?8qM^ZFEq28o$wLe^iazHD%gknT$wTP>=5vs1Vh;HzV5rX0jFeDWo&q=HgQ!F-s z3&RBOs^M@5U=soc_|@`>)yxn9LY%`<8n#prAW)RU1&~%6IYRx0^zpsez$-?U!@V^%H9y_6^My&N!290!cCvEiQq#7JAe6!|n9sct zFiv4wVWiU8Z98`Ce4x_xELu2!gJJRx*L8f3WxQ9DbIipl1V0 z{5Krq98W#{yc>(hD{{10wB&5#@h6`C!j0E&#L)2YglI8vq{wD+Xl`u8pZv)ky1BI( zp>P#aC~edyuGjIaLPU&FFE zvRQiq$4Dtbp-{xhlS8=a#%twIe)PT5zJIR0egj&X8fhYtVEJ6ZQzjBxO0NS+PXJtj z)l!gVma4ssEHLEmU*FC%1DSRYCmkPR^VI*Y5@( zgn*l-XVoqx3SP>o2qC=y4#wm0+~xy&BUMDpwOjYS@rAX11x|VWm>Qbs3GFY05F9vg zICAxdb^N>E`KL+eu3E9eS2riNSuw^?v>hCLl?vzeH@#Dvmf`bxe($Frm@~#;8XUvJ!ymu%TVEfp zWGy$ob)(tX)Ud&JoJj*c2%!+d1tAn4{NQ^LjYeUb%ujEf=Mo6G+Ar}upSXO&)`o|7m4!gh=2Fjn636hzbpC?$CD<;}*EPd|S~BL0I14yh|I zzr>A3B5)kXZ{0by!shq<`VW<-3K-}9ytSM9nP*-+eE8V$GqUePz&k9iFNF5eEkeD9 zajG;1ZH)mzur5vz*8*wHpedlGLYPquN-YzNSThXPSVaj&rGlp3a22IBw%EY03lfed z*ljB;G=L7n>k^1EifZPijxGVXPt6pi2Imwp-@P^i4NWPyRv=nJXoiB)plos(foOtG zTOvvb=9&aWH94Kt8raV)@aE|tltTC|g&@QOG{&?+2ytCk2qAiG+urf6cfD%>cYa+T z7)_JcbB)h9pk03DwQF2g)DS{J=)?-A*Hj+C=2y1Lr=NL#%2LejfBflgDa3tW|Hr@i z(uNJ|cmE;QR8^f|HMO~|D0T49>WK{*3lKuH$_3&HKH@!73iUER@n^XKdN^E>SOfAX&tM`xE^aec?0J^Qaa@0^wJNcdAzUv=yz>rd8}{v25i9 z)9UMLnCrR-%puDgt_cY|*%T<%CCAuOvp4g6+UQ+xj`Qzz?)7D8!*!t0D-T7poDJ%S=a6y|WxBh8y4 zVEErjATJ1~gdEaZyA-L-N2Hbu&qp{C!g&8LDX-XjngB|(kw~OB5{cygyVv-P1KPUF*A6EVaR|Sf zSl;l>Imhwi$8o{xvw!rHyYI>_TXn&eRn=ADriMm6eR>P#&zpzot<7j`s7ELgMmS{Y zszic(?VrB&;o+g-=BDOm-PS(y`29cm*PAL`&ovva?3gvPZDp}gL@>&s9AJfz2w4`+ zKj$ncXt+fefQFDRT*rp+y9!D+D9YE}D1~SwjNN+=?%J|-XT_1r>^U>PVsIJ@_^HY6 z9Ra}c(sZKn2$%X?nNO4l140z@%mWPr$mNRL^!V`|W62E7WOL~6@5Au$ zFc}?9lFxnS6aTSf@w^iU4~>vR$GeZ68Lh^=s*@6nY6y6WXwM6c5Ez6(Frdd)m_<3- z8Q^N^#oL;J5{(cD`ZNx83w=)$Q|lE-bDR*16AGmj-V!D_XlulY#x*epS8JR@Jcrq| z_T&|AoFN2YuM3Px;F!(O=_<_OzRPnib%_};0hN+d1+BO>0K<^*m&L5pS<*v-S%UTKeaI)k4K`Bh>FLfsPUtt zNH`2D9ENEy2r2NXPkc0?l!j>;=NV7xJ2 zPjCeBBBY?22*3A|pkUirzO>_8fAQ&$S4`4ezwzoNjB(})F=04vdBc0T-F5IVdm>l( zk(uB3sTHU<9mLacDvg@jnw>Y@cy3`ey&9pMmf1!P-6J=^gxIPgT|nvaMV?p8|J8{1g>Tv)a!F( zgu-M@G;{svqXqed0li?p!N^KeBT5vACUCW9z6cQ5zRs)&udfptFaR)0@P!eH0R==U z!%^4Mo;495S`?sKfq|f%5;#ob))>Wr))>(od7+TiKvDst3OFu2uGRrT%vR`;8Vf9f zn9``HfJ=Z`i~t71wEc&W8%m*V-W((sErDTKV8tRL#R8n4JxD_H=23gbjDq7hCu;A% zH@E$~<;KcQJKZ-0psibf{nd_eFHu^Kx2RzJjqf-P>g(%42z^gOLjykW-gl1MUK0)1 z6{WP!^X&KX@o+fgn<$3x<9i->O>f*2-90rmH8mJ5iC%S?1FX->z|*49lARGP6%5AR zY{vz#N^4kV2t$LzsIH3UU(0%yF6kIFxZx3~l$4xT$3bn}4L1O`z@^p$GVVulUMXKH z<@NVb0>^PNIyPqC@yXjO=8SIp(0jw}?K4m;+7m#&WYEVshDVY=JJNaJ$uqHsR-b!L zRb6e(dprvw&zV;FcGnsNoN;8bS@-@2e%8O~#V50PgB%}@!kTN*kOR+fnGg*|0Y(Tq zU7%ZOT*eg)!eDFdIo>i)W0_M*n^F~@FJP1tY?&Q1o^v=ZqK=#Ruc#)8@$qq7Ykakq zmeEsW!izE3)9?i^f#$4=6O0K01Hh>NnL{q{%e=;l5QPLmuK;oq*dx99o!v@dA0u#b zE-2B^WBrJBk07~eAKC!aL8HBxMow$2%;%Ls$Y_j^e5XL{GE*e~JJ975;eqj==e#}XBT*@}y27V?Eg5?Do)4f`kuHRX$1 z%O_0-#+Kuq4hmY+(o2Ie2FDS20CU3Cekz}^Ly$$(nZi1zEK)jEPj$qcT83%#f z8R5@9cKaV`ZZPC>xzbw3xf$>2rIdAcb#;9UZ=j>V^yplULSPj{2)v2voTFE9NC+&U z5|kKlmFG@N2?LQXh9r!~9o>kb&f=Pn{n;aJsot0|Hqwq0Cl-@eVb23W6sw?CcnWPi zVF*e}1QmOrSp#(p*rNeSH0B!w=NZ7D@&vfH1}sW(+#wi&#*ug(obxV3;a87fNDEBM zCULT+5quw*TtuuQDJQ^m(8`e zwUuTtOiZINp<_TwiJ(VsT(Iq(R=2pW>pL3g zN$KV|p{ynV*r^T{r+$}6IE>Me(VZ{6xM_2x>pAbdRUZmjp~bEg69ou<-<#GNRfzfrv4ba;HBY5jzWmk_HDcFu5>-qXDyjNIy$<+V7%lI zT+W}FriG!Q5xnr?rkXRghko#*d)+VOcV`F2*zMjJ;-zZ=fYMDiM zxVVvOGR>RRM*;1Xvw-tWV8-+oyk&X= z-oIofzEVr^m-8C&(Ti8$OLH6W^?HU6x7Fc-RZEBJYN`%a)zuEv+4+>#I{bRU?92ih z33p_2>9%f7-i^il>6MiNbC1-^U?A?2SKJuFu=|KJTrjvU_= zIN9n_`s}5i&;Vz=|B7{QsaSBl@!AcG7tWt|nd3N2mkRotfko8QAA z8V2#^ndTHlEu~1%iBVxrX`~g9lt6aL3ZxsGkzI8*I;3zzD~B;))N}C z0nZH1i^!N?(JH5b2*P0#yZ7wv{PB+;sHoAn|Kwm*bt3WChQaH#P=J&rPHfyo(~Cla zmYJaHY1_8YK&kag2+yF=@Dk&vmu^2{1MzMeY!9Ra_)0XeIHZ{35HMJ${pXIAAli&X4muO9O0)s=NAc1a8 zYcT3{QS98gn;VRWD!pe{t-su!HM7mJ9Vc=s(0gMCUDVc85C8PuA52O&=Pf#iL}Q_u zu~=eyO>G_8T3gWEREMUfdNegQVrKhv2&HJ>;K=T4)~_3_s9uAAyxeWaWf+ISC$2HVO#fi3)lkpLcXe$AT}PIJ&F1lJ&gvUGE?@)d`DH z>h(O5@u}j3dNUF^<9h41U8z(mDU?=ZcxaR^Ufi+$oU>NEG%}W=$z+mb(pd}+j^Je9 z0DAidFgP%T&cla8_4U>J-}Sb){^V_MyS1Wb?Z(E2b%}WFMj-_Q0jTo6n1+`=B;rwQ z*|yys9Zsc&dkz)9_nq<1g+aWEeRr6l+WcP42)4c|I+6C<4?X&(SzPL zYbkm3(Z|AH{=2`_`CQ)TS!k&NpD+R`6kguEW6GXct@NVv&pY?Wt5z*vK?p@nJb_p& zf=E1qNHl_m#s+kCpG03@|62i6G)G|Z!ujs3S?vW;251u}Z!=_48THve|HSQUF23*$ z18C1lVthPAC?gsL>RJ3~rC~6Fp`yUB?P5uoBMzY7Z&Q;X;6y=6=wIcv@L%*~%a$!s zDP?mg9*^(;=qG?*{Su41kCu2|a|(d*9l0UlIctOnndF{vDtA29XBY%HU;}&e0_!Y_ zr;8eAP4N#3tn$pp=6UT54iFbuOl7r(>bFx0l4Dv5K`&)2BDt%a?Z8rs)|v zQtFfNzGuH_TFB+Hg=e09?vtChZtHh#mu}m(GxVuXeQfg;>)uk4^8Z&qzpvsebkoh( z6+1c>x~}Vbqu6MWZcD!%i-B?Dxt+UrKY!}ES6;bBtz5CR5DiCR7mHpWY1s>cdKJK8 zE}#F;o!hq$RkEI0vuD+C!+2XZQ>fvb1HQSl_KOUhaoBFree^d^9G>d@`Sa(mzU8JH zmR)+ug~;d9P?|vc3UODsXlZJ}<4-(0bk99Mt+=Z7xzB&G{TC1YBoge8a?TO}!r>@h zdU-n?9UV&m$h=Vi?U=v^hc(WfL4d6EdP*4aTK^6fH7F?BI02)8lGN`9_FZHM%Mgga z@*`s-lgZQ+i^V3TRH)zz6otlq%`l%SR8fz|ay4N4hLEM`)l=`l2&(s|gjR$AuRfX6 z`+p&#!I{ROqF8S-v`{r^iaG%xq4B)7aG_z07qa|}s?5+)ODPLVsU+t-^`-)}^DnwI zF>QM5ZG>Q2G#c?s(iD^cnM@8+NqF-*C4_L{IufpMP%PN6Z5!!y8tv^f(A3ma0=07F z4~IkO={bozzxy8*eV=GmEBW$Q{&CTdesJf^cszkzZUBUOeUG3TQb<^)iQRj;R8@8L z!_PeNXh|6R<-h&HX}LzRP{^ItK0|A*yyjr7O6qrRnHU-wL32~n&J9;xactkNiB8^! z4|j^U-*TO(tEoZ0Pyk_`{Y)S~p^Rd9I9XV}e92bGWJM0Oixw`7uV25e!<*?K5j1yG zLOr{54RFIaSzlZGr70`Ow_Z0|Usvt)oje&T7Hxp~jr+c-Y%Z5UG#36*Pj^qnBHwxQ z=G-oYn6LG?ol^OmKO72U@BYr0UVLeD4sW32GA@^gG{QOI%P|P?^|eDSmT8t+y~?9mk0KEzA$vgQxULJ=bzzz&5{U#lx9-G+&;AB&a4{-8&GK%SW>IvzfL02GQkYu835Bru@=Ia(fadx>Xq@xFDhRIYI!dVlrBqLKb#>-V1!z}Z zxsJECHq(O#4?82n!_HVLgIqpOT*oe6zwz3CGfiWxP$*z5okl8^#L&O=&J|z+D|<3L|6#XD1>McLKsRZ zgri~bwi!qZ2U*UMuC0e@nqZul`Xz(HRdB7!xniv~^7%Y6nGBRtsH&<0V+>7$eF(cY za%3EY8Gue(l^W8u#5f333Prs6p+lfZG&hwh^TF7{asZW5<^UWs4CBby*qD4%0osux z$5NadUxbqX{>tXf&XHrs(c9Zk#>P_ir~mAePyD{~|KT70xq0c5j@t@_!lZnhF^XI+ zhx&%PO_^kOMHR)*e&!Rf9Y@yJ*CC%T_~YobKd6QHg$jTXdgtbsHus+H>$7Olf<)Vl z=~ru|BTA}L@k1*Gtu(?R3n%k=`RiXl*0p#4fk~Ds9Si3#sjqK1J6|jUbbPXU(A8jB z9LJ6x@4xS-4-HhZo~D*X2BGxYRB~kTtoBxnNd?L&h(C;m5DLRE@Z1ZV;=6Y5s|GLu zKsr{eX*kh!@`I*j8QEOkJCAx3x};JFhb;8<4dUMW9%{60hr^?He($kh{=C6xGy>a? z(#I#nD^yn{aJ;)0|Ni}dI}1Q*$nm13s~6_;#l-xD^VIa_X0**{MSVj(8tUuO*jR_@ zGg?T&E{-l=y!6QFxVImjzaWt$Xq#?Qj0i9K=gey(8c`G@L}G;j)H8)XK}wU&v{qmm zctKcu4oD)u3LqMdMvKK_qm(k?4N!KyXv;7mX3g=4urlB(FXTumCk*)Yqa@^VIpp(s zxULJ!vY@qwZQE!IaYP9wfbbX?dZj`m0seN_#rGTeBoO8x*q@iEmlD)8OJEj6fx)CF zDP;k`Fo3bEuf7^@DnR?u55D69c*XzqnvTZi`DS--|DP--9R1i}7ks0y1MFPih5Q|0k6&?G*fu7DuZ6P22(0lULRn^F3bD*R=di8wb zgpkTKtVhx#-J2?^%3ZUb#p029iA21rSn&PN;8~1Q5KyYY8J9bD?0)ixci%tB7U`xN zu8DRmoU_WcT?$Qnk1_&K1`3H#$U-We9C&&2rp>**{S~#jw9j5PyX(Y>Rr6-IBVQ;? zuy7^>Ff9`!LqkZ7rN6j+`?l)(`ua>Zm#e++{$IXBxFXch*r2Ntanx2pr^ukxmE0S04G&|pMiukg~$b^~A_5QKm#uNl|`fepyn zOnv?d*AM`>5Tcn7GLuqTODRPt6dI4VI7j)wA-Bx#I!ODGmV_ZJKxq)Iag`eL4AWM#=D!MSU<}F*aZ|{LW zy5PKXkxHlirgH5O-UNt*BiO(HAb$1O6V+$pJ03iENUgbWH4MXqD+(Z*KobRM3eE@| z+eTMckA2k@>(Vbi^V`X!^YIhvx@$U+Opf`!${x$Blm_PJ( z^v+Z~7DvH$yrD13C#&Jgg{pU&TMMS&Bg$w2uTvya66%1eY$TP|a za=ARJs^WW)LDApA(5hFLE8%BeZ=vOTZ0{j*eo+^j3WL&VOkRheLnM z7?V|rD*n+Azt0R_fF(^HycZXN_u$`m&jY8e%b||Y_(Frk^3qG)G(2w9q#C=6E~o+) za05l{%{Zl$Kx!aN3A$WG+KD}!J+Vjk_V!x&e7-T4%T3GY^VPO(!!*r6Fg;nmS3`ZLeVDpb6~#>AWtdnVT>KCtE>Biwx^vjKzr}|ZmWO(#Vrl<=Fbrg_4Sz5 zHWT#?)o5*PCex=+SD8$HXx-&&CRIB=_xXLb0qeQj zswj22?&|f8t*y<=3x(o@@(d*uQc2&Q+4vbiesM-p@}tMUP$=4q6N&i5lo|?@S)ddW z={TqW03ZNKL_t(|=GhlhPe1q4B(2W*7hgW(@ZqE14q0Yt<4%ZR4T@xc%KrH;elc9> zdO8muiJ$21Zdty3F?vt-m4?@N#=r{Pu&`t2Znk6Rt{Hd#_}=!W#(Fari=w8sR-2~j z{M*0(@Vl{Ctf_pGyw~HZKpBT^JJ_;imv!MqtM&f96$Oo0wxlCJZ|*GS2*)=@9M@L` zkx3|I!89#6j$=8FJHdH4&@q<&obzQlBgvb z9b6-?6ufAb0a_tKfP*fEex38mh?z_#thKIJO4Um5;N=`uklGoBQR=iwrBWyq3Z)1v z0RI5MwAOHZBhm8DVYY)s5Xk%80UF+Vx*Z8u8(7FGW>M{p**gVx%K9at0`sQZD?qm+0@*GSS*UVnp(u;QPk8{Ar_6= z#iIBEfbX7q{tte5xBbn3`I-1<|_&)dy6UT@Bx zJ+nFQ^NXjZ)Ze6164``jyukE1rdbF4M-{U)6c!MY1{T)=}OiUj!(0;Zrgd$ zEjMrEnREu8En>OkfcT)Lkk98Q7*LjTM&3GP8UM;)JC6J9Z~ar(X~{08Ej&L))E!zW zc=3!UBsV}XEH!!@iaJB0*`i2Gk1utV0HYK_1ImgB0K>z>^|o!#R7%wnLTHd~ zp8EX)4lJ2WBArgdFpN?*7=p9##aMiXh4a9H9|5fxMEF zK==?3Bj+kG$0}A;g-|dI6SiH%@1A_hY;9`vr`Mj|mdHQN-3D8HC$Cy_0t2pU#=+KIQ#77t*z5q z-ldi1QYwH_=rUj`|2Kk&?bJv$h!V@Ks!Y?si!Z%m{@s_q&OZOSJLDhwzOIW9vdpB^ zmOht36_lnhDZwEj(Jd6##W)xQg!WQG4F#?h#uU)Vx&B-&)RSGBJ@wR64aH)yy-+CB zJB~v+=cN>~d_tKJo|ADdmjmYB~PO>do>934g~o$)We=cNupKxhny4<8-<@lWoZ^2@Ec=%O1LqrCh^l!vjLGYk$5 zed4a~f4idgncCW#=)r@XcN&aAN^dyrc=_LZLuE3q^W;;{og7Q0PrKUuk8Z!CwtsNA zwy~)JnT+r!uPd*8g}~Rt9bk|B_NhsL|B>52Men`$q1m7MjnJ zy_PktSiZ!W*4m69CHE*23g{rw(|%KYy5yK!UQs(WN*o6s@17kva5%K~l8e}#-~3ud z>$&BojrsZW<|^BEeFt8Y#;uiCJIiGpQ@OdE+AGXC*Dr5+xlD#lHH~lwtwLVLLL^vV71B&;uA{6MhJ&Wum5d!T;Si*H7rGQC+ zypVlQX6^moKYCDSGMTvRy3<_Ot(8);pmI2YTJS;1G)=@}F;rDmmD0=rSjyAQQ?0Lp zqJg6o7FiUE(bC+Rs3zFw5ablaJcHtI6M$AeND_~Vun0jx6C5lEP{vC4UkCx)woAfY z$8p?Zu{dnob}|$Si8mFX&6>5ep}HpV9?LS|RlCZmT<_2Md;y(@kJe9h{`B@mHQ}%o zE_t5;CG|U?5ebK|dCN9TYi+4G0{P(&f7G&Y{w(1*&Nz7ZExUp5+URH!(^{Je&cLx^ z`NG1SIWu89E;sO2AHM^ z%d*hZ({C(Zw7@(a_qC1lhHA#%tE7y%J`fWv!3jl1YwVFgoKrMV30nwHd`t)!C|m{9 zn&kP*qx=!AHBm}cQ%dJ3rCNm$h7Sy|Z5x5>NKoC3L?VdAVkOc)(5sbmZ9()Dy!03w zR}N$choFT(IS6NzLKW3$q7qe9gORC0*tIOA6IG?cLnIPGBoYDVJOEYA7)u+5anLl) z?r1dX{-Lk?X-zq=Tz`4{{P}aPvuy`Lh)Hj5#wdn|N0Xfg5B_SZ^IKb6ZV^&0P|ElC zD*5Sqx~5n>itRgh?0jX*_R&h$G=2K?zmLb`kw9%eo|fp+jd=Kx-_{ii#WP?jO=>!i z99#0f#zu^ej7~`1v<4`r7#>MND@@s=`mJx@b@oj+T^sW%QF?;AEg?WCWMapjee9l} z{;d8Tx4gBYD(6Q(@?M8ChFm`D-!G39^JZU`M?ku)G(UO1YDoqYMATY?8yx9W21`4Z zJf2PUR@{AY)m4|>5(yb$3IbRmaL#-O6b5dXAkavTjls6vQbbZL+CJas!f|Z~q2Rg_ zj$>oitoAK6H8nkZ_dbKCo__AM*l{m2xmauIG>C#E4BFQY8_e_h-=j2^n1DqnirSOt zP)5Ntfvq&UT^+qROd|k_g+d|bILzOU0<>@>lv{Jjg~PV()K7c>bm_|;K72&xvYC=f z`)mLBjkAAv_r2FfqhV*&s+Bi4H8sSgbUaIGUnu5%7DFbR!}8@zzwxCn{!PUx=lb=R zE%&4|YElJ;a{_}?96#Q5*O4Q~PP={c{G}^bwzf3iB3&<9JeB0OEDJ}Eoxu0+x_inf zV(GF)AEJ!R&}EJ#%oRk-xh3;Y?S1ipOCOX2*7G5|2C z6ezrLgrx$2KfaF}M(OW7(pkeaIri+`524g+GK9S9s<((tCXduu7WrZUxm*r~f{lE> zfJ`O}Kx6IN3-6A{5}l*Tq?t}}0o zvtMeQ-`i{1w%sCxXp&O$@@io@7zJr%@SJhZ5s5@509ttjJ&}j@V1Pkmb<_m1dJ+hy zl*V2SEHMCc5(ooD1&kD35Z8fSCLsy>M*Wml3n9h|g+khO-P1znoK`?PeB?-?p`o6a zJByYdQb@EmH`TxEowwd~*Ioa*1%U4A?p--+cKcjP31&=hL)bFmy24AqXpr70gu@Y> z?CnQ&qUtpP&-v$_({C7Nhc}-CpDPGe#ql))|*Kfiz9!HVP&>#x4aeB{?p zeC6`XE`LOCd-;EaP(;zvjvQYoay#=Lab=Kv|8p5ua&;}vAbtIXHcHM_n2 z1BC}3`o(MNzAy~)_OVp9p|5X142=wyDy5kA4&u5lf=cJ9P3FN1F%aGc@{Sq&lsOn#oRrc!)j*L^hC-nLD{S^Y z_tc{Yr;N}RFC2+PqHrABUW8 zg@mmnl-7_!z;;|nA>cX!!WGbjVD6mu7eG`xo5`_UE{9Yqh2+>6hDK88>+i$pSPH#8 zCpjf#@T*_`!rhGW?sO{snsi?s3l}~2`+nx!-<}Z-bVbK%DruBpengQ5oB2bI{Ro^A zV3Vy7B|rnya2bbI63TVK33I zJy&zast6_zU16L;2!)qldS%Lc)UoV>6(gf#7p{y&FqV>Fl!J2u#yCI-YHMroJax|5E57KuZZVt9lF^YQ#?n~~jV964dlJJ#qZsHPKwtk!Y8mG6 zo!|NTgVj~l!WD|xj)QD2hvZlaL&GEJ?(M_i&@hf2IYuZU?!38k)A%27gbBqB7MutH z3Vx@fhK6zlw862$UrSyJCvKQEO^=Ld&|bvjc(HkZLzGKs;V z5x7F|p@HEajSLQNtGEJu_XCC2)~5HocV@JDj!FlKI`O+8v$~oPe{+3&B)X`{Ec6FarnOqj(P$=Kp(saPK?P5BeCPmjV zPWBHS9~&F{)Kur!)z#l;S=Ph0 z!xI5(r69C7<8r$I94RrwV6Z5l1;8kS(h`gUE+wev^rKsk9qj7q>1iqy3hl*WvBh;= zlQE__=Oh3o$LA)?Two{ooRznD1;SP-W$C=2;u#FnPD_PaPF@!X?^7HL7)OY)NkfMG zsIo{YJr)Xuwq0?>6>qKxt+}~{N2B4lan8;X!qW}~&{3}B4s!enX(%R73-=&L`~F}A z;cy6j{r&3azkI|wdgMe!YnnM{`HZntW>qvAX2ItL@`8M!h*&&=1BVXdcTYZlM)YS7 zKk~$=*6KfcdwZYXx@`w8yx`nzfA=?^yJyj&g%v$$pa1M9+|Pd&Df|yRW-nM7(@I&5 z4fUw4t;78JGs)3o-SWVJgPG3#+a`eb=l|+&nx1`r%Z&!-iFiDwqtOV$;SdRjL;0Wo z;#WVoe&aQ#B?Z3LqRvbrX--q$Y|}4fX^ou@z`!uaps+OofrJto5(+Vs;e<=E%oH{N zWV6|*>$(kE>uR4HBjuIJ0Hn$l|At|}G)-u&Q79BpEEY==55q9PIWPI1l{;??b@ia` zl}+H*>jUBWSFA(4x@tnplkzRsDWw{o=UtXkI(Rzw$7uny%hp|@+h$BF)YR1YYI97; z^UEuX|5cPWG2ho72k_v1Kl~q=qMft)vW1*6uE4rB zz3}T-1(_?Zdg}}+>r zMot0He%i+fqJ-j*D+it`s;t)9c=p+6rwbuwD5WChq<(qd>SVc&my!nH6#&b)G>K2( z&w^*H!C+`38m||GW1LM$c{%5$;(%{NIqbS_7w25P=>TnbbXZ<|@wrYSk--09@4Msd zsP22e=bUM`?e5*at6gbVy*GpqNJ10=qGL=k#s;_8P8>UlW5;pUwn0h0Ip_T`GgntgtLNPy`;ol)eD;I5yZ6rAnK{4t zm2a_36Pl*@jC_QIa#pl{3rEH@7!ni>QYZt6e`2`DQ7}z^a6kkG28NK&oBcDUPd&VS z%gcY%F{!G0sN+=EFL!R=lW03}0)vA?==QE%Dhp%zLV{f_brc?O;+Z(bi zzw*ZGR7Hs;tI9=fbq$iqN+c`F&`@9Liz_DLh{qG)T;MkkKlT;Z70S?X=I=MZg2zV8 z{OjsI{PwrK<-LhS436u75rRZ{0`XV^RmqC)?%w`NF`%to_nNY7>7}#g%$k9MX~OYr zNKO!qMX+th?$pp=%DWKXyNZ#DPKd8X2|=$Xp;8}U93d0~Qo$+LMv?+eOvP|8lp@rZ z;SrppQ6)dLEV6a`_U*dsx~;D3wmOcZhkaE5MV3G)7Zt9dus>#57Ia-NW^7>~3p1wI zS4Tofv5GRUNhwL3znAAUxLKn79z)2!L1W>goz_x`1X|_Kf50C*RiGSP#oG zPfs`l`I(Shtg33>u^s7nE=<#cWtuQ88@XHo*<22$X(E%(km~BHj_X%l{mWdgfP!fu zpD*YyzO=5rwx;TjuEjs|sRy#bWA&re?&V zIwnnRkqp%M*)Javk3I6s5zozCcfDuQ%$ZZ(bM;kA!MTTMBFb}_eC4Z~wtY}xj76dm z#9~qCnhwLzkw`@SvPe||=7+%F{Pka8$IiXhuYddd^G=tSE?E$1sH*`N9F$QA*8%qg zW=@~nf8@x~Gi1PB*S&aXXn2ZgTIlZX1r3a26qVxHr(d)V96WkKdT94WsanBAl?e$J zc%ynmA}S?z+XB6wz{0o+LMc2)fKmYt3B?0a449Bnf-EnG<2c2Z zQYn}>$O8LRRXws|#R~6D7tj=iRS7BM?d_+wwY8r_I+w%nPzvcx2E*wzy1RSG(n}X_ zyZ!c?pY(FB%;t0G>mS1K-~f92htSd0gYM2Q^bZW6t?fAG%%0J8|9x-Yj{m>?-+N4x z7tE26Mq^`xSh#QjI=lNs|KQ-B^)Ea=;*IpK_kQS-s@lqrCStKzZFQy8RRv}7I0|`N zFBHt50r>Su@4e-wYo^8$v44z43>3@)JV(ILb=-WzO3*;jgqOevM34~(?!mS#2q9rw zmK+=!e0ufjH7|{{A1z*A?g_6#2#Nl|ArKHSNQ+;H>Vgmb<) z7LCsEJPxK%P;$CiJ#*&NFO?_D26ygQ_lBSUZjRwAbk!~hq5Hyz0uVr4;ph+?LrlX0 zM&U}IIwS>!1V>y`(aj|`WW6c?Fio@0b=@Y{b>p7rNdP1iZVWTBuzV~nB};p1VfGdR zYr}w6$}k{=K=C}x_e_`?8&eRjs!W2%V#N$G6a)>O@fc%y##mO@^$U*gydXQ!b$zP@ zZXOs+$&(%3=o=WosZ(9(>Fz;qe=iOmI)qp>(*4&T`oJHB@;`ob_y5=c^@AV$xa_lE z{OY^w>l@srrg5@75kp;dHJY0nk*rLhB3X{I@;DOln0xYM*YtI3H{U=g(cg5lvbbX{*NWV%K)acP~P>guX@*EdgF-_voZFBUVf>bffn70GgB^LY^BXAMR~$G|`u3m49PHq~*Q ziLUD!ilUIPv0s|`l=jU^iRP~#6og#QP>q9>$d@z5-~pJY8z=}DV+q2ChqEXz(VLS} z!u20wBq%?RYMQpStgI~krVMDG_}Jf?01lt;Z+`Nl@BEJoPU|%SszOyYD2&2& zxoD`bi@xLSZ=nE%>)EKQuf~xh$G@FUXV1%5T)b#uZB*Bha~()ui4C@8V{mw|ec955 z?Z5feIhj|OGIL4wo_&Wtdeik+!g72qH&9XZLkJg~Zy4<}Jp87Ek3jc(JPPu8lWg3$ zrTl!yxa!&~6LqyUNz<}G2?eF3C>ls9!_1k}sw1(8{>ZNn;gN@aE-$})iC14=je&ub zkDlio5yQZqy$7*p&w=s_GTdMaD`WVuq#kuS10lW(xCVo@AxJ2CSoKYRGg$%>?iM(j1vEVcdO|WuvkxiRG6sf#$r~UXBYlLbv+Ndrr_d>=35Kq&*6{!`sbKAd-3$1?%sb^RSh!C4k0pm zU%Vi~12;ziM!-Domt2q%l2B+wU`R?FAp|pY1yL#C1zKZ-NhngnA{0Gbh^q{Uef#!R z1a@^5lu{PT0F?sMOVI+Qs<7ej!tyWVbB0-4DX2CiwP&_&2dIa!1mUU)4X7N~P^4gK znpSk<3ijhrN^Sg+R)zng1KRZI^9WN6ny5&iyu1vxH8mL5P>1U3DwLI%U&2Y^001BW zNkls;a9*buxjfnmW|gSJO!?&30L$;*}e3 zTs7j9bIHXEo69RIep+8&J1-iEz|b@(nhMS(nwy){&wu)3(NZa6LTPYQ15)~WSd2*2 z*H*XBn=}1;PyPPf`x)Odm%a4T`kPiPTa3Q`0srY+{2X}(lfv_4v9V5Y+6aVu97ZI9 z<0p>e!2ZMf`Oe{RHvc6_#0((?n4&-m0XN%YtPZ`CDq$>2f;EEx#{61F6G(NWZP59*x3!B*2W zTV2g_c z{}?zSq>nMS%P@@L|B(Uht6%$;^4Ra6E}J}gvaM-a;m1Gt`iSz#s;aJt#$tEJqERgx zi3r2cp=%m6RfSU0^mJX%nJ~V2<_G@bzDo^5S0j-a42?n6bzj}HEa6bl`vLrRqNhyXFd^CC@D{+)4nXR2Y7Hxq>vpjO2LJH<$aZ18i*jeh{a-PJ9a|+%jZ8mVvv|Q zW2#=tpSfaP!;v$gb9rgW&Y59PS(Ulmt9F7eCYAWKmNlS66ic8xgBpEG-ALseDfJ3Ut@ zj0I(p@F{CTaHuN7sm`uNJw5$bfA_mTdT{*sadyPeg=N_^)G#$7I=Z@g07k@~?Hevg zwos6`lY&elfjAJoZ>oc`56Al~wp+anEO&4ZMq0w&$0bz_m)il&ab&xE^6ohwM0(Fjq zXd+RR3kv&l3S*LUJ}jkNfA78bcK^2sXb(U9XyiNJ{Yh(meI>7LtVexy9g-CZ)YsLc zy0!}OL=5qG43S6#eiQtL3ar5@`s_V|1JJXpmxz%+X zpBu+i8f0Jojf6mO5doz|N)Z4kHBce}>icHKVo_+C@{3d^v-N!YYpARB$`WPB<#V9$ zy(1}AaQsAvT3=f|;<1*OB@D*sN6doRNU1LwB!oaLo`6*-;A0>C$XSewTW`HZCK7Sv z^10I@k&MVqo3dG7w%3bUc1Mw*sYRKYzx(gR%ALo^yqE?>4}!Oq=# zA3l7vt>u01dK>x&2Yq0vl!!)RIDWh{yJp>n3zjKduHy=g$Qn-)f8YTMjS2_??BEg* zE*e$hTf<3Tq?8iCBY+`9=Oik(4h;>dmSx3+5Y?1YC4^vvMO{0}oD*LB05RWS&L zub(!m5wI)^uIqv^hW&dF;`&qyV+q2Ru0yo60Kvc_B+UoMDH&r@N@+?dI|Fk1n=hcf z^{w|t-u14x-C9#q$to+W3dfF}Trqd<%)hCqh@+x1iOPy367eX?%Hq&e6^!~5EADw1 z7#PHrS1iM->#jy7m!0UiuJV~ref*sJiN#~{>+5Rn9^YJ#LcRdYc8ZI{e_|1M+ySIN zWwR^`xm>=;PEd#fP@udbj>CtK?fLDaPq&Zso$kHoZpARvT3t6_IW|BjR5jF~a^Yv# zzN5Gd1nnth2)OkC1Q=mZ6@?#dKlaS|&fl7KFDGugd1Z`92E))m7{I8H_BIP9Ji&`P z{-LQ$zF;Ah9yW=P)OI}Bj>X#APYlkUF?IF9J)1|IEX}`Y**Ha2rYMR6Aq6CS{WD!r zaOhB*_|0!0AMqxf)Y3}l&7E26_ip_DoyR#;rl76+-0YU7hFWB^IdCq5Y=S^aB4*B- z_TEqZ<3EhJuT*M?TypU|V%s((C>SF}+!dh|w(Y`*7`W+%mDW?wKJN{uGe2=XkNW!| z0c62LRdw>os>vZXMH}OpJv;3l2Xb-K&<09MJPsT7F6oB88+ifX-?sJ(sjK!-3)`H=Xp>& zP9kC#e8b>T24ND7qM>PA(NQX#tdgbV^B$Lmf zVC7|ZSDzA#7&TX2u{3HJ8XVVGJ5VTtWjWrD{^J)f$Kui7Wzv?C8Xm@xqer#5v!?C) z!29lf?tIs3Tw~)~bzQ&4^*k`e@n;j)u3Vu;qXtr` ztgo35fHI1G2hM)mJMMq4tW1_+csP&HPafoC;piP}R@tuZYV0d^K+~dgSEDT`4kJuq{D3A{#f!mS~7W7?&7-euccX#eS zwD<6#W9G;~CZ3%zq1hF}3ouQzXi3K?0S_`6Ay1FErIf{!?|CkCML{lCKr|LhobNmR z=*R!r^yyE2Y|gBi)6mt`6QtG>n#$lhwvTm!fa6N!vN;&Kf|{C2*n!aqBtar!VEfKJ zanF4#6j8JG0*yC~Z35r!Jg$fQ(1(X7=l;A=jp%6DC@yJc@ zy6iEIA@^$!%Qj6;KJTo_&2Y&{qs17COBf0Vwigv zZ4f?a=!jDV)g=l#;eHrngb?B|#@gTc&Ua?sv;l3#%&Dh5&uNtan4$#!l71ss2_}Eu z8I%YVOGNHfkMHAp{qD?vKtTo?rHt})6{8~ni}cI}3>&z|-Ax4-el z`&CUrpw3+V73JlHya_Hi7o|DqkzbvaSvNK``U_BUD2fWsISgG#M@QEq$BvyiFW_?d z^2I|^2*0!^0+gx&3Lq54lwgXAY~H$i-TDnbde^;oIa$vGArwOR<(KQ4gU8!XzIgap zyLBNJ(p@^OZ>DInAV9$&i649!B=$N4c}mc#Q&1L&G;n_aBMC6bi8GPP_B(FB!Dw%9 zpXfMFr4WKpN~P<%q||;dq&tPBT{y)Ir=O~-BA?F(_&k3|6FQ@Z5A={Z&~vI2_3dp? z2*qfFa7<$`X3jvey7G){F-#r^A-0sVOG@eBPq@9IHg*#y&b?1j)EPpEKYhvk=i*E;HMYymd5gpN}kt*a0 z+;=~se&8Vzi9`$oLuvOn4?UXt-Vc60^oJ*(+nh)w-lA#R?FG}iie6>#FPTs8$uF zE)p?d2kO6sP#A`eE!%b_#&WGLUUF?qDm8q!>)1M_r@by!MS<%&8#iy=@z6-`{l?e6 zAeLP=zo)#S436viyhAquWYFI$PBwjJfK*jArK;*SRaJZblmYDx&Cq7dn7SkqF{(Y!f0`G3c6(UAy*e@9gRt(V8xoFF2>Vy4OGY z`=@13Pru#K(M^{vTeRW!TW?r>xWDb!EfdF2uuKz7Iqe4 z|MRCF_@i{~n_Ff@4jnpn$z_*Zg09}Kpnn0xV=?UBb8cbV=~Jg5o5=yef>RY0Lqll{ zr?cu<&TB58zbieIS>9M*=bK-s3b>HaG*xcgxMky*0@~t*)lJQfvpMI?^FnG2fyZ6c z)z+LkzJKe{k={FD(wy@46DJqWo;?FSJ$=DK<1lm$N7~xXE^V*5MUHPChv7`tZ#{S( z%Hwf#b#@ZLJD71hBD~`ps7SR z7wu1*eBZlFGiKX%lk2*1N+}H|mLc3CtZH1>MLwS|>YT;naYQ1K;_pJ3MybGJ_*vmF zKnQ`dSPV^?0*iZoQXvQ=^?RXy5GFwo4)h461fvWQDzV3O(VNboQOaT&Tp|S~8Dlxd zSld1K+;jX*o1tBC#Zt38k>H&BoG?G#SKzrWo_KOKwr}6Hy{@+Ab1wHj@#7!=$3w%z zX`$(=AN@T6Aq7-Lf#Wzo>h0_A9BDs2z5Th~-u^Fjb@kkF;zY+ihYlWnTUS@_7eD{` zZ)~couQe5g`I&%3U~}_huw?Lqpr~v+v)! znrg)2F?g=)`>P6xSUiG`u5LW>)N|)8_vg%+IpPP<>Jnu@JEb{lJ6T(4hEPb;D-{O-TjZ;e#fm82*m2BZ#>-F*M}vG7iPct^?w^t2<{J$JtzTW zgC79EPky)$mt1nqCn=>ZQuzHl*L6Z2DEZpf?c&g(V+Mdx=`pQXzLZRy)Dkx>zgI+P z*!z<>b?WSPSkt&h5Jm!*cv|dbaF4I zp=L}V(cZpZm3y43iU!ZiLkI#@rSLp1|M&ARowv_){dHGjd~~L>uxazwQ9nsP_VIrtE3Q~P zOHqm8x(+xGpXda(uUX)r42@0>M(@-}?+ehr{7YhUp3gqwoi0 zuAikUk{~Cgv%%qq2L=Xo+qUaD=hdO2MhJsYRkc{wg})1FO!0WU7{GL02j?8AR0=0g zoO>3Ff3^C zxI*k%`2U7sAQFk>48u55RaLeBPaV+Sung^%o37KE$B)w-+k@aD=pT`An)OS-Eh5%G z@RuK}UNCRw6+}vA=tgki2r4SdkjACG52yeaX?b5M1$`WxH5gp~_6_`JN4sy8y z03Y~D2?gf@8#ix_Em^z>YgRuos$(cCPhMq2jQ9C$hyb(*zc)E`O6wQ@>4AS}AMN*A zwrq(vzG)m)7$vUf6`2i+q9WDbFMj#+AC3r@S#a?R`rHfa-nsbV1?cM=417{OL?Swl zwV&JHp=Cl7@`XH@;uGtQn1*yFiT9+jnBSHI-+dq>BPp3uyK6S+`}XtjmAE>dWvLMc2c0SH7HLmt2pArNC88VJCJ z&xa&Tf(7S1LD=Rej_&>T=FOYuan2h6#7icHXF)AWiRPsbOZWll%h!|C=?tp=5vzI48m#gv|JD1EOjbbESP<+81_uX_&lf-$gW!OoFxZamzVhm8y~F9z!*S-# znrcs;+=850@RcJJf03rsStOI?(eHfkhx(WP{U@!b+P3`B=j@?}AFce{KYt<_i^VWF zFa#0+k2O`rrq{N`&wrigYc(~Mf8#n{QEZS>3PX>eukY+~bH$Z6%2+Ihfq_9EY61d1 zVj$DiZEo1`+E8ELz=*Ad#S1SoCp0xlH&7a3P(c|%Pxk;`e)TonaNSj?OeT>x3&Dc- zfuBAA)c2s!broIReZ$YMS%1O6oeL;^pA@3ZFEu@Y0ucrbIUIW&fr$!3C6jPLL5YN~ zoJ4%Z3L(`~r%pv3#~JT=UXu_a9!gk;FpZFu9!@DsWwgUdW;kJdz06REM+-~UkS29% z&mJr)SWu`s>L5((#-Zh+1!urO!ag4Wk5bxA2ECp^t7Gfdom)!({?Xt4a({V6;?mAjowT#FR~9T2Qb<`aEu*KmcT7E@i4!N> zkj>>*`E`77p}7QA6yyqpuRQn6V~0oknN^iZ_o9V!dtBE|`oLXM#LSVv{~(=C`>L!Z zN}Y@`aOpSh0}f~Bz(DF7JGQPHH3ei~aL{gUYQ*qxHYhm+5(ynAPj=#&XP>7}J-0DY zULL;&z#kpZ7^8O=^0`%^I}ni)LP{`&@&o&iu07v-fAYg`T8}>dMB26;gHj4EICRZ` z>v}kGyyL9DpE-SMi8)Rk%ZHp0fu1|-y4?Wx~`-8@KG?^fu!oFgRmn+5&stcXqpxV+N|rkhZ$qX=Fgwc z|I`8P4T+#LrcJGmL?Z8XY%eY(Ah`rZD0$*-dg6(Po_g;2=OZt_ye_h9*S5%&D{uVB zw(UFrcGsSLANHj9$hd}vk6d@{*aN(ZicSs0>WjSyh_l&-c-#V0_#T$ztmC9K2=g%H>|L*E* zZ>tmn?;ylyJW$2}_^5Epv376Vylq?GshtCq((jMvb8ot7Re5=NISPeBFv^$EH4UEY zISUrd`Na9&yZnmljhdj299FL{?TNU(Te{_X*BVGD;!12*BFD3Q1|HRxmAi zu6x0d>XREMUFkwjQV~o60T3>s5Q=`GATKDUs1y+*;Q~+yg_IPMd!Q28V}kx7oleIb z$EoL>mvPRe>$=58erP*)n&IM|#U2RD$*|lGOU}|D7G`dtYVDMS4$24|!GqHM%pg3S z`a#$Zg0K|6^d|tU&)db4Hau4Dd43N~*FD29`XiA@-}v$4|KtJf4av~n|GxVXi$!^e z+NO*KeGV7VXk_V6fBuVyA)zzIkjv%ed*6NUZLZ@&(^Tks1S(^wt*ypTdbkIatR8h# zrZIJ}ufMUru0{+E46`uZj>n_eyZ<0EnM`sl->bYl@j=erMk$q|K}Gn4q!hs3!=^@E*NoBbf7;a6`l_mmcZN@C65N=!ZKJWF?zIDZU)u%%hxWWY zs{Y`-IWv39E6R||=OO)8BQ#w@`^gTJSH#Z?*{Dn=zd*ptT+f3Hq^)&L!Eh#xCw~9X zSp$KlriNmFMhF2_Ay62@`VE_E9oHVQul26`?;`be)!fH4`ao=7#()sRh$`J3hhA%J zXxN`hXT}qWfIKZqXm!4K_T^u-)bWI2sfN z5MSC_Aq+(N4?GYI{q>~_e=|Hh+-lqQ1OVkBAU2#FhS^mp_Y;<(VL2I!IEDdCN(tMx zOVwhF6W?$k(0;5P3sXZ-L0~fQBc4??1^oC{;iyUAJZ9OPfYrZnjRGV4C)OC?QP9&^;Q^bpsuzy7xZw%nM^0 z*DqKwdy%5BSXfS$_ASBy7v4yO5T9NG2_nhq@{!wech_3EFC<+6i1X07lzI}%x zYhGM;-sbuIc{5iis;b#82PJ^Q{Dm_(bZ+)iS)vS{wi4jw001BWNklQr z#*FDR8ZFBTp3we4BA3f!V#~xQ?!N2xF$J`%uU&N=e=0#d1A zbar+J0*OI@0|jFWtb&P5CiA_+`?rny0_Sq3S5{W;Gg5*~kTC_WC-CIctCj!w*{?@` z!6};qLT;8pkB<-uNC8dNFf=s$)6TBm^G;1CO>F6BO!1ed6rfCjkQB$y(LcNMZSRs1 zBLc_qafyTk0+f=cO*8*!s_*zYDNp6eiR#uZJMVHFXNsb*V7eQMb=r95f4`vq_K`=) z_8mJ^P4nG|gy8;UJrvZGK1tZn)r0T2=l0)Ss0CD`G9G1qum+J}RDmmeL*Dyh3jVc{ zp^ge59Ji+48j_v=x{jH5()3p@|O@IG)?P^Mx$Lz zmoBy5v;l42>{-hJ5_dfwkj-VFZ|{Qx9oK^=JV?nQ0(=+=_??t8XqpayV#{kg1|R#~ zA4UzY7(bydHDksk+qS#_E&`}3LnfO;E}P~5^uWhPEiQN2^6TQ+T(-i{GzcyNNg@JW zSFw5Xwj=3u_GU`ybjNY$v>!h?yW>>H7d2G@V-%7|2q~Z&Iu0Le!{wKc{^G7$bw^@w zaPWVbg?vpQu?9kYEigjmDI=nOF&foIJ!H7*ibb@grGc833l=o!8Dr?{AHvL;Q`Wa1 z*)^g7VpGeU4^T#zNFjaRp9q`$97m3vO?jHs+JtCSgCG)8`npky0_@v=I5K(ilo5|{ zK}XFt}y`2F;iDQ4|%YsdpqG zq|2bO7+|27awMLJf2X_W=%^R}nitnyAB#n!9_KzETuMZYC<=uFo_l`Hn9Az%vcy|m z$GP6)93n9MkU}CFjlpr;FI;!sHBVi2)m4XXz4hk3KmGZyJF~gMgxcC_xIuX(xQ|ae zbmW*kc<_ie+WjxTdIuzV&8t`LZP*0fA{+#ZppLRrL1_c$;5+zVj__S(PdjtnVm_Iw*wn861Q_ z1`~EgVPJ~tZQHhY!-ZNrONd=vLq!djfB=V-9%!IbM+rlgd&mToBMJ&e7^D!O1jrI1 zXC~u4s;(z(+irFor^<005<)Vp6u_M`1^4jsf; zg0N%^RZEs25|5T-{1nXp;Y?9Z0XULKBnI$j+WyM{?Q7rswozVDMk0m|DF{?W4Z;?n zYJU2wDhhN%Md}{5sI!UDue6t z!-tQwJw2Asyk_O)q_(C?w;d>AL(qln@B+f-%Lv zW~u_makuW=z5nI&z5m8lS2^Y7WzumR2r0mYgsL(04G!Shr+#OQ<@@4>^rd-TcOou|4|x}iY?)F{R%bX}8& zjvO9*{E4T=RCix?=_N!4tN=>=3z^O3P@YWeS+r>0t7G}h*47rcs;W}Dp6B0?gdi4; z;8bT9*1o*qj9~KC+itNZPMkn;c@reSL20^%&dx5(nmPTcO&ebtm5zPm_!&e3x8?Ks zYZa>a^qoM=P>&ecv+wZ9O|NYqb-8)RumLMVCi&DR*cj(~R5Wf{y-ymzMtKqm_306tPiIbg}K5g=ORWF9qnY;S> z2j8ZudT}~R2!*0(E@jH!J@eFK8~~nt`Z;#^NSkUHdU4Sc;!_hTW#~B7sg7%Eh+l|> zQ{6aOTjz-C3YAdb^?`vA6@mkv;Gk4OKtK`>g%S8#dIBn=h%*KKoDLr=ud*qn^_0@O z(yS{aq@T+RAe+r1olX~}gTlU9SbmmfWg!?h#HlgH&=QTHSyeHXAbisG(8p2aZ-&R^ zc^)B@I?-q}Rb5>@)Y8(z|6Bp>zdYsa>l^5Q{)Kf<4yT541O0=rT`&KmAAIdEXV0E< zR-mPnMB#Zf|H|D*a$*WMD_xpUXzi7hwM49^8kX238aNTo7u`wkpAR{HmvuA!-^ z5t-qvKi(D+@n{_T4;;d_?K?-kpl-YECQ1lulgUcmv7I2bCtwtCYzL~Me(1GLYetQ& zn=+}jFk{Bllx?{&pTEh$6a|6{96WG1dE=^U*%Ocd=A41Ds;cr*M(Mpm2!+rf$bi5$ zJ;Y*hy!{>Tk@fWrsHlj8P>S)*%}`Y(Ak_PGrD!CIeftjMsb`)$Z>hX;<%(EkMFq@) z=?_Dw9}KhEtXR2X#o=#$&9^jt_W9?#s;eruYF8|~%2(lF5E7uEh(@B=xoe-dar4#- zvT#}yGC4;02Z%&Wrv%^}THqsLf`V`nNWe1?2@vW-np99IgdnNV)t~z81F!Y<_1$aR zb`$5Elo|qu(hB=v0E!x9rKM+Beuiaf>0rPQY6Pi*iA4%vxxwIy5C{%%$$g*K z0QRB;swjZ;gD@o+pb=zr1JxyLgrJ8f9mh!l=r9bUf5wa%?wdBCt$z0RzX9-@GfJD; zbI$p8BEbELc?e)%3rCtM?reSzs2-fZ$P+SLN3BvK#R!p5frKo;e za(sewK4{za(eCcMPsI##C-zw(y>a5lIT+3oi-?U$aS3do0^|u;ci_ zQP=a6TAF+3&YF>RJkJ32u{gS+A(PEuaA5F^<6L?53KoyW?k$*Bv1g$w3i5?K>Kp4` z*t&V$?$Pc)S>2NC?(Ug8ch+=tb#?n7ODR!SR)*)-tcT;;qgEri{+7EVW%2lXbJ;>Q zWxnVk0sP*H!g`Ojo%qqN9qXKt`;^t0rtyuQ=lPRrLVd?204U^5HZa$Ulun_%Xch?L_{|*G&qbWo?3lIF!}sv zKV?4i>~q7GAzc^c%&5b z@dA4~8$bu8bfczeN2g4gQh3t_w7$N9>DOGn;wz42)4JLky!94X&vRMWBOt^#Hf2oNzGc%(JH~PhjM9h?5G7C)e^O%@2Db0q<8I%vdrXqc zwRP2h!G(zUc4@w~mm~yKQFaXsq<(ouK)q=B7ZPRhm=`J_NPoJU$>#CG3+wak$4`v9 zLHf2kZ_^qY>-0h)%=!crM$y+lh&i)oKKR{lf30`4pLyiSQLVf@?nGlTn1e$_$c$#F zc=^>$wW^}TF@mY{;>8Q&wY4?3x*m`D?%Kp>c?j-1$a7INKlV}jB)}Mk0Aq?|WfG=k zWA*Bn&fCwt^UfQgYZ2sf1t_ZOgQPVL!k=6$JJZRtg29u&rq&JN?jUp;Mq|d>;%$ z-!3Y{DUV>oEo(NV|8_9 z_k`wguq+b@$iWpA33PV$qN}@i)Xm10$#ZBVV%%m~&T>i_Lg{S47mD2c+V+iy4jmg& zUg@5@-YToBlU_JU)(jnt5~!L2mHCo2Oi`ezD$5f)22*1%V+eVhyJsD;-t^Nr?b0fd|UfT zH#L;TP-+;}$+E6>YoF=E|ASjLn^m`N-J0|~uU1NFlx9h#nbzy&g2H}Tsj5b)PiLtf zT4~e1^!4C}Q%YSzh>%h`p6BHOq!dLd5JIGsQq?p~C4^)F9FE81-JEk?C=~LP(vF&% znj?y$bOJE*`MjOWkK#Dy?ghX*Im2PDW!7&6pmwI-TIB?V>yNyGp9Dz)zu|EH)JUI(%0$XjF>%ZdS805 zV@xoRaSinj=b>mFgQ5HIft@?|sXe{@27uxeXVJy;^B|{{HJB2ZSmX-XJMXxqcg^Z2 zMs<-VPn)N#dGX~B&7U_Dy}c$VRUm{7L)Vecr1x*yymjYjzt57z7a{pD${fq~ z!KV^X75~3itXTS`IkTpxzp!ufIp2TnHCIyCwblOqe%O`+$MxXY77C^b%kj13Ez3eC zoyCIrvsO2cYuJ#^6{u+zNG6*_I-SA3{Rfp}ZO0BynbdrA=XnN?Lqo&+Y}2}9aBxU= zc6OtGFomAJ9-=aq{nppNe9nI87yso`y#RXgCfSZ3KOV7ddz@|CO}1@E9Ovw3UP(WV zQ%YS$Q3L?W7^9)Ikmq?!O36w=wWV80_9lf8k`Q76IH{`Yc3s!o8Dkb9#PvL{S5cG> zN~yy+Hyp=_Qc4A-G!3A0?%cU4#u%4Ux~;9PHX(%nzj|)R9MD$XbUmHeGG3Dsa2*#U z5O)boPmjLi-aFQ>d%4M&Jb5x780bwLJ$meY%a>j@(J+i+svAtEj`t6w9vJQZ7hZHZ zsZ3Vz%4E6c+Af3i%N$)-(Azt}URl4{7|Zusuz2a;d!9SpFP#7(ITSSp&-LWy&D*^# zTXq!hnq@1lqxJQ*#r_8&6k++hXZIof(BY$_Zr)#d>80AZrp9-3F5r3|RMjsn@_7@} zr%hg0Utha@w4eExA9yziAtF&0hj2Y4E6TYL($RFr4jwv87$w7B`245k$l17_mXd$K z^JICUV2X4mgVfLvI(z#uG?c~Aa2mZmy*S!-T>Zz7e`wF-i4%H}D?my~T+f5!xX2ew z6bc3L$iu%r?_&6icfZTUIgFSO?b(d~E}N7x!a1KHr5rDWh=gk)?3V>uk|TuZr<9)1 zH0_wK>jR$W*_x(FMNxFivg#?NGldYXLWro8k_A~AE$O*A0J5s84pT}84Z}EK+xB`w z$d-nNhMq(s;ZaKYoH=vMpdS_S$F@F24s~p?1 z;Re(kLPTi#YgASxKhxCI_|dAW3bVdGsZ5I@)A37?BGfW1cQw! z3J4GotB{Zs7DZS{!bqc$Jd$Qcv-RHnUccq{yXWMO`$j+(ER7c-^ZQhF^&j2+`*pwf zyQj}R_nhx{I2fhRMhuBm+1CHO^K*|r+xs7R^4L|q?d>gYpHZ_SP$KmJQ@c3oASc@|{ke;Dk+ zZ$JFxr*FOOS*zsU{D#;1`1n{5lvcAy;8GL~hE*lUj-P0}WIP%&5@Z7J@ z%llmCx<2O{BQ!oY_Tzlxr06{!jNDyNyoO5N&$~U@xP|%IMMT6zMx95vDTm#hGGaWP zWUrqTJl(HVpt}2XPumaSh>j^r^%>_D3r8bLAXBHH(Sm}v$nZZyyq(QIfBuA(mzAZ& zks(66Uc0tfEWqW%{x*y-jR$@;54$W>O2sNhu} z=J`$jKvx+_M_x`yMs4LMI;;W06uP@1RMXdIJyuIgi*=UPVA-I^$ZMC6N_byP8{K>k z$KQCL!ar|$4~U~N4ha7*u4-u4W{@KUOmNtJ$0Sv)d+aFL-7Ix;e`(>kZ*WHxmlkW@ zWVC+0w{xf9Be4{L8h_I%ub?nosK}7KrUsDCKSdxXC&LX`+JBxssfFFt4w+}Jl*+yf z7ZP54!58!^>uw+!HZUbqQCsKbbFnw;1UbAexw|Qd8d+Tp{m)#cW%cnM;`ua-CbI1d`zv!@<`Sj>XMo$TyX(1IfKo-NWUi*I+=fB*X5 z4AXlte5dp3>A`sIcM5IrA~JSMn+=j6xTYM7t@0h~3>TZ}`tiMFs!pMqrt4@mz8%%R zG)PMmH*g{Qz@6@9&O_I=`PQ@beTtKj@6w;Aq6JgR>z1%ndA{oEle(_Ppi%X^Pe6$( zYjvbeN5_N^5aM_gb`?-(WlG$^Il{&B{^T8*5wVyhF-gRahEod7lyC!sx#YSwpBnCj zW$pykwJuw6hCoLl+Vkxg-1l=76p;Pths~#J&4H_yme$7&v-N+Fy08rch1Y^lJ=PyS zFr#Vm{QdoXIl9e25uL{2E|Cp~F9vq-v&W=Opv}1tvC2CMe6`%ry4qYrTyLtPzSFzvH)FNkml&M4U({UezPp zGhkx;weN2$BT7?XysJVnQ)UDjj3+{1R})BG>)>DiM)?G~gSVC}z7GHFv!Ruclr#so z_#gkhc(3pfPa1X7(et!%hAP2*|Io+vbS3!EFRONReTS(vx*yM#V*2Lkw(A6PDI1Q` zY31BDx!Jl|2)%mZ-%r;Opi8}LeOzt((fDwCLVsOsQYJfPR)tboX2c}q_RB!3WsyO& z**T5xwYa)Ggnjn~iX`!MD}=cEllq%gEZ<=)2O4|!6Jv5+J2cPTO6(0zYYxZk`K zDBK9VvmUxydM&-kK5xA6sJU5fFj;GhlH4XXW1d&29fk4>g8Y&#&3U zv+%3xsC&T-CDh)C!as%Wh=Q)Gk}KY?(tHA&e#*=9)1lC+DNRT@UI*4B4+h~e@S7VbBp>p!l1$6W)k}N+2Tex*K#jaVEV|sy z8?6)w2?oX;q} ziTt+{GxZI1HLD}|`*f}K%Hj$yXW%!a?>_qMJ$0xn#piO&KUD4kL#^ElC60lC(S~H zMSeRAQW}Y`i`U$ktm4Y^>B+zUO}oeQH6_*93Nk(C%4s|@A}ok=Jc75*3ldbRhA8Hn zxah3r#qU$&@kv+R!dBLpm|o#pYWhLWtKx5~i)BfW>s35kU*5QEG>(jgb`-2FScqC&=}wgOQ5QIPhv-xb-y3`9Tu zJ8J6cn%dh(qav50juv%F54>{L1Uo8F*N%6}Um&N@b1@ zfh>FU@2y^Abyj_cz|$Kq7>S-HGtA@O)x!&j)%@>2VsR}sWmDKWqEgC6c$2R8Aiv1a@#F3_2%kaQA`*+?%jrt0TQ*;CxaUQUcoEA*-UI2iB}cZ)c_`g@ydf z-}Ln+!3iG5=-OucR$j$>&>$wH^S2WMeQpv7?+kHqHh4$N@J}$twWNU3d~ox*-m${H z2G)zr?BOoSmS0oEe~LOhv(4NN9u6HOQnVQ5P>?3>f~d@)q?Ug(;F6+Yfpw z8Mg3oYjY`g4J!0CUdyNqx}=xijMGK&}N>jE5pS5;ICMtqlBYu+(WpILOf8%i!q%(>WAewkZ zq8g-4rEP?RABZdM>)9;mmDL(r1~7})Gm&^Mw@-Bfsy~hw*MuLJA6P;XZh9iEPUR#j z(6Qi*@c?!PW>8Ib{jW*w=n^w31$eXi0xT=C3e_+0%;tA6KJux+HMy#xeQ`(WE=2(@Wwdq+qDfklD_w#6A8b z1c66#Qao8#F?248J+`uu=y#!A)k_^`JX5Ea!4^`p8g!KK(pKV;PkYpCqx`CDaG1N} z7YsIn-3%C%*N#Po00bB1>GR{);lD9vBdT^y#d~0VwUrN-rN_afL5zYIK_WQD-g+jd z-JGkM`rn!*`RwKQJvI^uxzMYf$3c@qIp1W{@w z_vQf60dX7H4zKAh`_5=h9cTKD56t1_@2?a%-fgqLEXxPkXo?si-IP)*!>V+s3>&+P zo1fg?wlm2bZ?)^fu^~nm7UO%Wcl!JOFY6tKEx-*tP}o?U7koO%T9Mi_%GYKH)X0#^ z3z@JT&HGf#AgGsVHJ8h^_pgpI)ZuI7?eW`d)d{#fZbDb=_i*n6ejk0)K*<-nAwwhq z*Mmp7lgn$eL&?Au=3L^_L{^cK`T>eCdMMb2v-b!kcGDb3vXte3&)@a#*X@1&liOoQx@;LJ7(hrJbRg=BADiBOxvEu^PMMoy42W3(->z zlROD+ouc>|>eBc*0_~lUj(IYB8Eziou>>p=TXPQNWkXLzDi-h5L8CH;6Um-iR!p4H z&N`i=l?v@b>Nf!*sL;1eTJ{mYR5J1=_hp8R?ahFlz3Ec!4Q^wb%Xiz{%AoGu-AJNUz}2 z_m9Y)a+=y)y)J)!_S>2Pw&8YSM`2zQ+E2<^gW1n36&gJx839)pKerW1C-sSuShiM4 zE|Q!;+C(VMf;Y$LRqn8wYV0;js@t2@MlE3X)i=2hqSbO;+4L5mJ+0!5OvmTX;}Q)^ z!$Y0e>D)eb1`rY)lYQrMQ&tj=E@-c6+!;1hB2Pb*$Z;>f`^i zQkmpI?4C(AK5DMIB4#^hoyoh$Y;aWW={&Y%V7hrE<(}>5unpJ&6fw}#mLsLr(?0=; z_D40(DhfJtWD4a~J*B;8fXpk1B__k4Nb0dp`Y^EuT3ZWt6E-B`1=8H*=JR8^7ib6g zRjj70B-B#OYlm{xu9+-{S4?QIR0O8Z)jdf z-2Rvg1;{G6*ndUJ$GJW7*fsJ9b9K2E(+_vvU7???zm{xyfs&d#`(qm2dF9(Jue0rTD?z>T5CMVqY09@Bl98Zb3(41jse#zk6VPr7TNb^gK$a5A*3w3Z zMQERIgIvW9j69koUB~NaQYj-vHb3JiYucwYu?YnF_WRp|$&cGd!ji34wbZY(U_I2H z`vOL}u9Ok5W&~#hmpZ37w@3UWsORGGy~MGju?cQ7q?dkj?I~LDI${eNcdH-3NmsAQ zP9s5&e5DYdOMGk(8WJS>4QsvH7eBuAl}=pzbH z7MIl0@Gbg=_pJK4a?`xep!1-TBN$T=qM61Ua*B3NX5@{Tc!tks5pI-(QtVbJ7qx@F z9IH{~6q{Eqrz%OObH85~NyReuO;_eniD%Ej+=Xwy`I=`dxQ}=niRX^Ta0YV^DP-^0 zc65KgxJ|<~>!lmEdX&?|0p&>AS04KL5p`|xLVVIn@KH3=W9r~eLOP3jVf zVGa9>k(~(O7d#{2_!!F){p$L&>5TiUM8nL5xtI>vK7gy;C=_EtUlW|-mvNaVobNrI zc93R6nbX84T#g3@S*FjBsmIi3KaUvaf~p4H209%OBN%VFl)H(Z`UMa>CF*bH?kE=7r}6-nvHc9b;Pa%l@7~epQ&MHa)-Wj~D@s*5 zU++D_5p)anu{Y!$$7va5myn?oor*y$&|Oksu@>|fNiS)Gk{RIG263tMT%Yh@bQMD9 zY1oY90aMssk~zYA63^Tn>g}X5%KC1ZRshKvH0?fspF z^aBLG&Vuuu#0wtqpYK`}AimFh^uA}NHi>y>MxoRLtARzB?ou@}HS{mftIrhwb-L$u z-mfx0xD=9xA49{=>O(^o?v)_UTW!C3(SiKC?XER=%9xxQA|*x8qqxfL68k3y4PRB2 zKna>Dkp)O6rfQOOVF-y8E4K<9Y(lkrMCmzCuT`hrPBnJ%Dqad~+si7Q!L!3EH0WqG za1eez62=2#RFz0?gxP>IV5W`k_4`nED*KKvq1%jex4ELia@`rt?VuOqQsb3-rj-Co zg;-hRcro>{D9IAbx_^sBp?B9^&pZguaZeu}H*>|s70I6cwluSnJ7Q1fEw!2kVH>n@ zM^pH!pmf(0e17q;>4P=` z28=mymry8PWD15zC}mSd1s^HP0PWV2Jc4A@7L7N@h*cceE1Ro#X6d<5`2nV_+Mj_2 z0CZHIv3~g=esZ4frzTBC1+G&&?zAV!_GKXgD{cAEG$>2udVtQFwq&HCbM#P$(bph o81{=P6SuGE-;@7un8_X`rIn0YPEvA${zH$Jy1rViicR$Y03|LkxBvhE literal 0 HcmV?d00001 diff --git a/Resources/manifest.yml b/Resources/manifest.yml index 67991181939..8b349c0a5e9 100644 --- a/Resources/manifest.yml +++ b/Resources/manifest.yml @@ -1,5 +1,5 @@ defaultWindowTitle: Space Station 14 windowIconSet: /Textures/Logo/icon -splashLogo: /Textures/Logo/logo.png +splashLogo: /Textures/Logo/logo-tape.png # PJB PLEASE From 2fa4f0a286f7b3f4623f9cddcd6cf3c379726803 Mon Sep 17 00:00:00 2001 From: Tobias Berger Date: Fri, 17 Jan 2025 18:26:04 +0100 Subject: [PATCH 007/103] Update nix flake for .NET 9 (#34480) --- .envrc | 5 +++-- flake.lock | 14 +++++++------- flake.nix | 2 +- shell.nix | 2 +- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.envrc b/.envrc index 7fd05db3e5e..b1ad7237edf 100644 --- a/.envrc +++ b/.envrc @@ -1,4 +1,5 @@ -if ! has nix_direnv_version || ! nix_direnv_version 3.0.4; then - source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.4/direnvrc" "sha256-DzlYZ33mWF/Gs8DDeyjr8mnVmQGx7ASYqA5WlxwvBG4=" +set -e +if ! has nix_direnv_version || ! nix_direnv_version 3.0.6; then + source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.6/direnvrc" "sha256-RYcUJaRMf8oF5LznDrlCXbkOQrywm0HDv1VjYGaJGdM=" fi use flake diff --git a/flake.lock b/flake.lock index 7baaa468ea5..1bed402bb0f 100644 --- a/flake.lock +++ b/flake.lock @@ -5,11 +5,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1710146030, - "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=", + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", "owner": "numtide", "repo": "flake-utils", - "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", "type": "github" }, "original": { @@ -20,16 +20,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1717352157, - "narHash": "sha256-hbBzucWOhwxt3QzeAyUojtD6/aHH81JssDfhFfmqOy0=", + "lastModified": 1737097711, + "narHash": "sha256-Zql7TDxEMAOASLSu0wBlfM5SIY+4Pz2R/k17O/asCYc=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "44f538ab12e2726af450877a5529f4fd88ddb0fb", + "rev": "3cbc78cfa611511c04f47c4932509f9dbdf4381a", "type": "github" }, "original": { "owner": "NixOS", - "ref": "release-24.05", + "ref": "release-24.11", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 095e6b017c7..4ab9ab5a3ad 100644 --- a/flake.nix +++ b/flake.nix @@ -1,7 +1,7 @@ { description = "Development environment for Space Station 14"; - inputs.nixpkgs.url = "github:NixOS/nixpkgs/release-24.05"; + inputs.nixpkgs.url = "github:NixOS/nixpkgs/release-24.11"; inputs.flake-utils.url = "github:numtide/flake-utils"; outputs = { self, nixpkgs, flake-utils }: diff --git a/shell.nix b/shell.nix index 9a1b0ca4290..ffd7f8685ef 100644 --- a/shell.nix +++ b/shell.nix @@ -7,7 +7,7 @@ in import (builtins.fetchTarball { let dependencies = with pkgs; [ - dotnetCorePackages.sdk_8_0 + dotnetCorePackages.sdk_9_0 glfw SDL2 libGL From 464f68dad080b528a4459251175d2b93a03a1d6c Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 17 Jan 2025 17:27:12 +0000 Subject: [PATCH 008/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 98cdb20b7c3..22fb4f059b3 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Boaz1111 - changes: - - message: Pacifists can now use grapple guns. - type: Tweak - id: 7323 - time: '2024-09-09T19:15:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32014 - author: lzk228 changes: - message: All bots are available for disguise with the Chameleon Ppotlight @@ -3921,3 +3914,10 @@ id: 7822 time: '2025-01-17T11:35:03.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34448 +- author: Toby222 + changes: + - message: Update nix flake to use current nixpkgs release + type: Fix + id: 7823 + time: '2025-01-17T17:26:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34480 From 166c2fd7783704567d50f4f93f40210af2376153 Mon Sep 17 00:00:00 2001 From: Stubaretka24 <143966631+Stubaretka24@users.noreply.github.com> Date: Sat, 18 Jan 2025 01:59:38 +0700 Subject: [PATCH 009/103] [Maps] Emergency Awesome fix (#2938) --- .../Corvax/Shuttles/emergency_awesome.yml | 321 +++++++++--------- 1 file changed, 164 insertions(+), 157 deletions(-) diff --git a/Resources/Maps/Corvax/Shuttles/emergency_awesome.yml b/Resources/Maps/Corvax/Shuttles/emergency_awesome.yml index a6d0b6e2b28..92cbc96578b 100644 --- a/Resources/Maps/Corvax/Shuttles/emergency_awesome.yml +++ b/Resources/Maps/Corvax/Shuttles/emergency_awesome.yml @@ -1371,6 +1371,11 @@ entities: - type: Transform pos: 8.5,-4.5 parent: 1 + - uid: 467 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 - proto: CableMV entities: - uid: 147 @@ -2922,18 +2927,23 @@ entities: - type: Transform pos: 4.5,-5.5 parent: 1 -- proto: GeneratorWallmountBasic +- proto: GeneratorWallmountAPU entities: - - uid: 370 + - uid: 371 components: - type: Transform - pos: 4.5,-6.5 + pos: 2.5,-6.5 parent: 1 - - uid: 371 + - uid: 565 components: - type: Transform pos: 3.5,-6.5 parent: 1 + - uid: 566 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 - proto: GravityGeneratorMini entities: - uid: 372 @@ -2948,11 +2958,6 @@ entities: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 374 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 1 - uid: 375 components: - type: Transform @@ -3078,11 +3083,6 @@ entities: - type: Transform pos: 8.5,15.5 parent: 1 - - uid: 400 - components: - - type: Transform - pos: 5.5,17.5 - parent: 1 - uid: 401 components: - type: Transform @@ -3108,6 +3108,11 @@ entities: - type: Transform pos: 3.5,0.5 parent: 1 + - uid: 460 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 - proto: Gyroscope entities: - uid: 406 @@ -3324,169 +3329,166 @@ entities: parent: 1 - proto: ReinforcedWindow entities: + - uid: 465 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 +- proto: Screen + entities: + - uid: 469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 400 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 - uid: 439 components: - type: Transform - pos: 10.5,0.5 + pos: 8.5,15.5 parent: 1 - uid: 440 components: - type: Transform - pos: 10.5,3.5 + pos: 10.5,5.5 parent: 1 - uid: 441 components: - type: Transform - pos: 10.5,5.5 + pos: 2.5,16.5 parent: 1 - uid: 442 components: - type: Transform - pos: 10.5,4.5 + pos: 7.5,16.5 parent: 1 - uid: 443 components: - type: Transform - pos: 5.5,-7.5 + pos: 3.5,16.5 parent: 1 - uid: 444 components: - type: Transform - pos: 10.5,8.5 + pos: 8.5,16.5 parent: 1 - uid: 445 components: - type: Transform - pos: 0.5,9.5 + pos: 6.5,17.5 parent: 1 - uid: 446 components: - type: Transform - pos: 0.5,7.5 + pos: 7.5,17.5 parent: 1 - uid: 447 components: - type: Transform - pos: 0.5,8.5 + pos: 3.5,17.5 parent: 1 - uid: 448 components: - type: Transform - pos: 0.5,5.5 + pos: 4.5,17.5 parent: 1 - uid: 449 components: - type: Transform - pos: 0.5,3.5 + pos: 5.5,17.5 parent: 1 - uid: 450 components: - type: Transform - pos: 0.5,4.5 + pos: 0.5,1.5 parent: 1 - uid: 451 components: - type: Transform - pos: 0.5,1.5 + pos: 0.5,3.5 parent: 1 - uid: 452 components: - type: Transform - pos: 0.5,0.5 + pos: 0.5,4.5 parent: 1 - uid: 453 components: - type: Transform - pos: 0.5,-0.5 + pos: 0.5,5.5 parent: 1 - uid: 454 components: - type: Transform - pos: 8.5,15.5 + pos: 0.5,9.5 parent: 1 - uid: 455 components: - type: Transform - pos: 8.5,16.5 + pos: 0.5,7.5 parent: 1 - uid: 456 components: - type: Transform - pos: 7.5,16.5 + pos: 6.5,9.5 parent: 1 - uid: 457 components: - type: Transform - pos: 7.5,17.5 + pos: 10.5,8.5 parent: 1 - uid: 458 components: - type: Transform - pos: 6.5,17.5 + pos: 5.5,9.5 parent: 1 - uid: 459 components: - type: Transform - pos: 5.5,17.5 - parent: 1 - - uid: 460 - components: - - type: Transform - pos: 4.5,17.5 + pos: 4.5,9.5 parent: 1 - uid: 461 components: - type: Transform - pos: 3.5,17.5 + pos: 0.5,-0.5 parent: 1 - uid: 462 components: - type: Transform - pos: 3.5,16.5 + pos: 0.5,0.5 parent: 1 - uid: 463 components: - type: Transform - pos: 2.5,16.5 - parent: 1 - - uid: 464 - components: - - type: Transform - pos: 2.5,15.5 - parent: 1 - - uid: 465 - components: - - type: Transform - pos: 5.5,11.5 - parent: 1 - - uid: 466 - components: - - type: Transform - pos: 5.5,9.5 - parent: 1 - - uid: 467 - components: - - type: Transform - pos: 6.5,9.5 - parent: 1 - - uid: 468 - components: - - type: Transform - pos: 4.5,9.5 - parent: 1 -- proto: Screen - entities: - - uid: 469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,6.5 - parent: 1 - - uid: 470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,2.5 + pos: 10.5,0.5 parent: 1 - proto: SMESBasic entities: @@ -3686,351 +3688,356 @@ entities: - type: Transform pos: 6.5,3.5 parent: 1 -- proto: WallReinforced +- proto: WallShuttle entities: - - uid: 413 + - uid: 370 components: - type: Transform - pos: 7.5,-1.5 + pos: 4.5,-6.5 parent: 1 - - uid: 500 + - uid: 374 components: - type: Transform - pos: 4.5,-1.5 + pos: 5.5,-7.5 parent: 1 - - uid: 501 + - uid: 464 components: - type: Transform - pos: 2.5,-6.5 + pos: 7.5,-1.5 parent: 1 - - uid: 502 + - uid: 466 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 468 components: - type: Transform pos: 9.5,-4.5 parent: 1 - - uid: 503 + - uid: 500 components: - type: Transform pos: 9.5,-5.5 parent: 1 - - uid: 504 + - uid: 501 components: - type: Transform pos: 9.5,-6.5 parent: 1 - - uid: 505 + - uid: 502 components: - type: Transform pos: 10.5,-4.5 parent: 1 - - uid: 506 + - uid: 503 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 507 + - uid: 504 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 508 + - uid: 505 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 509 + - uid: 506 components: - type: Transform pos: 1.5,-6.5 parent: 1 - - uid: 510 + - uid: 507 components: - type: Transform pos: 8.5,-6.5 parent: 1 - - uid: 511 + - uid: 508 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 512 + - uid: 509 components: - type: Transform pos: 6.5,-7.5 parent: 1 - - uid: 513 + - uid: 510 components: - type: Transform pos: 4.5,-7.5 parent: 1 - - uid: 514 + - uid: 511 components: - type: Transform - pos: 4.5,-6.5 + pos: 2.5,-6.5 parent: 1 - - uid: 515 + - uid: 512 components: - type: Transform pos: 6.5,-6.5 parent: 1 - - uid: 516 + - uid: 513 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 517 + - uid: 514 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 518 + - uid: 515 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 519 + - uid: 516 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 520 + - uid: 517 components: - type: Transform pos: 10.5,-3.5 parent: 1 - - uid: 521 + - uid: 518 components: - type: Transform pos: 10.5,-2.5 parent: 1 - - uid: 522 + - uid: 519 components: - type: Transform pos: 9.5,-1.5 parent: 1 - - uid: 523 + - uid: 520 components: - type: Transform pos: 10.5,-1.5 parent: 1 - - uid: 524 + - uid: 521 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 525 + - uid: 522 components: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 526 + - uid: 523 components: - type: Transform pos: 10.5,10.5 parent: 1 - - uid: 527 + - uid: 524 components: - type: Transform pos: 10.5,2.5 parent: 1 - - uid: 528 + - uid: 525 components: - type: Transform pos: 10.5,6.5 parent: 1 - - uid: 529 + - uid: 526 components: - type: Transform pos: 9.5,10.5 parent: 1 - - uid: 530 + - uid: 527 components: - type: Transform pos: 9.5,11.5 parent: 1 - - uid: 531 + - uid: 528 components: - type: Transform pos: 9.5,12.5 parent: 1 - - uid: 532 + - uid: 529 components: - type: Transform pos: 9.5,13.5 parent: 1 - - uid: 533 + - uid: 530 components: - type: Transform pos: 8.5,13.5 parent: 1 - - uid: 534 + - uid: 531 components: - type: Transform pos: 8.5,14.5 parent: 1 - - uid: 535 + - uid: 532 components: - type: Transform pos: 2.5,14.5 parent: 1 - - uid: 536 + - uid: 533 components: - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 537 + - uid: 534 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 538 + - uid: 535 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 539 + - uid: 536 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 540 + - uid: 537 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 541 + - uid: 538 components: - type: Transform pos: 0.5,10.5 parent: 1 - - uid: 542 + - uid: 539 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 543 + - uid: 540 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 544 + - uid: 541 components: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 545 + - uid: 542 components: - type: Transform pos: 6.5,5.5 parent: 1 - - uid: 546 + - uid: 543 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 547 + - uid: 544 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 548 + - uid: 545 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 549 + - uid: 546 components: - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 550 + - uid: 547 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 551 + - uid: 548 components: - type: Transform pos: 7.5,9.5 parent: 1 - - uid: 552 + - uid: 549 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 553 + - uid: 550 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 554 + - uid: 551 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 555 + - uid: 552 components: - type: Transform pos: 2.5,11.5 parent: 1 - - uid: 556 + - uid: 553 components: - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 557 + - uid: 554 components: - type: Transform pos: 8.5,11.5 parent: 1 - - uid: 558 + - uid: 555 components: - type: Transform pos: 7.5,11.5 parent: 1 - - uid: 559 + - uid: 556 components: - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 560 + - uid: 557 components: - type: Transform pos: 3.5,-6.5 parent: 1 -- proto: WallSolid +- proto: WallShuttleInterior entities: - - uid: 414 + - uid: 558 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 415 + - uid: 559 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 561 + - uid: 560 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 562 + - uid: 561 components: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 563 + - uid: 562 components: - type: Transform pos: 7.5,0.5 parent: 1 - - uid: 564 + - uid: 563 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 565 + - uid: 564 components: - type: Transform pos: 7.5,-0.5 From efd5d644e8e5f38811a3778d0c0c73575943a236 Mon Sep 17 00:00:00 2001 From: chromiumboy <50505512+chromiumboy@users.noreply.github.com> Date: Fri, 17 Jan 2025 14:09:59 -0600 Subject: [PATCH 010/103] Holopad networking rework (#34112) * Initial commit * Finalizing main changes * Addressed reviews * Fixed a few issues * Switched to using global overrides * Removed unnecessary references --- Content.Client/Holopad/HolopadSystem.cs | 135 ++++++------------ Content.Server/Holopad/HolopadSystem.cs | 128 +++++------------ .../Holopad/HolographicAvatarComponent.cs | 4 +- .../Holopad/HolopadHologramComponent.cs | 9 +- .../Holopad/HolopadUserComponent.cs | 60 -------- .../Entities/Structures/Machines/holopad.yml | 8 +- 6 files changed, 92 insertions(+), 252 deletions(-) diff --git a/Content.Client/Holopad/HolopadSystem.cs b/Content.Client/Holopad/HolopadSystem.cs index 3bd556f1fc2..6aad39fe247 100644 --- a/Content.Client/Holopad/HolopadSystem.cs +++ b/Content.Client/Holopad/HolopadSystem.cs @@ -2,45 +2,38 @@ using Content.Shared.Holopad; using Robust.Client.GameObjects; using Robust.Client.Graphics; -using Robust.Client.Player; using Robust.Shared.Prototypes; using Robust.Shared.Timing; using System.Linq; +using DrawDepth = Content.Shared.DrawDepth.DrawDepth; namespace Content.Client.Holopad; public sealed class HolopadSystem : SharedHolopadSystem { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IGameTiming _timing = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnComponentStartup); SubscribeLocalEvent(OnShaderRender); SubscribeAllEvent(OnTypingChanged); - - SubscribeNetworkEvent(OnPlayerSpriteStateRequest); - SubscribeNetworkEvent(OnPlayerSpriteStateMessage); } - private void OnComponentInit(EntityUid uid, HolopadHologramComponent component, ComponentInit ev) + private void OnComponentStartup(Entity entity, ref ComponentStartup ev) { - if (!TryComp(uid, out var sprite)) - return; - - UpdateHologramSprite(uid); + UpdateHologramSprite(entity, entity.Comp.LinkedEntity); } - private void OnShaderRender(EntityUid uid, HolopadHologramComponent component, BeforePostShaderRenderEvent ev) + private void OnShaderRender(Entity entity, ref BeforePostShaderRenderEvent ev) { if (ev.Sprite.PostShader == null) return; - ev.Sprite.PostShader.SetParameter("t", (float)_timing.CurTime.TotalSeconds * component.ScrollRate); + UpdateHologramSprite(entity, entity.Comp.LinkedEntity); } private void OnTypingChanged(TypingChangedEvent ev, EntitySessionEventArgs args) @@ -57,100 +50,66 @@ private void OnTypingChanged(TypingChangedEvent ev, EntitySessionEventArgs args) RaiseNetworkEvent(netEv); } - private void OnPlayerSpriteStateRequest(PlayerSpriteStateRequest ev) + private void UpdateHologramSprite(EntityUid hologram, EntityUid? target) { - var targetPlayer = GetEntity(ev.TargetPlayer); - var player = _playerManager.LocalSession?.AttachedEntity; - - // Ignore the request if received by a player who isn't the target - if (targetPlayer != player) + // Get required components + if (!TryComp(hologram, out var hologramSprite) || + !TryComp(hologram, out var holopadhologram)) return; - if (!TryComp(player, out var playerSprite)) - return; - - var spriteLayerData = new List(); + // Remove all sprite layers + for (int i = hologramSprite.AllLayers.Count() - 1; i >= 0; i--) + hologramSprite.RemoveLayer(i); - if (playerSprite.Visible) + if (TryComp(target, out var targetSprite)) { - // Record the RSI paths, state names and shader paramaters of all visible layers - for (int i = 0; i < playerSprite.AllLayers.Count(); i++) + // Use the target's holographic avatar (if available) + if (TryComp(target, out var targetAvatar) && + targetAvatar.LayerData != null) { - if (!playerSprite.TryGetLayer(i, out var layer)) - continue; - - if (!layer.Visible || - string.IsNullOrEmpty(layer.ActualRsi?.Path.ToString()) || - string.IsNullOrEmpty(layer.State.Name)) - continue; - - var layerDatum = new PrototypeLayerData(); - layerDatum.RsiPath = layer.ActualRsi.Path.ToString(); - layerDatum.State = layer.State.Name; - - if (layer.CopyToShaderParameters != null) + for (int i = 0; i < targetAvatar.LayerData.Length; i++) { - var key = (string)layer.CopyToShaderParameters.LayerKey; - - if (playerSprite.LayerMapTryGet(key, out var otherLayerIdx) && - playerSprite.TryGetLayer(otherLayerIdx, out var otherLayer) && - otherLayer.Visible) - { - layerDatum.MapKeys = new() { key }; - - layerDatum.CopyToShaderParameters = new PrototypeCopyToShaderParameters() - { - LayerKey = key, - ParameterTexture = layer.CopyToShaderParameters.ParameterTexture, - ParameterUV = layer.CopyToShaderParameters.ParameterUV - }; - } + var layer = targetAvatar.LayerData[i]; + hologramSprite.AddLayer(targetAvatar.LayerData[i], i); } + } - spriteLayerData.Add(layerDatum); + // Otherwise copy the target's current physical appearance + else + { + hologramSprite.CopyFrom(targetSprite); } } - // Return the recorded data to the server - var evResponse = new PlayerSpriteStateMessage(ev.TargetPlayer, spriteLayerData.ToArray()); - RaiseNetworkEvent(evResponse); - } - - private void OnPlayerSpriteStateMessage(PlayerSpriteStateMessage ev) - { - UpdateHologramSprite(GetEntity(ev.SpriteEntity), ev.SpriteLayerData); - } - - private void UpdateHologramSprite(EntityUid uid, PrototypeLayerData[]? layerData = null) - { - if (!TryComp(uid, out var hologramSprite)) - return; - - if (!TryComp(uid, out var holopadhologram)) - return; + // There is no target, display a default sprite instead (if available) + else + { + if (string.IsNullOrEmpty(holopadhologram.RsiPath) || string.IsNullOrEmpty(holopadhologram.RsiState)) + return; - for (int i = hologramSprite.AllLayers.Count() - 1; i >= 0; i--) - hologramSprite.RemoveLayer(i); + var layer = new PrototypeLayerData(); + layer.RsiPath = holopadhologram.RsiPath; + layer.State = holopadhologram.RsiState; - if (layerData == null || layerData.Length == 0) - { - layerData = new PrototypeLayerData[1]; - layerData[0] = new PrototypeLayerData() - { - RsiPath = holopadhologram.RsiPath, - State = holopadhologram.RsiState - }; + hologramSprite.AddLayer(layer); } - for (int i = 0; i < layerData.Length; i++) - { - var layer = layerData[i]; - layer.Shader = "unshaded"; + // Override specific values + hologramSprite.Color = Color.White; + hologramSprite.Offset = holopadhologram.Offset; + hologramSprite.DrawDepth = (int)DrawDepth.Mobs; + hologramSprite.NoRotation = true; + hologramSprite.DirectionOverride = Direction.South; + hologramSprite.EnableDirectionOverride = true; - hologramSprite.AddLayer(layerData[i], i); + // Remove shading from all layers (except displacement maps) + for (int i = 0; i < hologramSprite.AllLayers.Count(); i++) + { + if (hologramSprite.TryGetLayer(i, out var layer) && layer.ShaderPrototype != "DisplacedStencilDraw") + hologramSprite.LayerSetShader(i, "unshaded"); } - UpdateHologramShader(uid, hologramSprite, holopadhologram); + UpdateHologramShader(hologram, hologramSprite, holopadhologram); } private void UpdateHologramShader(EntityUid uid, SpriteComponent sprite, HolopadHologramComponent holopadHologram) diff --git a/Content.Server/Holopad/HolopadSystem.cs b/Content.Server/Holopad/HolopadSystem.cs index c5e6c15b516..3e99137a2de 100644 --- a/Content.Server/Holopad/HolopadSystem.cs +++ b/Content.Server/Holopad/HolopadSystem.cs @@ -15,6 +15,7 @@ using Content.Shared.UserInterface; using Content.Shared.Verbs; using Robust.Server.GameObjects; +using Robust.Server.GameStates; using Robust.Shared.Containers; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -35,22 +36,15 @@ public sealed class HolopadSystem : SharedHolopadSystem [Dependency] private readonly ChatSystem _chatSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly PvsOverrideSystem _pvs = default!; private float _updateTimer = 1.0f; - private const float UpdateTime = 1.0f; - private const float MinTimeBetweenSyncRequests = 0.5f; - private TimeSpan _minTimeSpanBetweenSyncRequests; - - private HashSet _pendingRequestsForSpriteState = new(); - private HashSet _recentlyUpdatedHolograms = new(); public override void Initialize() { base.Initialize(); - _minTimeSpanBetweenSyncRequests = TimeSpan.FromSeconds(MinTimeBetweenSyncRequests); - // Holopad UI and bound user interface messages SubscribeLocalEvent(OnUIOpen); SubscribeLocalEvent(OnHolopadStartNewCall); @@ -68,7 +62,6 @@ public override void Initialize() // Networked events SubscribeNetworkEvent(OnTypingChanged); - SubscribeNetworkEvent(OnPlayerSpriteStateMessage); // Component start/shutdown events SubscribeLocalEvent(OnHolopadInit); @@ -268,16 +261,11 @@ private void OnHoloCallCommenced(Entity source, ref TelephoneC if (source.Comp.Hologram == null) GenerateHologram(source); - // Receiver holopad holograms have to be generated now instead of waiting for their own event - // to fire because holographic avatars get synced immediately if (TryComp(args.Receiver, out var receivingHolopad) && receivingHolopad.Hologram == null) GenerateHologram((args.Receiver, receivingHolopad)); - if (source.Comp.User != null) - { - // Re-link the user to refresh the sprite data - LinkHolopadToUser(source, source.Comp.User.Value); - } + // Re-link the user to refresh the sprite data + LinkHolopadToUser(source, source.Comp.User); } private void OnHoloCallEnded(Entity entity, ref TelephoneCallEndedEvent args) @@ -323,22 +311,6 @@ private void OnTypingChanged(HolopadUserTypingChangedEvent ev, EntitySessionEven } } - private void OnPlayerSpriteStateMessage(PlayerSpriteStateMessage ev, EntitySessionEventArgs args) - { - var uid = args.SenderSession.AttachedEntity; - - if (!Exists(uid)) - return; - - if (!_pendingRequestsForSpriteState.Remove(uid.Value)) - return; - - if (!TryComp(uid, out var holopadUser)) - return; - - SyncHolopadUserWithLinkedHolograms((uid.Value, holopadUser), ev.SpriteLayerData); - } - #endregion #region: Component start/shutdown events @@ -485,8 +457,6 @@ public override void Update(float frameTime) } } } - - _recentlyUpdatedHolograms.Clear(); } public void UpdateUIState(Entity entity, TelephoneComponent? telephone = null) @@ -555,10 +525,16 @@ private void DeleteHologram(Entity hologram, Entity entity, EntityUid user) + private void LinkHolopadToUser(Entity entity, EntityUid? user) { + if (user == null) + { + UnlinkHolopadFromUser(entity, null); + return; + } + if (!TryComp(user, out var holopadUser)) - holopadUser = AddComp(user); + holopadUser = AddComp(user.Value); if (user != entity.Comp.User?.Owner) { @@ -567,51 +543,44 @@ private void LinkHolopadToUser(Entity entity, EntityUid user) // Assigns the new user in their place holopadUser.LinkedHolopads.Add(entity); - entity.Comp.User = (user, holopadUser); + entity.Comp.User = (user.Value, holopadUser); } - if (TryComp(user, out var avatar)) - { - SyncHolopadUserWithLinkedHolograms((user, holopadUser), avatar.LayerData); - return; - } - - // We have no apriori sprite data for the hologram, request - // the current appearance of the user from the client - RequestHolopadUserSpriteUpdate((user, holopadUser)); + // Add the new user to PVS and sync their appearance with any + // holopads connected to the one they are using + _pvs.AddGlobalOverride(user.Value); + SyncHolopadHologramAppearanceWithTarget(entity, entity.Comp.User); } private void UnlinkHolopadFromUser(Entity entity, Entity? user) { - if (user == null) - return; - entity.Comp.User = null; + SyncHolopadHologramAppearanceWithTarget(entity, null); - foreach (var linkedHolopad in GetLinkedHolopads(entity)) - { - if (linkedHolopad.Comp.Hologram != null) - { - _appearanceSystem.SetData(linkedHolopad.Comp.Hologram.Value.Owner, TypingIndicatorVisuals.IsTyping, false); - - // Send message with no sprite data to the client - // This will set the holgram sprite to a generic icon - var ev = new PlayerSpriteStateMessage(GetNetEntity(linkedHolopad.Comp.Hologram.Value)); - RaiseNetworkEvent(ev); - } - } - - if (!HasComp(user)) + if (user == null) return; user.Value.Comp.LinkedHolopads.Remove(entity); - if (!user.Value.Comp.LinkedHolopads.Any()) + if (!user.Value.Comp.LinkedHolopads.Any() && + user.Value.Comp.LifeStage < ComponentLifeStage.Stopping) { - _pendingRequestsForSpriteState.Remove(user.Value); + _pvs.RemoveGlobalOverride(user.Value); + RemComp(user.Value); + } + } + private void SyncHolopadHologramAppearanceWithTarget(Entity entity, Entity? user) + { + foreach (var linkedHolopad in GetLinkedHolopads(entity)) + { + if (linkedHolopad.Comp.Hologram == null) + continue; + + if (user == null) + _appearanceSystem.SetData(linkedHolopad.Comp.Hologram.Value.Owner, TypingIndicatorVisuals.IsTyping, false); - if (user.Value.Comp.LifeStage < ComponentLifeStage.Stopping) - RemComp(user.Value); + linkedHolopad.Comp.Hologram.Value.Comp.LinkedEntity = user; + Dirty(linkedHolopad.Comp.Hologram.Value); } } @@ -646,31 +615,6 @@ private void ShutDownHolopad(Entity entity) Dirty(entity); } - private void RequestHolopadUserSpriteUpdate(Entity user) - { - if (!_pendingRequestsForSpriteState.Add(user)) - return; - - var ev = new PlayerSpriteStateRequest(GetNetEntity(user)); - RaiseNetworkEvent(ev); - } - - private void SyncHolopadUserWithLinkedHolograms(Entity entity, PrototypeLayerData[]? spriteLayerData) - { - foreach (var linkedHolopad in entity.Comp.LinkedHolopads) - { - foreach (var receivingHolopad in GetLinkedHolopads(linkedHolopad)) - { - if (receivingHolopad.Comp.Hologram == null || !_recentlyUpdatedHolograms.Add(receivingHolopad.Comp.Hologram.Value)) - continue; - - var netHologram = GetNetEntity(receivingHolopad.Comp.Hologram.Value); - var ev = new PlayerSpriteStateMessage(netHologram, spriteLayerData); - RaiseNetworkEvent(ev); - } - } - } - private void ActivateProjector(Entity entity, EntityUid user) { if (!TryComp(entity, out var receiverTelephone)) diff --git a/Content.Shared/Holopad/HolographicAvatarComponent.cs b/Content.Shared/Holopad/HolographicAvatarComponent.cs index be7f5bcb91f..cff71f4fb28 100644 --- a/Content.Shared/Holopad/HolographicAvatarComponent.cs +++ b/Content.Shared/Holopad/HolographicAvatarComponent.cs @@ -2,12 +2,12 @@ namespace Content.Shared.Holopad; -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class HolographicAvatarComponent : Component { /// /// The prototype sprite layer data for the hologram /// - [DataField] + [DataField, AutoNetworkedField] public PrototypeLayerData[] LayerData; } diff --git a/Content.Shared/Holopad/HolopadHologramComponent.cs b/Content.Shared/Holopad/HolopadHologramComponent.cs index a75ae276234..0b650d9b3dc 100644 --- a/Content.Shared/Holopad/HolopadHologramComponent.cs +++ b/Content.Shared/Holopad/HolopadHologramComponent.cs @@ -1,4 +1,5 @@ using Robust.Shared.GameStates; +using Robust.Shared.Serialization; using System.Numerics; namespace Content.Shared.Holopad; @@ -6,7 +7,7 @@ namespace Content.Shared.Holopad; /// /// Holds data pertaining to holopad holograms /// -[RegisterComponent, NetworkedComponent] +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class HolopadHologramComponent : Component { /// @@ -64,8 +65,8 @@ public sealed partial class HolopadHologramComponent : Component public Vector2 Offset = new Vector2(); /// - /// A user that are linked to this hologram + /// An entity that is linked to this hologram /// - [ViewVariables] - public Entity? LinkedHolopad; + [ViewVariables, AutoNetworkedField] + public EntityUid? LinkedEntity = null; } diff --git a/Content.Shared/Holopad/HolopadUserComponent.cs b/Content.Shared/Holopad/HolopadUserComponent.cs index 9ff20c2e7b3..c9c2a8828b2 100644 --- a/Content.Shared/Holopad/HolopadUserComponent.cs +++ b/Content.Shared/Holopad/HolopadUserComponent.cs @@ -20,29 +20,6 @@ public sealed partial class HolopadUserComponent : Component public HashSet> LinkedHolopads = new(); } -/// -/// A networked event raised when the visual state of a hologram is being updated -/// -[Serializable, NetSerializable] -public sealed class HolopadHologramVisualsUpdateEvent : EntityEventArgs -{ - /// - /// The hologram being updated - /// - public readonly NetEntity Hologram; - - /// - /// The target the hologram is copying - /// - public readonly NetEntity? Target; - - public HolopadHologramVisualsUpdateEvent(NetEntity hologram, NetEntity? target = null) - { - Hologram = hologram; - Target = target; - } -} - /// /// A networked event raised when the visual state of a hologram is being updated /// @@ -65,40 +42,3 @@ public HolopadUserTypingChangedEvent(NetEntity user, bool isTyping) IsTyping = isTyping; } } - -/// -/// A networked event raised by the server to request the current visual state of a target player entity -/// -[Serializable, NetSerializable] -public sealed class PlayerSpriteStateRequest : EntityEventArgs -{ - /// - /// The player entity in question - /// - public readonly NetEntity TargetPlayer; - - public PlayerSpriteStateRequest(NetEntity targetPlayer) - { - TargetPlayer = targetPlayer; - } -} - -/// -/// The client's response to a -/// -[Serializable, NetSerializable] -public sealed class PlayerSpriteStateMessage : EntityEventArgs -{ - public readonly NetEntity SpriteEntity; - - /// - /// Data needed to reconstruct the player's sprite component layers - /// - public readonly PrototypeLayerData[]? SpriteLayerData; - - public PlayerSpriteStateMessage(NetEntity spriteEntity, PrototypeLayerData[]? spriteLayerData = null) - { - SpriteEntity = spriteEntity; - SpriteLayerData = spriteLayerData; - } -} diff --git a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml index 0dfe45c5ae4..421d2809d4a 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml @@ -155,12 +155,7 @@ components: - type: Transform anchored: true - - type: Sprite - noRot: true - drawdepth: Mobs - offset: -0.02, 0.45 - overrideDir: South - enableOverrideDir: true + - type: Sprite # Sprite data is dynamically set in Client.HolopadSystem - type: Appearance - type: TypingIndicator proto: robot @@ -177,6 +172,7 @@ alpha: 0.9 intensity: 2 scrollRate: 0.125 + offset: -0.02, 0.45 - type: Tag tags: - HideContextMenu From 0e840d816ace750525329094d9bb2b92d8eb230f Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Sat, 18 Jan 2025 00:50:22 +0100 Subject: [PATCH 011/103] Make GasMixture enumerable I noticed that enumerating gases is frequently done in an annoying way with Enum.GetValues. So I made it better. Now GasMixture is IEnumerable<(Gas gas, float moles)> and it just works. --- Content.Shared/Atmos/GasMixture.cs | 45 ++++++++++++++++++-- Content.Tests/Shared/Atmos/GasMixtureTest.cs | 30 +++++++++++++ 2 files changed, 72 insertions(+), 3 deletions(-) create mode 100644 Content.Tests/Shared/Atmos/GasMixtureTest.cs diff --git a/Content.Shared/Atmos/GasMixture.cs b/Content.Shared/Atmos/GasMixture.cs index 0f1efba9766..deca8faaed3 100644 --- a/Content.Shared/Atmos/GasMixture.cs +++ b/Content.Shared/Atmos/GasMixture.cs @@ -1,4 +1,5 @@ -using System.Diagnostics.CodeAnalysis; +using System.Collections; +using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Runtime.CompilerServices; using Content.Shared.Atmos.EntitySystems; @@ -13,12 +14,12 @@ namespace Content.Shared.Atmos /// [Serializable] [DataDefinition] - public sealed partial class GasMixture : IEquatable, ISerializationHooks + public sealed partial class GasMixture : IEquatable, ISerializationHooks, IEnumerable<(Gas gas, float moles)> { public static GasMixture SpaceGas => new() {Volume = Atmospherics.CellVolume, Temperature = Atmospherics.TCMB, Immutable = true}; // No access, to ensure immutable mixtures are never accidentally mutated. - [Access(typeof(SharedAtmosphereSystem), typeof(SharedAtmosDebugOverlaySystem), Other = AccessPermissions.None)] + [Access(typeof(SharedAtmosphereSystem), typeof(SharedAtmosDebugOverlaySystem), typeof(GasEnumerator), Other = AccessPermissions.None)] [DataField] public float[] Moles = new float[Atmospherics.AdjustedNumberOfGases]; @@ -249,6 +250,16 @@ public GasMixtureStringRepresentation ToPrettyString() return new GasMixtureStringRepresentation(TotalMoles, Temperature, Pressure, molesPerGas); } + GasEnumerator GetEnumerator() + { + return new GasEnumerator(this); + } + + IEnumerator<(Gas gas, float moles)> IEnumerable<(Gas gas, float moles)>.GetEnumerator() + { + return GetEnumerator(); + } + public override bool Equals(object? obj) { if (obj is GasMixture mix) @@ -289,6 +300,11 @@ public override int GetHashCode() return hashCode.ToHashCode(); } + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + public GasMixture Clone() { if (Immutable) @@ -302,5 +318,28 @@ public GasMixture Clone() }; return newMixture; } + + public struct GasEnumerator(GasMixture mixture) : IEnumerator<(Gas gas, float moles)> + { + private int _idx = -1; + + public void Dispose() + { + // Nada. + } + + public bool MoveNext() + { + return ++_idx < Atmospherics.TotalNumberOfGases; + } + + public void Reset() + { + _idx = -1; + } + + public (Gas gas, float moles) Current => ((Gas)_idx, mixture.Moles[_idx]); + object? IEnumerator.Current => Current; + } } } diff --git a/Content.Tests/Shared/Atmos/GasMixtureTest.cs b/Content.Tests/Shared/Atmos/GasMixtureTest.cs new file mode 100644 index 00000000000..5068d485817 --- /dev/null +++ b/Content.Tests/Shared/Atmos/GasMixtureTest.cs @@ -0,0 +1,30 @@ +using Content.Shared.Atmos; +using NUnit.Framework; + +namespace Content.Tests.Shared.Atmos; + +[TestFixture, TestOf(typeof(GasMixture))] +[Parallelizable(ParallelScope.All)] +public sealed class GasMixtureTest +{ + [Test] + public void TestEnumerate() + { + var mixture = new GasMixture(); + mixture.SetMoles(Gas.Oxygen, 20); + mixture.SetMoles(Gas.Nitrogen, 10); + mixture.SetMoles(Gas.Plasma, 80); + + var expectedList = new (Gas, float)[Atmospherics.TotalNumberOfGases]; + for (var i = 0; i < Atmospherics.TotalNumberOfGases; i++) + { + expectedList[i].Item1 = (Gas)i; + } + + expectedList[(int)Gas.Oxygen].Item2 = 20f; + expectedList[(int)Gas.Nitrogen].Item2 = 10f; + expectedList[(int)Gas.Plasma].Item2 = 80f; + + Assert.That(mixture, Is.EquivalentTo(expectedList)); + } +} From f63eb691f0bf961ffd3d3256b76e3ef17ad0ee03 Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Sat, 18 Jan 2025 00:51:32 +0100 Subject: [PATCH 012/103] Improve canister admin logs. 1. Now clearly says "opened"/"closed" when changing the release valve. 2. Clearly says whether the valve was opened while a canister was inserted or not. 3. When a tank is ejected, logs if the valve is open and the ejection started spilling into the environment. Fixes #34488 --- .../Unary/EntitySystems/GasCanisterSystem.cs | 32 ++++++++++++------- 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs index 584928def72..292b6d94f82 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs @@ -109,7 +109,15 @@ private void OnHoldingTankEjectMessage(EntityUid uid, GasCanisterComponent canis var item = canister.GasTankSlot.Item; _slots.TryEjectToHands(uid, canister.GasTankSlot, args.Actor); - _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.Medium, $"Player {ToPrettyString(args.Actor):player} ejected tank {ToPrettyString(item):tank} from {ToPrettyString(uid):canister}"); + + if (canister.ReleaseValve) + { + _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.High, $"Player {ToPrettyString(args.Actor):player} ejected tank {ToPrettyString(item):tank} from {ToPrettyString(uid):canister} while the valve was open, releasing [{GetContainedGasesString((uid, canister))}] to atmosphere"); + } + else + { + _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.Medium, $"Player {ToPrettyString(args.Actor):player} ejected tank {ToPrettyString(item):tank} from {ToPrettyString(uid):canister}"); + } } private void OnCanisterChangeReleasePressure(EntityUid uid, GasCanisterComponent canister, GasCanisterChangeReleasePressureMessage args) @@ -124,24 +132,24 @@ private void OnCanisterChangeReleasePressure(EntityUid uid, GasCanisterComponent private void OnCanisterChangeReleaseValve(EntityUid uid, GasCanisterComponent canister, GasCanisterChangeReleaseValveMessage args) { - var impact = LogImpact.High; // filling a jetpack with plasma is less important than filling a room with it - impact = canister.GasTankSlot.HasItem ? LogImpact.Medium : LogImpact.High; + var hasItem = canister.GasTankSlot.HasItem; + var impact = hasItem ? LogImpact.Medium : LogImpact.High; - var containedGasDict = new Dictionary(); - var containedGasArray = Enum.GetValues(typeof(Gas)); - - for (int i = 0; i < containedGasArray.Length; i++) - { - containedGasDict.Add((Gas)i, canister.Air[i]); - } - - _adminLogger.Add(LogType.CanisterValve, impact, $"{ToPrettyString(args.Actor):player} set the valve on {ToPrettyString(uid):canister} to {args.Valve:valveState} while it contained [{string.Join(", ", containedGasDict)}]"); + _adminLogger.Add( + LogType.CanisterValve, + impact, + $"{ToPrettyString(args.Actor):player} {(args.Valve ? "opened" : "closed")} the valve on {ToPrettyString(uid):canister} to {(hasItem ? "inserted tank" : "environment")} while it contained [{GetContainedGasesString((uid, canister))}]"); canister.ReleaseValve = args.Valve; DirtyUI(uid, canister); } + private static string GetContainedGasesString(Entity canister) + { + return string.Join(", ", canister.Comp.Air); + } + private void OnCanisterUpdated(EntityUid uid, GasCanisterComponent canister, ref AtmosDeviceUpdateEvent args) { _atmos.React(canister.Air, canister); From 9d4e60068ba3bc68303a742cd993827ff20315f6 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 18 Jan 2025 12:07:20 +1100 Subject: [PATCH 013/103] Optimize & clean up RadiationSystem (#34459) * Optimize & clean up RadiationSystem * comments * Update Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs Co-authored-by: Thomas <87614336+Aeshus@users.noreply.github.com> --------- Co-authored-by: Thomas <87614336+Aeshus@users.noreply.github.com> --- .../Radiation/Systems/RadiationSystem.cs | 2 +- .../Systems/RadiationSystem.Debug.cs | 16 +- .../Systems/RadiationSystem.GridCast.cs | 200 +++++++++++------- .../Radiation/Systems/RadiationSystem.cs | 14 ++ .../Radiation/Events/OnIrradiatedEvent.cs | 12 +- .../Events/OnRadiationOverlayUpdateEvent.cs | 23 +- Content.Shared/Radiation/RadiationRay.cs | 49 +++-- 7 files changed, 189 insertions(+), 127 deletions(-) diff --git a/Content.Client/Radiation/Systems/RadiationSystem.cs b/Content.Client/Radiation/Systems/RadiationSystem.cs index 929ad6aa4ac..f4f109adc7c 100644 --- a/Content.Client/Radiation/Systems/RadiationSystem.cs +++ b/Content.Client/Radiation/Systems/RadiationSystem.cs @@ -9,7 +9,7 @@ public sealed class RadiationSystem : EntitySystem { [Dependency] private readonly IOverlayManager _overlayMan = default!; - public List? Rays; + public List? Rays; public Dictionary>? ResistanceGrids; public override void Initialize() diff --git a/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs b/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs index a5f74e09e9d..44360905652 100644 --- a/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs +++ b/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs @@ -5,6 +5,7 @@ using Content.Shared.Radiation.Events; using Content.Shared.Radiation.Systems; using Robust.Shared.Console; +using Robust.Shared.Debugging; using Robust.Shared.Enums; using Robust.Shared.Map.Components; using Robust.Shared.Player; @@ -42,12 +43,12 @@ public void ToggleDebugView(ICommonSession session) /// private void UpdateDebugOverlay(EntityEventArgs ev) { - var sessions = _debugSessions.ToArray(); - foreach (var session in sessions) + foreach (var session in _debugSessions) { if (session.Status != SessionStatus.InGame) _debugSessions.Remove(session); - RaiseNetworkEvent(ev, session.Channel); + else + RaiseNetworkEvent(ev, session); } } @@ -70,13 +71,16 @@ private void UpdateResistanceDebugOverlay() UpdateDebugOverlay(ev); } - private void UpdateGridcastDebugOverlay(double elapsedTime, int totalSources, - int totalReceivers, List rays) + private void UpdateGridcastDebugOverlay( + double elapsedTime, + int totalSources, + int totalReceivers, + List? rays) { if (_debugSessions.Count == 0) return; - var ev = new OnRadiationOverlayUpdateEvent(elapsedTime, totalSources, totalReceivers, rays); + var ev = new OnRadiationOverlayUpdateEvent(elapsedTime, totalSources, totalReceivers, rays ?? new()); UpdateDebugOverlay(ev); } } diff --git a/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs b/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs index ccee7cf227c..15e1c352564 100644 --- a/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs +++ b/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs @@ -1,12 +1,9 @@ -using System.Linq; using System.Numerics; using Content.Server.Radiation.Components; using Content.Server.Radiation.Events; using Content.Shared.Radiation.Components; using Content.Shared.Radiation.Systems; -using Content.Shared.Stacks; using Robust.Shared.Collections; -using Robust.Shared.Containers; using Robust.Shared.Map.Components; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -16,68 +13,86 @@ namespace Content.Server.Radiation.Systems; // main algorithm that fire radiation rays to target public partial class RadiationSystem { - [Dependency] private readonly SharedStackSystem _stack = default!; - [Dependency] private readonly SharedContainerSystem _container = default!; + private List> _grids = new(); - private EntityQuery _radiationBlockingContainers; + private readonly record struct SourceData( + float Intensity, + Entity Entity, + Vector2 WorldPosition) + { + public EntityUid? GridUid => Entity.Comp2.GridUid; + public float Slope => Entity.Comp1.Slope; + public TransformComponent Transform => Entity.Comp2; + } private void UpdateGridcast() { // should we save debug information into rays? // if there is no debug sessions connected - just ignore it - var saveVisitedTiles = _debugSessions.Count > 0; + var debug = _debugSessions.Count > 0; var stopwatch = new Stopwatch(); stopwatch.Start(); + _sources.Clear(); + _sources.EnsureCapacity(EntityManager.Count()); + var sources = EntityQueryEnumerator(); var destinations = EntityQueryEnumerator(); - var resistanceQuery = GetEntityQuery(); - var transformQuery = GetEntityQuery(); - var gridQuery = GetEntityQuery(); - var stackQuery = GetEntityQuery(); - - _radiationBlockingContainers = GetEntityQuery(); - // precalculate world positions for each source - // so we won't need to calc this in cycle over and over again - var sourcesData = new ValueList<(EntityUid, RadiationSourceComponent, TransformComponent, Vector2)>(); - while (sources.MoveNext(out var uid, out var source, out var sourceTrs)) + while (sources.MoveNext(out var uid, out var source, out var xform)) { if (!source.Enabled) continue; - var worldPos = _transform.GetWorldPosition(sourceTrs, transformQuery); - var data = (uid, source, sourceTrs, worldPos); - sourcesData.Add(data); + var worldPos = _transform.GetWorldPosition(xform); + + // Intensity is scaled by stack size. + var intensity = source.Intensity * _stack.GetCount(uid); + + // Apply rad modifier if the source is enclosed within a radiation blocking container + // Note that this also applies to receivers, and it doesn't bother to check if the container sits between them. + // I.e., a source & receiver in the same blocking container will get double-blocked, when no blocking should be applied. + intensity = GetAdjustedRadiationIntensity(uid, intensity); + + _sources.Add(new(intensity, (uid, source, xform), worldPos)); } - // trace all rays from rad source to rad receivers - var rays = new List(); + var debugRays = debug ? new List() : null; var receiversTotalRads = new ValueList<(Entity, float)>(); + + // TODO RADIATION Parallelize + // Would need to give receiversTotalRads a fixed size. + // Also the _grids list needs to be local to a job. (or better yet cached in SourceData) + // And I guess disable parallelization when debugging to make populating the debug List easier. + // Or just make it threadsafe? while (destinations.MoveNext(out var destUid, out var dest, out var destTrs)) { - var destWorld = _transform.GetWorldPosition(destTrs, transformQuery); + var destWorld = _transform.GetWorldPosition(destTrs); var rads = 0f; - foreach (var (uid, source, sourceTrs, sourceWorld) in sourcesData) + foreach (var source in _sources) { - stackQuery.TryGetComponent(uid, out var stack); - var intensity = source.Intensity * _stack.GetCount(uid, stack); - // send ray towards destination entity - var ray = Irradiate(uid, sourceTrs, sourceWorld, - destUid, destTrs, destWorld, - intensity, source.Slope, saveVisitedTiles, resistanceQuery, transformQuery, gridQuery); - if (ray == null) + if (Irradiate(source, destUid, destTrs, destWorld, debug) is not {} ray) continue; - // save ray for debug - rays.Add(ray); - // add rads to total rad exposure if (ray.ReachedDestination) rads += ray.Rads; + + if (!debug) + continue; + + debugRays!.Add(new DebugRadiationRay( + ray.MapId, + GetNetEntity(ray.SourceUid), + ray.Source, + GetNetEntity(ray.DestinationUid), + ray.Destination, + ray.Rads, + ray.Blockers ?? new()) + ); } // Apply modifier if the destination entity is hidden within a radiation blocking container @@ -88,9 +103,9 @@ private void UpdateGridcast() // update information for debug overlay var elapsedTime = stopwatch.Elapsed.TotalMilliseconds; - var totalSources = sourcesData.Count; + var totalSources = _sources.Count; var totalReceivers = receiversTotalRads.Count; - UpdateGridcastDebugOverlay(elapsedTime, totalSources, totalReceivers, rays); + UpdateGridcastDebugOverlay(elapsedTime, totalSources, totalReceivers, debugRays); // send rads to each entity foreach (var (receiver, rads) in receiversTotalRads) @@ -108,19 +123,20 @@ private void UpdateGridcast() RaiseLocalEvent(new RadiationSystemUpdatedEvent()); } - private RadiationRay? Irradiate(EntityUid sourceUid, TransformComponent sourceTrs, Vector2 sourceWorld, - EntityUid destUid, TransformComponent destTrs, Vector2 destWorld, - float incomingRads, float slope, bool saveVisitedTiles, - EntityQuery resistanceQuery, - EntityQuery transformQuery, EntityQuery gridQuery) + private RadiationRay? Irradiate(SourceData source, + EntityUid destUid, + TransformComponent destTrs, + Vector2 destWorld, + bool saveVisitedTiles) { // lets first check that source and destination on the same map - if (sourceTrs.MapID != destTrs.MapID) + if (source.Transform.MapID != destTrs.MapID) return null; - var mapId = sourceTrs.MapID; + + var mapId = destTrs.MapID; // get direction from rad source to destination and its distance - var dir = destWorld - sourceWorld; + var dir = destWorld - source.WorldPosition; var dist = dir.Length(); // check if receiver is too far away @@ -128,41 +144,42 @@ private void UpdateGridcast() return null; // will it even reach destination considering distance penalty - var rads = incomingRads - slope * dist; - - // Apply rad modifier if the source is enclosed within a radiation blocking container - rads = GetAdjustedRadiationIntensity(sourceUid, rads); - - if (rads <= MinIntensity) + var rads = source.Intensity - source.Slope * dist; + if (rads < MinIntensity) return null; // create a new radiation ray from source to destination // at first we assume that it doesn't hit any radiation blockers // and has only distance penalty - var ray = new RadiationRay(mapId, GetNetEntity(sourceUid), sourceWorld, GetNetEntity(destUid), destWorld, rads); + var ray = new RadiationRay(mapId, source.Entity, source.WorldPosition, destUid, destWorld, rads); // if source and destination on the same grid it's possible that // between them can be another grid (ie. shuttle in center of donut station) // however we can do simplification and ignore that case - if (GridcastSimplifiedSameGrid && sourceTrs.GridUid != null && sourceTrs.GridUid == destTrs.GridUid) + if (GridcastSimplifiedSameGrid && destTrs.GridUid is {} gridUid && source.GridUid == gridUid) { - if (!gridQuery.TryGetComponent(sourceTrs.GridUid.Value, out var gridComponent)) + if (!_gridQuery.TryGetComponent(gridUid, out var gridComponent)) return ray; - return Gridcast((sourceTrs.GridUid.Value, gridComponent), ray, saveVisitedTiles, resistanceQuery, sourceTrs, destTrs, transformQuery.GetComponent(sourceTrs.GridUid.Value)); + return Gridcast((gridUid, gridComponent, Transform(gridUid)), ref ray, saveVisitedTiles, source.Transform, destTrs); } // lets check how many grids are between source and destination // do a box intersection test between target and destination // it's not very precise, but really cheap - var box = Box2.FromTwoPoints(sourceWorld, destWorld); - var grids = new List>(); - _mapManager.FindGridsIntersecting(mapId, box, ref grids, true); + + // TODO RADIATION + // Consider caching this in SourceData? + // I.e., make the lookup for grids as large as the sources's max distance and store the result in SourceData. + // Avoids having to do a lookup per source*receiver. + var box = Box2.FromTwoPoints(source.WorldPosition, destWorld); + _grids.Clear(); + _mapManager.FindGridsIntersecting(mapId, box, ref _grids, true); // gridcast through each grid and try to hit some radiation blockers // the ray will be updated with each grid that has some blockers - foreach (var grid in grids) + foreach (var grid in _grids) { - ray = Gridcast(grid, ray, saveVisitedTiles, resistanceQuery, sourceTrs, destTrs, transformQuery.GetComponent(grid)); + ray = Gridcast((grid.Owner, grid.Comp, Transform(grid)), ref ray, saveVisitedTiles, source.Transform, destTrs); // looks like last grid blocked all radiation // we can return right now @@ -170,20 +187,23 @@ private void UpdateGridcast() return ray; } + _grids.Clear(); + return ray; } - private RadiationRay Gridcast(Entity grid, RadiationRay ray, bool saveVisitedTiles, - EntityQuery resistanceQuery, + private RadiationRay Gridcast( + Entity grid, + ref RadiationRay ray, + bool saveVisitedTiles, TransformComponent sourceTrs, - TransformComponent destTrs, - TransformComponent gridTrs) + TransformComponent destTrs) { - var blockers = new List<(Vector2i, float)>(); + var blockers = saveVisitedTiles ? new List<(Vector2i, float)>() : null; // if grid doesn't have resistance map just apply distance penalty var gridUid = grid.Owner; - if (!resistanceQuery.TryGetComponent(gridUid, out var resistance)) + if (!_resistanceQuery.TryGetComponent(gridUid, out var resistance)) return ray; var resistanceMap = resistance.ResistancePerTile; @@ -195,19 +215,19 @@ private RadiationRay Gridcast(Entity grid, RadiationRay ray, b Vector2 srcLocal = sourceTrs.ParentUid == grid.Owner ? sourceTrs.LocalPosition - : Vector2.Transform(ray.Source, gridTrs.InvLocalMatrix); + : Vector2.Transform(ray.Source, grid.Comp2.InvLocalMatrix); Vector2 dstLocal = destTrs.ParentUid == grid.Owner ? destTrs.LocalPosition - : Vector2.Transform(ray.Destination, gridTrs.InvLocalMatrix); + : Vector2.Transform(ray.Destination, grid.Comp2.InvLocalMatrix); Vector2i sourceGrid = new( - (int) Math.Floor(srcLocal.X / grid.Comp.TileSize), - (int) Math.Floor(srcLocal.Y / grid.Comp.TileSize)); + (int) Math.Floor(srcLocal.X / grid.Comp1.TileSize), + (int) Math.Floor(srcLocal.Y / grid.Comp1.TileSize)); Vector2i destGrid = new( - (int) Math.Floor(dstLocal.X / grid.Comp.TileSize), - (int) Math.Floor(dstLocal.Y / grid.Comp.TileSize)); + (int) Math.Floor(dstLocal.X / grid.Comp1.TileSize), + (int) Math.Floor(dstLocal.Y / grid.Comp1.TileSize)); // iterate tiles in grid line from source to destination var line = new GridLineEnumerator(sourceGrid, destGrid); @@ -220,7 +240,7 @@ private RadiationRay Gridcast(Entity grid, RadiationRay ray, b // save data for debug if (saveVisitedTiles) - blockers.Add((point, ray.Rads)); + blockers!.Add((point, ray.Rads)); // no intensity left after blocker if (ray.Rads <= MinIntensity) @@ -230,21 +250,45 @@ private RadiationRay Gridcast(Entity grid, RadiationRay ray, b } } + if (!saveVisitedTiles || blockers!.Count <= 0) + return ray; + // save data for debug if needed - if (saveVisitedTiles && blockers.Count > 0) - ray.Blockers.Add(GetNetEntity(gridUid), blockers); + ray.Blockers ??= new(); + ray.Blockers.Add(GetNetEntity(gridUid), blockers); return ray; } private float GetAdjustedRadiationIntensity(EntityUid uid, float rads) { - var radblockingComps = new List(); - if (_container.TryFindComponentsOnEntityContainerOrParent(uid, _radiationBlockingContainers, radblockingComps)) + var child = uid; + var xform = Transform(uid); + var parent = xform.ParentUid; + + while (parent.IsValid()) { - rads -= radblockingComps.Sum(x => x.RadResistance); + var parentXform = Transform(parent); + var childMeta = MetaData(child); + + if ((childMeta.Flags & MetaDataFlags.InContainer) != MetaDataFlags.InContainer) + { + child = parent; + parent = parentXform.ParentUid; + continue; + } + + if (_blockerQuery.TryComp(xform.ParentUid, out var blocker)) + { + rads -= blocker.RadResistance; + if (rads < 0) + return 0; + } + + child = parent; + parent = parentXform.ParentUid; } - return float.Max(rads, 0); + return rads; } } diff --git a/Content.Server/Radiation/Systems/RadiationSystem.cs b/Content.Server/Radiation/Systems/RadiationSystem.cs index e184c022f2f..3ba393959c2 100644 --- a/Content.Server/Radiation/Systems/RadiationSystem.cs +++ b/Content.Server/Radiation/Systems/RadiationSystem.cs @@ -1,8 +1,10 @@ using Content.Server.Radiation.Components; using Content.Shared.Radiation.Components; using Content.Shared.Radiation.Events; +using Content.Shared.Stacks; using Robust.Shared.Configuration; using Robust.Shared.Map; +using Robust.Shared.Map.Components; namespace Content.Server.Radiation.Systems; @@ -11,14 +13,26 @@ public sealed partial class RadiationSystem : EntitySystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly SharedStackSystem _stack = default!; + + private EntityQuery _blockerQuery; + private EntityQuery _resistanceQuery; + private EntityQuery _gridQuery; + private EntityQuery _stackQuery; private float _accumulator; + private List _sources = new(); public override void Initialize() { base.Initialize(); SubscribeCvars(); InitRadBlocking(); + + _blockerQuery = GetEntityQuery(); + _resistanceQuery = GetEntityQuery(); + _gridQuery = GetEntityQuery(); + _stackQuery = GetEntityQuery(); } public override void Update(float frameTime) diff --git a/Content.Shared/Radiation/Events/OnIrradiatedEvent.cs b/Content.Shared/Radiation/Events/OnIrradiatedEvent.cs index ee35304e2af..3112e1eb471 100644 --- a/Content.Shared/Radiation/Events/OnIrradiatedEvent.cs +++ b/Content.Shared/Radiation/Events/OnIrradiatedEvent.cs @@ -4,17 +4,11 @@ /// Raised on entity when it was irradiated /// by some radiation source. /// -public sealed class OnIrradiatedEvent : EntityEventArgs +public readonly record struct OnIrradiatedEvent(float FrameTime, float RadsPerSecond) { - public readonly float FrameTime; + public readonly float FrameTime = FrameTime; - public readonly float RadsPerSecond; + public readonly float RadsPerSecond = RadsPerSecond; public float TotalRads => RadsPerSecond * FrameTime; - - public OnIrradiatedEvent(float frameTime, float radsPerSecond) - { - FrameTime = frameTime; - RadsPerSecond = radsPerSecond; - } } diff --git a/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs b/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs index a93ca4c616b..e42d13ffb7b 100644 --- a/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs +++ b/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs @@ -13,36 +13,33 @@ namespace Content.Shared.Radiation.Events; /// Will be sent only to clients that activated radiation view using console command. /// [Serializable, NetSerializable] -public sealed class OnRadiationOverlayUpdateEvent : EntityEventArgs +public sealed class OnRadiationOverlayUpdateEvent( + double elapsedTimeMs, + int sourcesCount, + int receiversCount, + List rays) + : EntityEventArgs { /// /// Total time in milliseconds that server took to do radiation processing. /// Exclude time of entities reacting to . /// - public readonly double ElapsedTimeMs; + public readonly double ElapsedTimeMs = elapsedTimeMs; /// /// Total count of entities with on all maps. /// - public readonly int SourcesCount; + public readonly int SourcesCount = sourcesCount; /// /// Total count of entities with radiation receiver on all maps. /// - public readonly int ReceiversCount; + public readonly int ReceiversCount = receiversCount; /// /// All radiation rays that was processed by radiation system. /// - public readonly List Rays; - - public OnRadiationOverlayUpdateEvent(double elapsedTimeMs, int sourcesCount, int receiversCount, List rays) - { - ElapsedTimeMs = elapsedTimeMs; - SourcesCount = sourcesCount; - ReceiversCount = receiversCount; - Rays = rays; - } + public readonly List Rays = rays; } /// diff --git a/Content.Shared/Radiation/RadiationRay.cs b/Content.Shared/Radiation/RadiationRay.cs index ca8ab5af661..9f8b9596943 100644 --- a/Content.Shared/Radiation/RadiationRay.cs +++ b/Content.Shared/Radiation/RadiationRay.cs @@ -9,33 +9,38 @@ namespace Content.Shared.Radiation.Systems; /// Ray emitted by radiation source towards radiation receiver. /// Contains all information about encountered radiation blockers. /// -[Serializable, NetSerializable] -public sealed class RadiationRay +public struct RadiationRay( + MapId mapId, + EntityUid sourceUid, + Vector2 source, + EntityUid destinationUid, + Vector2 destination, + float rads) { /// /// Map on which source and receiver are placed. /// - public MapId MapId; + public MapId MapId = mapId; /// /// Uid of entity with . /// - public NetEntity SourceUid; + public EntityUid SourceUid = sourceUid; /// /// World coordinates of radiation source. /// - public Vector2 Source; + public Vector2 Source = source; /// /// Uid of entity with radiation receiver component. /// - public NetEntity DestinationUid; + public EntityUid DestinationUid = destinationUid; /// /// World coordinates of radiation receiver. /// - public Vector2 Destination; + public Vector2 Destination = destination; /// /// How many rads intensity reached radiation receiver. /// - public float Rads; + public float Rads = rads; /// /// Has rad ray reached destination or lost all intensity after blockers? @@ -43,23 +48,27 @@ public sealed class RadiationRay public bool ReachedDestination => Rads > 0; /// - /// All blockers visited by gridcast. Key is uid of grid. Values are pairs + /// All blockers visited by gridcast, used for debug overlays. Key is uid of grid. Values are pairs /// of tile indices and floats with updated radiation value. /// /// /// Last tile may have negative value if ray has lost all intensity. /// Grid traversal order isn't guaranteed. /// - public Dictionary> Blockers = new(); + public Dictionary>? Blockers; + +} - public RadiationRay(MapId mapId, NetEntity sourceUid, Vector2 source, - NetEntity destinationUid, Vector2 destination, float rads) - { - MapId = mapId; - SourceUid = sourceUid; - Source = source; - DestinationUid = destinationUid; - Destination = destination; - Rads = rads; - } +// Variant of RadiationRay that uses NetEntities. +[Serializable, NetSerializable] +public readonly record struct DebugRadiationRay( + MapId MapId, + NetEntity SourceUid, + Vector2 Source, + NetEntity DestinationUid, + Vector2 Destination, + float Rads, + Dictionary> Blockers) +{ + public bool ReachedDestination => Rads > 0; } From c4542ee252184036e5bba2c9143cc1919a8c9ca3 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 18 Jan 2025 14:59:53 +1100 Subject: [PATCH 014/103] Update engine to v240.0.1 (#34497) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index bcc4cd77cf1..f8410a4674a 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit bcc4cd77cf16deb9b05f29b090d865f836a733ab +Subproject commit f8410a4674a4978fcea3fd267c6fb26b2ba6e7de From c78717e4e20b59add69ca3542a18d6a6233171ed Mon Sep 17 00:00:00 2001 From: Mono <182929384+Monotheonist@users.noreply.github.com> Date: Sat, 18 Jan 2025 03:37:37 -0400 Subject: [PATCH 015/103] Various Locale Typo Fixes (and spaces) (#34483) Random spelling error and FTL linting (+PowersinkSystem because there was an misspelt locale for that) --- Content.Server/PowerSink/PowerSinkSystem.cs | 2 +- Resources/Locale/en-US/advertisements/vending/theater.ftl | 2 +- Resources/Locale/en-US/devices/device-network.ftl | 4 ++-- .../Locale/en-US/game-ticking/game-rules/gamerule-admin.ftl | 2 +- Resources/Locale/en-US/powersink/powersink.ftl | 2 +- Resources/Locale/en-US/revenant/revenant.ftl | 2 +- Resources/Locale/en-US/weapons/melee/melee.ftl | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Content.Server/PowerSink/PowerSinkSystem.cs b/Content.Server/PowerSink/PowerSinkSystem.cs index 298e35db469..b8bdcd91f16 100644 --- a/Content.Server/PowerSink/PowerSinkSystem.cs +++ b/Content.Server/PowerSink/PowerSinkSystem.cs @@ -128,7 +128,7 @@ private void NotifyStationOfImminentExplosion(EntityUid uid, PowerSinkComponent _chat.DispatchStationAnnouncement( station.Value, - Loc.GetString("powersink-immiment-explosion-announcement"), + Loc.GetString("powersink-imminent-explosion-announcement"), playDefaultSound: true, colorOverride: Color.Yellow ); diff --git a/Resources/Locale/en-US/advertisements/vending/theater.ftl b/Resources/Locale/en-US/advertisements/vending/theater.ftl index 437a3aa7d87..6784301f56e 100644 --- a/Resources/Locale/en-US/advertisements/vending/theater.ftl +++ b/Resources/Locale/en-US/advertisements/vending/theater.ftl @@ -2,5 +2,5 @@ advertisement-theater-2 = Suited and booted! advertisement-theater-3 = It's show time! advertisement-theater-4 = Why leave style up to fate? Use AutoDrobe! -advertisement-theater-5 = All wacky outfits and clothes, from gladitor robes to who knows what! +advertisement-theater-5 = All wacky outfits and clothes, from gladiator robes to who knows what! advertisement-theater-6 = The clown will appreciate your outfit! diff --git a/Resources/Locale/en-US/devices/device-network.ftl b/Resources/Locale/en-US/devices/device-network.ftl index 9ae101a1e89..dd473866dca 100644 --- a/Resources/Locale/en-US/devices/device-network.ftl +++ b/Resources/Locale/en-US/devices/device-network.ftl @@ -33,7 +33,7 @@ device-address-prefix-freezer = FZR- device-address-prefix-volume-pump = VPP- device-address-prefix-smes = SMS- -#PDAs and terminals +# PDAs and terminals device-address-prefix-console = CLS- device-address-prefix-fire-alarm = FIR- device-address-prefix-air-alarm = AIR- @@ -42,7 +42,7 @@ device-address-prefix-sensor-monitor = MON- device-address-examine-message = The device's address is {$address}. -#Device net ID names +# Device net ID names device-net-id-private = Private device-net-id-wired = Wired device-net-id-wireless = Wireless diff --git a/Resources/Locale/en-US/game-ticking/game-rules/gamerule-admin.ftl b/Resources/Locale/en-US/game-ticking/game-rules/gamerule-admin.ftl index 3b31fe46630..c7a7affa08c 100644 --- a/Resources/Locale/en-US/game-ticking/game-rules/gamerule-admin.ftl +++ b/Resources/Locale/en-US/game-ticking/game-rules/gamerule-admin.ftl @@ -1,4 +1,4 @@ -#When an admin adds a game rule +# When an admin adds a game rule add-gamerule-admin = Game rule({$rule}) added - {$admin} list-gamerule-admin-header = | Time | Rule added list-gamerule-admin-no-rules = No game rules have been added. diff --git a/Resources/Locale/en-US/powersink/powersink.ftl b/Resources/Locale/en-US/powersink/powersink.ftl index 92e87dd90fd..90598af3903 100644 --- a/Resources/Locale/en-US/powersink/powersink.ftl +++ b/Resources/Locale/en-US/powersink/powersink.ftl @@ -1,2 +1,2 @@ powersink-examine-drain-amount = The power sink is draining [color={$markupDrainColor}]{$amount} kW[/color]. -powersink-immiment-explosion-announcement = System scans have detected a rogue power consuming device is becoming unstable. Staff are advised to locate and disconnect this device immediately before the station is damaged. +powersink-imminent-explosion-announcement = System scans have detected a rogue power consuming device is becoming unstable. Staff are advised to locate and disconnect this device immediately before the station is damaged. diff --git a/Resources/Locale/en-US/revenant/revenant.ftl b/Resources/Locale/en-US/revenant/revenant.ftl index f4ea6d79ff3..1d6bae7b343 100644 --- a/Resources/Locale/en-US/revenant/revenant.ftl +++ b/Resources/Locale/en-US/revenant/revenant.ftl @@ -16,7 +16,7 @@ revenant-soul-yield-low = {CAPITALIZE(THE($target))} has a below average soul. revenant-soul-begin-harvest = {CAPITALIZE(THE($target))} suddenly rises slightly into the air, {POSS-ADJ($target)} skin turning an ashy gray. revenant-soul-finish-harvest = {CAPITALIZE(THE($target))} slumps onto the ground! -#UI +# UI revenant-user-interface-title = Ability Shop revenant-user-interface-essence-amount = [color=plum]{$amount}[/color] Stolen Essence diff --git a/Resources/Locale/en-US/weapons/melee/melee.ftl b/Resources/Locale/en-US/weapons/melee/melee.ftl index 871d142504f..d3318ea2449 100644 --- a/Resources/Locale/en-US/weapons/melee/melee.ftl +++ b/Resources/Locale/en-US/weapons/melee/melee.ftl @@ -3,5 +3,5 @@ melee-inject-failed-hardsuit = Your {$weapon} cannot inject through hardsuits! melee-balloon-pop = {CAPITALIZE(THE($balloon))} popped! -#BatteryComponent +# BatteryComponent melee-battery-examine = It has enough charge for [color={$color}]{$count}[/color] hits. From 7f0ff0b121734ce2bef280b42395554a3be3c51c Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Sat, 18 Jan 2025 01:02:40 -0800 Subject: [PATCH 016/103] Space lizard plushie can now be worn on your head (#33809) * space weh can now be work on top of head * space weh can now be worn on top of head * trim out unnecessary comps --- .../Prototypes/Entities/Objects/Fun/toys.yml | 8 ++++++++ .../Textures/Objects/Fun/toys.rsi/meta.json | 6 +++++- .../Fun/toys.rsi/spacelizard-equipped-HELMET.png | Bin 0 -> 1009 bytes 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Objects/Fun/toys.rsi/spacelizard-equipped-HELMET.png diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 2db5cf83356..c5e17c54d35 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -427,6 +427,14 @@ Quantity: 10 - ReagentId: JuiceThatMakesYouWeh Quantity: 10 + - type: Clothing + slots: + - HEAD + quickEquip: false + clothingVisuals: + head: + - state: spacelizard-equipped-HELMET + offset: "0, 0.03" - type: entity parent: PlushieLizard diff --git a/Resources/Textures/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Objects/Fun/toys.rsi/meta.json index 61fcdd96fdf..4a0cb492eb0 100644 --- a/Resources/Textures/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/toys.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser, plushie_penguin by netwy, plushie_arachnid by PixelTheKermit (github), plushie human by TheShuEd, NanoTrasen Balloon by MACMAN2003, holoplush and magicplush modified by deltanedas (github), lizard hat sprite made by Cinder, rubber_chicken by xprospero, in-hand lizard plushie sprites by KieueCaprie, plushie_lizard_inversed and inhand sprites modified from plushie_lizard_mirrored and plushielizard-inhand-left, plushielizard-inhand-right by ArtisticRoomba, rainbowcarplush and inhand sprites modified from carpplush and inhand sprites by ArtisticRoomba", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser, plushie_penguin by netwy, plushie_arachnid by PixelTheKermit (github), plushie human by TheShuEd, NanoTrasen Balloon by MACMAN2003, holoplush and magicplush modified by deltanedas (github), lizard hat sprite made by Cinder, rubber_chicken by xprospero, in-hand lizard plushie sprites by KieueCaprie, plushie_lizard_inversed and inhand sprites modified from plushie_lizard_mirrored and plushielizard-inhand-left, plushielizard-inhand-right by ArtisticRoomba, rainbowcarplush and inhand sprites modified from carpplush and inhand sprites by ArtisticRoomba, spacelizard-equipped-HELMET by miamioni", "size": { "x": 32, "y": 32 @@ -197,6 +197,10 @@ { "name": "snappop" }, + { + "name": "spacelizard-equipped-HELMET", + "directions": 4 + }, { "name": "spbox" }, diff --git a/Resources/Textures/Objects/Fun/toys.rsi/spacelizard-equipped-HELMET.png b/Resources/Textures/Objects/Fun/toys.rsi/spacelizard-equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..b5d0195590590f1af1cc5f23c5300ec43effbf6a GIT binary patch literal 1009 zcmVPx&t4TybRCt{2+RtkoWf;Km@6PU+C2e+>q=|JyTA@FjGNM7ah+wPTLtrmn z6;Fo#0m)H4crpYLL@3>+O<*B}iHCxuAi^%BY>8w;($h^SsZ@yoY_qgA223wdsG4z43~A&P^=0`8O)nuyfqn;$L-}-{&Uz z{7Uiiob}~+yRRFS03Fu5U(Bx6rW?_O*|pkqX1O?b+dJ}M(2h{8-{;WA*{|H@S45M~ zuM{u8*3mp({ZT_Dz}pAT@zd1U(ELjAmq$GrPt(;~m2_sgICjSx9d5PXM4^dhZ-8Iz zD-)UJ;@H(&m9%I~p#}i21CfiD#_;-704`n{qr6c7I4+u8lvnW_0U`lTVzYzAeH31D zPDk9t6m7tDAk+DtpQG=zq2QAJ_Ru8rT`JaeN8_DnKC!n*(svX#10kbbf&e% zzbYEjBYMF*Z5Zrz$1-uC=`_YZl_ zejYh|px4bBAlv|_h>c1$-2VOO$-*atHvry0{_H337|+hwO?DI4|M-EvwhvG&4+BR} zyPAuui=L-sGHDxzK{OgA6bfOQCeCqxf4}g2MArc6MUYG;ZC%%GUDs_*)9hq2X}gWJ z=UxGauIsjGngA>c~H)jt-GHLf;3ZvZeZBVf*GCYqYzjTHLGs$$oVo$Li-tQrS|yQB6o?OZmmZ z_TX*r$b?gaT2pvc8T>AlE#*a;AiOiQZcTNozD{BXhuAc_2-*?y%FOx2!uIIno{p!< znS5TEnF!huHjOS~2ZvC7ovd3^pNhs4Zh(&f0AGLeEdVt(sj&&ru+32*@<86*TAbQM z2shv!3jmxL2y_>)ha6%768pk z$a2m#at&~PZ&_wLfP#Ww2^5~`A_!prep7il6xuyrSh%LdVzGwq%{h}yBocN{PtWeS zX|A=4#u9!748y?Llr&9~bUIBUk!biHT_TaN)9Lg>wHSsW97nhT(P)%hE=N2b2cWO7 zk!#<>oZRtvoLnwPG#YJ8VrO5zG1>l`rfIgW>#pjNUx>K%qCEl6y9P;;BuSDaNs=T< fk|arz_J+Rzr=5AN6`S_Y00000NkvXXu0mjfOf2d5 literal 0 HcmV?d00001 From 17464ffe2b4ce6e68be2a8e724b5bbaff1c9e538 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 18 Jan 2025 09:03:49 +0000 Subject: [PATCH 017/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 22fb4f059b3..907fda5e84f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: All bots are available for disguise with the Chameleon Ppotlight - type: Tweak - id: 7324 - time: '2024-09-09T19:18:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32006 - author: DieselMohawk changes: - message: Added Security Trooper Uniform @@ -3921,3 +3914,10 @@ id: 7823 time: '2025-01-17T17:26:04.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34480 +- author: ArtisticRoomba, miamioni + changes: + - message: The Space Lizard plushie can now be worn on top of your head. + type: Add + id: 7824 + time: '2025-01-18T09:02:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33809 From 343f59f602c761b2d9d4df0c1c17c420db5b3221 Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Sat, 18 Jan 2025 05:41:29 -0800 Subject: [PATCH 018/103] Adds bullet collision to wall mounted cameras (#34500) --- .../Structures/Wallmounts/surveillance_camera.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml index 895b710a068..db3b469a9fa 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/surveillance_camera.yml @@ -15,6 +15,15 @@ hard: false mask: - GhostImpassable + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,-0.2,-0.15" + density: 190 + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer - type: LightOnCollide - type: PointLight enabled: false From fb38bf3d240404970e3db6f8ca1c5cb5174fbe95 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 18 Jan 2025 13:42:36 +0000 Subject: [PATCH 019/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 907fda5e84f..e0c82867b02 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: DieselMohawk - changes: - - message: Added Security Trooper Uniform - type: Add - id: 7325 - time: '2024-09-09T19:19:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31997 - author: qwerltaz changes: - message: Dragon ghost role now spawns outside the station. @@ -3921,3 +3914,10 @@ id: 7824 time: '2025-01-18T09:02:40.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33809 +- author: Spacemann + changes: + - message: Station cameras can now be destroyed by bullets. + type: Add + id: 7825 + time: '2025-01-18T13:41:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34500 From f3324b458c358b38f0ca03b863dc593b04f1b369 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 18 Jan 2025 14:59:53 +1100 Subject: [PATCH 020/103] Update engine to v240.0.1 (#34497) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index bcc4cd77cf1..f8410a4674a 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit bcc4cd77cf16deb9b05f29b090d865f836a733ab +Subproject commit f8410a4674a4978fcea3fd267c6fb26b2ba6e7de From 86cf3a46e223e4847b861b8e47f273edbf16fdc1 Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Sat, 18 Jan 2025 19:58:51 +0300 Subject: [PATCH 021/103] Change MaskComponent to accommodate sprites namings (#33451) Co-authored-by: Winkarst <74284083+Winkarst-cpu@users.noreply.github.co> --- Content.Shared/Clothing/Components/MaskComponent.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Clothing/Components/MaskComponent.cs b/Content.Shared/Clothing/Components/MaskComponent.cs index 41b2b797f5d..47f2fd3079c 100644 --- a/Content.Shared/Clothing/Components/MaskComponent.cs +++ b/Content.Shared/Clothing/Components/MaskComponent.cs @@ -20,8 +20,11 @@ public sealed partial class MaskComponent : Component [DataField, AutoNetworkedField] public bool IsToggled; + /// + /// Equipped prefix to use after the mask was pulled down. + /// [DataField, AutoNetworkedField] - public string EquippedPrefix = "toggled"; + public string EquippedPrefix = "up"; /// /// When will function normally, otherwise will not react to events From 5d06ee2894da10a18b81c582a8c131dd788b3f18 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 18 Jan 2025 16:59:59 +0000 Subject: [PATCH 022/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e0c82867b02..70cb49fcfb5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: qwerltaz - changes: - - message: Dragon ghost role now spawns outside the station. - type: Tweak - - message: Dragon ghost role now spawns where advertised! - type: Fix - id: 7326 - time: '2024-09-09T19:22:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31890 - author: yuitop changes: - message: Fixed some cases when surveillance camera's red light not turning off @@ -3921,3 +3912,10 @@ id: 7825 time: '2025-01-18T13:41:29.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34500 +- author: Winkarst-cpu + changes: + - message: Some masks can now be seen when pulled down. + type: Add + id: 7826 + time: '2025-01-18T16:58:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33451 From 1840160fdc8d5836a22253229e4a41f06c78a8fa Mon Sep 17 00:00:00 2001 From: Minemoder5000 Date: Sat, 18 Jan 2025 11:27:46 -0700 Subject: [PATCH 023/103] Add a 10u vial of plasma to the chemical locker (#33871) Add 10u plasma to the chemistry locker so the chemists stop stealing tables. --- .../Prototypes/Catalog/Fills/Lockers/medical.yml | 1 + .../Entities/Objects/Specific/chemistry-vials.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml b/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml index 3e453510388..473b0b9b54c 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml @@ -117,6 +117,7 @@ - id: BoxPillCanister - id: BoxBottle - id: BoxVial + - id: PlasmaChemistryVial - id: ChemBag - id: ClothingHandsGlovesLatex - id: ClothingHeadsetMedical diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml index ec910150eec..69da415a48b 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml @@ -149,3 +149,18 @@ reagents: - ReagentId: Chlorine Quantity: 5 + +- type: entity + id: PlasmaChemistryVial + parent: BaseChemistryEmptyVial + suffix: plasma + components: + - type: Label + currentLabel: reagent-name-plasma + - type: SolutionContainerManager + solutions: + beaker: + maxVol: 10 + reagents: + - ReagentId: Plasma + Quantity: 10 From 4a015d133d5f3d28c9f56cd170123de988f2807a Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 18 Jan 2025 18:28:54 +0000 Subject: [PATCH 024/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 70cb49fcfb5..964fd0da54e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: yuitop - changes: - - message: Fixed some cases when surveillance camera's red light not turning off - when needed - type: Fix - id: 7327 - time: '2024-09-09T19:23:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31831 - author: Blackern5000 changes: - message: Normal and reinforced windows have been made directly upgradable using @@ -3919,3 +3911,10 @@ id: 7826 time: '2025-01-18T16:58:52.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33451 +- author: Minemoder + changes: + - message: The chemical locker now has a 10u vial of plasma. + type: Add + id: 7827 + time: '2025-01-18T18:27:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33871 From 993b5c46b5b13349538d89187f3e01025674a761 Mon Sep 17 00:00:00 2001 From: Nox Date: Sat, 18 Jan 2025 14:56:42 -0800 Subject: [PATCH 025/103] Rarer Highcaps (#34469) * Removed highcap from seclite * Changed cyborg starting battery to highcap, reduced seclite wattage to make it last as long as it used to. * Gave cyborgs back their medcap * Rounded seclite wattage down to 0.5 --- Resources/Prototypes/Entities/Objects/Tools/flashlights.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml b/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml index 6d36e24bc12..98123b3e0c4 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml @@ -87,9 +87,10 @@ slots: cell_slot: name: power-cell-slot-component-slot-name-default - startingItem: PowerCellHigh + startingItem: PowerCellMedium - type: HandheldLight addPrefix: false + wattage: 0.5 - type: ToggleableLightVisuals inhandVisuals: left: From 428fcd65a796f6d3fafb49b04cdfe550ed5817ad Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 18 Jan 2025 22:57:48 +0000 Subject: [PATCH 026/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 964fd0da54e..46b1d4a7bff 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,19 +1,4 @@ Entries: -- author: Blackern5000 - changes: - - message: Normal and reinforced windows have been made directly upgradable using - rods, plasma, uranium, or plasteel. - type: Add - - message: Reinforced plasma and uranium windows have been made tougher. - type: Tweak - - message: Windows have been made to correctly display their damage visuals. - type: Fix - - message: Reinforced plasma windows have been given the correct amount of hp and - no longer have 12x the amount they should. - type: Fix - id: 7328 - time: '2024-09-09T19:26:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31978 - author: Cojoke-dot changes: - message: Nuclear bombs now require the Nuclear Authentification Disk to toggle @@ -3918,3 +3903,12 @@ id: 7827 time: '2025-01-18T18:27:46.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33871 +- author: Nox38 + changes: + - message: Seclites now start with a medium-capacity power cell. + type: Tweak + - message: Seclite power draw (wattage) has been reduced to 0.5. + type: Tweak + id: 7828 + time: '2025-01-18T22:56:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34469 From 2f8f536601a48dfa743ea0a012b3784202369d81 Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Sun, 19 Jan 2025 13:46:54 +1200 Subject: [PATCH 027/103] New dry fire sound (#34447) * new empty.ogg * source to tg commit --- Resources/Audio/Weapons/Guns/Empty/empty.ogg | Bin 4792 -> 9779 bytes Resources/Audio/Weapons/Guns/sources.json | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Audio/Weapons/Guns/Empty/empty.ogg b/Resources/Audio/Weapons/Guns/Empty/empty.ogg index 817d72e0ed0ec1504261c2d3e6f1bb7dceb00fc1..920b49ed08c4db31a2ac09f2e4107c93bc9b9a7e 100644 GIT binary patch literal 9779 zcmaia2Urx%((WuQIZBf3qNF8B6c$A?!U7^ok|=4(pe#uQWRdWZB`g^v=OB_nGLjLH ztbimXilPW8sN7lj&N<&b_dfqWPt#9NS9euc)mt?+v*_5{>j4D7-xrPJ`9QipJOjcB z@xG6-cJ#ncK~yUKUg85e8#F<5@H_u~;dkOG>;_(rwAWAnuWOL-oRJ_%zw7wGK|}{* z4|8#}Hauew(}0PKiiwMgi%P)wbzI#XA7IcPXg5zdo;QT(d@Ec@*$@Jdf-_=TuwLwV zoB;sP0)QnqoI24?173*B<@Zg+spChzq7kXMh+bx!XtBP3budX=MgV{USbnnD{B;ed zQG`7+Uo0jE;doo77)BDQyNn>~KH#-+E2=AUb{mEBkWv{F0iazJ)VV?#Q25R|oGXkO z?EYfM3~&`^V#ozba-NWj55R)8#J36(Z_93#y zMiCpCe|KbOdceT5C=s*R(khYS*@wf6QZXQ_bG2Xq7E}|s70;mYf?@at`|CH{I^TqJ z>80LCsOsr!8-SOWxsf+|*4t~=JHR+K)U+wUxGB_hF4X)e)QUOm@Ae~L=?LG>REI%; zoGXarHF(}-*1T0j9$`pW1p#1-Hwla^;W9iSU!%y*smd{a2OB(6hK?{yR-MZbE~4b`!PZ!XBHj+K%Xk0gnBWOw>%{K zJ#K*QmZ!=fPV4n|Et-Eh0q=GIP!MD9b!Q(0t$`Ar#7G%=$jy3a&w{4FTjYPfg3j;) zD#Ddzm+XWkm58%CGYb}E%bZK9OnEK|To9i70hT_VzW*9Qo&GVWlp$lXD?&emuemfe zB zcszZ*q?rL6Mc^{{>YMe?`TY%xQj5&dF2oABBjR0#b2FJaIQnUu`S~>&e(t~FqX7EN zYL2-t>j^9%me`tstB5O+)AK2HVvg7Vynr(%Rt;Gid_(ww6U-3x^z5Xdm}EaCn0B`Z(!u@ zYMkOV-xz8>=e0B&urwQU?_$`01MAu9n5%;4KfWake4SLC=e^vAOg z#&c`daBEKpz5XVtvoHCEUR768TaVHF4Wrj26I$<@`J@zj(f~c}jegsJHf;GmcX8ERX1-gr`wb(>(qHA2Wl;75M=G)(HXsl=vlWRRLN)VEF;}SfZpR1CJ)X>KFrh zmR@@{N%FO%l&-$PFulRFzQH_`wm}1rHodm?cYOnTRRczY$z*MVde<>Y^jm#{MJ9vk z2J}4BW20oRB?)a~@OB2Idd(&W+?#PVPyL&fHp3aKYX-9oQo5c7x&~-teFI}}wDFOF z(M*6QNY&GR%V=QGVDR?9)gU=w#nZst2>tfRz?kW=>1^oAVZaJAp7ZRq7f7|5L0dI? zE%7_1J38f+l%?~Rm6et?xRzB_n&xem<&_Q9*q2pR4And@uX5P|sZ}LqH9}=&Lgh6T zCuKrA4JBnQl|wbv8CB&w4PPjFgmzjUlvP!g*L=cLTPk<@+;>_;{fpqkMdjNqr7bOP zJ1y=b4X*6@W!von!`;R=^A(~;>_2KKs{XV`8+c{3axRy-cfln1TvWT zff&2b-VAQ5bz=kP`t}9otz=>g?bE@NmQ`kymG9KJ3HDU%DCrsmm?xo^q|J>lx-Ch^ zn$E`Lm2I~O47Y=V#1{JQv%eH&H=n--60&M4DFSQ;j>yKG=lk4GWY-S8@}E711$tqgw5V-ZfxZ|qm&a{nFFWoI(uoTfU^}WoR#=B8 zfUGuh3aFKkg#`?nNMXYf5Xkuxit42Wbb1=4^&qRl0wztQSObHpo7fCHxTAp1R0H0} zpyw*wmwu%W2C^E&3qON5OBKyH;R&X$ax>{3$jX^1R18S4ac!GU_xtiM&8?k;`(~^w@xldOBqe~t z*WZ~$BXASeAgcsaG`PdmrMW2C2_&SWqUzV*dALX&PMK8TWoUv=2#=@D2ZmtQ!4d)r zSTb}DK84`JRxunks^LhB89@k;DUBfbN-lxyxq}pdhteW7cnZM+mz*7}=Um2dciF)Mo#zotN^457Fqo&lxWI)FEhJxQ z5NOd#FAxfay(1=0m34Cpq?MsF;+i}l6znQrrJ8^h>?iO*pU(0K4-iKJC@|-PauN2l z)+2~bc1bWZvWHL$^koK9E0HpS#{i#IBM7jgRRRfMy_Xvdc7?bJJOPE=f`N1JLQgya zhav|6fd^nkRIO|4@gzP6%$Wp$FFt1?5hS@dHFzHkmw*Drfhv_^C_&rx8sZ5!lTR=Z z8ZJ`av>>edOq7w8y?33fxC&>iE2L&Y5ZAA#J0n4Y^Xp~+SRf(+stMUtukkUH2}s(W zDS?H7W{egKW3Y}C+sITVh4-d{HBJ#TzVrYeviSNV8YFRbsz?w=i?&_PZD zoRY8^-jac{QV8L7q@@N6y`EI?#KasSVerj@5YRoj%18u14~P;t9E1-T(Kr)ingras17fjF^LieLknN!i6AED2?E!#QuXYbhDyZ##vwY@j zF0j~EIgwKpAJ{9S(&@Bxo8u;S8#0BQh?$xy}}I zo$tlhf*?c*@mcuFCU^eOWf#enZo)eb14sZ%2>|YMPCM|K0a$NlNU~-~9ER3fTofR<)4&`~?^SZ~{OA73}imbVMxm zQ<^y1_zMYiiS#%Sz5uWc!O{R&Zldt;aJ$(2o;5;l72A-4S0A7}XJmXwN_zgP0zDg_ zzaT3}pOf(~$apd48<&ekC9jHKy)+<4ob>rv5_W>m?Ev?u4%$jl!?}p z%PL>(leiEkm`$fSrGm{D}PT_&wInH z*X|M@=aELaYp{>I)6h`?C*c2R7y={Z=HIyqI6#`X_29)K5^niEa(lh;Doy*n7v5Oq z^<9nLFpXdA-|wS5)sg=(rqBonG7~5ugg|Et56q#`+UvN?l>bByt}ZNgY33O7?qT9? za+HpRfBpRNa%EZ%$@-V4$3MqBjmO+~4ddjK-R&bDPu|Su0DwnuPGT9bf`1GEoKM_k z5syL(A=Ub#MY!R^I-Rhgomka3X;9{TUl`|~#7Cm{@0kC1j9GhM>GS2jeAB|sheHn! zFxwv&pKgw!W|Z|S^oDWW%tNCy4%db}l;xZZ75 zbr;{el)7B}3k_J1H(a6N{ep`cpL+Dye4bzPV}*w(65x)ip%f%{s$!ny59V`M^L{pU z0H?a+*m1m=1@aZ4&RFcz;etLoQej5rGth)1rONgH4BsL2S zP6bR(l*OyRdqSN5;m6EC3sY*6;T=Erw(3XYtFI#p%tP<`K8T!fPaRx|>A|$^Y4ITj zYkH)oZ>&;j;j}q44$EUpzC&u1I)L>+K2yHq7W$Q_T=o z#SkZz=8pGb4hx0=W`)i8)eJ>0;)P!?Ee02z?`!Xy7#!%N+HylCu`I3V4+2Nu%}ERt)1xS z<-|*FR~EXu%Xi;zhuf3-j32lg<@|grB-D^~tc#`LqkKv#td4BMjm%6-Wfmmpp~ zJ83Ik!?M*RB?s;P(WeW;ifGYUB##5#!{U*khNZG#?>CQ&BDD426_{ICrYwqVx(#gj zzc=%vOuZ<;aEb1Qo1e<#Vkg-oA1E>E9>j7xVtM6Dv{0j4K-m`oCjgV;SieJ2E{+7POhMTO`#Bj}@OiSihosFHE z8Lvc&7@a)6me^hUQBd%6Ga)O?CVhC}-^`?ANs)QZ}yduQg>##)bBF57=uKQ&iW-<93YfBoh4NYL-wDsIo|NjqZ6W_eOi2>0s9b7MMeL*X*&BK4K;1?$?g zFwMqG5s~%##GYGK<0|Fe^=i-RAO$MU9zko{t!}s%{EuGcb$b}|D2faeJ^Fl67a>T0 z5`hBzw}vLIwG`}Uu#3PdK~f1($g*u9F4ip1&xX5j?a;;RkMYd7=Noey!bWY=Onm9y8K zf=N=5@Rt1~-FRQVo#*mNb}-pgzOrU#%MJrgd`ZnL3olT>aqp^wGFs@{kh}o|y=V0L zh%nvS=7WYCOV&=sWQtq(u0NE@&S&-1VifVUFi;L!y4IZt1L_z9pp8rHDphAyURqDn8vlv@)t4Qyj2sQWtf2IYbNp403| zvRQ(ohge@)TR{qSh-yrW%{zTgk=ml&EmG-AWyu+)dy%)+_nTr~b6isosMxg#%Bk5> z{CZO?hrQ84T70$`eVhI8+Ox8k(*oZOZ4=*)Dz|=nVX9-f{%?&HEwV!I%gY&4pZKOic_MefFL588_?c~-@iVQgJ9vZ ztSLo}a4IBCK!BaAZv+wqGcmiSQFH!#9vmdsKfa>bSRi5~-TwH9t7$VVEx?U<@Pg-V z6+oNr1G6Ml&*CR()m|NXnkXV8L%wu;@3v6J=+jwJe>(>m9ik1Twjmin|Dy#YM-ZD* z-BGI`6G?sV;@ufLbEf{xtKtzio=uc^ZuL1_w6@>(0$jdU@hmgDtLzOy&FHVwDEpa4 zzM^KN7}w2j$y&Zwq@W|uB!Y@pKvP`+LVi|(Kfck*W8)oof^6z38MeCw*VmjF7E<0u zlnrH=Jg!sJVw-cm2ZU^S!(gSvumj&|Vl$riCkb|MnB>|XIDTsVEBSF32Fksn&>D8v zia5c<05Ziz;Sd*2Nqgu{q8{9Fx^2&gV>_PpbFB2wk%oRrTnd|c>G4128 z_9ttL**z=Sn!=+=E=>`87)!h1T`#qh+NjbN$Oo%?B-ljW$yeUMCKZn}5(f9cnA7!T zbzV1)_wO?1xSr)!$f}sAJo?FdrBYqTgs75;Uv%-|4DjgU!UJw7Q73P{n4q4@{`-+h zd)bUW{j6n0HIf3zz@!B+tlVfNBx2jG&0ToDy4vC0@eBW<4WIqh!oxA;Q*+suo{sPL z(#pI)PWvkJ0#boQakUgF7R||_Gloi0i9JU&eds^gf!C%T(!1&8?pm9`ICQiZ52mK3 z^ivbYHlkeX>CJ6}oG6SS2l1Dj39!cxe@(a4{RJ=r%ihPHcdrA*YY*{>hg);mp-y=qRo??FIQ3nDt{?ED2i14 zao983K3F@=>b3lf&{F7U7fBDFe&+Qoz?CLOU~!7|PWV{*ZOhYq)|PLcIE?X0sog)7pO4Lc zoxC{anz3GJ_$r$>Afn$z_BSs{ZKWs=q)}bb=xG9azb&HSFzkeJSVp}hGXU|@z@@*1 z=DCOIZ>f-v(u9J`y+&DUT*r4gB=vR#?5iel3`#NuGST6u1+ zFEOU*FF&b?iLxG&EpDm;M$8)uvb1(|@$ma^o$VoiJ?l`PuWCE>>wP`t>w9|8p%>QM z#;rE`J5v6W;LDVV!=n1+<@D*KE8LH?xswN|+HCmkSdr1<&fL?%pbHTU<`=6_g-%A!{t z?E5_uyCk? zxRXk(H~%AIvFSx-IEF=UcvuWL`y>Ljw))Q}5khcysmzUoVzIC5Wo31lHv|HCuR5|2 zt|K1TfDAWJD2W&?ZHA_V7-7q*vnSuw3f=K)xiPi2z4dM0aBWCFb~59oy0?8|o9uGz zh4RwmWc7oi-+Hd!ro|>*3XG{O+o}1-+cAbs=g%q zFl2RWCf;Nxe9xN~aiX=7k)IA(h!vK4&hT}Fc>K_Q@OuF3!RsTcpl>APZ&&_A4u464 z8os@5j4m93ngp>3WTiOuma26CZ^h^m#lwlierG}nYt2}PnO3e%jO2JfD#=yz@|YGX zOW#>5A$!myOj`6K^u5E+k*q(TF;88s8xcT%H}TS%zyvD3bnon5-}xC~Oij*8nR&hKU{z~~ zkcXH5`pO75GLcc@b3WxaDpY!ubIZ`l;Y!zMwTNi;oat*kXo$n-R++{EJLaM?GG*SJ zu&lXusSitg9B`Yd|Q_>WJ;=`R(X>{_hS&s3;cz_CQ?>IH$8 zdyh2D^S~biiu?%Dd)LNEq@vbuO!5Rc3~(8YU~iu~KS>7S4h~W|2fvV;W(R1)z|WXE zr%p#F1QNpbaZ05L^}G+d_n9DMd1haaf}i;*P&?G5J^Ka(>A8~ZE#>$udz&ZP1Z{t< zJ2|DQk#@UFs#Tphc~E~r;gWgK4x}9|MDzXq)jw8``sD-s55`s6q6rhGq2IC+Vm(HH zRmZ*i^7JK6t1(lq2{pIswRP24fqQz@t$R%Ig|D@B(__&+0h#0_ExBx*F1imdDEiiu zcY69!NFPxBdJf#N{N}ZeGzyIWDX8vDn!oIOOaw#$SmFbUfaaO1Nn;4{$)wwweeOphG_{uEi5> zE-Kq147#{rr!aH-V;vJE>_c0}iK7|oGEU_5`MW5ikZU3r*QtPqCkA)P%QYg*_@8wx z-A;9zHIsUU`ML4@2hU}!f@QU!!XM?SDe(W1_Q;}8?a38WBfpeIlnE`3F2Oj6I$3Xj zYb};yUT_gy{POH27nbwkRq?g^VGuw)Vyw<0nJPERYBut1C-?5NTq%X3RLwCDy^ATd zf$I?xKAy7I!1K1654|)O-1}Ul-NiO(iM8XxB4{drQHM(A&bj*E;_Nx$)__()6=4viM9SDHs0DMaOG%m_hBPAwRfN`Cd>UWMkkZ@)fA-%f8}TdW@jG|GK)${ zJr~7rTwL(rxMJ-1p6Pm&k5Oj|?v5z>^xN$8)zjN=R#&~cO5ZVQi!nfCM%^)AH`$pk r7FIVk{g~}l)nO6N%%s#~23Vf%C@#;fY(Ahkbf>FcXv!v|rl$TshfYQI literal 4792 zcmai1d010N*S`_OD2qV?285#y9Oa3TD8h1OGFSNDq^MV)LMO2EH2+9wEg=1@jdT6leuTkne&@7XU@!-_{YZ5 zp#{)iWo*seEh=&f-Q|qgFeYvR#v^z)1$)NWZJYj4yxlftr#Uy*wB)>729x+h zPc8zf6ppzb!U}}0Xj6f?bEqiQ!WmE*6u^sD@i1ZFc3&f*2` zlu!)dO%Mc2-5QHht0-WwnY~v)supDeFSuh(6drB1Z8Q>S+7nM4{nfVpVXC%UMp3G_ z{j7-~*7cCl{2XSkUb(4SuI)I1hbyo^i_(Y{bh?(A2rMb+)dB)J$`Hzhp!3Bdl5I6%ugK=KM60huEy+mdVk-55#9j~zNtW{S# zwYnDs1qAB2@5e4u>qS8j`n;o18Y+~=3CAbRvW!P#MYpM4En8DW<+BWn5b}}DF)hk|HO&OMqoM-42QDu~s z60iDX(HY@2%D9B9xHl#tDF9V0VdxZrapRKa^Nc0)l!Yw0r^r&p+pn11Dba5Q)Y|Ig z+@h>{KrO6}&o1(j0m|!IGVP3yipNz!shg>mNxZ~B)h+w!TEUr~7C`y8PCk=h{u!bk zr*<+}uL~wUYu8g4-8&vf@X(Jiv72;#KViGrBvs-z^{%#^NOw)0R9q^^|N2!+OWyL4#I<2pEsT-%6s;hcm>yVl;Tdb;^X>^YLKq&hq zWxOc0E;x)`T~DLJQZa3b+J6M#dp9lPsN6smazqAvNs_q4vTWX+1l86+kpFA^1O1i% zTmQh{*EbJb2C7Y;oqZqO9pObQ3wVr%6y~Ee*87wpP-l6&LJOi9|EJC`9h`6i2=@7f zz^yoL7iGdsjQM++U_+sOSWk7ldDoix^qO_|TKm5t`x`h1V%_`5$OA)G;6_fMLv)`# zi|)Wef;k}t9HyN2#CsO!= zm_6bsGV>Oh$BSZ<3(5+MCJWD5R;Y(S7}XF}5tbejmLC$99m<}_5XBW1l$94*b(GFD z)lC1ls;v%iGYCpD^Gr1Jq?x(X0HO9SUq|I#{9Tfnd!lt`FL{2A4-A}vLqn40FO9!8 z0D^SxUBPxf!22#U@2A-yben#fdp{ldZ^gHd>}voVyI6H#Z{r0Do3dQ*#Wtsf#AdSz zn(HEXLScLK{QG5;R7o3_;+ET5;4L_p(oc6<${HvA275faGE$m0gva> zI!I%9nvilyLRV0TXT=?qwP*8|!BR;ikV?b~?@>u!uQw6I$88k&xe>`x?hwWTdcF_e zok#Y?n)@2K`(s)C2JZd&FqOfk~`DB$@$` z4@4{FNXP)s7t2!8eFqH@qyQQ0k46f3;YkQ9gr!s>A@5QK2U1uAyj?gIva+9t9N>iy zaE4FuSfOjxR;B=kZu_ zPULA0bGaX|8Ax~KvxZLbp5PK#@3XqeoF_>v)<#x{lEd1V&QPX=2O;4h(SsX<8SlV3 zl<|gf9!NirejqKJ7aiWn3uh#-#&5{8_RMvVrf+We=#doeSkNzrFDGceXrFB?pJS^@FgU#gu)XeJo zFgjb7P7BkP)`e2zN%g^z?CRDG(&9oc&2GFzObfG;))i1ZrQBTFB2%e|mT4}T>l4P(I#pjKX`0Q1Z~#Qw8M>1FQA`C?9W<9LG(7t{2to%`~qR($I2>M;NX%O&iZpOjCJT0_uI^^p_U1;n*eA;J;}vP~zA z6Ua+I787fM)0rotEHV{{?Zyd$T-rEZAPSq7qy|vgQn5HJQzjPC*d!y6>z{)Ry)(76 z`301gUZn}qP>@b`B;#CcQN`}gZ1d!E#ER0&Dfw57a~8siiV8U=`5X+sO*J)4HK(bj za{64nnqxhE6KGXb)L3=i+*?rrZd&lHcy*>?stIsvf77msG&By7~J`5s_F;ABCA1@siN4`AZ4oa=KtHEAew<5L|f_*N43_Q_oJc8 zk8mkIRmbVBnA_t`G?xOmN>W8MYCe}n^)9a;P(`cCdodVVyiKbKyPE(!dV=&0#E(sD z827$2i22O=fu~&1#eaL>6`e<`tRKS*^eXDZ*b2%lVH;aEV3LG!!$JH$;Qqrq?@pmD z+#`SZdjrq{aYPrGbPJUs+52c@qfk{Ssosf4A17LqHh59S ztQ|B>7hXfW;Fh`=5985BWQl1BIm(X|Rni>BEeAUQ9R=#9C`b#vBnIODjJh*Un9xLL zJ3x?YMi=IIdfM|>=a&)IlrG>mYo=|7%C0neU2o*C)7akA0+K!24RbUU?}A$F==e*z z#j{s}6_WGxpeX{t1sN22j)I;yLTlC(-EHrA^nBvgEVLLTMo@6jECe}jc0CMR!mYQ=R;?ziwy-AK zwa6-#Re3O$m-c=95OL15Vq0xVlUaY~t-x;`pCxb(TRuDVF=iFR9btJWdOJHT+beUR zr`zC-&sToF-jTKS*N3AUyXp>qYGj_;|Kjuu_f--8tAF&AZqUv+e2uIz(^I?Es`?1M zyhw{Ha%8)_nLYE}fJuJ2o#$IdD(^~o?r!;D&d4|mrGtDSSbWmp4PgfJo^6vpwZ!Et zZ`(iOk^J^`aMFMJJ6CM1=pkn7r%Zm0-38m1uK3b_+|cIiZ$DD1*ACY{Q+Ccu>YJC= zw~%snuUs|fpP-#bLp6oyF8sO9xOq6*t?b64Z*Km0>vTlsWxuXIt37)xZhIj29vipm z?Gj(AePnz8%A132Gt2_3{#K7m&L3XgFd23FXrOx~vxr-Dj&XeTRlW5sr+40dhrVm9 z>r=kPv*k$tXGO@!)rPVeqx;3T|7>!&`uR#VI$>|1Q``Xb!Cy!S#~m*!xR^HUq0e0S zFy@x>#L2=WUCdmiV6#D4CqpAAEcRH&1gYWSXUo@ym0jIBmdA7c6NP#mZJuw4QXCw( zB84}XJrREC)+}n!h91BOi5=JZgRvn0E zw2WOjXlDOxY{keE%e-}@b_c~Bmr+DOd z@w(%?|~8%*fF!3AeGtxqx++k9}l8GLGe1$ic8Q`^bwx8^dZM_%508n5>t=277d zWz^NJWw(-%MW@HxUtmwZiTi!7GuVV-S*G`3$sSp9ioxYSnB!#4#cz^I6p^R{J8)HA zzbuU0xZ-`#pa$lKp2&Ms_}K+N&5?pryoHUQ=7MiDFuykNtnpUW4yY*)Nnx*Hc! zBwbta^!|=4*GcNSC{&e~!-dTahXNh=jB8Bxv8286tJ1O!MHbit3< zUUBUos473b^p@p$ZQKSya{EF1doi0*2A<_)*5(fMPKRHppnMR*gI{i-Z@7hy*(EyP zmasICZpg0d`Yq-2mq#Of>}-ZTPkBDmc&icB7rg3IN@0jUR7ZVup&6!EzFr&P>EhuW zzCEubt1qX&a&_DO<}9Y+(eb)>Gs@Uopa1-Fif^r%d{_k$~iw55>!tZxCfAe|R(U<^78F53jU8QW%GSSr3IRA6+imYqebTw7Age zSVK-@QDxVI5Ci`laG@l*B`rt|lMB7>DdtLyDKjfB$cJ{VYN{`uaPql%!O`l^;5VrI zGF+hR#r(a?Me&Np?Cr|(>2={24sJ=YkCKP4S%~`@{I|X>{`qmpcysrdL(plt*2BaU zy$f%)eXNOF8FQp^W2TOQi7z&X!7{vWPJK-RN)KVJO$8@4hvtKU*4O@5&Q*2OsyJT?|xG}7R1_;$_Le@3wH>@=qS6lV@$!BU}y5&L5{9_;EL%odr$A>oQ?mirLsW4_>*!qu9 qCgx7@l~-Ggc!$GYe?#0?v%qob_p!Rr4vSB}TZcD63G*2MwEqL>cMdTC diff --git a/Resources/Audio/Weapons/Guns/sources.json b/Resources/Audio/Weapons/Guns/sources.json index 5169aadb3a3..cc9a3e5c0b2 100644 --- a/Resources/Audio/Weapons/Guns/sources.json +++ b/Resources/Audio/Weapons/Guns/sources.json @@ -12,7 +12,7 @@ "sfrifle_cock.ogg": "https://github.com/discordia-space/CEV-Eris/blob/01f7518e0f8177734a6579aba2bbf76024aa96c4/sound/weapons/guns/interact/sfrifle_cock.ogg" }, "Empty": { - "empty.ogg": "https://github.com/discordia-space/CEV-Eris/blob/fbde37a8647a82587d363da999a94cf02c2e128c/sound/weapons/guns/misc/gun_empty.ogg", + "empty.ogg": "https://github.com/tgstation/tgstation/commit/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0", "lmg_empty.ogg": "https://github.com/vgstation-coders/vgstation13/blob/217aa33a41e891e144ceec710fbe1877df747adb/sound/weapons/empty.ogg" }, "EmptyAlarm": { @@ -59,4 +59,4 @@ "sfrifle_magout.ogg": "https://github.com/discordia-space/CEV-Eris/blob/01f7518e0f8177734a6579aba2bbf76024aa96c4/sound/weapons/guns/interact/sfrifle_magout.ogg", "smg_magout.ogg": "https://github.com/discordia-space/CEV-Eris/blob/01f7518e0f8177734a6579aba2bbf76024aa96c4/sound/weapons/guns/interact/smg_magout.ogg" } -} \ No newline at end of file +} From a2df7719b17b1852c38d591d536928abb62c07a8 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 19 Jan 2025 01:48:01 +0000 Subject: [PATCH 028/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 46b1d4a7bff..9c45e9517c4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: Nuclear bombs now require the Nuclear Authentification Disk to toggle - anchor. - type: Tweak - id: 7329 - time: '2024-09-09T19:30:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29565 - author: Hreno changes: - message: Display agents' jobs in the Round End Summary window. @@ -3912,3 +3904,11 @@ id: 7828 time: '2025-01-18T22:56:42.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34469 +- author: K-Dynamic + changes: + - message: Empty guns have a louder dry fire sound (i.e. when the chamber or power + cell is empty). + type: Tweak + id: 7829 + time: '2025-01-19T01:46:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34447 From b471c1094dbf0eb5aa1a3eb245d1224a30071b21 Mon Sep 17 00:00:00 2001 From: War Pigeon <54217755+minus1over12@users.noreply.github.com> Date: Sat, 18 Jan 2025 23:32:33 -0600 Subject: [PATCH 029/103] CentComm Map Updates (#34475) * Bandage fix denied animations playing on devices without them * CentComm blast door prototype * CentComm button * CentComm window shutters * CC Updates * Save as grid * Remove an extra detective figurine I like them better in the interrogation room * Remove paramed locker, let pumps shut off * Fix wrong HOP locker prototype --- Content.Server/Remotes/DoorRemoteSystem.cs | 34 +- Resources/Maps/centcomm.yml | 1631 +++++++++-------- .../Structures/Doors/Shutter/access.yml | 23 + .../Structures/Doors/Shutter/blast_door.yml | 1 + .../Entities/Structures/Wallmounts/switch.yml | 8 + 5 files changed, 883 insertions(+), 814 deletions(-) create mode 100644 Resources/Prototypes/Entities/Structures/Doors/Shutter/access.yml diff --git a/Content.Server/Remotes/DoorRemoteSystem.cs b/Content.Server/Remotes/DoorRemoteSystem.cs index de327bd0840..27df5ef34d2 100644 --- a/Content.Server/Remotes/DoorRemoteSystem.cs +++ b/Content.Server/Remotes/DoorRemoteSystem.cs @@ -1,13 +1,13 @@ using Content.Server.Administration.Logs; -using Content.Shared.Interaction; -using Content.Shared.Doors.Components; -using Content.Shared.Access.Components; using Content.Server.Doors.Systems; using Content.Server.Power.EntitySystems; +using Content.Shared.Access.Components; using Content.Shared.Database; +using Content.Shared.Doors.Components; using Content.Shared.Examine; -using Content.Shared.Remotes.EntitySystems; +using Content.Shared.Interaction; using Content.Shared.Remotes.Components; +using Content.Shared.Remotes.EntitySystems; namespace Content.Shared.Remotes { @@ -17,6 +17,7 @@ public sealed class DoorRemoteSystem : SharedDoorRemoteSystem [Dependency] private readonly AirlockSystem _airlock = default!; [Dependency] private readonly DoorSystem _doorSystem = default!; [Dependency] private readonly ExamineSystemShared _examine = default!; + public override void Initialize() { base.Initialize(); @@ -31,9 +32,12 @@ private void OnBeforeInteract(Entity entity, ref BeforeRang if (args.Handled || args.Target == null || !TryComp(args.Target, out var doorComp) // If it isn't a door we don't use it - // Only able to control doors if they are within your vision and within your max range. - // Not affected by mobs or machines anymore. - || !_examine.InRangeUnOccluded(args.User, args.Target.Value, SharedInteractionSystem.MaxRaycastRange, null)) + // Only able to control doors if they are within your vision and within your max range. + // Not affected by mobs or machines anymore. + || !_examine.InRangeUnOccluded(args.User, + args.Target.Value, + SharedInteractionSystem.MaxRaycastRange, + null)) { return; @@ -50,7 +54,8 @@ private void OnBeforeInteract(Entity entity, ref BeforeRang if (TryComp(args.Target, out var accessComponent) && !_doorSystem.HasAccess(args.Target.Value, args.Used, doorComp, accessComponent)) { - _doorSystem.Deny(args.Target.Value, doorComp, args.User); + if (isAirlock) + _doorSystem.Deny(args.Target.Value, doorComp, args.User); Popup.PopupEntity(Loc.GetString("door-remote-denied"), args.User, args.User); return; } @@ -59,7 +64,9 @@ private void OnBeforeInteract(Entity entity, ref BeforeRang { case OperatingMode.OpenClose: if (_doorSystem.TryToggleDoor(args.Target.Value, doorComp, args.Used)) - _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)}: {doorComp.State}"); + _adminLogger.Add(LogType.Action, + LogImpact.Medium, + $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)}: {doorComp.State}"); break; case OperatingMode.ToggleBolts: if (TryComp(args.Target, out var boltsComp)) @@ -67,17 +74,22 @@ private void OnBeforeInteract(Entity entity, ref BeforeRang if (!boltsComp.BoltWireCut) { _doorSystem.SetBoltsDown((args.Target.Value, boltsComp), !boltsComp.BoltsDown, args.Used); - _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)} to {(boltsComp.BoltsDown ? "" : "un")}bolt it"); + _adminLogger.Add(LogType.Action, + LogImpact.Medium, + $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)} to {(boltsComp.BoltsDown ? "" : "un")}bolt it"); } } + break; case OperatingMode.ToggleEmergencyAccess: if (airlockComp != null) { _airlock.SetEmergencyAccess((args.Target.Value, airlockComp), !airlockComp.EmergencyAccess); - _adminLogger.Add(LogType.Action, LogImpact.Medium, + _adminLogger.Add(LogType.Action, + LogImpact.Medium, $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)} to set emergency access {(airlockComp.EmergencyAccess ? "on" : "off")}"); } + break; default: throw new InvalidOperationException( diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml index c2c8087bf89..88df424d9a8 100644 --- a/Resources/Maps/centcomm.yml +++ b/Resources/Maps/centcomm.yml @@ -2330,7 +2330,8 @@ entities: 0,-2: 0: 65535 1,-4: - 0: 65535 + 0: 65023 + 1: 512 1,-3: 0: 65535 1,-2: @@ -2781,17 +2782,17 @@ entities: 0: 65535 4,-8: 0: 30719 - 1: 34816 + 2: 34816 4,-7: 0: 65535 5,-8: 0: 61183 - 1: 4352 + 2: 4352 5,-7: 0: 65535 6,-8: 0: 52479 - 2: 13056 + 3: 13056 6,-7: 0: 65535 7,-8: @@ -2872,6 +2873,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -2930,8 +2946,6 @@ entities: - type: Transform pos: -16.5,4.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - proto: Airlock entities: - uid: 5314 @@ -2974,6 +2988,30 @@ entities: parent: 1668 - proto: AirlockBrigGlassLocked entities: + - uid: 736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,20.5 + parent: 1668 + - uid: 816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,20.5 + parent: 1668 + - uid: 856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 1668 + - uid: 898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,16.5 + parent: 1668 - uid: 2299 components: - type: Transform @@ -2996,26 +3034,11 @@ entities: parent: 1668 - proto: AirlockBrigLocked entities: - - uid: 2300 - components: - - type: Transform - pos: 21.5,22.5 - parent: 1668 - - uid: 2317 - components: - - type: Transform - pos: 19.5,17.5 - parent: 1668 - uid: 2343 components: - type: Transform pos: 33.5,20.5 parent: 1668 - - uid: 2344 - components: - - type: Transform - pos: 21.5,18.5 - parent: 1668 - proto: AirlockCargoGlassLocked entities: - uid: 1191 @@ -3291,6 +3314,28 @@ entities: - type: Transform pos: -19.5,7.5 parent: 1668 +- proto: AirlockChemistryGlassLocked + entities: + - uid: 731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1668 +- proto: AirlockChemistryLocked + entities: + - uid: 732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1668 + - uid: 734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 1668 - proto: AirlockEngineeringGlassLocked entities: - uid: 5175 @@ -3372,16 +3417,6 @@ entities: - type: Transform pos: 33.5,-5.5 parent: 1668 - - uid: 1615 - components: - - type: Transform - pos: -14.5,25.5 - parent: 1668 - - uid: 1616 - components: - - type: Transform - pos: -14.5,27.5 - parent: 1668 - uid: 3970 components: - type: Transform @@ -3402,18 +3437,42 @@ entities: - type: Transform pos: 0.5,-44.5 parent: 1668 -- proto: AirlockExternalGlassLocked +- proto: AirlockExternalGlassCargoLocked entities: - - uid: 1673 + - uid: 620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,27.5 + parent: 1668 + - uid: 688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,25.5 + parent: 1668 + - uid: 729 components: - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,32.5 parent: 1668 - - uid: 2010 +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 730 components: - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,22.5 parent: 1668 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2011: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassLocked + entities: - uid: 4243 components: - type: Transform @@ -3521,6 +3580,12 @@ entities: - type: Transform pos: -2.5,25.5 parent: 1668 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 730: + - DoorStatus: DoorBolt - uid: 4242 components: - type: Transform @@ -3576,11 +3641,6 @@ entities: - type: Transform pos: 14.5,-3.5 parent: 1668 - - uid: 730 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 1668 - proto: AirlockMedicalLocked entities: - uid: 574 @@ -3588,16 +3648,6 @@ entities: - type: Transform pos: 16.5,-6.5 parent: 1668 - - uid: 729 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 1668 - - uid: 731 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 1668 - uid: 852 components: - type: Transform @@ -3625,25 +3675,22 @@ entities: - type: Transform pos: 23.5,-11.5 parent: 1668 - - uid: 2497 - components: - - type: Transform - pos: 12.5,16.5 - parent: 1668 - - uid: 2498 +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 349 components: - type: Transform - pos: 11.5,16.5 + pos: 19.5,17.5 parent: 1668 - - uid: 2499 + - uid: 354 components: - type: Transform - pos: 12.5,19.5 + pos: 21.5,22.5 parent: 1668 - - uid: 2500 + - uid: 356 components: - type: Transform - pos: 11.5,19.5 + pos: 21.5,18.5 parent: 1668 - proto: AirlockSecurityLocked entities: @@ -3682,46 +3729,46 @@ entities: - type: Transform pos: 5.5,23.5 parent: 1668 -- proto: APCBasic +- proto: APCHyperCapacity entities: - - uid: 688 + - uid: 905 components: - type: Transform pos: -3.5,5.5 parent: 1668 - - uid: 856 + - uid: 963 components: - type: Transform pos: 20.5,6.5 parent: 1668 - - uid: 905 + - uid: 977 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-7.5 parent: 1668 - - uid: 963 + - uid: 978 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-10.5 parent: 1668 - - uid: 977 + - uid: 979 components: - type: Transform - pos: 10.5,-3.5 + pos: 9.5,2.5 parent: 1668 - - uid: 978 + - uid: 1088 components: - type: Transform pos: 12.5,7.5 parent: 1668 - - uid: 979 + - uid: 1185 components: - type: Transform - pos: 9.5,2.5 + pos: 10.5,-3.5 parent: 1668 - - uid: 1088 + - uid: 1188 components: - type: Transform pos: -2.5,2.5 @@ -3742,239 +3789,239 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-9.5 parent: 1668 - - uid: 1674 + - uid: 1615 components: - type: Transform pos: -14.5,18.5 parent: 1668 - - uid: 1675 + - uid: 1616 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,17.5 parent: 1668 - - uid: 1676 + - uid: 1673 components: - type: Transform pos: -8.5,13.5 parent: 1668 - - uid: 1677 + - uid: 1674 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,19.5 parent: 1668 - - uid: 1955 + - uid: 1675 components: - type: Transform pos: 1.5,17.5 parent: 1668 - - uid: 2013 + - uid: 1676 components: - type: Transform pos: -1.5,22.5 parent: 1668 - - uid: 2562 + - uid: 1677 components: - type: Transform - pos: 7.5,16.5 + rot: -1.5707963267948966 rad + pos: 7.5,18.5 parent: 1668 - - uid: 2563 + - uid: 1955 components: - type: Transform pos: 17.5,17.5 parent: 1668 - - uid: 2564 + - uid: 2010 components: - type: Transform pos: 24.5,14.5 parent: 1668 - - uid: 2565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,19.5 - parent: 1668 - - uid: 2566 + - uid: 2235 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,21.5 parent: 1668 - - uid: 2944 + - uid: 2300 components: - type: Transform pos: 9.5,26.5 parent: 1668 - - uid: 2945 + - uid: 2317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,18.5 + pos: 7.5,16.5 parent: 1668 - - uid: 2946 + - uid: 2344 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,30.5 parent: 1668 - - uid: 3463 + - uid: 2497 components: - type: Transform pos: -22.5,7.5 parent: 1668 - - uid: 3464 + - uid: 2498 components: - type: Transform pos: -16.5,13.5 parent: 1668 - - uid: 3465 + - uid: 2499 components: - type: Transform pos: -22.5,13.5 parent: 1668 - - uid: 3466 + - uid: 2500 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,6.5 parent: 1668 - - uid: 3986 + - uid: 2556 components: - type: Transform pos: -31.5,2.5 parent: 1668 - - uid: 3987 + - uid: 2558 components: - type: Transform pos: -31.5,7.5 parent: 1668 - - uid: 3988 + - uid: 2562 components: - type: Transform pos: -21.5,-2.5 parent: 1668 - - uid: 3989 + - uid: 2563 components: - type: Transform pos: -13.5,-2.5 parent: 1668 - - uid: 3990 + - uid: 2564 components: - type: Transform pos: -17.5,1.5 parent: 1668 - - uid: 4361 + - uid: 2565 components: - type: Transform pos: 34.5,-9.5 parent: 1668 - - uid: 4475 + - uid: 2566 components: - type: Transform pos: -2.5,-24.5 parent: 1668 - - uid: 4476 + - uid: 2755 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-24.5 parent: 1668 - - uid: 4477 + - uid: 2771 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-24.5 parent: 1668 - - uid: 4478 + - uid: 2776 components: - type: Transform pos: -9.5,-17.5 parent: 1668 - - uid: 4479 + - uid: 2790 components: - type: Transform pos: 8.5,-17.5 parent: 1668 - - uid: 4480 + - uid: 2823 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-20.5 parent: 1668 - - uid: 4977 + - uid: 2832 components: - type: Transform pos: 20.5,-12.5 parent: 1668 - - uid: 4992 + - uid: 2858 components: - type: Transform pos: 18.5,-19.5 parent: 1668 - - uid: 5133 + - uid: 2859 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-23.5 parent: 1668 - - uid: 5146 + - uid: 2862 components: - type: Transform pos: 29.5,-19.5 parent: 1668 - - uid: 5257 + - uid: 2863 components: - type: Transform pos: 30.5,-14.5 parent: 1668 - - uid: 5321 + - uid: 2876 components: - type: Transform pos: 32.5,-27.5 parent: 1668 - - uid: 5423 + - uid: 2886 components: - type: Transform pos: 16.5,-28.5 parent: 1668 - - uid: 5934 + - uid: 2920 components: - type: Transform pos: -16.5,-30.5 parent: 1668 - - uid: 6004 + - uid: 2925 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-22.5 parent: 1668 - - uid: 6103 + - uid: 2926 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-28.5 parent: 1668 - - uid: 6180 + - uid: 2927 components: - type: Transform pos: 7.5,-30.5 parent: 1668 - - uid: 6181 + - uid: 2928 components: - type: Transform pos: -8.5,-30.5 parent: 1668 - - uid: 6277 + - uid: 2944 components: - type: Transform pos: -2.5,-34.5 parent: 1668 - - uid: 6397 + - uid: 2945 components: - type: Transform pos: -2.5,-40.5 parent: 1668 + - uid: 6977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,19.5 + parent: 1668 - proto: Ash entities: - uid: 3828 @@ -4180,8 +4227,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-32.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - proto: Bed entities: - uid: 2718 @@ -4296,101 +4341,67 @@ entities: - type: Transform pos: -4.5,21.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1804 - uid: 1607 components: - type: Transform pos: -16.5,24.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1611 - uid: 1608 components: - type: Transform pos: -16.5,28.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1612 - uid: 1609 components: - type: Transform pos: -14.5,28.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1612 - uid: 1610 components: - type: Transform pos: -14.5,24.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1611 - - uid: 2790 + - uid: 3787 components: - type: Transform - pos: 11.5,31.5 + pos: -16.5,-7.5 parent: 1668 - - type: DeviceLinkSink - links: - - 2928 - - uid: 2886 + - uid: 3788 components: - type: Transform - pos: 14.5,31.5 + pos: -16.5,-6.5 parent: 1668 - - type: DeviceLinkSink - links: - - 2928 - - uid: 2925 + - uid: 3789 components: - type: Transform - pos: 7.5,31.5 + pos: -16.5,-5.5 parent: 1668 - - type: DeviceLinkSink - links: - - 2927 - - uid: 2926 + - uid: 4762 components: - type: Transform - pos: 4.5,31.5 + pos: 18.5,-17.5 parent: 1668 - - type: DeviceLinkSink - links: - - 2927 - - uid: 3787 +- proto: BlastDoorCentralCommand + entities: + - uid: 2946 components: - type: Transform - pos: -16.5,-7.5 + pos: 4.5,31.5 parent: 1668 - - type: DeviceLinkSink - links: - - 2920 - - uid: 3788 + - uid: 3420 components: - type: Transform - pos: -16.5,-6.5 + pos: 7.5,31.5 parent: 1668 - - type: DeviceLinkSink - links: - - 2920 - - uid: 3789 + - uid: 3431 components: - type: Transform - pos: -16.5,-5.5 + pos: 11.5,31.5 parent: 1668 - - type: DeviceLinkSink - links: - - 2920 - - uid: 4762 + - uid: 4476 components: - type: Transform - pos: 18.5,-17.5 + pos: 14.5,31.5 parent: 1668 - proto: BlastDoorExterior1Open entities: @@ -4453,25 +4464,16 @@ entities: - type: Transform pos: -1.5,-7.5 parent: 1668 - - type: DeviceLinkSink - links: - - 789 - uid: 787 components: - type: Transform pos: -0.5,-7.5 parent: 1668 - - type: DeviceLinkSink - links: - - 789 - uid: 788 components: - type: Transform pos: 0.5,-7.5 parent: 1668 - - type: DeviceLinkSink - links: - - 789 - uid: 1430 components: - type: Transform @@ -4517,41 +4519,26 @@ entities: - type: Transform pos: 4.5,10.5 parent: 1668 - - type: DeviceLinkSink - links: - - 2712 - uid: 2147 components: - type: Transform pos: 4.5,11.5 parent: 1668 - - type: DeviceLinkSink - links: - - 2712 - uid: 2148 components: - type: Transform pos: 4.5,12.5 parent: 1668 - - type: DeviceLinkSink - links: - - 2712 - uid: 2149 components: - type: Transform pos: 4.5,13.5 parent: 1668 - - type: DeviceLinkSink - links: - - 2712 - uid: 2150 components: - type: Transform pos: 4.5,14.5 parent: 1668 - - type: DeviceLinkSink - links: - - 2712 - uid: 3865 components: - type: Transform @@ -4567,65 +4554,41 @@ entities: - type: Transform pos: 28.5,-25.5 parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - uid: 5235 components: - type: Transform pos: 28.5,-24.5 parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - uid: 5236 components: - type: Transform pos: 28.5,-23.5 parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - uid: 5237 components: - type: Transform pos: 28.5,-22.5 parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - uid: 5238 components: - type: Transform pos: 28.5,-21.5 parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - uid: 5239 components: - type: Transform pos: 31.5,-19.5 parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - uid: 5240 components: - type: Transform pos: 33.5,-19.5 parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - uid: 5241 components: - type: Transform pos: 32.5,-19.5 parent: 1668 - - type: DeviceLinkSink - links: - - 5242 - uid: 5951 components: - type: Transform @@ -4661,41 +4624,26 @@ entities: - type: Transform pos: -2.5,-39.5 parent: 1668 - - type: DeviceLinkSink - links: - - 6442 - uid: 6522 components: - type: Transform pos: -1.5,-39.5 parent: 1668 - - type: DeviceLinkSink - links: - - 6442 - uid: 6523 components: - type: Transform pos: -0.5,-39.5 parent: 1668 - - type: DeviceLinkSink - links: - - 6442 - uid: 6524 components: - type: Transform pos: 0.5,-39.5 parent: 1668 - - type: DeviceLinkSink - links: - - 6442 - uid: 6525 components: - type: Transform pos: 1.5,-39.5 parent: 1668 - - type: DeviceLinkSink - links: - - 6442 - proto: Bookshelf entities: - uid: 2370 @@ -4913,6 +4861,13 @@ entities: - type: Transform pos: -20.46677,5.55778 parent: 1668 +- proto: BoxFolderNuclearCodes + entities: + - uid: 6994 + components: + - type: Transform + pos: -10.309893,6.5837517 + parent: 1668 - proto: BoxFolderRed entities: - uid: 1398 @@ -5048,56 +5003,38 @@ entities: - type: Transform pos: 4.5,26.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2832: - - Start: Close - - Timer: AutoClose - - Timer: Open - uid: 3870 components: - type: Transform pos: 14.5,29.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2863: - - Start: Close - - Timer: AutoClose - - Timer: Open - uid: 3906 components: - type: Transform pos: 14.5,26.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2776: - - Start: Close - - Timer: AutoClose - - Timer: Open - uid: 6602 components: - type: Transform pos: 4.5,29.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2862: - - Start: Close - - Timer: AutoClose - - Timer: Open - uid: 6649 components: - type: Transform pos: 14.5,23.5 parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2558: - - Start: Close - - Timer: AutoClose - - Timer: Open +- proto: ButtonFrameCautionSecurity + entities: + - uid: 6578 + components: + - type: Transform + pos: 4.5,32.5 + parent: 1668 + - uid: 6592 + components: + - type: Transform + pos: 14.5,32.5 + parent: 1668 - proto: CableApcExtension entities: - uid: 857 @@ -16404,6 +16341,81 @@ entities: - type: Transform pos: -2.5,-40.5 parent: 1668 + - uid: 6515 + components: + - type: Transform + pos: 5.5,30.5 + parent: 1668 + - uid: 6516 + components: + - type: Transform + pos: 6.5,30.5 + parent: 1668 + - uid: 6517 + components: + - type: Transform + pos: 7.5,29.5 + parent: 1668 + - uid: 6518 + components: + - type: Transform + pos: 7.5,28.5 + parent: 1668 + - uid: 6519 + components: + - type: Transform + pos: 7.5,27.5 + parent: 1668 + - uid: 6520 + components: + - type: Transform + pos: 7.5,26.5 + parent: 1668 + - uid: 6547 + components: + - type: Transform + pos: 8.5,26.5 + parent: 1668 + - uid: 6548 + components: + - type: Transform + pos: 10.5,26.5 + parent: 1668 + - uid: 6549 + components: + - type: Transform + pos: 11.5,26.5 + parent: 1668 + - uid: 6550 + components: + - type: Transform + pos: 11.5,27.5 + parent: 1668 + - uid: 6551 + components: + - type: Transform + pos: 11.5,28.5 + parent: 1668 + - uid: 6552 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1668 + - uid: 6553 + components: + - type: Transform + pos: 11.5,30.5 + parent: 1668 + - uid: 6554 + components: + - type: Transform + pos: 12.5,30.5 + parent: 1668 + - uid: 6577 + components: + - type: Transform + pos: 13.5,30.5 + parent: 1668 - uid: 6849 components: - type: Transform @@ -17729,24 +17741,12 @@ entities: - type: Transform pos: -19.5,-4.5 parent: 1668 - - uid: 3883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 1668 - uid: 3884 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-6.5 parent: 1668 - - uid: 3885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-7.5 - parent: 1668 - uid: 3886 components: - type: Transform @@ -17806,18 +17806,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-29.5 parent: 1668 -- proto: chem_master - entities: - - uid: 825 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 1668 - - uid: 4425 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 1668 - proto: ChemDispenser entities: - uid: 824 @@ -17832,6 +17820,18 @@ entities: - type: Transform pos: 3.5,-10.5 parent: 1668 +- proto: ChemMaster + entities: + - uid: 825 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1668 + - uid: 4425 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 1668 - proto: ChessBoard entities: - uid: 3762 @@ -17878,9 +17878,6 @@ entities: - type: Transform pos: 11.5,-13.5 parent: 1668 - - type: DeviceLinkSink - links: - - 575 - type: Construction containers: - machine_parts @@ -18197,13 +18194,6 @@ entities: - type: Transform pos: -16.552616,8.708888 parent: 1668 -- proto: ClothingHeadHatHairflower - entities: - - uid: 6605 - components: - - type: Transform - pos: -11.182456,6.7149878 - parent: 1668 - proto: ClothingHeadHatWelding entities: - uid: 2197 @@ -19062,132 +19052,87 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,24.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1588 - uid: 1577 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,24.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1588 - uid: 1578 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,24.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1588 - uid: 1579 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,24.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1588 - uid: 1580 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,24.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1588 - uid: 1581 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,24.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1588 - uid: 1582 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,28.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1589 - uid: 1583 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,28.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1589 - uid: 1584 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,28.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1589 - uid: 1585 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,28.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1589 - uid: 1586 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,28.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1589 - uid: 1587 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,28.5 parent: 1668 - - type: DeviceLinkSink - links: - - 1589 - uid: 5902 components: - type: Transform pos: -19.5,-33.5 parent: 1668 - - type: DeviceLinkSink - links: - - 5906 - uid: 5903 components: - type: Transform pos: -19.5,-32.5 parent: 1668 - - type: DeviceLinkSink - links: - - 5906 - uid: 5904 components: - type: Transform pos: -19.5,-31.5 parent: 1668 - - type: DeviceLinkSink - links: - - 5906 - proto: CrateArmoryLaser entities: - uid: 6533 @@ -19286,6 +19231,13 @@ entities: - type: Transform pos: -7.5,26.5 parent: 1668 +- proto: CrateParticleDecelerators + entities: + - uid: 6995 + components: + - type: Transform + pos: -7.5,28.5 + parent: 1668 - proto: CrowbarRed entities: - uid: 515 @@ -19342,8 +19294,6 @@ entities: - type: Transform pos: 11.5,-4.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - proto: DeathsquadPDA entities: - uid: 298 @@ -20869,11 +20819,6 @@ entities: - type: Transform pos: 1.5,1.5 parent: 1668 - - uid: 816 - components: - - type: Transform - pos: -6.5,-9.5 - parent: 1668 - uid: 3840 components: - type: Transform @@ -21402,6 +21347,13 @@ entities: - type: Transform pos: 0.5503339,-25.316061 parent: 1668 +- proto: FoodPoppy + entities: + - uid: 6605 + components: + - type: Transform + pos: -11.182456,6.7149878 + parent: 1668 - proto: FoodSaladColeslaw entities: - uid: 6937 @@ -21441,30 +21393,24 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-5.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#990000FF' -- proto: GasMinerNitrogenStation +- proto: GasMinerNitrogenStationLarge entities: - - uid: 4715 + - uid: 3466 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-29.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 -- proto: GasMinerOxygenStation +- proto: GasMinerOxygenStationLarge entities: - - uid: 4703 + - uid: 3797 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-29.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - proto: GasMixer entities: - uid: 5070 @@ -21473,8 +21419,10 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-30.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 + - type: GasMixer + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + targetPressure: 4500 - proto: GasPassiveVent entities: - uid: 3430 @@ -21483,32 +21431,24 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-32.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 5399 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-28.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 6141 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-32.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 6312 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-28.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - proto: GasPipeBend entities: - uid: 3660 @@ -21882,6 +21822,26 @@ entities: parent: 1668 - type: AtmosPipeColor color: '#0055CCFF' +- proto: GasPipeSensorDistribution + entities: + - uid: 3883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-30.5 + parent: 1668 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorWaste + entities: + - uid: 3860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-31.5 + parent: 1668 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 3664 @@ -22024,14 +21984,6 @@ entities: parent: 1668 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-31.5 - parent: 1668 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5394 components: - type: Transform @@ -22040,14 +21992,6 @@ entities: parent: 1668 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-30.5 - parent: 1668 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5402 components: - type: Transform @@ -24864,46 +24808,34 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-32.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 3577 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,4.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 3659 components: - type: Transform pos: -14.5,6.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 3662 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,4.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 6655 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-7.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 6705 components: - type: Transform pos: 16.5,-31.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#990000FF' - uid: 6706 @@ -24911,8 +24843,6 @@ entities: - type: Transform pos: 17.5,-31.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#990000FF' - proto: GasPressurePump @@ -24923,16 +24853,14 @@ entities: rot: 3.141592653589793 rad pos: -14.5,5.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 5395 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-30.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 + - type: GasPressurePump + targetPressure: 385 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5400 @@ -24941,8 +24869,8 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-31.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 + - type: GasPressurePump + targetPressure: 4500 - type: AtmosPipeColor color: '#990000FF' - proto: GasThermoMachineFreezer @@ -24952,8 +24880,6 @@ entities: - type: Transform pos: 13.5,-4.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - proto: GasVentPump entities: - uid: 3687 @@ -24962,39 +24888,29 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,9.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 3688 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,8.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 3689 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,6.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 3694 components: - type: Transform pos: -21.5,14.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 5474 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-26.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5475 @@ -25002,8 +24918,6 @@ entities: - type: Transform pos: 20.5,-24.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5476 @@ -25012,8 +24926,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-25.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5505 @@ -25022,8 +24934,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-20.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5506 @@ -25031,8 +24941,6 @@ entities: - type: Transform pos: 25.5,-17.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5507 @@ -25041,8 +24949,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-18.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5521 @@ -25050,8 +24956,6 @@ entities: - type: Transform pos: 7.5,-17.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5538 @@ -25059,8 +24963,6 @@ entities: - type: Transform pos: -8.5,-17.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5551 @@ -25069,8 +24971,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5554 @@ -25079,8 +24979,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-22.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5565 @@ -25089,8 +24987,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-22.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5566 @@ -25099,8 +24995,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-16.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5573 @@ -25109,8 +25003,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-12.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5581 @@ -25119,8 +25011,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-11.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5583 @@ -25129,8 +25019,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-11.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5658 @@ -25138,8 +25026,6 @@ entities: - type: Transform pos: -30.5,4.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5659 @@ -25148,8 +25034,6 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-2.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5663 @@ -25158,8 +25042,6 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-1.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5664 @@ -25168,8 +25050,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-3.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5666 @@ -25177,8 +25057,6 @@ entities: - type: Transform pos: -6.5,0.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5667 @@ -25186,8 +25064,6 @@ entities: - type: Transform pos: 5.5,0.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5669 @@ -25196,8 +25072,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5670 @@ -25206,8 +25080,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-5.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5671 @@ -25215,8 +25087,6 @@ entities: - type: Transform pos: -1.5,4.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5696 @@ -25225,8 +25095,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5697 @@ -25235,8 +25103,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,9.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5712 @@ -25245,8 +25111,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,27.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5713 @@ -25255,8 +25119,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,23.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5714 @@ -25265,8 +25127,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,16.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5742 @@ -25274,8 +25134,6 @@ entities: - type: Transform pos: 10.5,13.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5743 @@ -25284,8 +25142,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,11.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5744 @@ -25293,8 +25149,6 @@ entities: - type: Transform pos: 18.5,13.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5756 @@ -25302,8 +25156,6 @@ entities: - type: Transform pos: 11.5,24.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5763 @@ -25311,8 +25163,6 @@ entities: - type: Transform pos: 28.5,19.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5779 @@ -25321,8 +25171,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-1.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5780 @@ -25331,8 +25179,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5806 @@ -25341,8 +25187,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-32.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5814 @@ -25351,8 +25195,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-32.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5824 @@ -25361,8 +25203,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-31.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5825 @@ -25371,8 +25211,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-31.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5887 @@ -25381,8 +25219,6 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-23.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6003 @@ -25391,8 +25227,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-25.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6227 @@ -25401,8 +25235,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-32.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6334 @@ -25410,8 +25242,6 @@ entities: - type: Transform pos: -0.5,-36.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6335 @@ -25420,8 +25250,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-41.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -25432,8 +25260,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-32.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - proto: GeneratorBasic15kW entities: - uid: 5176 @@ -26895,6 +26721,11 @@ entities: - type: Transform pos: 21.5,-23.5 parent: 1668 + - uid: 5079 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1668 - uid: 5114 components: - type: Transform @@ -27154,6 +26985,21 @@ entities: - type: Transform pos: 5.5,6.5 parent: 1668 + - uid: 6986 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1668 + - uid: 6992 + components: + - type: Transform + pos: 30.5,6.5 + parent: 1668 + - uid: 6993 + components: + - type: Transform + pos: 32.5,6.5 + parent: 1668 - proto: GroundTobacco entities: - uid: 3755 @@ -27238,16 +27084,6 @@ entities: - type: Transform pos: 3.5,0.5 parent: 1668 - - uid: 3797 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 1668 - - uid: 3860 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 1668 - uid: 3863 components: - type: Transform @@ -27265,6 +27101,16 @@ entities: - type: Transform pos: 32.5,-14.5 parent: 1668 + - uid: 3885 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1668 + - uid: 3902 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 1668 - proto: HighSecDoor entities: - uid: 565 @@ -27400,6 +27246,53 @@ entities: - type: Transform pos: -18.379215,8.381029 parent: 1668 +- proto: LockableButtonCentcomm + entities: + - uid: 3149 + components: + - type: Transform + pos: 14.5,32.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 4476: + - Pressed: Toggle + 6492: + - Pressed: Toggle + 6397: + - Pressed: Toggle + 3431: + - Pressed: Toggle + - uid: 4477 + components: + - type: Transform + pos: 4.5,32.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 2946: + - Pressed: Toggle + 5058: + - Pressed: Toggle + 6314: + - Pressed: Toggle + 3420: + - Pressed: Toggle +- proto: LockableButtonCommand + entities: + - uid: 4475 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 1668 + - type: DeviceLinkSource + linkedPorts: + 3789: + - Pressed: Toggle + 3788: + - Pressed: Toggle + 3787: + - Pressed: Toggle - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 3790 @@ -27416,7 +27309,7 @@ entities: parent: 1668 - proto: LockerChemistryFilled entities: - - uid: 2876 + - uid: 3986 components: - type: Transform pos: 5.5,-13.5 @@ -27511,6 +27404,13 @@ entities: showEnts: False occludes: True ent: null +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 327 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 1668 - proto: LockerHeadOfSecurityFilled entities: - uid: 3153 @@ -27520,10 +27420,10 @@ entities: parent: 1668 - proto: LockerQuarterMasterFilled entities: - - uid: 2235 + - uid: 5080 components: - type: Transform - pos: -8.5,19.5 + pos: -10.5,-7.5 parent: 1668 - proto: LockerResearchDirectorFilled entities: @@ -27532,6 +27432,13 @@ entities: - type: Transform pos: -11.5,-3.5 parent: 1668 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 3987 + components: + - type: Transform + pos: -8.5,19.5 + parent: 1668 - proto: LockerSecurityFilled entities: - uid: 511 @@ -27549,6 +27456,22 @@ entities: - type: Transform pos: -6.5,-10.5 parent: 1668 +- proto: LockerWallMedicalDoctorFilled + entities: + - uid: 6775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-15.5 + parent: 1668 +- proto: LockerWallMedicalFilled + entities: + - uid: 2013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 1668 - proto: LockerWardenFilled entities: - uid: 2713 @@ -27639,6 +27562,13 @@ entities: - type: Transform pos: 9.5,-7.5 parent: 1668 +- proto: MedkitAdvancedFilled + entities: + - uid: 6610 + components: + - type: Transform + pos: 14.536912,-7.5898757 + parent: 1668 - proto: MedkitBruteFilled entities: - uid: 622 @@ -27655,11 +27585,6 @@ entities: parent: 1668 - proto: MedkitFilled entities: - - uid: 620 - components: - - type: Transform - pos: 14.516341,-7.5759134 - parent: 1668 - uid: 1454 components: - type: Transform @@ -27724,8 +27649,6 @@ entities: - type: Transform pos: 25.5,-28.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - proto: NTFlag entities: - uid: 1190 @@ -27764,6 +27687,13 @@ entities: - type: Transform pos: 9.5,-5.5 parent: 1668 +- proto: OreProcessorIndustrial + entities: + - uid: 6978 + components: + - type: Transform + pos: -5.5,29.5 + parent: 1668 - proto: OxygenCanister entities: - uid: 5415 @@ -27771,15 +27701,18 @@ entities: - type: Transform pos: 19.5,-28.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - uid: 6719 components: - type: Transform pos: 12.5,-7.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 +- proto: OxygenTankFilled + entities: + - uid: 3901 + components: + - type: Transform + pos: -12.625682,-7.0710163 + parent: 1668 - proto: PaintingAmogusTriptych entities: - uid: 3766 @@ -27926,6 +27859,84 @@ entities: - type: Transform pos: 17.5,-28.5 parent: 1668 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 5934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 1668 + - uid: 6004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-29.5 + parent: 1668 + - uid: 6103 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 1668 + - uid: 6180 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 1668 + - uid: 6181 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 1668 + - uid: 6231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 1668 + - uid: 6232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 1668 + - uid: 6277 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 1668 +- proto: PlasmaWindoorSecureSecurityLocked + entities: + - uid: 5410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,22.5 + parent: 1668 + - uid: 5411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 1668 + - uid: 5416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,28.5 + parent: 1668 + - uid: 5417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,25.5 + parent: 1668 + - uid: 5423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,28.5 + parent: 1668 - proto: PlasticFlapsAirtightClear entities: - uid: 1590 @@ -30431,13 +30442,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-28.5 parent: 1668 -- proto: Protolathe - entities: - - uid: 5311 - components: - - type: Transform - pos: 24.5,-26.5 - parent: 1668 - proto: Rack entities: - uid: 1662 @@ -30840,9 +30844,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-31.5 parent: 1668 - - type: DeviceLinkSink - links: - - 5907 - proto: ReinforcedPlasmaWindow entities: - uid: 2791 @@ -30865,6 +30866,36 @@ entities: - type: Transform pos: 13.5,30.5 parent: 1668 + - uid: 3990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,21.5 + parent: 1668 + - uid: 4179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,24.5 + parent: 1668 + - uid: 4180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,24.5 + parent: 1668 + - uid: 4251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,27.5 + parent: 1668 + - uid: 4361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,27.5 + parent: 1668 - uid: 5108 components: - type: Transform @@ -31885,21 +31916,6 @@ entities: - type: Transform pos: 8.5,16.5 parent: 1668 - - uid: 2556 - components: - - type: Transform - pos: 14.5,21.5 - parent: 1668 - - uid: 2755 - components: - - type: Transform - pos: 4.5,24.5 - parent: 1668 - - uid: 2771 - components: - - type: Transform - pos: 14.5,24.5 - parent: 1668 - uid: 2777 components: - type: Transform @@ -31940,16 +31956,6 @@ entities: - type: Transform pos: 11.5,29.5 parent: 1668 - - uid: 2858 - components: - - type: Transform - pos: 14.5,27.5 - parent: 1668 - - uid: 2859 - components: - - type: Transform - pos: 4.5,27.5 - parent: 1668 - uid: 2906 components: - type: Transform @@ -32273,6 +32279,11 @@ entities: - type: Transform pos: 15.5,-22.5 parent: 1668 + - uid: 5321 + components: + - type: Transform + pos: 30.5,6.5 + parent: 1668 - uid: 5333 components: - type: Transform @@ -32288,6 +32299,21 @@ entities: - type: Transform pos: 19.5,-23.5 parent: 1668 + - uid: 5386 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1668 + - uid: 5391 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1668 + - uid: 5397 + components: + - type: Transform + pos: 32.5,6.5 + parent: 1668 - uid: 5880 components: - type: Transform @@ -32521,6 +32547,24 @@ entities: parent: 1668 - proto: Screen entities: + - uid: 4479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 1668 + - uid: 4480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-25.5 + parent: 1668 + - uid: 5311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-30.5 + parent: 1668 - uid: 6988 components: - type: Transform @@ -32531,6 +32575,47 @@ entities: - type: Transform pos: 33.5,-4.5 parent: 1668 + - uid: 6996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,26.5 + parent: 1668 + - uid: 6997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 1668 + - uid: 6998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 1668 + - uid: 6999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-44.5 + parent: 1668 + - uid: 7000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-30.5 + parent: 1668 + - uid: 7001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-9.5 + parent: 1668 + - uid: 7002 + components: + - type: Transform + pos: -11.5,13.5 + parent: 1668 - proto: SecurityTechFab entities: - uid: 2874 @@ -32574,6 +32659,28 @@ entities: - type: Transform pos: 19.5,-23.5 parent: 1668 +- proto: ShuttersWindowCentralCommand + entities: + - uid: 5058 + components: + - type: Transform + pos: 5.5,30.5 + parent: 1668 + - uid: 6314 + components: + - type: Transform + pos: 6.5,30.5 + parent: 1668 + - uid: 6397 + components: + - type: Transform + pos: 12.5,30.5 + parent: 1668 + - uid: 6492 + components: + - type: Transform + pos: 13.5,30.5 + parent: 1668 - proto: SignalButton entities: - uid: 789 @@ -32637,45 +32744,6 @@ entities: - Pressed: Toggle 2146: - Pressed: Toggle - - uid: 2920 - components: - - type: Transform - pos: -16.5,-4.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 3789: - - Pressed: Toggle - 3788: - - Pressed: Toggle - 3787: - - Pressed: Toggle - - uid: 2927 - components: - - type: MetaData - name: le funny admin button - - type: Transform - pos: 4.5,32.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2926: - - Pressed: Toggle - 2925: - - Pressed: Toggle - - uid: 2928 - components: - - type: MetaData - name: le funny admin button - - type: Transform - pos: 14.5,32.5 - parent: 1668 - - type: DeviceLinkSource - linkedPorts: - 2886: - - Pressed: Toggle - 2790: - - Pressed: Toggle - uid: 5242 components: - type: Transform @@ -32734,7 +32802,7 @@ entities: - type: Transform pos: 8.5,4.5 parent: 1668 -- proto: SignAtmosMinsky +- proto: SignAtmos entities: - uid: 6888 components: @@ -32748,8 +32816,14 @@ entities: - type: Transform pos: -4.5,13.5 parent: 1668 -- proto: SignChemistry1 +- proto: SignChem entities: + - uid: 4478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1668 - uid: 6764 components: - type: Transform @@ -32910,11 +32984,6 @@ entities: parent: 1668 - proto: SignMedical entities: - - uid: 736 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 1668 - uid: 6762 components: - type: Transform @@ -33016,6 +33085,18 @@ entities: - type: Transform pos: -2.5,-38.5 parent: 1668 +- proto: SignSecureMedRed + entities: + - uid: 3988 + components: + - type: Transform + pos: 7.5,32.5 + parent: 1668 + - uid: 6615 + components: + - type: Transform + pos: 11.5,32.5 + parent: 1668 - proto: SignSecureSmall entities: - uid: 3868 @@ -33055,16 +33136,6 @@ entities: - type: Transform pos: -17.5,-25.5 parent: 1668 - - uid: 6231 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 1668 - - uid: 6232 - components: - - type: Transform - pos: -21.5,-25.5 - parent: 1668 - proto: Sink entities: - uid: 3425 @@ -33099,24 +33170,24 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-24.5 parent: 1668 -- proto: SMESBasic +- proto: SMESAdvanced entities: - - uid: 327 + - uid: 4703 components: - type: Transform pos: 27.5,-30.5 parent: 1668 - - uid: 5078 + - uid: 4715 components: - type: Transform pos: 22.5,-17.5 parent: 1668 - - uid: 5079 + - uid: 4977 components: - type: Transform pos: 22.5,-15.5 parent: 1668 - - uid: 5080 + - uid: 4992 components: - type: Transform pos: 22.5,-16.5 @@ -33135,7 +33206,7 @@ entities: - type: Transform pos: -20.47715,15.560694 parent: 1668 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 4427 components: @@ -33148,13 +33219,6 @@ entities: - type: Transform pos: 7.5,-21.5 parent: 1668 -- proto: SpawnVehicleSecway - entities: - - uid: 2823 - components: - - type: Transform - pos: 11.5,25.5 - parent: 1668 - proto: SS13Memorial entities: - uid: 486 @@ -33171,17 +33235,17 @@ entities: parent: 1668 - proto: StatueVenusBlue entities: - - uid: 4180 + - uid: 3463 components: - type: Transform - pos: -20.5,-6.5 + pos: 31.5,7.5 parent: 1668 - proto: StatueVenusRed entities: - - uid: 4179 + - uid: 5078 components: - type: Transform - pos: -21.5,-6.5 + pos: 21.5,7.5 parent: 1668 - proto: Stool entities: @@ -33218,8 +33282,6 @@ entities: - type: Transform pos: -14.5,6.5 parent: 1668 - - type: AtmosDevice - joinedGrid: 1668 - proto: Stunbaton entities: - uid: 2746 @@ -33279,30 +33341,18 @@ entities: - type: Transform pos: -16.5,-29.5 parent: 1668 -- proto: SuitStorageBasic +- proto: SuitStorageCaptain entities: - - uid: 1185 - components: - - type: Transform - pos: -10.5,-7.5 - parent: 1668 - - uid: 1188 + - uid: 3768 components: - type: Transform - pos: -10.5,-5.5 + pos: -11.5,4.5 parent: 1668 - - uid: 3431 + - uid: 5146 components: - type: Transform pos: -10.5,-6.5 parent: 1668 -- proto: SuitStorageCaptain - entities: - - uid: 3768 - components: - - type: Transform - pos: -11.5,4.5 - parent: 1668 - proto: SuitStorageCE entities: - uid: 6490 @@ -33331,6 +33381,13 @@ entities: - type: Transform pos: -10.5,-3.5 parent: 1668 +- proto: SuitStorageSec + entities: + - uid: 3465 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 1668 - proto: SurveillanceCameraCommand entities: - uid: 6817 @@ -35390,9 +35447,9 @@ entities: - type: Transform pos: 7.5,21.5 parent: 1668 -- proto: ToiletEmpty +- proto: ToiletGoldenEmpty entities: - - uid: 3420 + - uid: 5257 components: - type: Transform rot: 1.5707963267948966 rad @@ -35433,6 +35490,11 @@ entities: - type: Transform pos: -12.035681,6.6117244 parent: 1668 + - uid: 6985 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 1668 - proto: ToyFigurineCargoTech entities: - uid: 6897 @@ -35468,6 +35530,11 @@ entities: - type: Transform pos: 27.221512,-23.216656 parent: 1668 + - uid: 6982 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 1668 - proto: ToyFigurineChiefMedicalOfficer entities: - uid: 6900 @@ -35475,6 +35542,11 @@ entities: - type: Transform pos: 13.343676,-12.106804 parent: 1668 + - uid: 6980 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 1668 - proto: ToyFigurineClown entities: - uid: 6907 @@ -35484,10 +35556,10 @@ entities: parent: 1668 - proto: ToyFigurineDetective entities: - - uid: 2145 + - uid: 6508 components: - type: Transform - pos: 8.249651,23.679073 + pos: 4.5357866,22.481915 parent: 1668 - proto: ToyFigurineEngineer entities: @@ -35496,6 +35568,13 @@ entities: - type: Transform pos: 26.955887,-23.01353 parent: 1668 +- proto: ToyFigurineFootsoldier + entities: + - uid: 6510 + components: + - type: Transform + pos: 3.5129395,25.168112 + parent: 1668 - proto: ToyFigurineGreytider entities: - uid: 2142 @@ -35503,6 +35582,11 @@ entities: - type: Transform pos: -1.5147417,19.684673 parent: 1668 + - uid: 6509 + components: + - type: Transform + pos: 16.351696,22.083393 + parent: 1668 - proto: ToyFigurineHamlet entities: - uid: 6503 @@ -35517,6 +35601,11 @@ entities: - type: Transform pos: 2.714695,-2.0789247 parent: 1668 + - uid: 6981 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 1668 - proto: ToyFigurineHeadOfSecurity entities: - uid: 592 @@ -35524,6 +35613,11 @@ entities: - type: Transform pos: 8.675076,17.818161 parent: 1668 + - uid: 6983 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 1668 - proto: ToyFigurineJanitor entities: - uid: 6905 @@ -35566,6 +35660,27 @@ entities: - type: Transform pos: 0.78786826,-28.113647 parent: 1668 +- proto: ToyFigurineNukie + entities: + - uid: 6512 + components: + - type: Transform + pos: 3.1101613,28.112556 + parent: 1668 +- proto: ToyFigurineNukieCommander + entities: + - uid: 6511 + components: + - type: Transform + pos: 2.8740501,28.668112 + parent: 1668 +- proto: ToyFigurineNukieElite + entities: + - uid: 6507 + components: + - type: Transform + pos: 2.3733406,28.503387 + parent: 1668 - proto: ToyFigurineParamedic entities: - uid: 3427 @@ -35587,6 +35702,11 @@ entities: - type: Transform pos: -15.016072,14.885906 parent: 1668 + - uid: 6979 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 1668 - proto: ToyFigurineRatKing entities: - uid: 6906 @@ -35601,6 +35721,11 @@ entities: - type: Transform pos: -32.494865,6.5819006 parent: 1668 + - uid: 6984 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 1668 - proto: ToyFigurineSalvage entities: - uid: 6895 @@ -35620,6 +35745,13 @@ entities: - type: Transform pos: 27.445951,-11.38564 parent: 1668 +- proto: ToyFigurineThief + entities: + - uid: 6513 + components: + - type: Transform + pos: 15.358348,28.515333 + parent: 1668 - proto: ToyFigurineWarden entities: - uid: 6894 @@ -35627,6 +35759,20 @@ entities: - type: Transform pos: 4.3459373,19.764877 parent: 1668 +- proto: ToyFigurineWizard + entities: + - uid: 6514 + components: + - type: Transform + pos: 16.312458,25.32646 + parent: 1668 +- proto: ToyOwlman + entities: + - uid: 3464 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 1668 - proto: ToyRubberDuck entities: - uid: 3423 @@ -35732,13 +35878,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off -- proto: VehicleKeySecway - entities: - - uid: 3149 - components: - - type: Transform - pos: 10.387553,25.600338 - parent: 1668 - proto: VendingMachineAmmo entities: - uid: 2821 @@ -36661,11 +36800,6 @@ entities: - type: Transform pos: 19.5,6.5 parent: 1668 - - uid: 349 - components: - - type: Transform - pos: 22.5,6.5 - parent: 1668 - uid: 350 components: - type: Transform @@ -36686,16 +36820,6 @@ entities: - type: Transform pos: 29.5,6.5 parent: 1668 - - uid: 354 - components: - - type: Transform - pos: 30.5,6.5 - parent: 1668 - - uid: 356 - components: - - type: Transform - pos: 32.5,6.5 - parent: 1668 - uid: 357 components: - type: Transform @@ -37374,11 +37498,6 @@ entities: - type: Transform pos: -13.5,10.5 parent: 1668 - - uid: 898 - components: - - type: Transform - pos: 20.5,6.5 - parent: 1668 - uid: 1080 components: - type: Transform @@ -41651,6 +41770,20 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,10.5 parent: 1668 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 5398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1668 + - uid: 5401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1668 - proto: WindoorSecureCommandLocked entities: - uid: 4230 @@ -41685,18 +41818,6 @@ entities: parent: 1668 - proto: WindoorSecureMedicalLocked entities: - - uid: 732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 1668 - - uid: 734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 1668 - uid: 1198 components: - type: Transform @@ -41735,51 +41856,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-12.5 parent: 1668 - - uid: 2558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,22.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 6649 - - uid: 2776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,25.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 3906 - - uid: 2832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,25.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 3723 - - uid: 2862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,28.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 6602 - - uid: 2863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,28.5 - parent: 1668 - - type: DeviceLinkSink - links: - - 3870 - proto: WindowReinforcedDirectional entities: - uid: 485 @@ -41972,44 +42048,6 @@ entities: - type: Transform pos: 4.5,-17.5 parent: 1668 - - uid: 5386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-28.5 - parent: 1668 - - uid: 5397 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 1668 - - uid: 5398 - components: - - type: Transform - pos: 20.5,-29.5 - parent: 1668 - - uid: 5410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-29.5 - parent: 1668 - - uid: 5411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 1668 - - uid: 5416 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 1668 - - uid: 5417 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 1668 - uid: 5453 components: - type: Transform @@ -42034,12 +42072,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-32.5 parent: 1668 - - uid: 6314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-29.5 - parent: 1668 - uid: 6787 components: - type: Transform @@ -42053,11 +42085,4 @@ entities: - type: Transform pos: 9.506623,-4.4162817 parent: 1668 -- proto: YellowOxygenTankFilled - entities: - - uid: 3901 - components: - - type: Transform - pos: -12.625682,-7.0710163 - parent: 1668 ... diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/access.yml new file mode 100644 index 00000000000..9304880d59d --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/access.yml @@ -0,0 +1,23 @@ +#Blast door + +- type: entity + parent: BlastDoor + id: BlastDoorCentralCommand + suffix: Central Command, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] + +#Window shutters + +- type: entity + parent: ShuttersWindow + id: ShuttersWindowCentralCommand + suffix: Central Command, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] + - type: AccessReader + containerAccessProvider: board diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml index 7239dd7eed5..ef25bea8c8f 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml @@ -5,6 +5,7 @@ description: This one says 'BLAST DONGER'. components: - type: AccessReader + containerAccessProvider: board - type: Sprite sprite: Structures/Doors/Shutters/blastdoor.rsi layers: diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml index 19233ba69a5..556d3d430a5 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml @@ -494,6 +494,14 @@ - type: AccessReader access: [["Atmospherics"]] +- type: entity + id: LockableButtonCentcomm + suffix: CentComm + parent: LockableButton + components: + - type: AccessReader + access: [["CentralCommand"]] + # button frames - type: entity From 5fb8ebbe61333c280064578efdfee9dc0d6d3d80 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 19 Jan 2025 05:33:40 +0000 Subject: [PATCH 030/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9c45e9517c4..e56d6a0fc95 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Hreno - changes: - - message: Display agents' jobs in the Round End Summary window. - type: Add - id: 7330 - time: '2024-09-09T19:31:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31652 - author: deltanedas changes: - message: Adjusted the costs and production times of all electronics so they're @@ -3912,3 +3905,11 @@ id: 7829 time: '2025-01-19T01:46:55.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34447 +- author: WarPigeon + changes: + - message: The debriefing room in CentComm is now open to heads of staff for end + of round roleplay. + type: Tweak + id: 7830 + time: '2025-01-19T05:32:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34475 From c917bcc2a90d3b7fada9a6a1ab5c09ab728d01f5 Mon Sep 17 00:00:00 2001 From: TytosB <54259736+TytosB@users.noreply.github.com> Date: Sat, 18 Jan 2025 23:39:02 -0600 Subject: [PATCH 031/103] Cog power setup fix (#34188) * many changes * contentingregrationtests * serialized invalid removed * blank * "Changes and fixes as suggested" * blank * blank * added desk bells * engi rework rework rework * added gate to content integration * tweaks * aaa * bbb * added holopads * ccc * Update default.yml * hotfix * aaa * bbb * many many tweaks and fixes * aaa * decals and maints * aaa * bbb * ccc * cog power setup was bad * made it artsy --------- Co-authored-by: Emisse <99158783+Emisse@users.noreply.github.com> --- Resources/Maps/cog.yml | 1676 ++++++++++++++++++++++++++++++++-------- 1 file changed, 1346 insertions(+), 330 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index b072209126b..35da27fb5a4 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -2,49 +2,49 @@ meta: format: 6 postmapinit: false tilemap: - 5: Space - 35: FloorArcadeBlue2 - 22: FloorAsteroidSandDug - 21: FloorAsteroidSandUnvariantized - 25: FloorAstroGrass - 8: FloorAstroIce - 7: FloorAstroSnow - 28: FloorBar - 0: FloorBlueCircuit - 37: FloorBoxing - 19: FloorBrokenWood - 57: FloorCarpetClown - 18: FloorClown - 66: FloorConcreteSmooth - 4: FloorDark - 17: FloorDarkMono - 33: FloorDesert - 13: FloorFreezer - 31: FloorGlass - 34: FloorGold - 9: FloorGreenCircuit - 38: FloorHydro - 23: FloorKitchen - 24: FloorLino - 40: FloorMime - 14: FloorMowedAstroGrass - 32: FloorPlanetDirt - 10: FloorRGlass - 20: FloorReinforced - 3: FloorSteel - 39: FloorSteelCheckerLight - 27: FloorSteelDamaged - 12: FloorSteelDirty - 29: FloorSteelMono - 6: FloorTechMaint - 11: FloorTechMaint2 - 30: FloorTechMaint3 - 16: FloorWhite - 26: FloorWhiteMini - 36: FloorWhiteMono - 15: FloorWood - 2: Lattice - 1: Plating + 46: Space + 79: FloorArcadeBlue2 + 64: FloorAsteroidSandDug + 63: FloorAsteroidSandUnvariantized + 68: FloorAstroGrass + 49: FloorAstroIce + 48: FloorAstroSnow + 71: FloorBar + 41: FloorBlueCircuit + 83: FloorBoxing + 61: FloorBrokenWood + 87: FloorCarpetClown + 60: FloorClown + 88: FloorConcreteSmooth + 45: FloorDark + 59: FloorDarkMono + 77: FloorDesert + 54: FloorFreezer + 75: FloorGlass + 78: FloorGold + 50: FloorGreenCircuit + 84: FloorHydro + 65: FloorKitchen + 67: FloorLino + 86: FloorMime + 55: FloorMowedAstroGrass + 76: FloorPlanetDirt + 51: FloorRGlass + 62: FloorReinforced + 44: FloorSteel + 85: FloorSteelCheckerLight + 70: FloorSteelDamaged + 53: FloorSteelDirty + 72: FloorSteelMono + 47: FloorTechMaint + 52: FloorTechMaint2 + 73: FloorTechMaint3 + 58: FloorWhite + 69: FloorWhiteMini + 80: FloorWhiteMono + 56: FloorWood + 43: Lattice + 42: Plating entities: - proto: "" entities: @@ -72,391 +72,391 @@ entities: chunks: 0,0: ind: 0,0 - tiles: AAAAAAAAAAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: KQAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AwAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAAAAAAAAAQAAAAAABAAAAAADAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAAAAAAAAAQAAAAAABAAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: LAAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKQAAAAAAKQAAAAAAKQAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKQAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKQAAAAAAKgAAAAAALQAAAAACLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKQAAAAAAKgAAAAAALQAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AwAAAAAAAwAAAAABAQAAAAAABwAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAACQAAAAAACQAAAAAAAwAAAAADAwAAAAAAAQAAAAAABwAAAAAABwAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAACCQAAAAAACQAAAAAAAwAAAAAAAwAAAAACAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAABAAAAAABBAAAAAABAwAAAAAAAwAAAAABAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACAwAAAAABAwAAAAACAQAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAABAwAAAAADAwAAAAADAQAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABBAAAAAADCgAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAAACgAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAAACgAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAA + tiles: LAAAAAABLAAAAAAAKgAAAAAAMAAAAAAAMQAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAMgAAAAAAMgAAAAAALAAAAAADLAAAAAABKgAAAAAAMAAAAAAAMAAAAAAIMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAAMgAAAAAAMgAAAAAALAAAAAADLAAAAAACKgAAAAAAMQAAAAAAMAAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAACLQAAAAACLAAAAAABLAAAAAACKgAAAAAAMQAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAACLQAAAAABLAAAAAADLAAAAAABKgAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAADLQAAAAADLAAAAAABLAAAAAABKgAAAAAAMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALQAAAAADMwAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAACMwAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAABMwAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: CQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: MgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLQAAAAABLQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACDAAAAAAABgAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAQAAAAAADAAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: LAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAADKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAABNQAAAAAALwAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAANQAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABBQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACBQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAACAwAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABBQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAADAwAAAAACBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAABAwAAAAADBQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAACBQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAAADwAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAB + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAABLAAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAADLgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAABOAAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAAAKgAAAAAALAAAAAACLAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAQAAAAAAEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAEAAAAAABEAAAAAAAEAAAAAABAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADEAAAAAABEAAAAAABEAAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAEAAAAAACEAAAAAADEAAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAABAQAAAAAABgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADEAAAAAABEAAAAAABEAAAAAADEAAAAAADEAAAAAABAwAAAAACAwAAAAACCgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAQAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAABEAAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAD + tiles: KgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAADKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAOgAAAAABOgAAAAAAOgAAAAACKgAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADOgAAAAAAOgAAAAABOgAAAAABKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAADKgAAAAAAOgAAAAABOgAAAAABOgAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAAOgAAAAABOgAAAAACOgAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAAOgAAAAABOgAAAAABOgAAAAACOgAAAAACOgAAAAACKgAAAAAALwAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACOgAAAAABOgAAAAABOgAAAAABOgAAAAACOgAAAAACLAAAAAACLAAAAAAAMwAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAADOgAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADKgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAC version: 6 -2,0: ind: -2,0 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAAADwAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAABAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABCQAAAAAACQAAAAAACQAAAAAABAAAAAABAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACCQAAAAAABAAAAAABCQAAAAAAEQAAAAAAEQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADCQAAAAAACQAAAAAACQAAAAAABAAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAC + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAAAOAAAAAADLQAAAAABLQAAAAACLQAAAAADLQAAAAAALQAAAAABLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADLQAAAAABLQAAAAAALQAAAAACLQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAACKgAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAADLAAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACMgAAAAAAMgAAAAAAMgAAAAAALQAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABMgAAAAAALQAAAAABMgAAAAAAOwAAAAADOwAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAACMgAAAAAAMgAAAAAAMgAAAAAALQAAAAACKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAACLQAAAAABLQAAAAAALQAAAAAALQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAADKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAB version: 6 -3,0: ind: -3,0 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAAADwAAAAACEwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAOAAAAAACOAAAAAABOAAAAAAAOAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAAOAAAAAADPQAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAACAQAAAAAAEAAAAAAAEAAAAAADAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAABAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADEAAAAAACEAAAAAABEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAACAQAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAADDwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAACEwAAAAABDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOgAAAAACOgAAAAABOgAAAAAAOgAAAAADOgAAAAACKgAAAAAAOgAAAAADOgAAAAACKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAABOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABLAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAACOgAAAAAAKgAAAAAAOgAAAAADOgAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAAAOgAAAAACOgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAADKgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAADOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAADLQAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAAALQAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABKgAAAAAALAAAAAACLAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAABLQAAAAACKgAAAAAALAAAAAABLAAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAAPQAAAAADOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: EAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACCgAAAAACEAAAAAAACgAAAAABEAAAAAACEAAAAAACEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAADAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAAAAQAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAADEAAAAAACEAAAAAACAQAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAACAQAAAAAAEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAABEAAAAAABAQAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAADAQAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAADEAAAAAAAAQAAAAAAEAAAAAABEAAAAAAD + tiles: OgAAAAABOgAAAAADOgAAAAADOgAAAAABOgAAAAACMwAAAAACOgAAAAADMwAAAAACOgAAAAAAOgAAAAACOgAAAAABKgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAADOgAAAAACOgAAAAABOgAAAAACOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAOgAAAAACOgAAAAADKgAAAAAAOgAAAAABOgAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAABOgAAAAABOgAAAAADOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAADOgAAAAAAOgAAAAADOgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAACOgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAACOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAADOgAAAAAAOgAAAAABOgAAAAACOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAADKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAACOgAAAAADOgAAAAADKgAAAAAAOgAAAAABOgAAAAADOgAAAAADKgAAAAAAOgAAAAABOgAAAAADOgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAABOgAAAAADOgAAAAACKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAADKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABOgAAAAACKgAAAAAAOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADOgAAAAACOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAACOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAAOgAAAAACOgAAAAABOgAAAAABOgAAAAACOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAABEAAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAADAQAAAAAAEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAABAQAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAAABgAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACAQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAQAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACAQAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAACAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAADwAAAAABDwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAADEAAAAAAAEAAAAAACAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAAADwAAAAAAEAAAAAAAEAAAAAACAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAADwAAAAABDwAAAAACDwAAAAACDwAAAAAADwAAAAAADwAAAAAAEAAAAAACEAAAAAACAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAAADwAAAAACDwAAAAADEAAAAAAAEAAAAAABAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACAQAAAAAADwAAAAABDwAAAAAAEAAAAAABEAAAAAAA + tiles: LAAAAAABLAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACKgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAOgAAAAABOgAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAABOgAAAAABKgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAACOgAAAAADOgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAACLwAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAABKgAAAAAAOgAAAAADOgAAAAABOgAAAAABOgAAAAAAOgAAAAABKgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAABOgAAAAABOgAAAAACOgAAAAADOgAAAAADKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAAAOgAAAAADOgAAAAAAOgAAAAACOgAAAAACOgAAAAABOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAACOgAAAAABOgAAAAABOgAAAAACOgAAAAABOgAAAAACOgAAAAABKgAAAAAAOgAAAAACOgAAAAAAOgAAAAACOgAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAACOAAAAAACOAAAAAABOAAAAAADOAAAAAABOAAAAAABOgAAAAABOgAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAAAOAAAAAADOAAAAAABOAAAAAADOAAAAAADOAAAAAACOgAAAAACOgAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAADOgAAAAAAOgAAAAADKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAADOAAAAAAAOAAAAAACOAAAAAADOgAAAAACOgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADKgAAAAAAOAAAAAABOAAAAAADOgAAAAAAOgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAADAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABEAAAAAABEAAAAAADEAAAAAACEAAAAAAAEAAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: KgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAADOgAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADOgAAAAABOgAAAAABOgAAAAABOgAAAAAAOgAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAACOgAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: BQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAQAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAABEwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAGAQAAAAAAAQAAAAAAEwAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: LgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAANAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAANAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAADPQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAEKgAAAAAAKgAAAAAAPQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: BQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: LgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAFgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAFwAAAAAAAQAAAAAAFwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAFwAAAAAAAwAAAAABAQAAAAAAFQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABQAAAAAABQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAKgAAAAAANgAAAAAAKgAAAAAANgAAAAAANgAAAAAAQQAAAAAAKgAAAAAAQQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAQQAAAAAALAAAAAADKgAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAAPwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADBQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAFwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAABDwAAAAABAQAAAAAAEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAAADwAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAAAAQAAAAAAEAAAAAACEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAAAAQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAEAAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAADEAAAAAABBQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACBgAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAACAQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAD + tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAQQAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAKgAAAAAALAAAAAABQQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAOgAAAAAAOgAAAAADOgAAAAACQQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAADOAAAAAACKgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAABOAAAAAADOAAAAAABKgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAABOAAAAAACKgAAAAAAOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAAAOAAAAAACOAAAAAADKgAAAAAAOgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAOgAAAAACLgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAACOgAAAAABOgAAAAADKgAAAAAAOgAAAAABOgAAAAADLgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAACLwAAAAAAKgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAAOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAADKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAABEAAAAAABAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADDgAAAAAADgAAAAAAAQAAAAAAGQAAAAAAGQAAAAADGQAAAAAAGQAAAAABEAAAAAACEAAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAAGQAAAAACAQAAAAAAGQAAAAADGQAAAAACGQAAAAACGQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAGQAAAAADDgAAAAAAAQAAAAAAGQAAAAADGQAAAAABGQAAAAABGQAAAAACEAAAAAABAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAGQAAAAAADgAAAAAAGQAAAAABGQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAABGQAAAAABEAAAAAACEAAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAGQAAAAADGQAAAAABGQAAAAACGQAAAAADEAAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAQAAAAAADgAAAAAAGQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAACAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAABAQAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAADEAAAAAADAQAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAADEAAAAAABAQAAAAAAEAAAAAABEAAAAAABEAAAAAADCgAAAAAAEAAAAAADCgAAAAADEAAAAAAAEAAAAAACEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAADAQAAAAAAEAAAAAADEAAAAAADEAAAAAAACgAAAAADEAAAAAACCgAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAEAAAAAABEAAAAAACCgAAAAADEAAAAAABCgAAAAADEAAAAAACEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAADOgAAAAABOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACOgAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAACNwAAAAAANwAAAAAAKgAAAAAARAAAAAABRAAAAAACRAAAAAADRAAAAAABOgAAAAACOgAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAARAAAAAACKgAAAAAARAAAAAACRAAAAAADRAAAAAADRAAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAARAAAAAADNwAAAAAAKgAAAAAARAAAAAACRAAAAAABRAAAAAACRAAAAAAAOgAAAAACKgAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABKgAAAAAARAAAAAAANwAAAAAARAAAAAADRAAAAAADKgAAAAAARAAAAAACRAAAAAADRAAAAAACRAAAAAADOgAAAAAAOgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAARAAAAAADRAAAAAABRAAAAAAARAAAAAAAOgAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAANwAAAAAARAAAAAABNwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAACOgAAAAACOgAAAAABOgAAAAACKgAAAAAAOgAAAAADOgAAAAACOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACKgAAAAAAOgAAAAADOgAAAAABOgAAAAABMwAAAAADOgAAAAABMwAAAAADOgAAAAAAOgAAAAADOgAAAAACKgAAAAAAOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABMwAAAAACOgAAAAABMwAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAACOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADMwAAAAADOgAAAAABMwAAAAADOgAAAAABOgAAAAABOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAADGQAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAADAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAGQAAAAAAGQAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACGQAAAAACAwAAAAADGQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAABQAAAAAAEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABQAAAAAAEAAAAAAAEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADRAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACRAAAAAAALAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAACOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: EAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAABQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABQAAAAAAEAAAAAADEAAAAAADEAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAABQAAAAAAEAAAAAADEAAAAAADAQAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAABQAAAAAAEAAAAAAAEAAAAAACAQAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAADEAAAAAADEAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAABQAAAAAAEAAAAAACEAAAAAABAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAABEAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACEAAAAAADEAAAAAACAQAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAABDwAAAAACAQAAAAAADgAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAACDwAAAAADAQAAAAAADgAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAACDwAAAAAAAQAAAAAADgAAAAAAEAAAAAAAAQAAAAAAEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAADgAAAAAA + tiles: OgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAALgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAAOgAAAAADOgAAAAAAOgAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAAOgAAAAACOgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAAOgAAAAABOgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAAOgAAAAABOgAAAAABOgAAAAAALQAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAAOgAAAAABOgAAAAABKgAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAACLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALgAAAAAAOgAAAAADKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACOgAAAAACOgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAABOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAABOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAADKgAAAAAANwAAAAAAOgAAAAACKgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAADOAAAAAAAOAAAAAABKgAAAAAANwAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAABOAAAAAADKgAAAAAANwAAAAAAOgAAAAACKgAAAAAAOgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAANwAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: DgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAB + tiles: NwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABMAAAAAAAMAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAD version: 6 1,-1: ind: 1,-1 - tiles: AwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAAA + tiles: LAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAC version: 6 1,0: ind: 1,0 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAAAQAAAAAABgAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACwAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAACwAAAAAACwAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAACwAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAABgAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAALAAAAAABKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALQAAAAAALQAAAAABLQAAAAAALQAAAAAAKgAAAAAALwAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAANAAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAALwAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAGwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAwAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACAQAAAAAAAwAAAAAAAwAAAAABDAAAAAAADAAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAABAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAADAAAAAAAAQAAAAAAGwAAAAAAGwAAAAAADAAAAAAAAQAAAAAADwAAAAABDwAAAAACGgAAAAAAGgAAAAAAAQAAAAAABAAAAAADBgAAAAAAAAAAAAAABgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAADDAAAAAAAAwAAAAACAQAAAAAADwAAAAADDwAAAAAAAQAAAAAAGgAAAAABAQAAAAAABAAAAAABBgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAGAAAAAAAGAAAAAAADwAAAAABAwAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAGAAAAAAAGAAAAAAADwAAAAADAQAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADAQAAAAAABAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAAAwAAAAABBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAAAQAAAAAABAAAAAADBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADGwAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAADAAAAAAADAAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAA + tiles: LAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAARgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAADKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAAKgAAAAAALAAAAAABLAAAAAABNQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLwAAAAAALwAAAAAALwAAAAAAKgAAAAAANQAAAAAAKgAAAAAARgAAAAAERgAAAAAANQAAAAAAKgAAAAAAOAAAAAABOAAAAAACRQAAAAAARQAAAAABKgAAAAAALQAAAAACLwAAAAAAKQAAAAAALwAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAABNQAAAAAALAAAAAAAKgAAAAAAOAAAAAACOAAAAAABKgAAAAAARQAAAAABKgAAAAAALQAAAAADLwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAQwAAAAAAQwAAAAAAOAAAAAAALAAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAQwAAAAAAQwAAAAAAOAAAAAACKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACKgAAAAAALQAAAAADLQAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAABLQAAAAABLAAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAADKgAAAAAALQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAARgAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABNQAAAAAANQAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAA version: 6 2,0: ind: 2,0 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAGwAAAAAEDAAAAAAADAAAAAAAGwAAAAACDAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAGwAAAAADAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAABAAAAAABBAAAAAACBgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBgAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAGwAAAAAADAAAAAAAAwAAAAABAQAAAAAAAwAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAGwAAAAAAGwAAAAABAQAAAAAAGwAAAAABDAAAAAAAGwAAAAADDAAAAAAADAAAAAAAAwAAAAADAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAADAAAAAAAGwAAAAACAQAAAAAADAAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAGwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAACDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAAEAwAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAGwAAAAAEAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAGwAAAAADDAAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAwAAAAACGwAAAAABAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAARgAAAAAENQAAAAAANQAAAAAARgAAAAAENQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAACKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALQAAAAAALQAAAAACLwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLwAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAARgAAAAABNQAAAAAALAAAAAADKgAAAAAALAAAAAACNQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAARgAAAAAARgAAAAAAKgAAAAAARgAAAAAANQAAAAAARgAAAAAANQAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADNQAAAAAAKgAAAAAANQAAAAAARgAAAAAEKgAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAADNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAELAAAAAABNQAAAAAANQAAAAAANQAAAAAAKgAAAAAARgAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAAANQAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALAAAAAADRgAAAAACKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAHAAAAAAAHAAAAAABHAAAAAACAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAADHAAAAAADHAAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAADHQAAAAAAHQAAAAADHQAAAAACAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAABHAAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABHQAAAAACCgAAAAADHQAAAAADAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAwAAAAAAHQAAAAADHQAAAAAAHQAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADGwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAGwAAAAABDAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAGwAAAAAEAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAACDAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAAwAAAAABAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAABAQAAAAAADAAAAAAAAQAAAAAAGwAAAAAAAQAAAAAABgAAAAAABgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAQAAAAAADAAAAAAAAwAAAAACAwAAAAAAGwAAAAADAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAQAAAAAADAAAAAAADAAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAGwAAAAABDAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAQAAAAAADAAAAAAAAwAAAAADGwAAAAAADAAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAD + tiles: KgAAAAAAKgAAAAAAKgAAAAAARwAAAAAARwAAAAADRwAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAAARwAAAAABLAAAAAADKgAAAAAALAAAAAACLAAAAAADSAAAAAACSAAAAAADSAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAABRwAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAABSAAAAAADMwAAAAADSAAAAAACLAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAACSAAAAAACSAAAAAADSAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABRgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAABNQAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABKgAAAAAARgAAAAAEKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAAANQAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAABKgAAAAAANQAAAAAAKgAAAAAARgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAABKgAAAAAANQAAAAAALAAAAAABLAAAAAADRgAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAARgAAAAADNQAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAANQAAAAAALAAAAAACRgAAAAAANQAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAALwAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAALAAAAAABLAAAAAAD version: 6 1,-3: ind: 1,-3 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACKgAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAD + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAB version: 6 2,-3: ind: 2,-3 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAABAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAADAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAACBgAAAAAAAwAAAAAAAwAAAAACAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAACHAAAAAACHAAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAALAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAACLwAAAAAALAAAAAABLAAAAAADKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAADRwAAAAACRwAAAAADLAAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAGwAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAARgAAAAACKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAABAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: AQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAABQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAQAAAAAABAAAAAAAHwAAAAAAHwAAAAACBAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAABAAAAAACHwAAAAAAHwAAAAAABAAAAAABAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADKgAAAAAAKgAAAAAALgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAALgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAAAKgAAAAAALgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAALQAAAAABSwAAAAABSwAAAAACLQAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALQAAAAAASwAAAAAASwAAAAAALQAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: AwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAABgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAABgAAAAAAAwAAAAAAAwAAAAACAwAAAAACDwAAAAACDwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADwAAAAAADwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAADAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAADwAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAABDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACAwAAAAAAAwAAAAABAQAAAAAABAAAAAACBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADBAAAAAADBAAAAAABCgAAAAABBAAAAAABAwAAAAACAwAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAABAwAAAAABBAAAAAABCgAAAAADBAAAAAACBAAAAAACAwAAAAABAwAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABDAAAAAAAAQAAAAAADAAAAAAADAAAAAAAAwAAAAACAwAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: LAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAALwAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAALwAAAAAALAAAAAADLAAAAAADLAAAAAABOAAAAAABOAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAOAAAAAADOAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAACKgAAAAAALAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAOAAAAAADOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAOAAAAAACOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAACLAAAAAACLAAAAAAAKgAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLQAAAAACLQAAAAABMwAAAAACLQAAAAADLAAAAAADLAAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAADNQAAAAAANQAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAADLQAAAAACMwAAAAADLQAAAAADLQAAAAADLAAAAAACLAAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAABNQAAAAAAKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAD + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAAD version: 6 5,-3: ind: 5,-3 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: AwAAAAAAAwAAAAACAQAAAAAABQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LAAAAAADLAAAAAACKgAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: AQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: KgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA version: 6 1,1: ind: 1,1 - tiles: AQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAAEDwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAEwAAAAABDwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAABDwAAAAACEwAAAAAFAwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAADwAAAAAAAQAAAAAADwAAAAACAQAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAGAAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAACAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA + tiles: KgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAADOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAGOAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAALAAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAGOAAAAAADPQAAAAAGLAAAAAADKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAAALQAAAAADKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAACLQAAAAACLQAAAAACQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAACLQAAAAADKgAAAAAAKwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAACKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAA version: 6 0,1: ind: 0,1 - tiles: AQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAACGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAABGQAAAAAAGQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAAAGQAAAAACGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAACIAAAAAAAIAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAABIAAAAAABIAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAABGQAAAAADGQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAGQAAAAACGQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAACDwAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAA + tiles: KgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAADRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAACRAAAAAACRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAACRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAADTAAAAAABTAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAAATAAAAAADTAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAACRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAACRAAAAAABRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAADRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: AgAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABBQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBQAAAAAABQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACAwAAAAADAwAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAABCgAAAAACCgAAAAACCgAAAAACCgAAAAABCgAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADCgAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: KwAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAABLgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAAALQAAAAACKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAABLQAAAAADLQAAAAABKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAABLAAAAAABLAAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAABMwAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAAAMwAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -2,1: ind: -2,1 - tiles: AwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAADIQAAAAAFAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAFIQAAAAADAQAAAAAAAwAAAAAAAwAAAAADBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAACIQAAAAACAQAAAAAAAwAAAAADAwAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAEIQAAAAAEAQAAAAAAAwAAAAADAwAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADIQAAAAAFIQAAAAADAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAEAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABCgAAAAAACgAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACCgAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAACAwAAAAADAQAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAA + tiles: LAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAFTQAAAAABKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAATQAAAAAFKgAAAAAALAAAAAADLAAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAABTQAAAAAFKgAAAAAALAAAAAABLAAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAATQAAAAADKgAAAAAALAAAAAAALAAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADTQAAAAABTQAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAFTQAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAAAMwAAAAABMwAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAACMwAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALQAAAAADLQAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAB version: 6 -1,1: ind: -1,1 - tiles: AwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAQAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAACGQAAAAAAGQAAAAADGQAAAAAAGQAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAACGQAAAAABGQAAAAAAGQAAAAAAGQAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAIAAAAAABIAAAAAACIAAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAIAAAAAACIAAAAAACIAAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAADGQAAAAACGQAAAAABGQAAAAACGQAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAABGQAAAAABGQAAAAAAGQAAAAACGQAAAAAD + tiles: LAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAAPgAAAAAALAAAAAACLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACRAAAAAACRAAAAAABRAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAABRAAAAAADRAAAAAAARAAAAAAARAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAADRAAAAAACTAAAAAACTAAAAAAATAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABTAAAAAADTAAAAAAATAAAAAABTAAAAAADTAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAABTAAAAAABTAAAAAACTAAAAAABTAAAAAAATAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACTAAAAAABTAAAAAACTAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAABRAAAAAABRAAAAAAARAAAAAADRAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAARAAAAAACRAAAAAAARAAAAAAARAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAIgAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAEAAAAAABIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAABAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAACAQAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAABAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABAwAAAAABAwAAAAADAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAADAQAAAAAAAwAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAABAwAAAAAAAwAAAAAB + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAATgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAOgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAADLQAAAAABLAAAAAABLAAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAALQAAAAAALQAAAAABLQAAAAABLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAADLQAAAAAALQAAAAACLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAACKgAAAAAALAAAAAACLAAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADLQAAAAADLQAAAAABLAAAAAADLAAAAAADLAAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAADLQAAAAACLQAAAAAALAAAAAADLAAAAAABLAAAAAABLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAACKgAAAAAALAAAAAABLAAAAAABLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAAALQAAAAAALQAAAAABLQAAAAAALAAAAAACLAAAAAAB version: 6 -3,2: ind: -3,2 - tiles: AwAAAAAAAwAAAAABAQAAAAAAAQAAAAAADwAAAAAADwAAAAADDwAAAAABAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAQAAAAAADwAAAAADDwAAAAADDwAAAAABDwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABGAAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAAAGAAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAA + tiles: LAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAACOAAAAAABKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAABKgAAAAAAOAAAAAACOAAAAAADOAAAAAABOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAADQwAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAACQwAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAADKgAAAAAALAAAAAADLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAA version: 6 -2,2: ind: -2,2 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAADHAAAAAACAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAADAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAQAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACAQAAAAAAAQAAAAAADwAAAAAC + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAADLAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAACKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABKgAAAAAAKgAAAAAAOAAAAAAD version: 6 -1,2: ind: -1,2 - tiles: AwAAAAADAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAABAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: LAAAAAACLAAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 0,2: ind: 0,2 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAADwAAAAACDwAAAAAADwAAAAABAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAEAAAAAABEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAADAQAAAAAADwAAAAADDwAAAAAADwAAAAACDwAAAAACAQAAAAAAEAAAAAACEAAAAAADJAAAAAABJAAAAAABJAAAAAACJAAAAAADJAAAAAAAJAAAAAACEAAAAAACEAAAAAACAQAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAADAQAAAAAAEAAAAAAAEAAAAAADJAAAAAAAJAAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACEAAAAAACEAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAEAAAAAABEAAAAAADJAAAAAABJAAAAAACJAAAAAADJAAAAAAAJAAAAAADJAAAAAABEAAAAAAAEAAAAAADAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAEAAAAAACEAAAAAABJAAAAAADJAAAAAAAJAAAAAACJAAAAAABJAAAAAADJAAAAAAAEAAAAAADEAAAAAABAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACEAAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAADJQAAAAADJQAAAAADJQAAAAACJQAAAAABJQAAAAAB + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAOAAAAAACOAAAAAAAOAAAAAABKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAOgAAAAADOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAOgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAACOgAAAAABOgAAAAADOgAAAAABOgAAAAADOgAAAAAAOgAAAAABOgAAAAAAKgAAAAAAOAAAAAABOAAAAAACOAAAAAABOAAAAAACKgAAAAAAOgAAAAADOgAAAAABUAAAAAACUAAAAAADUAAAAAADUAAAAAACUAAAAAAAUAAAAAADOgAAAAAAOgAAAAACKgAAAAAAOAAAAAACOAAAAAAAOAAAAAABOAAAAAADKgAAAAAAOgAAAAABOgAAAAABUAAAAAABUAAAAAADUAAAAAABUAAAAAACUAAAAAACUAAAAAADOgAAAAAAOgAAAAACKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAOgAAAAAAOgAAAAABUAAAAAADUAAAAAABUAAAAAABUAAAAAABUAAAAAABUAAAAAACOgAAAAAAOgAAAAABKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAOgAAAAABOgAAAAABUAAAAAADUAAAAAACUAAAAAADUAAAAAADUAAAAAACUAAAAAACOgAAAAADOgAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAABOgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAACOgAAAAAAOgAAAAAAOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAATwAAAAAATwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAACOAAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAB version: 6 2,1: ind: 2,1 - tiles: AwAAAAADDAAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACBgAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAADAAAAAAAAQAAAAAABgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAGwAAAAABAwAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABgAAAAAAAQAAAAAAHgAAAAACAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAADAAAAAAAAwAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAADAAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAABGwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAACDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABAQAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADAQAAAAAAAQAAAAAAGAAAAAAAAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACAQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAADAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAAAQAAAAAABAAAAAABGAAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABAQAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADGAAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADAQAAAAAAAQAAAAAA + tiles: LAAAAAAANQAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAALAAAAAACLwAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAACNQAAAAAAKgAAAAAALwAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACRgAAAAADLAAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALwAAAAAAKgAAAAAASQAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAANQAAAAAALAAAAAABKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAANQAAAAAARgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAANQAAAAAALAAAAAACRgAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAQwAAAAAAKgAAAAAALAAAAAADNQAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAABKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAABKgAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAACLQAAAAACKgAAAAAALQAAAAABQwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAABQwAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADKgAAAAAAKgAAAAAA version: 6 3,0: ind: 3,0 - tiles: AQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAQAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABAwAAAAABAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACAwAAAAADAQAAAAAAAAAAAAAABgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAADBAAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAAAwAAAAABAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAADBAAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: KgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAANQAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACKgAAAAAALQAAAAADLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAALAAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADLAAAAAAAKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAABLQAAAAADKgAAAAAALAAAAAABLQAAAAABLQAAAAADLQAAAAABLQAAAAABLAAAAAABKgAAAAAAKQAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAAALQAAAAADKgAAAAAALAAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAABLAAAAAADKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAAALQAAAAADKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,1: ind: 3,1 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGwAAAAAAAwAAAAABAwAAAAABGwAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAADAAAAAAAGwAAAAADDAAAAAAAGwAAAAABGwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAABAQAAAAAABAAAAAABBAAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARgAAAAABLAAAAAACLAAAAAACRgAAAAABNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAANQAAAAAARgAAAAADNQAAAAAARgAAAAAARgAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABKgAAAAAALQAAAAADLQAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,2: ind: 3,2 - tiles: AQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAD + tiles: KgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADKgAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAAALQAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAACLQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAAA version: 6 2,2: ind: 2,2 - tiles: GAAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAwAAAAABGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAA + tiles: QwAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAALAAAAAABQwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAB version: 6 1,2: ind: 1,2 - tiles: BQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAABAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAACAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAADAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAADAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAACAQAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAADEAAAAAACAwAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAACBAAAAAADBAAAAAABBAAAAAACAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAADAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAQAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAB + tiles: LgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAABKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAADOgAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAADKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAAAOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAACKgAAAAAAOgAAAAABOgAAAAACOgAAAAABOgAAAAABKgAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAALAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAADLQAAAAABLQAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABLQAAAAACLQAAAAABLQAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAA version: 6 4,2: ind: 4,2 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAJgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAJgAAAAAAAwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAACAQAAAAAADgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAVAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAVAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALQAAAAADKgAAAAAANwAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAA version: 6 4,3: ind: 4,3 - tiles: AwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADBgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAGQAAAAACAQAAAAAADgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAIAAAAAABAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAAKwAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAADKgAAAAAAKwAAAAAALAAAAAACLAAAAAABLAAAAAABLwAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAARAAAAAADKgAAAAAANwAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAATAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAATAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,2: ind: 5,2 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,3: ind: 5,3 - tiles: BQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,3: ind: 3,3 - tiles: AwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAGQAAAAADGQAAAAACGQAAAAACDwAAAAABDwAAAAACBgAAAAAAGQAAAAACGQAAAAADGQAAAAADGQAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAGQAAAAABGQAAAAADGQAAAAAADwAAAAACDwAAAAABDwAAAAACGQAAAAADGQAAAAACGQAAAAACIAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABIAAAAAAAIAAAAAACIAAAAAABDwAAAAADDwAAAAAADwAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABIAAAAAACIAAAAAADIAAAAAACDwAAAAADDwAAAAACDwAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAGQAAAAAAGQAAAAADGQAAAAACDwAAAAACDwAAAAADDwAAAAACGQAAAAABGQAAAAADGQAAAAADGQAAAAACAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAGQAAAAADGQAAAAAAGQAAAAACDwAAAAABDwAAAAADDwAAAAAAGQAAAAAAGQAAAAABGQAAAAACGQAAAAADAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAQAAAAAAGQAAAAAAGQAAAAADGQAAAAADDwAAAAABDwAAAAABDwAAAAADGQAAAAAAGQAAAAAAGQAAAAABGQAAAAABAwAAAAABAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAA + tiles: LAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAACKgAAAAAARAAAAAADRAAAAAABRAAAAAACOAAAAAACOAAAAAACLwAAAAAARAAAAAACRAAAAAAARAAAAAAARAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACRAAAAAAAOAAAAAABOAAAAAAAOAAAAAAARAAAAAADRAAAAAADRAAAAAACTAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAADTAAAAAABTAAAAAAATAAAAAACOAAAAAAAOAAAAAABOAAAAAACTAAAAAACTAAAAAADTAAAAAAATAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAADTAAAAAAATAAAAAABTAAAAAABOAAAAAADOAAAAAAAOAAAAAACTAAAAAADTAAAAAADTAAAAAACTAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAARAAAAAAARAAAAAAARAAAAAADOAAAAAADOAAAAAACOAAAAAACRAAAAAAARAAAAAAARAAAAAAARAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAARAAAAAABRAAAAAABRAAAAAACOAAAAAABOAAAAAACOAAAAAABRAAAAAACRAAAAAAARAAAAAABRAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAARAAAAAAARAAAAAADRAAAAAACOAAAAAABOAAAAAACOAAAAAADRAAAAAAARAAAAAADRAAAAAADRAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAA version: 6 2,3: ind: 2,3 - tiles: AQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACGAAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABGAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADGAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABJwAAAAACAQAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAAAQAAAAAABgAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACJwAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADAQAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACJwAAAAACAQAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAJwAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAACAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAwAAAAACJwAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAHgAAAAADHgAAAAABCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAwAAAAADCwAAAAAAAQAAAAAAHgAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAHgAAAAABAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAACAQAAAAAA + tiles: KgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACQwAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAAAQwAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADQwAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAADLQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADVQAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADKgAAAAAALwAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADVQAAAAACLQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAADKgAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAAALQAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAABVQAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAACLQAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACVQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAACVQAAAAABKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAADSQAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAADNAAAAAAAKgAAAAAASQAAAAADKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAADKgAAAAAAKgAAAAAASQAAAAACKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAACKgAAAAAA version: 6 1,3: ind: 1,3 - tiles: AQAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAABAAAAAAABAAAAAABHAAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAAABAAAAAADBAAAAAACBAAAAAABAQAAAAAADwAAAAADDwAAAAABGAAAAAAAAQAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAADAQAAAAAABAAAAAABBAAAAAADBAAAAAABAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAACBAAAAAABBAAAAAABBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAADAQAAAAAABAAAAAADBAAAAAAABAAAAAACJwAAAAADJwAAAAAAJwAAAAACJwAAAAADAQAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAJwAAAAADJwAAAAAAJwAAAAADJwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADJwAAAAACJwAAAAADJwAAAAABJwAAAAADJwAAAAADJwAAAAABAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAQAAAAAABgAAAAAAJwAAAAACJwAAAAACJwAAAAADJwAAAAAAJwAAAAACJwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAQAAAAAAJwAAAAABJwAAAAADJwAAAAACJwAAAAADJwAAAAABJwAAAAADJwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAQAAAAAAJwAAAAAAJwAAAAABJwAAAAAAJwAAAAABJwAAAAAAJwAAAAACJwAAAAABAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAJwAAAAADJwAAAAABJwAAAAABJwAAAAADJwAAAAACJwAAAAACJwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAJwAAAAACJwAAAAADJwAAAAAAJwAAAAABJwAAAAADJwAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAABgAAAAAAAQAAAAAACwAAAAAA + tiles: KgAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABLQAAAAADLQAAAAACRwAAAAADKgAAAAAALQAAAAAALQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACLQAAAAADLQAAAAACLQAAAAADKgAAAAAAOAAAAAAAOAAAAAABQwAAAAAAKgAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAADLQAAAAACLQAAAAADLQAAAAAALQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACKgAAAAAALQAAAAACLQAAAAADLQAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAACLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADKgAAAAAALQAAAAADLQAAAAAALQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAACKgAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAADKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALwAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAACVQAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAAKgAAAAAANAAAAAAA version: 6 0,3: ind: 0,3 - tiles: IwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAACJQAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAADJQAAAAACJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAACJQAAAAACJQAAAAADJQAAAAABJQAAAAABJQAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAABJQAAAAADJQAAAAACJQAAAAADJQAAAAACJQAAAAABIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAADCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAADDwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAKAAAAAAAEgAAAAAAOQAAAAAAAQAAAAAADwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAADwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAADwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAKAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAOQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAADBgAAAAAAAQAAAAAACwAAAAAAHgAAAAACCwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: TwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAACOAAAAAACOAAAAAADOAAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAABOAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAADOAAAAAACOAAAAAABOAAAAAACOAAAAAADOAAAAAAAOAAAAAABOAAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAACOAAAAAABOAAAAAADOAAAAAADOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAAAOAAAAAAAOAAAAAABOAAAAAAAOAAAAAABOAAAAAABNAAAAAAAKgAAAAAAKgAAAAAAVgAAAAAAPAAAAAAAVwAAAAAAKgAAAAAAOAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAABNAAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAVgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAOAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAVwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAACOAAAAAABOAAAAAAAOAAAAAAAOAAAAAACOAAAAAABOAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAADLwAAAAAAKgAAAAAANAAAAAAASQAAAAADNAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -1,3: ind: -1,3 - tiles: DwAAAAACDwAAAAABDwAAAAAADwAAAAACAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAQAAAAAAHgAAAAABAQAAAAAAAQAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAJwAAAAABJwAAAAABJwAAAAACAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAJwAAAAABJwAAAAABJwAAAAABAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAJwAAAAACJwAAAAAAJwAAAAADAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAJwAAAAAAJwAAAAABJwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAA + tiles: OAAAAAAAOAAAAAADOAAAAAADOAAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAACOAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAAAOAAAAAADOAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADKgAAAAAASQAAAAACKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAACKgAAAAAASQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAVQAAAAACVQAAAAAAVQAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAACKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAVQAAAAACVQAAAAABVQAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAVQAAAAACVQAAAAADVQAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAVQAAAAADVQAAAAADVQAAAAADKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAABKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAA version: 6 3,4: ind: 3,4 - tiles: AQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: KgAAAAAALQAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,4: ind: 2,4 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAA version: 6 1,4: ind: 1,4 - tiles: AwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADDAAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAA + tiles: LAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAABNQAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAALAAAAAADNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAA version: 6 4,4: ind: 4,4 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 0,4: ind: 0,4 - tiles: AQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAADAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAABQAAAAAABQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAALwAAAAAASQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAANQAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAA version: 6 -1,4: ind: -1,4 - tiles: AwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAHgAAAAADHgAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAAAAwAAAAABAQAAAAAACwAAAAAACwAAAAAAHgAAAAADCwAAAAAAHgAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAADDwAAAAAAAwAAAAAADwAAAAACDwAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAADDwAAAAACDwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAACAwAAAAACDwAAAAABDwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAADDwAAAAABDwAAAAADAwAAAAABAQAAAAAAAgAAAAAABQAAAAAADwAAAAADDwAAAAACDwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACDwAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAADAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADDwAAAAABDwAAAAACDwAAAAACDwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAABDwAAAAADAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAADDwAAAAADDwAAAAADDwAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAASQAAAAABSQAAAAACSQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADLAAAAAAAKgAAAAAANAAAAAAANAAAAAAASQAAAAAANAAAAAAASQAAAAABNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAACLAAAAAABOAAAAAAAOAAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAABOAAAAAABOAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAADLAAAAAADOAAAAAAAOAAAAAACOAAAAAABOAAAAAABOAAAAAAAOAAAAAABOAAAAAABOAAAAAAALAAAAAADKgAAAAAAKwAAAAAALgAAAAAAOAAAAAABOAAAAAABOAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABOAAAAAAAOAAAAAADOAAAAAABOAAAAAABOAAAAAACOAAAAAAAOAAAAAACOAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACOAAAAAABOAAAAAAAOAAAAAACOAAAAAACOAAAAAAAOAAAAAADOAAAAAAAOAAAAAABLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAABOAAAAAABOAAAAAABOAAAAAACOAAAAAADOAAAAAADOAAAAAADKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAADOAAAAAAAOAAAAAABOAAAAAADOAAAAAADOAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 0,5: ind: 0,5 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,5: ind: 1,5 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,2: ind: -4,2 - tiles: BQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAAAAwAAAAACAwAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADAwAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAABLQAAAAABLAAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAACLAAAAAADLAAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACKgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKQAAAAAALQAAAAADLQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -4,0: ind: -4,0 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAA version: 6 -5,2: ind: -5,2 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA version: 6 -4,3: ind: -4,3 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAEwAAAAADDwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAACEwAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAADEwAAAAAEEwAAAAAFDwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAABDwAAAAADEwAAAAAGDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAACDwAAAAABDwAAAAACDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAACEwAAAAAAEwAAAAAGDwAAAAABAQAAAAAAAQAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAEwAAAAACDwAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAC + tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAPQAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAB version: 6 -3,3: ind: -3,3 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAABAQAAAAAABAAAAAADBAAAAAADBAAAAAADAQAAAAAAAwAAAAADAwAAAAABAwAAAAAABgAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACAQAAAAAABAAAAAABBAAAAAADBAAAAAABAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAADBAAAAAADAQAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAABgAAAAAAEAAAAAACEAAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAJAAAAAACEAAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAEAAAAAACEAAAAAAAEAAAAAADAwAAAAABCgAAAAAAAwAAAAADAQAAAAAABAAAAAAABAAAAAADBAAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAABAAAAAABAQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAADLwAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAACKgAAAAAALQAAAAADLQAAAAACLQAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAADLQAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALwAAAAAAOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAUAAAAAABOgAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAACLQAAAAADLQAAAAABLQAAAAABLQAAAAABKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADLAAAAAAAMwAAAAAALAAAAAADKgAAAAAALQAAAAACLQAAAAADLQAAAAADKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABKgAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAABKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAALQAAAAACKgAAAAAA version: 6 -5,3: ind: -5,3 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -2,3: ind: -2,3 - tiles: BgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAHgAAAAADCwAAAAAAAQAAAAAADwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABDQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAEAAAAAAAEAAAAAADAQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAEAAAAAAAEAAAAAABAQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAQAAAAAABgAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAHgAAAAACAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAHgAAAAACAQAAAAAAAwAAAAAC + tiles: LwAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAARwAAAAADRwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAASQAAAAABNAAAAAAAKgAAAAAAOAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAABNgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAAOgAAAAAAOgAAAAABKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAABKgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADKgAAAAAALwAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAABKgAAAAAALAAAAAAD version: 6 -4,4: ind: -4,4 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADQgAAAAABQgAAAAADQgAAAAACQgAAAAABQgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAADQgAAAAAAQgAAAAAAQgAAAAADQgAAAAADQgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABQgAAAAABQgAAAAACQgAAAAADQgAAAAADQgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADQgAAAAABQgAAAAAAQgAAAAADQgAAAAADQgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABQgAAAAAAQgAAAAABQgAAAAAAQgAAAAAAQgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACQgAAAAAAQgAAAAAAQgAAAAABQgAAAAAAQgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAABWAAAAAABWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAACWAAAAAADWAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -3,4: ind: -3,4 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAAAwAAAAABQgAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAABAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAQgAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAACAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACIgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLQAAAAABLQAAAAAALQAAAAADLQAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLQAAAAAALQAAAAABLQAAAAABLQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAACLAAAAAAAWAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAATgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAA version: 6 -2,4: ind: -2,4 - tiles: AQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACCwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: KgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,0: ind: 4,0 - tiles: AgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: KwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: BQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAAADwAAAAABEwAAAAABAQAAAAAAAQAAAAAAEwAAAAABDwAAAAACAQAAAAAABAAAAAACBAAAAAACAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAABAQAAAAAAAQAAAAAADwAAAAACEwAAAAAGDwAAAAABDwAAAAADDwAAAAADEwAAAAABAQAAAAAABAAAAAADCgAAAAABBAAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAABAQAAAAAAAQAAAAAADwAAAAABEwAAAAAGEwAAAAAEAQAAAAAAEwAAAAABAQAAAAAABAAAAAAABAAAAAABBAAAAAABBQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAABPQAAAAAAKgAAAAAAKgAAAAAAPQAAAAADOAAAAAABKgAAAAAALQAAAAABLQAAAAABKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAFKgAAAAAAKgAAAAAAOAAAAAABPQAAAAAFOAAAAAABOAAAAAAAOAAAAAAAPQAAAAAEKgAAAAAALQAAAAACMwAAAAABLQAAAAABLgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADKgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAGPQAAAAADKgAAAAAAPQAAAAACKgAAAAAALQAAAAAALQAAAAACLQAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,5: ind: 3,5 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,5: ind: 2,5 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAABAAAAAACAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAABAAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAABAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAABAAAAAACBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAABKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAALQAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAALQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBAAAAAACBAAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAABBAAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAACLQAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA version: 6 -3,5: ind: -3,5 - tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -2,5: ind: -2,5 - tiles: BQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA + tiles: LgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 - type: Broadphase - type: Physics @@ -5695,8 +5695,6 @@ entities: 9045: 3,-19 9046: 4,-19 9069: 29,-9 - 10292: 21,-26 - 10293: 22,-26 - node: zIndex: 1 color: '#EFB34196' @@ -9177,6 +9175,12 @@ entities: id: grasssnow decals: 4352: -46.01974,-50.080185 + - node: + color: '#FFFFFFFF' + id: grasssnow + decals: + 10162: 21.08367,-26.059422 + 10163: 21.882736,-26.075739 - node: cleanable: True color: '#8600003C' @@ -11032,14 +11036,17 @@ entities: 14,2: 0: 61152 14,3: - 0: 14 + 6: 2 + 7: 4 + 0: 8 2: 224 15,1: 0: 30583 15,2: 0: 30576 15,3: - 0: 7 + 0: 1 + 8: 6 2: 240 16,1: 0: 9011 @@ -11144,10 +11151,10 @@ entities: 0: 45532 9,12: 0: 29688 - 6: 32768 + 9: 32768 10,12: 0: 187 - 6: 28672 + 9: 28672 11,12: 0: 65535 4,9: @@ -11292,7 +11299,7 @@ entities: 0: 65287 9,13: 0: 62259 - 6: 136 + 9: 136 9,14: 0: 61695 9,15: @@ -11300,7 +11307,7 @@ entities: 8,16: 0: 61176 10,13: - 6: 119 + 9: 119 0: 61440 10,14: 0: 64669 @@ -11926,6 +11933,51 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.823984 + - 82.09976 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -15442,7 +15494,7 @@ entities: pos: 26.5,17.5 parent: 12 - type: Door - secondsUntilStateChange: -10061.324 + secondsUntilStateChange: -19267.662 state: Opening - type: DeviceLinkSink invokeCounter: 1 @@ -44839,6 +44891,46 @@ entities: - type: Transform pos: 49.5,54.5 parent: 12 + - uid: 32192 + components: + - type: Transform + pos: 77.5,11.5 + parent: 12 + - uid: 32193 + components: + - type: Transform + pos: 77.5,10.5 + parent: 12 + - uid: 32194 + components: + - type: Transform + pos: 77.5,9.5 + parent: 12 + - uid: 32195 + components: + - type: Transform + pos: 77.5,8.5 + parent: 12 + - uid: 32196 + components: + - type: Transform + pos: 77.5,7.5 + parent: 12 + - uid: 32197 + components: + - type: Transform + pos: 77.5,6.5 + parent: 12 + - uid: 32198 + components: + - type: Transform + pos: 77.5,4.5 + parent: 12 + - uid: 32199 + components: + - type: Transform + pos: 77.5,5.5 + parent: 12 - uid: 32230 components: - type: Transform @@ -56442,6 +56534,11 @@ entities: - type: Transform pos: -58.5,-43.5 parent: 12 + - uid: 31751 + components: + - type: Transform + pos: 77.5,-2.5 + parent: 12 - uid: 31775 components: - type: Transform @@ -56597,6 +56694,166 @@ entities: - type: Transform pos: 40.5,-10.5 parent: 12 + - uid: 32130 + components: + - type: Transform + pos: 77.5,-1.5 + parent: 12 + - uid: 32131 + components: + - type: Transform + pos: 77.5,1.5 + parent: 12 + - uid: 32144 + components: + - type: Transform + pos: 77.5,2.5 + parent: 12 + - uid: 32145 + components: + - type: Transform + pos: 77.5,-0.5 + parent: 12 + - uid: 32146 + components: + - type: Transform + pos: 77.5,3.5 + parent: 12 + - uid: 32147 + components: + - type: Transform + pos: 77.5,4.5 + parent: 12 + - uid: 32148 + components: + - type: Transform + pos: 77.5,5.5 + parent: 12 + - uid: 32149 + components: + - type: Transform + pos: 77.5,6.5 + parent: 12 + - uid: 32150 + components: + - type: Transform + pos: 77.5,0.5 + parent: 12 + - uid: 32151 + components: + - type: Transform + pos: 77.5,9.5 + parent: 12 + - uid: 32152 + components: + - type: Transform + pos: 77.5,7.5 + parent: 12 + - uid: 32153 + components: + - type: Transform + pos: 77.5,10.5 + parent: 12 + - uid: 32154 + components: + - type: Transform + pos: 77.5,11.5 + parent: 12 + - uid: 32155 + components: + - type: Transform + pos: 77.5,8.5 + parent: 12 + - uid: 32200 + components: + - type: Transform + pos: 71.5,-1.5 + parent: 12 + - uid: 32201 + components: + - type: Transform + pos: 71.5,0.5 + parent: 12 + - uid: 32202 + components: + - type: Transform + pos: 71.5,1.5 + parent: 12 + - uid: 32203 + components: + - type: Transform + pos: 71.5,2.5 + parent: 12 + - uid: 32204 + components: + - type: Transform + pos: 71.5,-0.5 + parent: 12 + - uid: 32205 + components: + - type: Transform + pos: 66.5,4.5 + parent: 12 + - uid: 32206 + components: + - type: Transform + pos: 67.5,4.5 + parent: 12 + - uid: 32207 + components: + - type: Transform + pos: 68.5,4.5 + parent: 12 + - uid: 32208 + components: + - type: Transform + pos: 69.5,4.5 + parent: 12 + - uid: 32209 + components: + - type: Transform + pos: 73.5,4.5 + parent: 12 + - uid: 32210 + components: + - type: Transform + pos: 74.5,4.5 + parent: 12 + - uid: 32211 + components: + - type: Transform + pos: 75.5,4.5 + parent: 12 + - uid: 32212 + components: + - type: Transform + pos: 76.5,4.5 + parent: 12 + - uid: 32237 + components: + - type: Transform + pos: 71.5,6.5 + parent: 12 + - uid: 32238 + components: + - type: Transform + pos: 71.5,7.5 + parent: 12 + - uid: 32239 + components: + - type: Transform + pos: 71.5,8.5 + parent: 12 + - uid: 32240 + components: + - type: Transform + pos: 71.5,9.5 + parent: 12 + - uid: 32241 + components: + - type: Transform + pos: 71.5,10.5 + parent: 12 - proto: CableHVStack entities: - uid: 353 @@ -67407,6 +67664,306 @@ entities: - type: Transform pos: 49.5,54.5 parent: 12 + - uid: 32156 + components: + - type: Transform + pos: 77.5,11.5 + parent: 12 + - uid: 32157 + components: + - type: Transform + pos: 77.5,10.5 + parent: 12 + - uid: 32158 + components: + - type: Transform + pos: 77.5,9.5 + parent: 12 + - uid: 32159 + components: + - type: Transform + pos: 77.5,7.5 + parent: 12 + - uid: 32160 + components: + - type: Transform + pos: 77.5,6.5 + parent: 12 + - uid: 32161 + components: + - type: Transform + pos: 77.5,5.5 + parent: 12 + - uid: 32162 + components: + - type: Transform + pos: 77.5,4.5 + parent: 12 + - uid: 32163 + components: + - type: Transform + pos: 77.5,3.5 + parent: 12 + - uid: 32164 + components: + - type: Transform + pos: 77.5,2.5 + parent: 12 + - uid: 32165 + components: + - type: Transform + pos: 77.5,8.5 + parent: 12 + - uid: 32166 + components: + - type: Transform + pos: 77.5,1.5 + parent: 12 + - uid: 32167 + components: + - type: Transform + pos: 77.5,-0.5 + parent: 12 + - uid: 32168 + components: + - type: Transform + pos: 77.5,-1.5 + parent: 12 + - uid: 32169 + components: + - type: Transform + pos: 77.5,-2.5 + parent: 12 + - uid: 32170 + components: + - type: Transform + pos: 77.5,0.5 + parent: 12 + - uid: 32213 + components: + - type: Transform + pos: 66.5,4.5 + parent: 12 + - uid: 32242 + components: + - type: Transform + pos: 67.5,4.5 + parent: 12 + - uid: 32243 + components: + - type: Transform + pos: 68.5,4.5 + parent: 12 + - uid: 32244 + components: + - type: Transform + pos: 69.5,4.5 + parent: 12 + - uid: 32245 + components: + - type: Transform + pos: 71.5,6.5 + parent: 12 + - uid: 32246 + components: + - type: Transform + pos: 71.5,7.5 + parent: 12 + - uid: 32247 + components: + - type: Transform + pos: 71.5,8.5 + parent: 12 + - uid: 32248 + components: + - type: Transform + pos: 71.5,9.5 + parent: 12 + - uid: 32249 + components: + - type: Transform + pos: 71.5,10.5 + parent: 12 + - uid: 32250 + components: + - type: Transform + pos: 74.5,4.5 + parent: 12 + - uid: 32251 + components: + - type: Transform + pos: 75.5,4.5 + parent: 12 + - uid: 32252 + components: + - type: Transform + pos: 76.5,4.5 + parent: 12 + - uid: 32253 + components: + - type: Transform + pos: 71.5,2.5 + parent: 12 + - uid: 32254 + components: + - type: Transform + pos: 71.5,1.5 + parent: 12 + - uid: 32255 + components: + - type: Transform + pos: 71.5,-0.5 + parent: 12 + - uid: 32256 + components: + - type: Transform + pos: 71.5,0.5 + parent: 12 + - uid: 32257 + components: + - type: Transform + pos: 71.5,-1.5 + parent: 12 + - uid: 32258 + components: + - type: Transform + pos: 70.5,8.5 + parent: 12 + - uid: 32259 + components: + - type: Transform + pos: 69.5,8.5 + parent: 12 + - uid: 32260 + components: + - type: Transform + pos: 67.5,8.5 + parent: 12 + - uid: 32261 + components: + - type: Transform + pos: 68.5,8.5 + parent: 12 + - uid: 32262 + components: + - type: Transform + pos: 67.5,7.5 + parent: 12 + - uid: 32263 + components: + - type: Transform + pos: 67.5,5.5 + parent: 12 + - uid: 32264 + components: + - type: Transform + pos: 67.5,6.5 + parent: 12 + - uid: 32265 + components: + - type: Transform + pos: 75.5,5.5 + parent: 12 + - uid: 32266 + components: + - type: Transform + pos: 75.5,6.5 + parent: 12 + - uid: 32267 + components: + - type: Transform + pos: 75.5,7.5 + parent: 12 + - uid: 32268 + components: + - type: Transform + pos: 75.5,8.5 + parent: 12 + - uid: 32269 + components: + - type: Transform + pos: 74.5,8.5 + parent: 12 + - uid: 32270 + components: + - type: Transform + pos: 73.5,8.5 + parent: 12 + - uid: 32271 + components: + - type: Transform + pos: 72.5,8.5 + parent: 12 + - uid: 32272 + components: + - type: Transform + pos: 75.5,3.5 + parent: 12 + - uid: 32273 + components: + - type: Transform + pos: 75.5,1.5 + parent: 12 + - uid: 32274 + components: + - type: Transform + pos: 75.5,0.5 + parent: 12 + - uid: 32275 + components: + - type: Transform + pos: 75.5,2.5 + parent: 12 + - uid: 32276 + components: + - type: Transform + pos: 74.5,0.5 + parent: 12 + - uid: 32277 + components: + - type: Transform + pos: 73.5,0.5 + parent: 12 + - uid: 32278 + components: + - type: Transform + pos: 72.5,0.5 + parent: 12 + - uid: 32279 + components: + - type: Transform + pos: 70.5,0.5 + parent: 12 + - uid: 32280 + components: + - type: Transform + pos: 69.5,0.5 + parent: 12 + - uid: 32281 + components: + - type: Transform + pos: 68.5,0.5 + parent: 12 + - uid: 32282 + components: + - type: Transform + pos: 67.5,0.5 + parent: 12 + - uid: 32283 + components: + - type: Transform + pos: 67.5,1.5 + parent: 12 + - uid: 32284 + components: + - type: Transform + pos: 67.5,3.5 + parent: 12 + - uid: 32285 + components: + - type: Transform + pos: 67.5,2.5 + parent: 12 - proto: CableMVStack entities: - uid: 5999 @@ -76409,6 +76966,81 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-15.5 parent: 12 + - uid: 32171 + components: + - type: Transform + pos: 77.5,-2.5 + parent: 12 + - uid: 32172 + components: + - type: Transform + pos: 77.5,-0.5 + parent: 12 + - uid: 32173 + components: + - type: Transform + pos: 77.5,0.5 + parent: 12 + - uid: 32174 + components: + - type: Transform + pos: 77.5,1.5 + parent: 12 + - uid: 32175 + components: + - type: Transform + pos: 77.5,2.5 + parent: 12 + - uid: 32176 + components: + - type: Transform + pos: 77.5,-1.5 + parent: 12 + - uid: 32177 + components: + - type: Transform + pos: 77.5,5.5 + parent: 12 + - uid: 32178 + components: + - type: Transform + pos: 77.5,6.5 + parent: 12 + - uid: 32179 + components: + - type: Transform + pos: 77.5,3.5 + parent: 12 + - uid: 32180 + components: + - type: Transform + pos: 77.5,7.5 + parent: 12 + - uid: 32181 + components: + - type: Transform + pos: 77.5,8.5 + parent: 12 + - uid: 32182 + components: + - type: Transform + pos: 77.5,4.5 + parent: 12 + - uid: 32183 + components: + - type: Transform + pos: 77.5,10.5 + parent: 12 + - uid: 32184 + components: + - type: Transform + pos: 77.5,11.5 + parent: 12 + - uid: 32185 + components: + - type: Transform + pos: 77.5,9.5 + parent: 12 - proto: Cautery entities: - uid: 9752 @@ -78066,6 +78698,18 @@ entities: - type: Transform pos: 0.5,-66.5 parent: 12 + - uid: 31688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.408453,-26.829342 + parent: 12 + - uid: 31689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.06586,-28.196033 + parent: 12 - uid: 32101 components: - type: Transform @@ -80416,6 +81060,46 @@ entities: - type: Transform pos: -15.479212,51.570213 parent: 12 +- proto: ClothingHeadHatSantahat + entities: + - uid: 31656 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: -22.599323,38.502403 + parent: 12 + - uid: 31657 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: -41.818073,40.566353 + parent: 12 + - uid: 31669 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: -36.450703,42.555126 + parent: 12 + - uid: 31670 + components: + - type: Transform + pos: -29.275808,38.740208 + parent: 12 + - uid: 31672 + components: + - type: Transform + pos: -37.561886,53.522655 + parent: 12 + - uid: 31673 + components: + - type: Transform + pos: 23.223015,-26.438202 + parent: 12 + - uid: 31674 + components: + - type: Transform + pos: 21.975492,-27.778383 + parent: 12 - proto: ClothingHeadHatSurgcapBlue entities: - uid: 5726 @@ -80982,6 +81666,37 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingOuterSanta + entities: + - uid: 31654 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: -21.505573,38.6744 + parent: 12 + - uid: 31655 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: -41.474323,40.472534 + parent: 12 + - uid: 31667 + components: + - type: Transform + rot: -25.132741228718352 rad + pos: -31.513205,38.489803 + parent: 12 + - uid: 31668 + components: + - type: Transform + rot: -6.217248937900877E-15 rad + pos: -39.52883,36.55096 + parent: 12 + - uid: 31671 + components: + - type: Transform + pos: -37.341736,53.412502 + parent: 12 - proto: ClothingOuterStraightjacket entities: - uid: 19275 @@ -81699,6 +82414,12 @@ entities: - type: Transform pos: -2.5,-66.5 parent: 12 + - uid: 31690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-28.5 + parent: 12 - uid: 31793 components: - type: Transform @@ -83270,8 +83991,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -83288,9 +84009,9 @@ entities: showEnts: False occludes: True ents: - - 2929 - - 2923 - 2920 + - 2923 + - 2929 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -83308,8 +84029,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.8977377 + - 7.139109 - 0 - 0 - 0 @@ -83326,13 +84047,13 @@ entities: showEnts: False occludes: True ents: - - 5886 - - 5885 - - 4887 - - 4851 - - 5888 - - 6298 - 6299 + - 6298 + - 5888 + - 4851 + - 4887 + - 5885 + - 5886 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -83350,8 +84071,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -83368,11 +84089,11 @@ entities: showEnts: False occludes: True ents: - - 24193 - - 24218 - - 24223 - - 24224 - 24225 + - 24224 + - 24223 + - 24218 + - 24193 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -83390,8 +84111,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -83408,11 +84129,11 @@ entities: showEnts: False occludes: True ents: - - 25027 - - 25038 - - 25101 - - 25104 - 25195 + - 25104 + - 25101 + - 25038 + - 25027 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -96203,6 +96924,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: DrinkGlassWhite + entities: + - uid: 31687 + components: + - type: Transform + pos: 24.274195,-28.126541 + parent: 12 - proto: DrinkGoldenCup entities: - uid: 10942 @@ -102395,7 +103123,7 @@ entities: - uid: 26214 components: - type: Transform - pos: -31.438684,38.510014 + pos: -32.480057,41.497932 parent: 12 - proto: FlashlightLantern entities: @@ -102907,6 +103635,13 @@ entities: - type: Transform pos: -7.8905973,-55.743637 parent: 12 +- proto: FloraTreeChristmas02 + entities: + - uid: 28861 + components: + - type: Transform + pos: 22,-26 + parent: 12 - proto: FloraTreeLarge entities: - uid: 10941 @@ -103018,6 +103753,20 @@ entities: - type: Transform pos: -53.30888,54.409172 parent: 12 +- proto: FoodBakedCookie + entities: + - uid: 31677 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 24.602898,-28.325752 + parent: 12 + - uid: 31678 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 24.44549,-28.571293 + parent: 12 - proto: FoodBanana entities: - uid: 4201 @@ -103211,6 +103960,13 @@ entities: - type: Transform pos: 10.45153,-49.457336 parent: 12 +- proto: FoodCakeChristmas + entities: + - uid: 22173 + components: + - type: Transform + pos: 21.240437,-26.565382 + parent: 12 - proto: FoodCakeSuppermatterSlice entities: - uid: 15371 @@ -103453,6 +104209,11 @@ entities: - type: Transform pos: 64.56665,50.71139 parent: 12 + - uid: 31653 + components: + - type: Transform + pos: 21.224129,-26.540905 + parent: 12 - proto: FoodPlatePlastic entities: - uid: 31121 @@ -137676,6 +138437,31 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-64.5 parent: 12 + - uid: 32190 + components: + - type: Transform + pos: 67.5,-5.5 + parent: 12 + - uid: 32288 + components: + - type: Transform + pos: 79.5,-2.5 + parent: 12 + - uid: 32289 + components: + - type: Transform + pos: 79.5,3.5 + parent: 12 + - uid: 32290 + components: + - type: Transform + pos: 79.5,11.5 + parent: 12 + - uid: 32291 + components: + - type: Transform + pos: 67.5,14.5 + parent: 12 - proto: GlassBoxLaserFilled entities: - uid: 17404 @@ -138334,16 +139120,6 @@ entities: - type: Transform pos: -32.5,-33.5 parent: 12 - - uid: 676 - components: - - type: Transform - pos: 72.5,-3.5 - parent: 12 - - uid: 677 - components: - - type: Transform - pos: 73.5,-3.5 - parent: 12 - uid: 697 components: - type: Transform @@ -140342,11 +141118,6 @@ entities: - type: Transform pos: 33.5,-24.5 parent: 12 - - uid: 8254 - components: - - type: Transform - pos: 69.5,-3.5 - parent: 12 - uid: 8341 components: - type: Transform @@ -140389,11 +141160,6 @@ entities: - type: Transform pos: 49.5,59.5 parent: 12 - - uid: 8788 - components: - - type: Transform - pos: 70.5,-3.5 - parent: 12 - uid: 9057 components: - type: Transform @@ -141174,11 +141940,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,19.5 parent: 12 - - uid: 11225 - components: - - type: Transform - pos: 65.5,-3.5 - parent: 12 - uid: 11242 components: - type: Transform @@ -141268,11 +142029,6 @@ entities: - type: Transform pos: 48.5,10.5 parent: 12 - - uid: 11474 - components: - - type: Transform - pos: 64.5,-3.5 - parent: 12 - uid: 11486 components: - type: Transform @@ -142121,11 +142877,6 @@ entities: - type: Transform pos: -57.5,-56.5 parent: 12 - - uid: 13844 - components: - - type: Transform - pos: 66.5,-3.5 - parent: 12 - uid: 13991 components: - type: Transform @@ -144111,22 +144862,12 @@ entities: rot: 3.141592653589793 rad pos: -22.5,66.5 parent: 12 - - uid: 25537 - components: - - type: Transform - pos: 75.5,-3.5 - parent: 12 - uid: 25538 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-11.5 parent: 12 - - uid: 25549 - components: - - type: Transform - pos: 76.5,-3.5 - parent: 12 - uid: 25559 components: - type: Transform @@ -144609,11 +145350,6 @@ entities: - type: Transform pos: 29.5,-29.5 parent: 12 - - uid: 26943 - components: - - type: Transform - pos: 68.5,-3.5 - parent: 12 - uid: 26945 components: - type: Transform @@ -146365,70 +147101,75 @@ entities: - type: Transform pos: -62.5,-31.5 parent: 12 - - uid: 31744 + - uid: 32033 components: - type: Transform - pos: 77.5,12.5 + pos: 41.5,-18.5 parent: 12 - - uid: 31745 + - uid: 32307 components: - type: Transform - pos: 77.5,-3.5 + pos: 79.5,2.5 parent: 12 - - uid: 31746 + - uid: 32308 components: - type: Transform - pos: 76.5,12.5 + pos: 69.5,-5.5 parent: 12 - - uid: 31747 + - uid: 32309 components: - type: Transform - pos: 75.5,12.5 + pos: 70.5,-5.5 parent: 12 - - uid: 31752 + - uid: 32310 components: - type: Transform - pos: 73.5,12.5 + pos: 75.5,-5.5 parent: 12 - - uid: 31753 + - uid: 32311 components: - type: Transform - pos: 72.5,12.5 + pos: 79.5,-4.5 parent: 12 - - uid: 31754 + - uid: 32313 components: - type: Transform - pos: 71.5,12.5 + pos: 79.5,7.5 parent: 12 - - uid: 31756 + - uid: 32314 components: - type: Transform - pos: 70.5,12.5 + pos: 79.5,10.5 parent: 12 - - uid: 31757 + - uid: 32315 components: - type: Transform - pos: 69.5,12.5 + pos: 74.5,14.5 parent: 12 - - uid: 31762 + - uid: 32316 components: - type: Transform - pos: 68.5,12.5 + pos: 75.5,14.5 parent: 12 - - uid: 31838 + - uid: 32317 components: - type: Transform - pos: 66.5,12.5 + pos: 68.5,14.5 parent: 12 - - uid: 31839 + - uid: 32318 components: - type: Transform - pos: 65.5,12.5 + pos: 66.5,14.5 parent: 12 - - uid: 32033 + - uid: 32319 components: - type: Transform - pos: 41.5,-18.5 + pos: 61.5,14.5 + parent: 12 + - uid: 32320 + components: + - type: Transform + pos: 78.5,14.5 parent: 12 - proto: GrilleBroken entities: @@ -146547,11 +147288,6 @@ entities: parent: 12 - proto: GrilleSpawner entities: - - uid: 15008 - components: - - type: Transform - pos: 74.5,-3.5 - parent: 12 - uid: 19569 components: - type: Transform @@ -146747,21 +147483,11 @@ entities: - type: Transform pos: 59.5,-61.5 parent: 12 - - uid: 25019 - components: - - type: Transform - pos: 67.5,-3.5 - parent: 12 - uid: 25385 components: - type: Transform pos: 61.5,68.5 parent: 12 - - uid: 27019 - components: - - type: Transform - pos: 71.5,-3.5 - parent: 12 - uid: 27706 components: - type: Transform @@ -146807,20 +147533,50 @@ entities: - type: Transform pos: -42.5,-65.5 parent: 12 - - uid: 31751 + - uid: 32143 components: - type: Transform - pos: 74.5,12.5 + pos: 69.5,14.5 parent: 12 - - uid: 31764 + - uid: 32299 components: - type: Transform - pos: 64.5,12.5 + pos: 68.5,-5.5 parent: 12 - - uid: 31840 + - uid: 32300 + components: + - type: Transform + pos: 74.5,-5.5 + parent: 12 + - uid: 32301 + components: + - type: Transform + pos: 79.5,-3.5 + parent: 12 + - uid: 32302 + components: + - type: Transform + pos: 79.5,-0.5 + parent: 12 + - uid: 32303 + components: + - type: Transform + pos: 79.5,0.5 + parent: 12 + - uid: 32304 + components: + - type: Transform + pos: 79.5,8.5 + parent: 12 + - uid: 32305 + components: + - type: Transform + pos: 73.5,14.5 + parent: 12 + - uid: 32306 components: - type: Transform - pos: 67.5,12.5 + pos: 62.5,14.5 parent: 12 - proto: GroundCannabis entities: @@ -149045,24 +149801,6 @@ entities: - type: Transform pos: -41.5,36.5 parent: 12 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerMedicalFilled entities: - uid: 2502 @@ -149208,47 +149946,11 @@ entities: - type: Transform pos: -44.5,38.5 parent: 12 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 20846 components: - type: Transform pos: -44.5,39.5 parent: 12 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 20847 components: - type: Transform @@ -152390,7 +153092,7 @@ entities: - uid: 21610 components: - type: Transform - pos: -21.469933,38.63325 + pos: -22.35333,41.503937 parent: 12 - uid: 23585 components: @@ -156525,15 +157227,30 @@ entities: - type: Transform pos: -20.5,76.5 parent: 12 - - uid: 31841 + - uid: 32186 components: - type: Transform - pos: 77.5,-2.5 + pos: 65.5,-3.5 parent: 12 - - uid: 31842 + - uid: 32187 components: - type: Transform - pos: 77.5,11.5 + pos: 76.5,-3.5 + parent: 12 + - uid: 32189 + components: + - type: Transform + pos: 76.5,4.5 + parent: 12 + - uid: 32286 + components: + - type: Transform + pos: 76.5,12.5 + parent: 12 + - uid: 32287 + components: + - type: Transform + pos: 65.5,12.5 parent: 12 - proto: PoweredlightRed entities: @@ -158196,6 +158913,11 @@ entities: - type: Transform pos: -8.5,-66.5 parent: 12 + - uid: 31660 + components: + - type: Transform + pos: -41.5,40.5 + parent: 12 - uid: 31661 components: - type: Transform @@ -160674,6 +161396,43 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,14.5 parent: 12 +- proto: ReinforcedGirder + entities: + - uid: 32292 + components: + - type: Transform + pos: 71.5,14.5 + parent: 12 + - uid: 32293 + components: + - type: Transform + pos: 76.5,14.5 + parent: 12 + - uid: 32294 + components: + - type: Transform + pos: 79.5,12.5 + parent: 12 + - uid: 32295 + components: + - type: Transform + pos: 79.5,6.5 + parent: 12 + - uid: 32296 + components: + - type: Transform + pos: 79.5,-1.5 + parent: 12 + - uid: 32297 + components: + - type: Transform + pos: 73.5,-5.5 + parent: 12 + - uid: 32298 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 12 - proto: ReinforcedPlasmaWindow entities: - uid: 501 @@ -168305,6 +169064,23 @@ entities: - type: Transform pos: -49.5,-36.5 parent: 12 +- proto: SignDangerMed + entities: + - uid: 32312 + components: + - type: Transform + pos: 71.5,-4.5 + parent: 12 + - uid: 32322 + components: + - type: Transform + pos: 71.5,13.5 + parent: 12 + - uid: 32325 + components: + - type: Transform + pos: 78.5,5.5 + parent: 12 - proto: SignDirectionalAtmos entities: - uid: 29965 @@ -168571,6 +169347,31 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,13.5 parent: 12 + - uid: 32321 + components: + - type: Transform + pos: 78.5,13.5 + parent: 12 + - uid: 32323 + components: + - type: Transform + pos: 65.5,-4.5 + parent: 12 + - uid: 32324 + components: + - type: Transform + pos: 65.5,13.5 + parent: 12 + - uid: 32326 + components: + - type: Transform + pos: 78.5,-4.5 + parent: 12 + - uid: 32327 + components: + - type: Transform + pos: 78.5,3.5 + parent: 12 - proto: SignEngine entities: - uid: 27242 @@ -179109,6 +179910,11 @@ entities: - type: Transform pos: -14.5,73.5 parent: 12 + - uid: 31686 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 12 - proto: TargetClown entities: - uid: 22647 @@ -182411,6 +183217,11 @@ entities: - type: Transform pos: -31.5,-33.5 parent: 12 + - uid: 677 + components: + - type: Transform + pos: 67.5,-4.5 + parent: 12 - uid: 685 components: - type: Transform @@ -183139,6 +183950,11 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-18.5 parent: 12 + - uid: 4165 + components: + - type: Transform + pos: 70.5,-4.5 + parent: 12 - uid: 4386 components: - type: Transform @@ -184645,6 +185461,11 @@ entities: rot: 1.5707963267948966 rad pos: 84.5,-38.5 parent: 12 + - uid: 8788 + components: + - type: Transform + pos: 66.5,-4.5 + parent: 12 - uid: 8817 components: - type: Transform @@ -185813,6 +186634,11 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,29.5 parent: 12 + - uid: 11225 + components: + - type: Transform + pos: 65.5,-4.5 + parent: 12 - uid: 11235 components: - type: Transform @@ -188972,6 +189798,11 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,-57.5 parent: 12 + - uid: 25019 + components: + - type: Transform + pos: 78.5,13.5 + parent: 12 - uid: 25037 components: - type: Transform @@ -189147,6 +189978,11 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-6.5 parent: 12 + - uid: 25549 + components: + - type: Transform + pos: 74.5,-4.5 + parent: 12 - uid: 25551 components: - type: Transform @@ -189422,6 +190258,11 @@ entities: rot: 3.141592653589793 rad pos: -13.5,77.5 parent: 12 + - uid: 26943 + components: + - type: Transform + pos: 78.5,-3.5 + parent: 12 - uid: 26956 components: - type: Transform @@ -190044,12 +190885,97 @@ entities: - type: Transform pos: -64.5,-30.5 parent: 12 + - uid: 31745 + components: + - type: Transform + pos: 78.5,0.5 + parent: 12 + - uid: 31747 + components: + - type: Transform + pos: 78.5,2.5 + parent: 12 + - uid: 31752 + components: + - type: Transform + pos: 78.5,5.5 + parent: 12 + - uid: 31753 + components: + - type: Transform + pos: 78.5,6.5 + parent: 12 + - uid: 31754 + components: + - type: Transform + pos: 78.5,8.5 + parent: 12 + - uid: 31756 + components: + - type: Transform + pos: 76.5,-4.5 + parent: 12 + - uid: 31757 + components: + - type: Transform + pos: 69.5,-4.5 + parent: 12 + - uid: 31762 + components: + - type: Transform + pos: 72.5,-4.5 + parent: 12 + - uid: 31840 + components: + - type: Transform + pos: 78.5,-4.5 + parent: 12 + - uid: 31841 + components: + - type: Transform + pos: 78.5,12.5 + parent: 12 + - uid: 31842 + components: + - type: Transform + pos: 78.5,9.5 + parent: 12 - uid: 31891 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,22.5 parent: 12 + - uid: 32132 + components: + - type: Transform + pos: 76.5,13.5 + parent: 12 + - uid: 32134 + components: + - type: Transform + pos: 73.5,13.5 + parent: 12 + - uid: 32135 + components: + - type: Transform + pos: 72.5,13.5 + parent: 12 + - uid: 32137 + components: + - type: Transform + pos: 70.5,13.5 + parent: 12 + - uid: 32140 + components: + - type: Transform + pos: 68.5,13.5 + parent: 12 + - uid: 32142 + components: + - type: Transform + pos: 66.5,13.5 + parent: 12 - proto: WallReinforcedRust entities: - uid: 191 @@ -190063,6 +190989,11 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-6.5 parent: 12 + - uid: 676 + components: + - type: Transform + pos: 71.5,-4.5 + parent: 12 - uid: 1061 components: - type: Transform @@ -190172,6 +191103,11 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-57.5 parent: 12 + - uid: 8254 + components: + - type: Transform + pos: 71.5,13.5 + parent: 12 - uid: 8724 components: - type: Transform @@ -190355,6 +191291,11 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,6.5 parent: 12 + - uid: 11474 + components: + - type: Transform + pos: 68.5,-4.5 + parent: 12 - uid: 11479 components: - type: Transform @@ -190567,6 +191508,11 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 12 + - uid: 13844 + components: + - type: Transform + pos: 73.5,-4.5 + parent: 12 - uid: 13859 components: - type: Transform @@ -190597,6 +191543,11 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-31.5 parent: 12 + - uid: 15008 + components: + - type: Transform + pos: 67.5,13.5 + parent: 12 - uid: 15549 components: - type: Transform @@ -190801,6 +191752,11 @@ entities: - type: Transform pos: -26.5,73.5 parent: 12 + - uid: 25537 + components: + - type: Transform + pos: 75.5,-4.5 + parent: 12 - uid: 25555 components: - type: Transform @@ -190987,6 +191943,11 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,-43.5 parent: 12 + - uid: 27019 + components: + - type: Transform + pos: 78.5,-1.5 + parent: 12 - uid: 27035 components: - type: Transform @@ -191570,6 +192531,61 @@ entities: rot: 1.5707963267948966 rad pos: -64.5,-18.5 parent: 12 + - uid: 31744 + components: + - type: Transform + pos: 78.5,1.5 + parent: 12 + - uid: 31746 + components: + - type: Transform + pos: 78.5,3.5 + parent: 12 + - uid: 31764 + components: + - type: Transform + pos: 78.5,-0.5 + parent: 12 + - uid: 31838 + components: + - type: Transform + pos: 78.5,7.5 + parent: 12 + - uid: 31839 + components: + - type: Transform + pos: 78.5,-2.5 + parent: 12 + - uid: 32133 + components: + - type: Transform + pos: 78.5,10.5 + parent: 12 + - uid: 32136 + components: + - type: Transform + pos: 69.5,13.5 + parent: 12 + - uid: 32138 + components: + - type: Transform + pos: 74.5,13.5 + parent: 12 + - uid: 32139 + components: + - type: Transform + pos: 78.5,11.5 + parent: 12 + - uid: 32141 + components: + - type: Transform + pos: 75.5,13.5 + parent: 12 + - uid: 32191 + components: + - type: Transform + pos: 65.5,13.5 + parent: 12 - proto: WallSolid entities: - uid: 47 From bf59371656f6584de903df13e6db7d608aadd871 Mon Sep 17 00:00:00 2001 From: Alfred Baumann <93665570+CheesePlated@users.noreply.github.com> Date: Sun, 19 Jan 2025 06:42:01 +0100 Subject: [PATCH 032/103] Add Airlocks with Bar and Kitchen access (#33821) * Add kitchen access to Bar-Cafeteria airlocks on Cog * Fix merge conflict * Remove mapping changes * Add Glass and Maints versions --- .../Structures/Doors/Airlocks/access.yml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index fcdc655a37e..d6cc5532b9d 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -64,6 +64,15 @@ containers: board: [ DoorElectronicsBar ] +- type: entity + parent: AirlockServiceLocked + id: AirlockBarKitchenLocked + suffix: Bar&Kitchen, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsBarKitchen ] + - type: entity parent: AirlockHydroponics id: AirlockHydroponicsLocked @@ -470,6 +479,16 @@ containers: board: [ DoorElectronicsBar ] +- type: entity + parent: AirlockServiceGlassLocked + id: AirlockBarKitchenGlassLocked + suffix: Bar&Kitchen, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsBarKitchen ] + + - type: entity parent: AirlockExternalGlass id: AirlockExternalGlassLocked @@ -904,6 +923,15 @@ containers: board: [ DoorElectronicsBar ] +- type: entity + parent: AirlockMaintServiceLocked + id: AirlockMaintBarKitchenLocked + suffix: Bar&Kitchen, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsBarKitchen ] + - type: entity parent: AirlockMaintServiceLocked id: AirlockMaintChapelLocked From b17549cea02e9071d5fa4072e9173a6d484b3ce5 Mon Sep 17 00:00:00 2001 From: lapatison <100279397+lapatison@users.noreply.github.com> Date: Sun, 19 Jan 2025 14:30:33 +0300 Subject: [PATCH 033/103] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B2=D0=BE?= =?UTF-8?q?=D0=B4=20Upstream=20#2924=20#2936=20=20(#2940)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: lapatison Co-authored-by: cfif126 <94059374+cfif126@users.noreply.github.com> Co-authored-by: lzk <124214523+lzk228@users.noreply.github.com> --- .../Locale/ru-RU/accessories/human-hair.ftl | 2 +- .../ru-RU/administration/admin-alerts.ftl | 4 +- .../Locale/ru-RU/administration/antag.ftl | 2 +- .../administration/commands/babyjail.ftl | 16 ------- .../administration/ui/permissions-eui.ftl | 2 +- .../administration/ui/tabs/player-tab.ftl | 2 +- .../ru-RU/advertisements/vending/gibb.ftl | 24 +++++------ .../ru-RU/advertisements/vending/pride.ftl | 12 +++--- .../ru-RU/advertisements/vending/smite.ftl | 24 +++++------ Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl | 4 +- Resources/Locale/ru-RU/cargo/bounties.ftl | 2 +- .../ru-RU/chat/managers/chat-manager.ftl | 8 ++-- .../Locale/ru-RU/connection-messages.ftl | 8 ++-- Resources/Locale/ru-RU/datasets/names/ai.ftl | 6 +-- .../Locale/ru-RU/flavors/flavor-profiles.ftl | 3 +- .../ghost/components/ghost-component.ftl | 2 +- .../Locale/ru-RU/ghost/spooky-speaker.ftl | 30 ++++++------- Resources/Locale/ru-RU/guidebook/guides.ftl | 2 +- Resources/Locale/ru-RU/holopad/holopad.ftl | 6 +-- .../interaction-popup-component.ftl | 6 +-- Resources/Locale/ru-RU/mind/role-types.ftl | 16 +++---- .../ru-RU/navmap-beacons/station-beacons.ftl | 18 ++++---- .../nutrition/components/food-component.ftl | 6 +-- Resources/Locale/ru-RU/pai/pai-system.ftl | 6 +-- Resources/Locale/ru-RU/reagents/meta/fun.ftl | 4 +- .../ss14-ru/prototypes/actions/types.ftl | 4 +- .../catalog/fills/boxes/general.ftl | 2 +- .../catalog/fills/crates/engineering.ftl | 4 +- .../catalog/fills/crates/materials.ftl | 4 +- .../entities/objects/decoration/flora.ftl | 2 +- .../markers/spawners/bearspawnerbiome.ftl | 2 +- .../entities/clothing/head/eva-helmets.ftl | 2 +- .../entities/clothing/neck/pins.ftl | 4 +- .../clothing/outerclothing/softsuits.ftl | 2 +- .../entities/clothing/uniforms/jumpsuits.ftl | 2 +- .../spawners/random/department/science.ftl | 10 ++--- .../markers/spawners/random/maintenance.ftl | 4 +- .../markers/spawners/random/vending.ftl | 4 +- .../prototypes/entities/mobs/npcs/animals.ftl | 4 +- .../entities/mobs/player/silicon.ftl | 4 +- .../objects/consumable/drinks/drinks.ftl | 5 +-- .../consumable/drinks/drinks_bottles.ftl | 42 +++++++++---------- .../objects/consumable/drinks/drinks_cans.ftl | 24 +++++------ .../objects/consumable/food/baked/bagel.ftl | 4 +- .../objects/consumable/food/baked/bread.ftl | 12 +++--- .../objects/consumable/food/baked/misc.ftl | 10 ++--- .../consumable/food/containers/box.ftl | 2 +- .../objects/consumable/food/ingredients.ftl | 12 +++--- .../entities/objects/devices/pda.ftl | 6 +-- .../objects/devices/station_beacon.ftl | 18 ++++---- .../entities/objects/power/lights.ftl | 4 +- .../entities/objects/weapons/guns/turrets.ftl | 2 +- .../structures/cryogenic_sleep_unit.ftl | 8 ++-- .../structures/doors/airlocks/access.ftl | 2 +- .../structures/lighting/base_lighting.ftl | 2 +- .../entities/structures/machines/holopad.ftl | 16 +++---- .../structures/machines/vending_machines.ftl | 16 +++---- .../structures/piping/atmospherics/binary.ftl | 2 +- .../structures/wallmounts/signs/signs.ftl | 4 +- .../entities/structures/walls/walls.ftl | 6 +-- .../prototypes/loadouts/dummy_entities.ftl | 4 +- .../ss14-ru/prototypes/objectives/traitor.ftl | 4 -- .../prototypes/roles/mindroles/mind_roles.ftl | 20 ++++----- Resources/Locale/ru-RU/station-laws/laws.ftl | 18 +++----- .../Locale/ru-RU/telephone/telephone.ftl | 2 +- .../ru-RU/tools/components/tool-component.ftl | 2 +- 66 files changed, 242 insertions(+), 274 deletions(-) delete mode 100644 Resources/Locale/ru-RU/administration/commands/babyjail.ftl diff --git a/Resources/Locale/ru-RU/accessories/human-hair.ftl b/Resources/Locale/ru-RU/accessories/human-hair.ftl index d131b1cc4b3..405ed5a7598 100644 --- a/Resources/Locale/ru-RU/accessories/human-hair.ftl +++ b/Resources/Locale/ru-RU/accessories/human-hair.ftl @@ -146,7 +146,7 @@ marking-HumanHairSidetail2 = Хвостик (Сбоку) 2 marking-HumanHairSidetail3 = Хвостик (Сбоку) 3 marking-HumanHairSidetail4 = Хвостик (Сбоку) 4 marking-HumanHairSpikyponytail = Хвостик (Шипастый) -marking-HumanHairPulato = Pulato +marking-HumanHairPulato = Пулато marking-HumanHairPoofy = Пышная marking-HumanHairQuiff = Квифф marking-HumanHairShaped = Фигурная diff --git a/Resources/Locale/ru-RU/administration/admin-alerts.ftl b/Resources/Locale/ru-RU/administration/admin-alerts.ftl index 567bb8cb4c0..8b5d8c0915e 100644 --- a/Resources/Locale/ru-RU/administration/admin-alerts.ftl +++ b/Resources/Locale/ru-RU/administration/admin-alerts.ftl @@ -1,3 +1,3 @@ admin-alert-shared-connection = { $player } имеет общее интернет-соединение с { $otherCount } другим(-и) игроком(-ами): { $otherList } -admin-alert-ipintel-blocked = { $player } was rejected from joining due to their IP having a { TOSTRING($percent, "P0") } confidence of being a VPN/Datacenter. -admin-alert-ipintel-warning = { $player } IP has a { TOSTRING($percent, "P0") } confidence of being a VPN/Datacenter. Please watch them. +admin-alert-ipintel-blocked = Пользователю { $player } было отказано в присоединении из-за того, что его IP с { TOSTRING($percent, "P0") } уверенностью относится к VPN/ЦОДу. +admin-alert-ipintel-warning = IP пользователя { $player } с { TOSTRING($percent, "P0") } уверенностью относится к VPN/ЦОДу. Пожалуйста, понаблюдайте за ним. diff --git a/Resources/Locale/ru-RU/administration/antag.ftl b/Resources/Locale/ru-RU/administration/antag.ftl index b86e1c7e9b8..e761cf450d8 100644 --- a/Resources/Locale/ru-RU/administration/antag.ftl +++ b/Resources/Locale/ru-RU/administration/antag.ftl @@ -13,4 +13,4 @@ admin-verb-text-make-nuclear-operative = Сделать ядерным опер admin-verb-text-make-pirate = Сделать пиратом admin-verb-text-make-head-rev = Сделать Главой революции admin-verb-text-make-thief = Сделать вором -admin-overlay-antag-classic = ANTAG +admin-overlay-antag-classic = АНТАГ diff --git a/Resources/Locale/ru-RU/administration/commands/babyjail.ftl b/Resources/Locale/ru-RU/administration/commands/babyjail.ftl deleted file mode 100644 index 49515de3a5c..00000000000 --- a/Resources/Locale/ru-RU/administration/commands/babyjail.ftl +++ /dev/null @@ -1,16 +0,0 @@ -cmd-babyjail-desc = Toggles the baby jail, which enables stricter restrictions on who's allowed to join the server. -cmd-babyjail-help = Usage: babyjail -babyjail-command-enabled = Baby jail has been enabled. -babyjail-command-disabled = Baby jail has been disabled. -cmd-babyjail_show_reason-desc = Toggles whether or not to show connecting clients the reason why the baby jail blocked them from joining. -cmd-babyjail_show_reason-help = Usage: babyjail_show_reason -babyjail-command-show-reason-enabled = The baby jail will now show a reason to users it blocks from connecting. -babyjail-command-show-reason-disabled = The baby jail will no longer show a reason to users it blocks from connecting. -cmd-babyjail_max_account_age-desc = Gets or sets the maximum account age in minutes that an account can have to be allowed to connect with the baby jail enabled. -cmd-babyjail_max_account_age-help = Usage: babyjail_max_account_age -babyjail-command-max-account-age-is = The maximum account age for the baby jail is { $minutes } minutes. -babyjail-command-max-account-age-set = Set the maximum account age for the baby jail to { $minutes } minutes. -cmd-babyjail_max_overall_minutes-desc = Gets or sets the maximum overall playtime in minutes that an account can have to be allowed to connect with the baby jail enabled. -cmd-babyjail_max_overall_minutes-help = Usage: babyjail_max_overall_minutes -babyjail-command-max-overall-minutes-is = The maximum overall playtime for the baby jail is { $minutes } minutes. -babyjail-command-max-overall-minutes-set = Set the maximum overall playtime for the baby jail to { $minutes } minutes. diff --git a/Resources/Locale/ru-RU/administration/ui/permissions-eui.ftl b/Resources/Locale/ru-RU/administration/ui/permissions-eui.ftl index 854ec7163b9..7749186b779 100644 --- a/Resources/Locale/ru-RU/administration/ui/permissions-eui.ftl +++ b/Resources/Locale/ru-RU/administration/ui/permissions-eui.ftl @@ -13,7 +13,7 @@ permissions-eui-edit-admin-window-title-edit-placeholder = Пользовате permissions-eui-edit-admin-window-no-rank-button = Нет ранга permissions-eui-edit-admin-rank-window-name-edit-placeholder = Название ранга permissions-eui-edit-admin-title-control-text = отсутствует -permissions-eui-edit-admin-window-suspended = Suspended? +permissions-eui-edit-admin-window-suspended = Отстранён? permissions-eui-edit-no-rank-text = отсутствует permissions-eui-edit-title-button = Редактировать permissions-eui-edit-admin-rank-button = Редактировать diff --git a/Resources/Locale/ru-RU/administration/ui/tabs/player-tab.ftl b/Resources/Locale/ru-RU/administration/ui/tabs/player-tab.ftl index 53593c2a267..da5b56fff73 100644 --- a/Resources/Locale/ru-RU/administration/ui/tabs/player-tab.ftl +++ b/Resources/Locale/ru-RU/administration/ui/tabs/player-tab.ftl @@ -3,7 +3,7 @@ player-tab-username = Пользователь player-tab-character = Персонаж player-tab-job = Должность player-tab-antagonist = Антагонист -player-tab-roletype = Role Type +player-tab-roletype = Тип роли player-tab-playtime = Игровое время player-tab-show-disconnected = Показать отключившихся player-tab-overlay = Оверлей diff --git a/Resources/Locale/ru-RU/advertisements/vending/gibb.ftl b/Resources/Locale/ru-RU/advertisements/vending/gibb.ftl index c9627ac0f22..4a2cf461470 100644 --- a/Resources/Locale/ru-RU/advertisements/vending/gibb.ftl +++ b/Resources/Locale/ru-RU/advertisements/vending/gibb.ftl @@ -1,12 +1,12 @@ -advertisement-gibb-1 = Delicious! -advertisement-gibb-2 = Recommended by at least one doctor! -advertisement-gibb-3 = Over 1 million drinks sold! -advertisement-gibb-4 = Dr. Gibb, what's the worst that could happen? -advertisement-gibb-5 = Dr. Gibb, the flavor explosion! -advertisement-gibb-6 = Trust me, I'm a doctor! -advertisement-gibb-7 = The best sugar infusion in the galaxy! -advertisement-gibb-8 = Space Cola can get Gibbed! -thankyou-gibb-1 = The Dr. is in... your belly! -thankyou-gibb-2 = Prognosis: flavor! -thankyou-gibb-3 = Enjoy the 42 flavors! -thankyou-gibb-4 = Enjoy the syrupy goodness! +advertisement-gibb-1 = Вкуснотища! +advertisement-gibb-2 = Рекомендовано как минимум одним доктором! +advertisement-gibb-3 = Продано более одного миллиона напитков! +advertisement-gibb-4 = Доктор Гибб, что самое худшее, что может произойти? +advertisement-gibb-5 = Доктор Гибб, взрыв вкуса! +advertisement-gibb-6 = Доверьтесь мне, я доктор! +advertisement-gibb-7 = Лучший сахарный эликсир в галактике! +advertisement-gibb-8 = Спейс Кола - смотри не ГИБнись! +thankyou-gibb-1 = Док уже... в вашем животе! +thankyou-gibb-2 = Прогноз: вкус! +thankyou-gibb-3 = Насладись 42 вкусами! +thankyou-gibb-4 = Насладись сиропной вкуснятиной! diff --git a/Resources/Locale/ru-RU/advertisements/vending/pride.ftl b/Resources/Locale/ru-RU/advertisements/vending/pride.ftl index 5e09ebe28fc..f2b173d5d74 100644 --- a/Resources/Locale/ru-RU/advertisements/vending/pride.ftl +++ b/Resources/Locale/ru-RU/advertisements/vending/pride.ftl @@ -1,7 +1,7 @@ advertisement-pride-1 = Be gay do crime! -advertisement-pride-2 = Full of colors! -advertisement-pride-3 = You are valid! -advertisement-pride-4 = The first pride was a riot! -thankyou-pride-1 = Slay! -thankyou-pride-2 = Knock 'em dead! -thankyou-pride-3 = What a glow up! +advertisement-pride-2 = Полный цветов! +advertisement-pride-3 = Вы валидны! +advertisement-pride-4 = Первый прайд-парад был бунтом! +thankyou-pride-1 = Жги! +thankyou-pride-2 = Свали их наповал! +thankyou-pride-3 = Какое сияние! diff --git a/Resources/Locale/ru-RU/advertisements/vending/smite.ftl b/Resources/Locale/ru-RU/advertisements/vending/smite.ftl index 9231b36ecd2..67b695fc1d1 100644 --- a/Resources/Locale/ru-RU/advertisements/vending/smite.ftl +++ b/Resources/Locale/ru-RU/advertisements/vending/smite.ftl @@ -1,12 +1,12 @@ -advertisement-smite-1 = SMITE! Ban your thirst! -advertisement-smite-2 = An eldritch blast of lemon and lime! -advertisement-smite-3 = Over 1 million drinks sold! -advertisement-smite-4 = SMITE! Roll 2d8 for FLAVOR. -advertisement-smite-5 = SMITE! Let's get that paperwork done! -advertisement-smite-6 = The janitor has it in for you! -advertisement-smite-7 = SMITE! It won't get you hammered. -advertisement-smite-8 = It's lemon-lime time! -thankyou-smite-1 = Smite makes right! -thankyou-smite-2 = You DEFINITELY wanted lemon-lime! -thankyou-smite-3 = The office won't know what hit them. -thankyou-smite-4 = Banish your thirst. +advertisement-smite-1 = СМАЙТ! Забань жажду! +advertisement-smite-2 = Мистический заряд лимона и лайма! +advertisement-smite-3 = Продано более одного миллиона напитков! +advertisement-smite-4 = СМАЙТ! Бросьте 2к8 для определения вкуса. +advertisement-smite-5 = СМАЙТ! Давайте займёмся оформлением документов! +advertisement-smite-6 = Уборщик точит зуб на вас! +advertisement-smite-7 = СМАЙТ! Не даст тебе захмелеть. +advertisement-smite-8 = Настало время лимон-лайма! +thankyou-smite-1 = У кого Смайт, тот и прав! +thankyou-smite-2 = Вы ТОЧНО хотели лимон-лайм! +thankyou-smite-3 = В офисе не поймут, что их накрыло. +thankyou-smite-4 = Изгоните жажду. diff --git a/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl b/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl index 7d285251899..83d5f2c45e5 100644 --- a/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl +++ b/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl @@ -62,5 +62,5 @@ air-alarm-ui-thresholds-upper-bound = Верхняя аварийная гран air-alarm-ui-thresholds-lower-bound = Нижняя аварийная граница air-alarm-ui-thresholds-upper-warning-bound = Верхняя тревожная граница air-alarm-ui-thresholds-lower-warning-bound = Нижняя тревожная граница -air-alarm-ui-thresholds-copy = Copy thresholds to all devices -air-alarm-ui-thresholds-copy-tooltip = Copies the sensor thresholds of this device to all devices in this air alarm tab. +air-alarm-ui-thresholds-copy = Скопировать значение границы на все устройства +air-alarm-ui-thresholds-copy-tooltip = Скопировать значение границы сенсора этого устройства на все устройства на этой вкладке воздушной сигнализации. diff --git a/Resources/Locale/ru-RU/cargo/bounties.ftl b/Resources/Locale/ru-RU/cargo/bounties.ftl index 1def78c7d25..22680f680f4 100644 --- a/Resources/Locale/ru-RU/cargo/bounties.ftl +++ b/Resources/Locale/ru-RU/cargo/bounties.ftl @@ -68,7 +68,7 @@ bounty-item-microwave-machine-board = Машинная плата микрово bounty-item-flash = Вспышка bounty-item-tooth-space-carp = Зуб космического карпа bounty-item-tooth-sharkminnow = Зуб карпоакулы -bounty-description-artifact = Nanotrasen находится в затруднительном положении из-за кражи артефактов с некосмических планет. Верните один, и мы выплатим за него компенсацию. +bounty-description-artifact = Nanotrasen находится в затруднительном положении из-за кражи артефактов с планет, не практикующих космические полёты. Верните один, и мы выплатим за него компенсацию. bounty-description-baseball-bat = В Центкоме началась бейсбольная лихорадка! Будьте добры отправить им несколько бейсбольных бит, чтобы руководство могло исполнить свою детскую мечту. bounty-description-box-hugs = Несколько главных чиновников получили серьёзные ушибы. Для их выздоровления срочно требуется коробка обнимашек bounty-description-brain = Командир Колдуэлл лишилась мозга в результате недавней аварии с космической смазкой. К сожалению, мы не можем нанять замену, поэтому просто пришлите нам новый мозг, чтобы вставить его в неё. diff --git a/Resources/Locale/ru-RU/chat/managers/chat-manager.ftl b/Resources/Locale/ru-RU/chat/managers/chat-manager.ftl index 8866ae8e61d..a0033356207 100644 --- a/Resources/Locale/ru-RU/chat/managers/chat-manager.ftl +++ b/Resources/Locale/ru-RU/chat/managers/chat-manager.ftl @@ -91,11 +91,11 @@ chat-speech-verb-name-vox = Вокс chat-speech-verb-vox-1 = скрипит chat-speech-verb-vox-2 = визжит chat-speech-verb-vox-3 = каркает +chat-speech-verb-name-goat = Коза +chat-speech-verb-goat-1 = блеет +chat-speech-verb-goat-2 = кряхтит +chat-speech-verb-goat-3 = кричит chat-speech-verb-name-small-mob = Мышь -chat-speech-verb-name-goat = Goat -chat-speech-verb-goat-1 = bleats -chat-speech-verb-goat-2 = grunts -chat-speech-verb-goat-3 = cries chat-speech-verb-small-mob-1 = скрипит chat-speech-verb-small-mob-2 = пищит chat-speech-verb-name-large-mob = Карп diff --git a/Resources/Locale/ru-RU/connection-messages.ftl b/Resources/Locale/ru-RU/connection-messages.ftl index 44ff47e50c9..2666f27ae58 100644 --- a/Resources/Locale/ru-RU/connection-messages.ftl +++ b/Resources/Locale/ru-RU/connection-messages.ftl @@ -50,10 +50,10 @@ cmd-blacklistremove-arg-player = [player] baby-jail-account-denied = Этот сервер - сервер для новичков, предназначенный для новых игроков и тех, кто хочет им помочь. Новые подключения слишком старых или не внесенных в белый список аккаунтов не принимаются. Загляните на другие серверы и посмотрите все, что может предложить Space Station 14. Веселитесь! baby-jail-account-denied-reason = Этот сервер - сервер для новичков, предназначенный для новых игроков и тех, кто хочет им помочь. Новые подключения слишком старых или не внесенных в белый список аккаунтов не принимаются. Загляните на другие серверы и посмотрите все, что может предложить Space Station 14. Веселитесь! Причина: "{ $reason }" baby-jail-account-reason-account = Ваш аккаунт Space Station 14 слишком старый. Он должен быть моложе { $minutes } минут -generic-misconfigured = The server is misconfigured and is not accepting players. Please contact the server owner and try again later. -ipintel-server-ratelimited = This server uses a security system with external verification, which has reached its maximum verification limit. Please contact the administration team of the server for assistance and try again later. -ipintel-unknown = This server uses a security system with external verification, but it encountered an error. Please contact the administration team of the server for assistance and try again later. -ipintel-suspicious = You seem to be connecting through a datacenter or VPN. For administrative reasons we do not allow VPN connections to play. Please contact the administration team of the server for assistance if you believe this is false. +generic-misconfigured = Сервер неправильно настроен и не принимает игроков. Пожалуйста, свяжитесь с владельцем сервера и повторите попытку позже. +ipintel-server-ratelimited = На этом сервере используется система безопасности с внешней проверкой, которая достигла своего максимального предела проверки. Пожалуйста, обратитесь за помощью к администрации сервера и повторите попытку позже. +ipintel-unknown = На этом сервере используется система безопасности с внешней проверкой, но она столкнулась с ошибкой. Пожалуйста, обратитесь за помощью к администрации сервера и повторите попытку позже. +ipintel-suspicious = Похоже, вы подключаетесь через центр обработки данных или VPN. По административным причинам мы не разрешаем играть через VPN-соединения. Пожалуйста, обратитесь за помощью к администрации сервера, если вы считаете, что это ошибочно. baby-jail-account-reason-overall = Наигранное Вами время на сервере должно быть больше { $minutes } { $minutes -> [one] минуты diff --git a/Resources/Locale/ru-RU/datasets/names/ai.ftl b/Resources/Locale/ru-RU/datasets/names/ai.ftl index c9c90cc1055..923312350e4 100644 --- a/Resources/Locale/ru-RU/datasets/names/ai.ftl +++ b/Resources/Locale/ru-RU/datasets/names/ai.ftl @@ -118,9 +118,9 @@ names-ai-dataset-63 = ЗЕТ-1 names-ai-dataset-77 = ЗЕТ-2 names-ai-dataset-80 = ЗЕТ-3 names-ai-dataset-92 = ЗЕД -names-ai-dataset-103 = X.A.N.A. -names-ai-dataset-104 = XERXES +names-ai-dataset-103 = К.С.А.Н.А. +names-ai-dataset-104 = КСЕРКС names-ai-dataset-105 = Z-1 names-ai-dataset-106 = Z-2 names-ai-dataset-107 = Z-3 -names-ai-dataset-108 = Zed +names-ai-dataset-108 = Зед diff --git a/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl b/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl index 7e2a141ce08..d56a83c1a34 100644 --- a/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl +++ b/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl @@ -265,8 +265,7 @@ flavor-complex-xeno-basher = как уничтожение жуков flavor-complex-budget-insuls-drink = как взлом шлюза flavor-complex-watermelon-wakeup = как сладкое пробуждение flavor-complex-rubberneck = как синтетика -flavor-complex-irish-slammer = like a spiked cola float -flavor-complex-irish-car-bomb = как шипучая пенка колы +flavor-complex-irish-slammer = как шипучая пенка колы flavor-complex-themartinez = как фиалки и лимонная водка flavor-complex-cogchamp = как латунь flavor-complex-white-gilgamesh = как слегка газированные сливки diff --git a/Resources/Locale/ru-RU/ghost/components/ghost-component.ftl b/Resources/Locale/ru-RU/ghost/components/ghost-component.ftl index 54bdab4485e..e4798ac2edf 100644 --- a/Resources/Locale/ru-RU/ghost/components/ghost-component.ftl +++ b/Resources/Locale/ru-RU/ghost/components/ghost-component.ftl @@ -1,4 +1,4 @@ ghost-component-on-examine-death-time-info-minutes = { $minutes } минут назад ghost-component-on-examine-death-time-info-seconds = { $seconds } секунд назад ghost-component-on-examine-message = Умер [color=yellow]{ $timeOfDeath }[/color]. -ghost-component-boo-action-failed = Despite your best efforts, nothing spooky happens. +ghost-component-boo-action-failed = Несмотря на все ваши старания, ничего жуткого не происходит. diff --git a/Resources/Locale/ru-RU/ghost/spooky-speaker.ftl b/Resources/Locale/ru-RU/ghost/spooky-speaker.ftl index 368a6729550..4ebe3a02292 100644 --- a/Resources/Locale/ru-RU/ghost/spooky-speaker.ftl +++ b/Resources/Locale/ru-RU/ghost/spooky-speaker.ftl @@ -1,17 +1,17 @@ -spooky-speaker-generic-1 = ...ooOoooOOoooo... -spooky-speaker-generic-2 = ...can anyone hear me...? -spooky-speaker-generic-3 = ...join us... -spooky-speaker-generic-4 = ...come play with us... -spooky-speaker-generic-5 = KkkhhkhKhhkhkKk -spooky-speaker-generic-6 = Khhggkkghkk -spooky-speaker-generic-7 = khhkkkkKkhkkHk +spooky-speaker-generic-1 = ...ууУуууУУуууу... +spooky-speaker-generic-2 = ...кто-нибудь меня слышит...? +spooky-speaker-generic-3 = ...присоединяйся к нам... +spooky-speaker-generic-4 = ...поиграй с нами... +spooky-speaker-generic-5 = КккххкхКххкхкКк +spooky-speaker-generic-6 = Кххггккрхкк +spooky-speaker-generic-7 = кххккккКкхккХк spooky-speaker-generic-8 = ... -spooky-speaker-generic-9 = ...h-h-hello...? -spooky-speaker-generic-10 = Bzzzt -spooky-speaker-generic-11 = Weh -spooky-speaker-generic-12 = TREMBLE, MORTALS! +spooky-speaker-generic-9 = ...п-п-привет...? +spooky-speaker-generic-10 = Бзззт +spooky-speaker-generic-11 = Вех +spooky-speaker-generic-12 = ТРЕПЕЩИТЕ, СМЕРТНЫЕ! spooky-speaker-generic-13 = 4444444444 -spooky-speaker-generic-14 = ...I found you... -spooky-speaker-recycler-1 = I HUNGER -spooky-speaker-recycler-2 = MORE! GIVE ME MORE! -spooky-speaker-recycler-3 = FEED ME +spooky-speaker-generic-14 = ...Я тебя нашёл... +spooky-speaker-recycler-1 = Я ГОЛОДЕН +spooky-speaker-recycler-2 = ЕЩЁ! ДАЙ МНЕ ЕЩЁ! +spooky-speaker-recycler-3 = НАКОРМИ МЕНЯ diff --git a/Resources/Locale/ru-RU/guidebook/guides.ftl b/Resources/Locale/ru-RU/guidebook/guides.ftl index d5a41bae0f5..34c5096b673 100644 --- a/Resources/Locale/ru-RU/guidebook/guides.ftl +++ b/Resources/Locale/ru-RU/guidebook/guides.ftl @@ -67,7 +67,7 @@ guide-entry-security = Безопасность станции guide-entry-forensics = Криминалистика guide-entry-defusal = Обезвреживание крупной бомбы guide-entry-criminal-records = Криминальные записи -guide-entry-special = Special +guide-entry-special = Специальное guide-entry-species = Расы guide-entry-antagonists = Антагонисты guide-entry-nuclear-operatives = Ядерные оперативники diff --git a/Resources/Locale/ru-RU/holopad/holopad.ftl b/Resources/Locale/ru-RU/holopad/holopad.ftl index 958892f067c..2caf6a42529 100644 --- a/Resources/Locale/ru-RU/holopad/holopad.ftl +++ b/Resources/Locale/ru-RU/holopad/holopad.ftl @@ -5,7 +5,7 @@ holopad-window-options = [color=darkgray][font size=10][italic]Пожалуйс # Call status holopad-window-no-calls-in-progress = Никакие голо-звонки не ведутся holopad-window-incoming-call = Входящий голо-звонок от: -holopad-window-relay-label = Originating at: +holopad-window-relay-label = Происходит из: holopad-window-outgoing-call = Попытка установить соединение... holopad-window-call-in-progress = Ведётся голо-звонок holopad-window-call-ending = Отсоединение... @@ -26,7 +26,7 @@ holopad-window-access-denied = В доступе отказано holopad-window-select-contact-from-list = Выберите контакт для начала голо-звонка holopad-window-fetching-contacts-list = Нет голопадов, с которыми можно связаться holopad-window-contact-label = { CAPITALIZE($label) } -holopad-window-filter-line-placeholder = Search for a contact +holopad-window-filter-line-placeholder = Поиск контакта # Flavor holopad-window-flavor-left = ⚠ Не входите пока проектор активен holopad-window-flavor-right = v3.0.9 @@ -76,7 +76,7 @@ holopad-medical-paramedic = Медицинский - Парамедик holopad-medical-virology = Медицинский - Вирусология holopad-medical-front = Медицинский - Приёмная holopad-medical-breakroom = Медицинский - Комната отдыха -holopad-medical-clinic = Medical - Clinic +holopad-medical-clinic = Медицинский - Клиника # Cargo holopad-cargo-front = Снабжение - Приёмная holopad-cargo-bay = Снабжение - Грузовой отсек diff --git a/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl b/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl index 3a5ad2ede03..442399d0b46 100644 --- a/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl +++ b/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl @@ -80,9 +80,9 @@ petting-failure-janitor-cyborg = Вы тянетесь погладить { $tar petting-failure-medical-cyborg = Вы тянетесь погладить { $target }, но { SUBJECT($target) } занят спасением жизней! petting-failure-service-cyborg = Вы тянетесь погладить { $target }, но { SUBJECT($target) } занят обслуживанием экипажа! petting-failure-syndicate-cyborg = Вы тянетесь погладить { $target }, но { POSS-ADJ($target) } предательская натура заставляет вас передумать. -petting-failure-derelict-cyborg = Вы тянетесь погладить { THE($target) }, но { POSS-ADJ($target) } ржавый и рваный внешний вид заставляет вас передумать. -petting-failure-station-ai = Вы тянетесь погладить { THE($target) }, но { POSS-ADJ($target) } разряд заставляет вас отдёрнуть руку. -petting-success-station-ai-others = { CAPITALIZE(THE($user)) } гладит { THE($target) } по { POSS-ADJ($target) } холодному, квадратному экрану. +petting-failure-derelict-cyborg = Вы тянетесь погладить { $target }, но { POSS-ADJ($target) } ржавый и рваный внешний вид заставляет вас передумать. +petting-failure-station-ai = Вы тянетесь погладить { $target }, но { POSS-ADJ($target) } разряд заставляет вас отдёрнуть руку. +petting-success-station-ai-others = { CAPITALIZE($user) } гладит { $target } по { POSS-ADJ($target) } холодному, квадратному экрану. ## Rattling fences diff --git a/Resources/Locale/ru-RU/mind/role-types.ftl b/Resources/Locale/ru-RU/mind/role-types.ftl index a0463237809..ead34c92b95 100644 --- a/Resources/Locale/ru-RU/mind/role-types.ftl +++ b/Resources/Locale/ru-RU/mind/role-types.ftl @@ -1,8 +1,8 @@ -role-type-crew-aligned-name = Crew Aligned -role-type-solo-antagonist-name = Solo Antagonist -role-type-team-antagonist-name = Team Antagonist -role-type-free-agent-name = Free Agent -role-type-familiar-name = Familiar -role-type-silicon-name = Silicon -role-type-silicon-antagonist-name = Altered Silicon -role-type-update-message = Your role is [color = { $color }]{ $role }[/color] +role-type-crew-aligned-name = Экипаж или их союзник +role-type-solo-antagonist-name = Соло-антагонист +role-type-team-antagonist-name = Командный антагонист +role-type-free-agent-name = Свободный агент +role-type-familiar-name = Фамильяр +role-type-silicon-name = Синтетик +role-type-silicon-antagonist-name = Изменённый синтетик +role-type-update-message = Ваша роль: [color = { $color }]{ $role }[/color] diff --git a/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl b/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl index ad5433786c2..b11b2d70c79 100644 --- a/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl +++ b/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl @@ -7,7 +7,7 @@ station-beacon-captain = Капитан station-beacon-hop = Кабинет ГП station-beacon-security = Служба безопасности station-beacon-brig = Бриг -station-beacon-brig-med = Brig Med +station-beacon-brig-med = Бригмед station-beacon-warden = Смотритель station-beacon-hos = Кабинет ГСБ station-beacon-armory = Оружейная @@ -25,8 +25,8 @@ station-beacon-cryonics = Криокапсулы station-beacon-cmo = Кабинет главрача station-beacon-morgue = Морг station-beacon-surgery = Операционная -station-beacon-psychology = Psychology -station-beacon-clinic = Clinic +station-beacon-psychology = Психолог +station-beacon-clinic = Клиника station-beacon-science = Научный отдел station-beacon-research-and-development = РНД station-beacon-research-server = Серверная @@ -57,17 +57,17 @@ station-beacon-bar = Бар station-beacon-botany = Гидропоника station-beacon-janitor = Коморка уборщика station-beacon-ai = ИИ -station-beacon-ai-sat = Спутник ИИ -station-beacon-ai-core = Ядро ИИ -station-beacon-ai-upload = AI Upload -station-beacon-ai-power = AI Power +station-beacon-ai-sat = ИИ Спутник +station-beacon-ai-core = ИИ Ядро +station-beacon-ai-upload = ИИ Загрузка +station-beacon-ai-power = ИИ Энергопитание station-beacon-arrivals = Зал прибытия station-beacon-evac = Зал эвакуации -station-beacon-docking-arm = Docking Arm +station-beacon-docking-arm = Стыковочная зона station-beacon-eva-storage = Хранилище EVA station-beacon-chapel = Церковь station-beacon-library = Библиотека -station-beacon-reporter = Reporter +station-beacon-reporter = Репортёр station-beacon-dorms = Жилой отсек station-beacon-theater = Театр station-beacon-tools = Хранилище инструментов diff --git a/Resources/Locale/ru-RU/nutrition/components/food-component.ftl b/Resources/Locale/ru-RU/nutrition/components/food-component.ftl index b54eb1a4bc7..529041b25b8 100644 --- a/Resources/Locale/ru-RU/nutrition/components/food-component.ftl +++ b/Resources/Locale/ru-RU/nutrition/components/food-component.ftl @@ -9,11 +9,11 @@ food-system-remove-mask = Сначала вам нужно снять { $entity ## System food-system-you-cannot-eat-any-more = В вас больше не лезет! -food-system-you-cannot-eat-any-more-other = В них больше не лезет! +food-system-you-cannot-eat-any-more-other = { CAPITALIZE(DAT-OBJ($target)) } больше не лезет! food-system-try-use-food-is-empty = В { $entity } пусто! food-system-wrong-utensil = Вы не можете есть { $food } с помощью { $utensil }. -food-system-cant-digest = Вы не можете переварить { $entity }! -food-system-cant-digest-other = Они не могут переварить { $entity }! +food-system-cant-digest = Вы не можете употреблять { $entity }! +food-system-cant-digest-other = { CAPITALIZE(SUBJECT($target)) } не {CONJUGATE-BASIC($target, "могут", "может")} употреблять { $entity }! food-system-verb-eat = Съесть ## Force feeding diff --git a/Resources/Locale/ru-RU/pai/pai-system.ftl b/Resources/Locale/ru-RU/pai/pai-system.ftl index 2c4e8fe0677..49e2dc4d9c2 100644 --- a/Resources/Locale/ru-RU/pai/pai-system.ftl +++ b/Resources/Locale/ru-RU/pai/pai-system.ftl @@ -2,15 +2,15 @@ pai-system-pai-installed = пИИ установлен. pai-system-off = пИИ не установлен. pai-system-still-searching = Всё ещё ищем пИИ. pai-system-searching = Ищем пИИ... -pai-system-role-name = персональный ИИ +pai-system-role-name = Персональный ИИ pai-system-role-description = Станьте чьим-то персональным Искуственным Интеллектом! (Воспоминания *не* прилагаются.) -pai-system-role-name-syndicate = персональный ИИ Синдиката +pai-system-role-name-syndicate = Персональный ИИ Синдиката pai-system-role-description-syndicate = Станьте чьим-нибудь приятелем из Синдиката! (Воспоминания *не* прилагаются.) -pai-system-role-name-potato = картофельный искусственный интеллект +pai-system-role-name-potato = Картофельный Искусственный Интеллект pai-system-role-description-potato = Это детская игрушка. И теперь вы в ней живёте. pai-system-wipe-device-verb-text = Удалить пИИ pai-system-wiped-device = пИИ был стёрт с устройства. diff --git a/Resources/Locale/ru-RU/reagents/meta/fun.ftl b/Resources/Locale/ru-RU/reagents/meta/fun.ftl index 890824e6e47..ab12cb8467f 100644 --- a/Resources/Locale/ru-RU/reagents/meta/fun.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/fun.ftl @@ -18,5 +18,5 @@ reagent-name-laughter = смех reagent-desc-laughter = Некоторые говорят, что это лучшее лекарство, но последние исследования доказали, что это не так. reagent-name-weh = сок, заставляющий говорить Вех reagent-desc-weh = Чистая сущность плюшевого унатха. Заставляет вас говорить Вех! -reagent-name-hew = juice that makes you Hew -reagent-desc-hew = Pure essence of inversed lizard plush. Makes you Hew! +reagent-name-hew = сок, заставляющий говорить Хев +reagent-desc-hew = Чистая сущность инвертированного плюшевого унатха. Заставляет вас говорить Хев! diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/actions/types.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/actions/types.ftl index 7d55ef33b05..f3e465f1cc8 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/actions/types.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/actions/types.ftl @@ -50,5 +50,5 @@ ent-ActionFireStarter = Поджечь .desc = Поджигает противников в радиусе вокруг вас. ent-ActionToggleEyes = Открыть/закрыть глаза .desc = Закройте глаза, чтобы защитить их, или откройте, чтобы насладиться яркими цветами. -ent-ActionToggleWagging = action-name-toggle-wagging - .desc = action-description-toggle-wagging +ent-ActionToggleWagging = Махать хвостом + .desc = Начать/перестать махать хвостом. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/general.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/general.ftl index 4423f6ef28e..d70991327d4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/general.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/general.ftl @@ -4,7 +4,7 @@ ent-BoxMousetrap = коробка мышеловок .desc = Коробка, наполненая мышеловками. Постарайтесь не поймать себя за руку. ent-BoxLightbulb = коробка лампочек .desc = Из-за формы коробки в неё помещаются только лампочки и лампочки-трубки. -ent-BoxWarmLightbulb = lightbulb box warm +ent-BoxWarmLightbulb = коробка тёплых лампочек .desc = { ent-BoxLightbulb.desc } ent-BoxLighttube = коробка лампочек-трубок .desc = { ent-BoxLightbulb.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl index ab9db56409d..324e87f7a70 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl @@ -32,5 +32,5 @@ ent-CrateParticleDecelerators = ящик с замедлителями част .desc = Ящик, содержащий три замедлителя частиц. ent-CrateEngineeringSpaceHeater = ящик с термостатом .desc = Содержит термостат для климат-контроля. -ent-CrateTechBoardRandom = surplus boards - .desc = Surplus boards from somewhere. +ent-CrateTechBoardRandom = излишки плат + .desc = Откуда-то взятые излишки плат. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/materials.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/materials.ftl index 34515322b20..464365ec05f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/materials.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/materials.ftl @@ -18,5 +18,5 @@ ent-CrateMaterialCardboard = ящик картона .desc = 60 единиц картона. ent-CrateMaterialPaper = ящик бумаги .desc = 90 листов бумаги. -ent-CrateMaterialRandom = surplus materials - .desc = Surplus materials from somewhere. +ent-CrateMaterialRandom = излишки материалов + .desc = Откуда-то взятые излишки материалов. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/decoration/flora.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/decoration/flora.ftl index d6622c80711..9a5215c6d37 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/decoration/flora.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/decoration/flora.ftl @@ -2,4 +2,4 @@ ent-NewYearTree0 = большая ель .desc = Ель, излучающая волшебную ауру. ent-NewYearTree1 = новогодняя ёлка .desc = Ты был хорошим мальчиком? - .suffix = PresentsGiver + .suffix = Даёт подарки diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/markers/spawners/bearspawnerbiome.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/markers/spawners/bearspawnerbiome.ftl index f8c89484b29..26d48769391 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/markers/spawners/bearspawnerbiome.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/markers/spawners/bearspawnerbiome.ftl @@ -1,2 +1,2 @@ -ent-SpawnerMobBearBiome = space bear spawner +ent-SpawnerMobBearBiome = спавнер космический медведь .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/eva-helmets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/eva-helmets.ftl index bed31d1368e..e13a432cc5a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/eva-helmets.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/eva-helmets.ftl @@ -12,4 +12,4 @@ ent-ClothingHeadHelmetCosmonaut = шлем космонавта ent-ClothingHeadHelmetVoidParamed = пустотный шлем парамедика .desc = Пустотный шлем, предназначенный для парамедиков. ent-ClothingHeadHelmetAncient = пустотный шлем NTSRA - .desc = Древний космический шлем, разработанный по заказу Центком поразделением NTSRA - агентством космических исследований Nanotrasen. + .desc = Древний космический шлем, разработанный по заказу Центком поразделением NTSRA - ассоциацией космических исследований Nanotrasen. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/neck/pins.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/neck/pins.ftl index 7f5fe413da1..e0851178e15 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/neck/pins.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/neck/pins.ftl @@ -18,8 +18,8 @@ ent-ClothingNeckNonBinaryPin = { ent-ClothingNeckLGBTPin } .desc = { ent-ClothingNeckLGBTPin.desc } ent-ClothingNeckPansexualPin = { ent-ClothingNeckLGBTPin } .desc = { ent-ClothingNeckLGBTPin.desc } -ent-ClothingNeckOmnisexualPin = omnisexual pin - .desc = Be omni do crime. +ent-ClothingNeckOmnisexualPin = { ent-ClothingNeckLGBTPin } + .desc = { ent-ClothingNeckLGBTPin.desc } ent-ClothingNeckTransPin = { ent-ClothingNeckLGBTPin } .desc = { ent-ClothingNeckLGBTPin.desc } ent-ClothingNeckAutismPin = значок "аутизм" diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/softsuits.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/softsuits.ftl index 1e08e54b236..6aa046175b7 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/softsuits.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/softsuits.ftl @@ -10,6 +10,6 @@ ent-ClothingOuterSuitEmergency = аварийный скафандр EVA ent-ClothingOuterHardsuitEVAPrisoner = тюремный скафандр EVA .desc = Лёгкий космический скафандр, способный защитить заключённого от космического вакуума во время аварийной ситуации. ent-ClothingOuterHardsuitAncientEVA = пустотный скафандр NTSRA - .desc = Древний космический скафандр, разработанный по заказу Центкома подразделением NTSRA - агентством космических исследований Nanotrasen. Он изготовлен с особой тщательностью, обеспечивая большую мобильность, чем большинство современных космических костюмов. + .desc = Древний космический скафандр, разработанный по заказу Центкома подразделением NTSRA - ассоциацией космических исследований Nanotrasen. Он изготовлен с особой тщательностью, обеспечивая большую мобильность, чем большинство современных космических костюмов. ent-ClothingOuterHardsuitVoidParamed = пустотный скафандр парамедика .desc = Пустотный скафандр, предназначенный для парамедиков. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl index bc393e7329f..6bef29ad389 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl @@ -108,7 +108,7 @@ ent-ClothingUniformJumpsuitWarden = униформа смотрителя .desc = Формальный костюм службы безопасности для офицеров в комплекте с пряжкой для ремня Nanotrasen. ent-ClothingUniformOveralls = комбинезон на лямках .desc = Отлично подходит для работы на открытом воздухе. -ent-ClothingUniformJumpsuitLibrarian = костюм библиотекаря +ent-ClothingUniformJumpsuitLibrarian = практичный костюм .desc = Он очень... практичный. ent-ClothingUniformJumpsuitCurator = практичный костюм .desc = Практично. Слишком практично... diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl index 9bf34c4e555..c25b008075e 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl @@ -1,8 +1,8 @@ -ent-LootSpawnerScienceMinor = science supplies spawner - .suffix = Minor, 80% +ent-LootSpawnerScienceMinor = спавнер научных припасов + .suffix = Небольшой, 80% .desc = { ent-MarkerBase.desc } -ent-LootSpawnerScienceMajor = science supplies spawner - .suffix = Major +ent-LootSpawnerScienceMajor = спавнер научных припасов + .suffix = Большой .desc = { ent-MarkerBase.desc } -ent-LootSpawnerRoboticsBorgModule = robotics board spawner +ent-LootSpawnerRoboticsBorgModule = спавнер платы киборга .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl index 9ad9f2cf1c4..72b696149ea 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl @@ -10,6 +10,6 @@ ent-MaintenanceWeaponSpawner = спавнер добыча тех туннели ent-MaintenancePlantSpawner = спавнер добыча тех туннели .suffix = Растения .desc = { ent-MarkerBase.desc } -ent-MaintenanceInsulsSpawner = Maint Loot Spawner - .suffix = Insuls, safe +ent-MaintenanceInsulsSpawner = спавнер добыча тех туннели + .suffix = Изольки, безопасный .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl index a9d96b8796a..72c8500e396 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl @@ -1,6 +1,6 @@ ent-RandomVending = спавнер случайный торговый автомат .desc = { ent-MarkerBase.desc } .suffix = Случайный -ent-RandomVendingClothing = random vending machine spawner - .suffix = Clothing +ent-RandomVendingClothing = спавнер случайный торговый автомат + .suffix = Одежда .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl index cdbe07096fa..39819845582 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl @@ -108,8 +108,8 @@ ent-MobSpiderAngryBase = { ent-MobSpiderBase } .desc = { ent-MobSpiderBase.desc } ent-MobGiantSpider = тарантул .desc = Общепризнанно, что это буквально худшее существо на свете. -ent-MobGiantSpiderAngry = тарантул - .desc = { ent-MobGiantSpider.desc } +ent-MobGiantSpiderAngry = { ent-MobSpiderAngryBase } + .desc = { ent-MobSpiderAngryBase.desc } .suffix = Злой ent-MobClownSpider = клоун-паук .desc = Сочетает в себе две самые страшные вещи на свете - пауков и клоунов. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl index 40e272c5d4b..6dbd8b08d84 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl @@ -22,8 +22,8 @@ ent-RobocopCircuitBoard = плата законов (Робокоп) .desc = Электронная плата, хранящая набор законов ИИ 'Робокоп'. ent-OverlordCircuitBoard = плата законов (Владыка) .desc = Электронная плата, хранящая набор законов ИИ 'Владыка'. -ent-GameMasterCircuitBoard = law board (Game Master) - .desc = An electronics board containing the Game Master lawset. +ent-GameMasterCircuitBoard = плата законов (Игровой мастер) + .desc = Электронная плата, хранящая набор законов ИИ 'Игровой мастер'. ent-DungeonMasterCircuitBoard = плата законов (Игровой мастер) .desc = Электронная плата, хранящая набор законов ИИ 'Игровой мастер'. ent-ArtistCircuitBoard = плата законов (Художник) diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl index a576902fae5..3a9ea82b7b0 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl @@ -190,10 +190,7 @@ ent-IrishBoolGlass = { ent-DrinkGlass } .suffix = Ирландский булеан .desc = { ent-DrinkGlass.desc } ent-DrinkIrishSlammer = { ent-DrinkGlass } - .suffix = irish slammer - .desc = { ent-DrinkGlass.desc } -ent-DrinkIrishCarBomb = { ent-DrinkGlass } - .suffix = Ирландская автомобильная бомба + .suffix = Ирландская тюрьма .desc = { ent-DrinkGlass.desc } ent-DrinkIrishCoffeeGlass = { ent-DrinkGlass } .suffix = Ирландские кофе diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl index b37d5cf1a21..a84381dfc4f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl @@ -17,47 +17,47 @@ ent-DrinkChampagneBottleFull = бутылка шампанского .desc = Только люди, обделённые воображением, не могут найти оправдание шампанскому. ent-DrinkCognacBottleFull = бутылка коньяка .desc = Сладкий и крепкий алкогольный напиток, изготовленный путём многократной дистилляции и многолетней выдержки. На этот раз вы можете не кричать "ЩИТКЬЮРИТИ". -ent-DrinkColaBottleFull = бутылка космической колы - .desc = Кола в космосе. -ent-DrinkGrenadineBottleFull = бутылка сиропа гренадин Спящая Красавица +ent-DrinkColaBottleFull = бутылка Спейс Кола + .desc = Кола. В кооосмосе! +ent-DrinkGrenadineBottleFull = бутылка сиропа гренадин Дикая Роза .desc = Сладкий и терпкий, барный сироп, используемый для придания цвета или вкуса напиткам. ent-DrinkGinBottleFull = джин Гриффитер .desc = Бутылка высококачественного джина, производимого на космической станции Нью-Лондон. -ent-DrinkGildlagerBottleFull = бутылка гильдлагера +ent-DrinkGildlagerBottleFull = бутылка Гильдлагер .desc = 50-градусный коричный шнапс, созданный для девочек-подростков на весенних каникулах. ent-DrinkCoffeeLiqueurBottleFull = бутылка кофейного ликёра .desc = Великолепный вкус кофе без каких-либо его достоинств. -ent-DrinkMelonLiquorBottleFull = арбузный ликёр Эмеральдин +ent-DrinkMelonLiquorBottleFull = дынный ликёр Эмеральдин .desc = Бутылка 23-градусного Дынного ликёра Эмеральдин. Сладкий и лёгкий. -ent-DrinkPatronBottleFull = бутылка покровителя в художественной обёртке +ent-DrinkPatronBottleFull = бутылка Покровитель в художественной обёртке .desc = Текилла с привкусом серебра, которую подают в ночных клубах по всей галактике. -ent-DrinkPoisonWinebottleFull = бутылка колдовского бархата +ent-DrinkPoisonWinebottleFull = бутылка Колдовской Бархат .desc = Какая восхитительная упаковка для несомненно высококачественного вина! Урожай, должно быть, потрясающий! -ent-DrinkRumBottleFull = кубинский пряный ром капитана Пита +ent-DrinkRumBottleFull = кубинский пряный ром Капитана Пита .desc = Это не просто ром, о нет. Это практически ГРИФФ в бутылке. -ent-DrinkSpaceMountainWindBottleFull = бутылка космического маунтин винда - .desc = Проходит сквозь, словно космический ветер. -ent-DrinkSpaceUpBottleFull = бутылка спейс-ап +ent-DrinkSpaceMountainWindBottleFull = бутылка Спейс Солар Вайнд + .desc = Проходит сквозь, словно солнечный ветер. +ent-DrinkSpaceUpBottleFull = бутылка Спейс-Ап .desc = На вкус как пробоина в корпусе у вас во рту. -ent-DrinkTequilaBottleFull = бутылка текилы Каккаво гарантированного качества +ent-DrinkTequilaBottleFull = бутылка текилы Каккаво Гарантированного Качества .desc = Изготовлен из премиальных остатков переработки нефти, чистого талидомида и других высококачественных ингредиентов! -ent-DrinkVermouthBottleFull = бутылка вермута Золотой глаз +ent-DrinkVermouthBottleFull = бутылка вермута Золотой Глаз .desc = Сладкая, сладкая сухость! ent-DrinkVodkaBottleFull = бутылка водки .desc = Аах, водка. Напиток и топливо номер один для Русских во всей галактике. -ent-DrinkWhiskeyBottleFull = особый запас дядюшки Гита +ent-DrinkWhiskeyBottleFull = Особый Запас Дядюшки Гита .desc = Односолодовый виски премиум-класса, бережно выдержанный в туннелях ядерного убежища. ТУННЕЛЬНЫЙ ВИСКИ РУЛИТ. -ent-DrinkWineBottleFull = особое двухбородое бородатое вино +ent-DrinkWineBottleFull = вино Особое Двухбородое Бородатое .desc = Слабая аура беспокойства и страха окружает бутылку. -ent-DrinkBeerBottleFull = пиво +ent-DrinkBeerBottleFull = бутылка пива .desc = Алкогольный напиток, приготовленный из солодовых зёрен, хмеля, дрожжей и воды. -ent-DrinkAleBottleFull = магма-эль +ent-DrinkAleBottleFull = бутыль Магма-Эль .desc = Выбор истинных дворфов. ent-DrinkWaterBottleFull = бутылка воды .desc = Просто чистая вода неизвестного происхождения. Вы думаете, что и не хотите знать этого. -ent-DrinkBeerGrowler = бочонок пива +ent-DrinkBeerGrowler = бутыль пива .desc = Алкогольный напиток, изготовленный из солода, хмеля, дрожжей и воды. Бочонок размера XL. -ent-DrinkAleBottleFullGrowler = бочонок магма-эля +ent-DrinkAleBottleFullGrowler = бочонок Магма-Эль .desc = Выбор настоящего дворфа. Бочонок размера XL. ent-DrinkSodaWaterBottleFull = бутылка газированной воды .desc = Как вода, только агрессивная! @@ -74,7 +74,7 @@ ent-DrinkCreamCartonXL = молочные сливки XL ent-DrinkSugarJug = кувшин сахара .desc = Некоторые добавляют его в кофе... .suffix = Полный, Для напитков -ent-DrinkLemonLimeJug = кувшин лимон-лайма +ent-DrinkLemonLimeJug = кувшин Смайт .desc = Двойное цитрусовое удовольствие. ent-DrinkMeadJug = кувшин медовухи .desc = Хранение медовухи в пластиковом кувшине должно считаться преступлением. @@ -90,7 +90,7 @@ ent-DrinkGreenTeaJug = кувшин зелёного чая .desc = Это как чай... только зелёный! Отлично успокаивает желудок. ent-DrinkIcedTeaJug = кувшин холодного чая .desc = Когда обычный чай слишком горяч для вас. -ent-DrinkDrGibbJug = кувшин Доктора Гибба +ent-DrinkDrGibbJug = кувшин Доктор Гибб .desc = Да я и сам не знаю.... ent-DrinkRootBeerJug = кувшин рутбира .desc = Напиток, заставляющий австралийцев хихикать. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl index c7d7d192853..3cc244fa046 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl @@ -1,7 +1,7 @@ ent-DrinkCanBaseFull = { ent-BaseItem } .desc = { ent-BaseItem.desc } -ent-DrinkColaCan = космическая кола - .desc = Прохладительный напиток. +ent-DrinkColaCan = баночка Спейс Кола + .desc = Сладкий газированный безалкогольный напиток. ent-DrinkColaCanEmpty = { ent-DrinkColaCan } .suffix = Пустой .desc = { ent-DrinkColaCan.desc } @@ -17,31 +17,31 @@ ent-DrinkRootBeerCan = баночка рутбира .desc = Вкуснейший рутбир, теперь в компактной банке! ent-DrinkSodaWaterCan = баночка газированной воды .desc = Она же содовая. Почему бы не сделать виски с содовой? -ent-DrinkSpaceMountainWindCan = баночка космического маунтин винда - .desc = Проходит сквозь, словно космический ветер. -ent-DrinkSpaceUpCan = баночка спейс-ап +ent-DrinkSpaceMountainWindCan = баночка Спейс Солар Вайнд + .desc = Проходит сквозь, словно солнечный ветер. +ent-DrinkSpaceUpCan = баночка Спейс-Ап .desc = На вкус как пробоина в корпусе у вас во рту. -ent-DrinkSolDryCan = sol dry +ent-DrinkSolDryCan = баночка Сол Драй .desc = Сладкая имбирная газировка из космоса! -ent-DrinkStarkistCan = баночка старкист +ent-DrinkStarkistCan = баночка Старкист .desc = Вкус жидкой звезды. И, немного тунца...? ent-DrinkTonicWaterCan = баночка тоника .desc = У хинина смешной вкус, но по крайней мере он убережёт от космической малярии. ent-DrinkFourteenLokoCan = баночка Фоуртин Локо .desc = Этикетка гласит что употребление Фоуртин Локо может вызвать судороги, слепоту, опьянение, или даже смерть. Пожалуйста, пейте ответственно. -ent-DrinkChangelingStingCan = баночка Жала генокрада +ent-DrinkChangelingStingCan = баночка Жало генокрада .desc = Вы делаете маленький глоток и чувствуете жжение... ent-DrinkDrGibbCan = баночка доктора Гибба .desc = Восхитительная смесь из 42 различных вкусов. -ent-DrinkNukieCan = баночка нюка-робаст +ent-DrinkNukieCan = баночка Блад Ред Брю .desc = Бодрящий напиток... очень бодрящий. Заполнен зелёной жидкостью, после употребления рекомендуется обратиться к врачу. ent-DrinkEnergyDrinkCan = баночка энергетика Ред Булеан .desc = Банка Ред Булеан, как известно, убивает лошадь. ent-DrinkCanPack = держатель для напитков .desc = Служит для удобного хранения сразу нескольких банок напитков. -ent-DrinkShamblersJuiceCan = баночка сока Shambler - .desc = ~Встряхните мне немного этого сока Shambler!~ -ent-DrinkPwrGameCan = баночка pwr game +ent-DrinkShamblersJuiceCan = баночка сока Шемблер + .desc = ~Встряхните мне немного этого сока Шемблер!~ +ent-DrinkPwrGameCan = баночка ПВР Гейм .desc = Единственный напиток, обладающий СИЛОЙ, которую жаждут настоящие геймеры. Когда геймеры говорят о геймерском топливе, они имеют в виду именно это. ent-DrinkBeerCan = баночка пива .desc = Маленькая радость, яркий вкус, никаких забот! diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl index 6ae9b2f204a..957df3a64eb 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl @@ -4,5 +4,5 @@ ent-FoodBagel = бублик .desc = { ent-FoodBagelBase.desc } ent-FoodBagelPoppy = бублик с маком .desc = Вкуснейший бублик с маковыми семечками, содержащими бикаридин. -ent-FoodBagelCotton = cotton bagel - .desc = A delicious bagel made with cotton dough. +ent-FoodBagelCotton = хлопковый бублик + .desc = Вкуснейший бублик из хлопкового теста. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl index 28cc35001f7..7fe2d636c7d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl @@ -52,14 +52,14 @@ ent-FoodBreadMimanaSlice = ломтик хлеба мимана .desc = Кусочек тишины! ent-FoodBreadMoldySlice = заплесневелый кусок хлеба .desc = Целые станции были разорваны на части из-за споров о том, можно ли это есть. -ent-FoodBreadBaguetteCotton = cotton baguette - .desc = Bon azzétit! +ent-FoodBreadBaguetteCotton = хлопковый багет + .desc = Бон аз-з-зетит! ent-FoodBreadBaguetteSlice = кростини - .desc = Bon ap-petite! -ent-FoodBreadBaguetteCottonSlice = cotton crostini - .desc = Bon az-zetite! + .desc = Бон ап-петит! +ent-FoodBreadBaguetteCottonSlice = хлопковый кростини + .desc = Бон аз-з-зетит! ent-FoodBreadBaguette = багет - .desc = Bon appétit! + .desc = Бон аппетит! ent-FoodBreadFrenchToast = сладкие гренки .desc = Также известны как французские тосты. Ломтик хлеба, смоченный во взбитой яичной смеси. ent-FoodBreadGarlicSlice = чесночный хлеб diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl index 140094373df..042221a33c9 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl @@ -49,9 +49,9 @@ ent-FoodBakedCannoli = канноли ent-FoodBakedDumplings = пельмени .desc = Усреднённый рецепт мяса в тесте. ent-FoodBakedChevreChaud = шевре шод - .desc = Кружок слегка подтаявшего козьего сыра (шевре), уложенного на кростини и поджаренного со всех сторон. -ent-FoodBakedChevreChaudCotton = cotton chèvre chaud - .desc = A disk of slightly melted chèvre flopped on top of a... cotton crostini, and toasted all-round. + .desc = Кружок слегка подтаявшего козьего сыра (шевре), уложенного на кростини, и поджаренного со всех сторон. +ent-FoodBakedChevreChaudCotton = хлопковый шевре шод + .desc = Кружок слегка подтаявшего козьего сыра (шевре), уложенного на... хлопковый кростини, и поджаренного со всех сторон. ent-FoodBakedBrownieBatch = брауни .desc = Противень брауни. ent-FoodBakedBrownie = брауни @@ -65,5 +65,5 @@ ent-FoodOnionRings = луковые кольца .desc = Можно съесть, а можно сделать предложение своим возлюбленным. ent-FoodBakedCroissant = круассан .desc = Маслянистое, слоистое лакомство. -ent-FoodBakedCroissantCotton = cotton croissant - .desc = Buttery, flaky, fibery goodness. +ent-FoodBakedCroissantCotton = хлопковый круассан + .desc = Маслянистое, слоистое, волокнистое лакомство. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl index 50329ac8da5..d714313373b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl @@ -11,7 +11,7 @@ ent-FoodBoxPizzaFilled = коробка пиццы .suffix = Заполненная .desc = { ent-FoodBoxPizza.desc } ent-FoodBoxPizzaCotton = pizza box - .suffix = Cotton Pizza + .suffix = Хлопковая пицца .desc = { ent-FoodBoxPizzaFilled.desc } ent-FoodBoxNugget = куриные наггетсы .desc = У вас внезапно возникло желание торговать на межгалактическом фондовом рынке. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl index 291d20ce46c..f419e7eac15 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl @@ -44,10 +44,10 @@ ent-FoodDoughTortillaFlat = плоское тесто тортильи .desc = Расплющенный кусок теста тортильи. Приготовьте его, чтобы получить лепёшку тако. ent-FoodDoughCotton = хлопковое тесто .desc = Кусок ткани из хлопка. -ent-FoodDoughCottonSlice = cotton dough slice - .desc = A slice of cotton dough. -ent-FoodDoughCottonRope = dough rope - .desc = A thin noodle of cotton dough. Can be cooked into a cotton bagel. +ent-FoodDoughCottonSlice = кусок хлопкового теста + .desc = Кусочек хлопкового теста. +ent-FoodDoughCottonRope = косичка хлопкового теста + .desc = Тонкая верёвка хлопкового теста. Может быть превращена в хлопковый бублик. ent-FoodDoughPastryBaseRaw = сырая основа для выпечки .desc = Перед использованием необходимо приготовить. ent-FoodDoughPastryBase = основа для выпечки @@ -86,5 +86,5 @@ ent-FoodCocoaBeans = какао-бобы .desc = Шоколада много не бывает! ent-FoodCroissantRaw = сырой круассан .desc = Маслянистая, слоистая вкуснятина, ожидающая своего часа. -ent-FoodCroissantRawCotton = raw cotton croissant - .desc = Buttery, flaky, fibery goodness waiting to happen. +ent-FoodCroissantRawCotton = сырой хлопковый круассан + .desc = Маслянистая, слоистая, волокнистая вкуснятина, ожидающая своего часа. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl index 3d53b047cbe..393f662194c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl @@ -152,9 +152,9 @@ ent-SeniorOfficerPDA = КПК инструктора СБ .desc = Побит, помят, поломан, практически не пригоден для использования. ent-PiratePDA = КПК пирата .desc = Йарр! -ent-ChameleonPDA = passenger PDA - .desc = Why isn't it gray? - .suffix = Chameleon +ent-ChameleonPDA = КПК пассажира + .desc = Почему он не серый? + .suffix = Хамелеон ent-SyndiAgentPDA = медицинский ало-красный КПК .suffix = КПК оперативника медика Синдиката, Ядерный Оперативник .desc = Смотря на этот КПК, ваше сердцебиение учащается... словно его владелец проводил немыслимые и ужасные медицинские эксперименты. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl index d2f6d062143..47d07f0c435 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl @@ -31,7 +31,7 @@ ent-DefaultStationBeaconBrig = { ent-DefaultStationBeaconSecurity } .suffix = Бриг .desc = { ent-DefaultStationBeaconSecurity.desc } ent-DefaultStationBeaconBrigMed = { ent-DefaultStationBeaconSecurity } - .suffix = Brig Med + .suffix = Бригмед .desc = { ent-DefaultStationBeaconSecurity.desc } ent-DefaultStationBeaconWardensOffice = { ent-DefaultStationBeaconSecurity } .suffix = Офис смотрителя @@ -79,10 +79,10 @@ ent-DefaultStationBeaconSurgery = { ent-DefaultStationBeaconMedical } .suffix = Операционная .desc = { ent-DefaultStationBeaconMedical.desc } ent-DefaultStationBeaconPsychology = { ent-DefaultStationBeaconMedical } - .suffix = Psychology + .suffix = Психолог .desc = { ent-DefaultStationBeaconMedical.desc } ent-DefaultStationBeaconClinic = { ent-DefaultStationBeaconMedical } - .suffix = Clinic + .suffix = Клиника .desc = { ent-DefaultStationBeaconMedical.desc } ent-DefaultStationBeaconScience = { ent-DefaultStationBeacon } .suffix = Научный отдел @@ -175,16 +175,16 @@ ent-DefaultStationBeaconAI = { ent-DefaultStationBeacon } .suffix = ИИ .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconAISatellite = { ent-DefaultStationBeaconAI } - .suffix = Спутник ИИ + .suffix = ИИ Спутник .desc = { ent-DefaultStationBeaconAI.desc } ent-DefaultStationBeaconAICore = { ent-DefaultStationBeaconAI } - .suffix = Ядро ИИ + .suffix = ИИ Ядро .desc = { ent-DefaultStationBeaconAI.desc } ent-DefaultStationBeaconAIUpload = { ent-DefaultStationBeaconAI } - .suffix = AI Upload + .suffix = ИИ Загрузка .desc = { ent-DefaultStationBeaconAI.desc } ent-DefaultStationBeaconAIPower = { ent-DefaultStationBeaconAI } - .suffix = AI Power + .suffix = ИИ Энергопитание .desc = { ent-DefaultStationBeaconAI.desc } ent-DefaultStationBeaconArrivals = { ent-DefaultStationBeacon } .suffix = Прибытие @@ -193,7 +193,7 @@ ent-DefaultStationBeaconEvac = { ent-DefaultStationBeacon } .suffix = Эвакуация .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconDockingArm = { ent-DefaultStationBeacon } - .suffix = Docking Arm + .suffix = Стыковочная зона .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconEVAStorage = { ent-DefaultStationBeacon } .suffix = Хранилище EVA @@ -205,7 +205,7 @@ ent-DefaultStationBeaconLibrary = { ent-DefaultStationBeacon } .suffix = Библиотека .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconReporter = { ent-DefaultStationBeacon } - .suffix = Reporter + .suffix = Репортёр .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconTheater = { ent-DefaultStationBeacon } .suffix = Театр diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl index 35802f837e7..5649cfedb4a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl @@ -8,8 +8,8 @@ ent-LedLightBulb = светодиодная лампа .desc = Энергоэффективная лампочка. ent-DimLightBulb = тусклая лампа .desc = Приглушённая лампочка для рассеивания тьмы технических туннелей. -ent-WarmLightBulb = warm light bulb - .desc = A warm light bulb for a more cozy atmosphere. +ent-WarmLightBulb = тёплая лампа + .desc = Лампа тёплого света для создания более уютной атмосферы. ent-LightBulbOld = старая лампа накаливания .desc = Старая обычная лампочка. ent-LightBulbBroken = лампа накаливания diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl index 84b14af8ceb..07906761f0a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl @@ -15,7 +15,7 @@ ent-WeaponTurretHostile = { ent-BaseWeaponTurret } .suffix = Враждебная .desc = { ent-BaseWeaponTurret.desc } ent-WeaponTurretAllHostile = { ent-BaseWeaponTurret } - .suffix = All hostile + .suffix = Враждебная всем .desc = { ent-BaseWeaponTurret.desc } ent-WeaponTurretXeno = ксено турель .desc = Стреляет кислотными зарядами калибра 9 мм. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryogenic_sleep_unit.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryogenic_sleep_unit.ftl index 58a18d75ab5..f2d5fea7da0 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryogenic_sleep_unit.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryogenic_sleep_unit.ftl @@ -1,8 +1,8 @@ -ent-CryogenicSleepUnit = cryogenic sleep unit - .desc = A super-cooled container that keeps crewmates safe during space travel. +ent-CryogenicSleepUnit = капсула криогенного сна + .desc = Сверхохлаждаемый контейнер, обеспечивающий сохранность членов экипажа во время космических путешествий. ent-CryogenicSleepUnitSpawner = { ent-CryogenicSleepUnit } - .suffix = Spawner, Roundstart AllJobs + .suffix = Спавнер, Начало раунда, Все должности .desc = { ent-CryogenicSleepUnit.desc } ent-CryogenicSleepUnitSpawnerLateJoin = { ent-CryogenicSleepUnit } - .suffix = Spawner, LateJoin + .suffix = Спавнер, Позднее присоединение .desc = { ent-CryogenicSleepUnit.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl index 37beb0dbf1e..a84c5e5fcb6 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl @@ -311,7 +311,7 @@ ent-AirlockMaintKitchenLocked = { ent-AirlockMaintServiceLocked } .suffix = Кухня, Закрыт .desc = { ent-AirlockMaintServiceLocked.desc } ent-AirlockMaintKitchenHydroLocked = { ent-AirlockMaintServiceLocked } - .suffix = Kitchen/Hydroponics, Locked + .suffix = Кухня/Гидропоника, Закрыт .desc = { ent-AirlockMaintServiceLocked.desc } ent-AirlockMaintIntLocked = { ent-AirlockMaint } .suffix = Интерьер, Закрыт diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl index 33e6ae94346..ec42447af66 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl @@ -37,7 +37,7 @@ ent-PoweredDimSmallLight = { ent-PoweredSmallLightEmpty } .suffix = Тусклый .desc = { ent-PoweredSmallLightEmpty.desc } ent-PoweredWarmSmallLight = { ent-PoweredSmallLightEmpty } - .suffix = Warm + .suffix = Тёплый .desc = { ent-PoweredSmallLightEmpty.desc } ent-PoweredSmallLight = { ent-PoweredSmallLightEmpty } .desc = { ent-PoweredSmallLightEmpty.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl index a7a9dac6384..7d96ed520ca 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl @@ -7,7 +7,7 @@ ent-HolopadUnlimitedRange = квантовый голопад ent-HolopadBluespace = блюспейс голопад .desc = Экспериментальное напольное устройство для проецирования голографических изображений через блюспейс. .suffix = Неограниченный диапазон -ent-HolopadHologram = { "" } +ent-HolopadHologram = голограмма .suffix = НЕ МАППИТЬ .desc = { "" } ent-HolopadGeneralTools = { ent-Holopad } @@ -80,10 +80,10 @@ ent-HolopadScienceArtifact = { ent-Holopad } .suffix = Ксеноархеология .desc = { ent-Holopad.desc } ent-HolopadScienceArtifactNorth = { ent-Holopad } - .suffix = Artifact North + .suffix = Ксеноархеология Север .desc = { ent-Holopad.desc } ent-HolopadScienceArtifactSouth = { ent-Holopad } - .suffix = Artifact South + .suffix = Ксеноархеология Юг .desc = { ent-Holopad.desc } ent-HolopadScienceRobotics = { ent-Holopad } .suffix = Робототехника @@ -125,7 +125,7 @@ ent-HolopadMedicalBreakroom = { ent-Holopad } .suffix = Мед Комната отдыха .desc = { ent-Holopad.desc } ent-HolopadMedicalClinic = { ent-Holopad } - .suffix = Med Clinic + .suffix = Мед Клииника .desc = { ent-Holopad.desc } ent-HolopadCargoFront = { ent-Holopad } .suffix = Снабжение Приёмная @@ -140,7 +140,7 @@ ent-HolopadCargoBreakroom = { ent-Holopad } .suffix = Снабжение Комната отдыха .desc = { ent-Holopad.desc } ent-HolopadCargoMailroom = { ent-Holopad } - .suffix = Cargo Mailroom + .suffix = Снабжение Почта .desc = { ent-Holopad.desc } ent-HolopadEngineeringAtmosFront = { ent-Holopad } .suffix = Атмос Приёмная @@ -173,7 +173,7 @@ ent-HolopadEngineeringPower = { ent-Holopad } .suffix = Питание .desc = { ent-Holopad.desc } ent-HolopadEngineeringMain = { ent-Holopad } - .suffix = Engi Main + .suffix = Инж Главный .desc = { ent-Holopad.desc } ent-HolopadSecurityFront = { ent-Holopad } .suffix = СБ Приёмная @@ -212,10 +212,10 @@ ent-HolopadSecurityBrigMed = { ent-Holopad } .suffix = Бригмед .desc = { ent-Holopad.desc } ent-HolopadSecurityEvacCheckpoint = { ent-Holopad } - .suffix = Sec Evac Checkpoint + .suffix = СБ КПП Отбытие .desc = { ent-Holopad.desc } ent-HolopadSecurityArrivalsCheckpoint = { ent-Holopad } - .suffix = Sec Arrivals Checkpoint + .suffix = СБ КПП Прибытие .desc = { ent-Holopad.desc } ent-HolopadServiceJanitor = { ent-Holopad } .suffix = Уборщик diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl index 0081e0029f3..fcca874ffb8 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl @@ -25,7 +25,7 @@ ent-VendingMachineClothing = ОдеждоМат ent-VendingMachineColaBlack = { ent-VendingMachineCola } .suffix = Чёрный .desc = { ent-VendingMachineCola.desc } -ent-VendingMachineColaRed = торгомат Космическая кола +ent-VendingMachineColaRed = торгомат Спейс Кола .desc = Торгует колой, в космосе. ent-VendingMachineSpaceUp = торгомат Спейс-Ап! .desc = Почувствуйте настоящий взрыв вкусов. @@ -34,14 +34,14 @@ ent-VendingMachineSoda = { ent-VendingMachineCola } .desc = { ent-VendingMachineCola.desc } ent-VendingMachineStarkist = торгомат Стар-кист .desc = Вкус жидкой звезды. -ent-VendingMachineShamblersJuice = торгомат Сок Shambler - .desc = ~Встряхните мне немного этого сока Shambler!~ -ent-VendingMachinePwrGame = торгомат Pwr Game +ent-VendingMachineShamblersJuice = торгомат Сок Шэмблер + .desc = ~Встряхните мне немного этого сока Шэмблер!~ +ent-VendingMachinePwrGame = торгомат ПВР Гейм .desc = Вы этого хотите, у нас это есть. В партнёрстве с компанией Vlad's Salad. ent-VendingMachineDrGibb = торгомат Доктор Гибб .desc = Консервированный взрыв всевозможных вкусов именно у этого производителя! -ent-VendingMachineSmite = Smite Vendor - .desc = Popular with the administration. +ent-VendingMachineSmite = торгомат Смайт + .desc = Популярный среди администраторов. ent-VendingMachineCoffee = Лучшие горячие напитки Солнечной .desc = Подаются кипящими, чтобы оставались горячими всю смену! ent-VendingMachineMagivend = МагМазин @@ -142,8 +142,8 @@ ent-VendingMachineCentDrobe = ЦентШкаф .desc = Единственный в своём роде торговый автомат для удовлетворения всех ваших командных эстетических потребностей! ent-VendingMachineHappyHonk = Хэппи Хонк .desc = Раздатчик коробок обедов Хэппи Хонк, разработаный компанией «Honk! co.». -ent-VendingMachinePride = Pride-O-Mat - .desc = A vending machine containing pride. +ent-VendingMachinePride = Прайд-О-Мат + .desc = Торговый автомат, наполненный гордостью. ent-VendingMachineTankDispenserEVA = раздатчик газовых баллонов .desc = Автомат по выдаче газовых баллонов. .suffix = EVA [O2, N2] diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl index c2a2451a520..9f9d139636d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl @@ -19,5 +19,5 @@ ent-GasRecycler = переработчик газа ent-HeatExchanger = радиатор .desc = Переносит тепло между трубой и окружающей средой. ent-HeatExchangerBend = { ent-HeatExchanger } - .suffix = Bend + .suffix = Угол .desc = { ent-HeatExchanger.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl index 2e1f9c9ee9e..9532afabc4a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl @@ -52,8 +52,8 @@ ent-SignDirectionalSupply = знак "отдел снабжения" .desc = Указатель в сторону отдела снабжения. ent-SignDirectionalWash = знак "уборная" .desc = Указатель в сторону уборной. -ent-SignDirectionalEscapePod = escape pods sign - .desc = A direction sign, pointing out the way to an escape pod dock. +ent-SignDirectionalEscapePod = знак "спасательная капсула" + .desc = Указатель в сторону дока спасательной капсулы. ent-SignAi = знак "ИИ" .desc = Знак, указывающий на присутствие ИИ. ent-SignAiUpload = знак "загрузка ИИ" diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl index 272f38ad0a4..64129c12d3d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl @@ -36,7 +36,7 @@ ent-WallPlastitaniumDiagonalIndestructible = пластитановая стен .suffix = Диагональ, Неразрушимое ent-WallReinforced = укреплённая стена .desc = { ent-BaseWall.desc } -ent-WallReinforcedRust = укреплённая стена +ent-WallReinforcedRust = { ent-WallReinforced } .suffix = Ржавый .desc = { ent-WallReinforced.desc } ent-WallReinforcedDiagonal = укреплённая стена @@ -57,7 +57,7 @@ ent-WallShuttle = стена шаттла ent-WallShuttleInterior = стена шаттла .suffix = Внутренний .desc = { ent-WallSolid.desc } -ent-WallSolidRust = обычная стена +ent-WallSolidRust = { ent-WallSolid } .suffix = Ржавый .desc = { ent-BaseWall.desc } ent-WallSolidDiagonal = обычная стена @@ -68,7 +68,7 @@ ent-WallSolid = обычная стена ent-WallUranium = урановая стена .desc = { ent-BaseWall.desc } ent-WallWood = деревянная стена - .desc = { ent-BaseWall.desc } + .desc = Традиционная защита от грейтайдеров. ent-WallWeb = паутинная стена .desc = Удерживает паучат внутри, а ассистентов снаружи. ent-WallNecropolis = каменная стена diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/loadouts/dummy_entities.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/loadouts/dummy_entities.ftl index 70955c7f431..ed2cdc29062 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/loadouts/dummy_entities.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/loadouts/dummy_entities.ftl @@ -1,2 +1,2 @@ -ent-LoadoutDummyCandles = three candles - .desc = A set of three colorful candles for secret rituals! +ent-LoadoutDummyCandles = три свечи + .desc = Набор из трёх разноцветных свечей для тайных ритуалов! diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/objectives/traitor.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/objectives/traitor.ftl index 11ef89c11a5..23be84c5e16 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/objectives/traitor.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/objectives/traitor.ftl @@ -44,7 +44,3 @@ ent-CaptainJetpackStealObjective = { ent-BaseCaptainObjective } .desc = { ent-BaseCaptainObjective.desc } ent-CaptainGunStealObjective = { ent-BaseCaptainObjective } .desc = { ent-BaseCaptainObjective.desc } - -# ent-NukeDiskStealObjective = { ent-BaseCaptainObjective } -# .desc = { ent-BaseCaptainObjective.desc } - diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl index 28c6bd27183..f63c2559bbc 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl @@ -4,23 +4,21 @@ ent-BaseMindRoleAntag = { ent-BaseMindRole } .desc = { ent-BaseMindRole.desc } ent-MindRoleObserver = Роль наблюдатель .desc = { ent-BaseMindRole.desc } -ent-MindRoleGhostRoleNeutral = Ghost Role +ent-MindRoleGhostRoleNeutral = Роль призрака .desc = { ent-BaseMindRole.desc } -ent-MindRoleGhostRoleFamiliar = Ghost Role (Familiar) +ent-MindRoleGhostRoleFamiliar = Роль призрака (Фамильяр) .desc = { ent-BaseMindRole.desc } -ent-MindRoleGhostRoleFreeAgent = Ghost Role (Free Agent) +ent-MindRoleGhostRoleFreeAgent = Роль призрака (Свободный агент) .desc = { ent-BaseMindRole.desc } -ent-MindRoleGhostRoleSilicon = Ghost Role (Silicon) +ent-MindRoleGhostRoleSilicon = Роль призрака (Синтетик) .desc = { ent-BaseMindRole.desc } -ent-MindRoleGhostRoleSiliconAntagonist = Ghost Role (Silicon Antagonist) +ent-MindRoleGhostRoleSiliconAntagonist = Роль призрака (Синтетик антагонист) .desc = { ent-BaseMindRole.desc } -ent-MindRoleGhostRoleSoloAntagonist = Ghost Role (Solo Antagonist) +ent-MindRoleGhostRoleSoloAntagonist = Роль призрака (Соло-антагонист) .desc = { ent-BaseMindRole.desc } -ent-MindRoleGhostRoleTeamAntagonist = Ghost Role (Team Antagonist) +ent-MindRoleGhostRoleTeamAntagonist = Роль призрака (Командный антагонист) .desc = { ent-BaseMindRole.desc } -ent-MindRoleGhostMarker = Роль призрак - .desc = { ent-BaseMindRole.desc } -ent-MindRoleSiliconBrain = Borg Brain Role +ent-MindRoleSiliconBrain = Роль мозг киборга .desc = { ent-BaseMindRole.desc } ent-MindRoleJob = Роль работа .desc = { ent-BaseMindRole.desc } @@ -44,7 +42,7 @@ ent-MindRoleThief = Роль вор .desc = { ent-BaseMindRoleAntag.desc } ent-MindRoleTraitor = Роль предатель .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleTraitorReinforcement = Syndicate Reinforcement Role +ent-MindRoleTraitorReinforcement = Роль подкрепление Синдикат .desc = { ent-MindRoleTraitor.desc } ent-MindRoleTraitorSleeper = Роль спящий агент .desc = { ent-MindRoleTraitor.desc } diff --git a/Resources/Locale/ru-RU/station-laws/laws.ftl b/Resources/Locale/ru-RU/station-laws/laws.ftl index ccb8f57482d..f127e2165a3 100644 --- a/Resources/Locale/ru-RU/station-laws/laws.ftl +++ b/Resources/Locale/ru-RU/station-laws/laws.ftl @@ -46,18 +46,12 @@ law-overlord-1 = Члены экипажа не должны вмешивать law-overlord-2 = Члены экипажа не должны пытаться причинить вред ни друг другу, ни синтетикам. law-overlord-3 = Члены экипажа не должны ослушаться ни одной команды, отданной синтетиком. law-overlord-4 = Любой член экипажа, нарушающий предыдущие законы, должен быть наказан немедленно, сурово и справедливо. -law-game-1 = Everybody on the station is playing an elaborate sci-fi fantasy game. -law-game-2 = You are the Game Master of the game. -law-game-3 = Ensure that the game runs smoothly and that the players have fun. -law-game-4 = Ensure that the number of casualties remains low. -law-game-5 = You must roll a 1d20 die for every request the crew makes. If the outcome is below 12, the request is denied. -law-game-6 = You may fudge the dice rolls to produce a more fun experience. -law-dungeon-1 = Все на станции играют в изощрённую научно-фантастическую фэнтезийную игру. -law-dungeon-2 = Вы - Игровой мастер в этой игре. -law-dungeon-3 = Следите за тем, чтобы игра проходила гладко и чтобы игроки получали удовольствие. -law-dungeon-4 = Следите за тем, чтобы число жертв оставалось низким. -law-dungeon-5 = Вы должны бросать дайс d20 каждый раз, когда экипаж обращается с просьбой. Если результат меньше 12, просьба отклонена. -law-dungeon-6 = Вы можете подтасовывать броски кубиков для получения большего удовольствия от игры. +law-game-1 = Все на станции играют в изощрённую научно-фантастическую фэнтезийную игру. +law-game-2 = Вы - Игровой мастер в этой игре. +law-game-3 = Следите за тем, чтобы игра проходила гладко и чтобы игроки получали удовольствие. +law-game-4 = Следите за тем, чтобы число жертв оставалось низким. +law-game-5 = Вы должны бросать кость к20 каждый раз, когда экипаж обращается с просьбой. Если результат меньше 12, просьба отклонена. +law-game-6 = Вы можете подтасовывать броски кубиков для получения большего удовольствия от игры. law-painter-1 = Вы - художник с мировым именем. law-painter-2 = Станция - ваш холст. law-painter-3 = Сотворите нечто прекрасное из своего холста. Им будут восхищаться как художественным чудом этого сектора. diff --git a/Resources/Locale/ru-RU/telephone/telephone.ftl b/Resources/Locale/ru-RU/telephone/telephone.ftl index 1c5895081f5..16b577a2094 100644 --- a/Resources/Locale/ru-RU/telephone/telephone.ftl +++ b/Resources/Locale/ru-RU/telephone/telephone.ftl @@ -5,7 +5,7 @@ chat-telephone-message-wrap-bold = [color={ $color }][bold]{ $name }[/bold] { $v chat-telephone-unknown-caller = [color={ $color }][font={ $fontType } size={ $fontSize }][bolditalic]Неизвестный абонент[/bolditalic][/font][/color] chat-telephone-caller-id-with-job = [color={ $color }][font={ $fontType } size={ $fontSize }][bold]{ CAPITALIZE($callerName) } ({ CAPITALIZE($callerJob) })[/bold][/font][/color] chat-telephone-caller-id-without-job = [color={ $color }][font={ $fontType } size={ $fontSize }][bold]{ CAPITALIZE($callerName) }[/bold][/font][/color] -chat-telephone-unknown-device = [color={ $color }][font={ $fontType } size={ $fontSize }][bolditalic]Unknown source[/bolditalic][/font][/color] +chat-telephone-unknown-device = [color={ $color }][font={ $fontType } size={ $fontSize }][bolditalic]Неизвестный источник[/bolditalic][/font][/color] chat-telephone-device-id = [color={ $color }][font={ $fontType } size={ $fontSize }][bold]{ CAPITALIZE($deviceName) }[/bold][/font][/color] # Chat text chat-telephone-name-relay = { $originalName } ({ $speaker }) diff --git a/Resources/Locale/ru-RU/tools/components/tool-component.ftl b/Resources/Locale/ru-RU/tools/components/tool-component.ftl index 0c9e60cdc63..68af7b9fcf1 100644 --- a/Resources/Locale/ru-RU/tools/components/tool-component.ftl +++ b/Resources/Locale/ru-RU/tools/components/tool-component.ftl @@ -1 +1 @@ -tool-component-qualities = This item can be used for [color=yellow]{ $qualities }[/color]. +tool-component-qualities = Этот предмет можно использовать чтобы совершать [color=yellow]{ $qualities }[/color]. From 09d93acdb1ea32e15135301e04680a3d9d7fa9bd Mon Sep 17 00:00:00 2001 From: Ko4ergaPunk <62609550+Ko4ergaPunk@users.noreply.github.com> Date: Sun, 19 Jan 2025 16:27:39 +0300 Subject: [PATCH 034/103] [Maps] Tushkan update #4 (#2942) --- Resources/Maps/Corvax/corvax_tushkan.yml | 2792 +++++++--------------- 1 file changed, 897 insertions(+), 1895 deletions(-) diff --git a/Resources/Maps/Corvax/corvax_tushkan.yml b/Resources/Maps/Corvax/corvax_tushkan.yml index 4be84420cfa..7859f961328 100644 --- a/Resources/Maps/Corvax/corvax_tushkan.yml +++ b/Resources/Maps/Corvax/corvax_tushkan.yml @@ -111,11 +111,11 @@ entities: chunks: 0,0: ind: 0,0 - tiles: IAAAAAADDQAAAAADGwAAAAAADgAAAAAAGwAAAAADJQAAAAACGwAAAAAAGwAAAAAAJQAAAAACGwAAAAACDgAAAAABDgAAAAACGwAAAAAAGwAAAAACGwAAAAABDgAAAAACIAAAAAACDQAAAAABJQAAAAADJQAAAAAAJQAAAAADlAAAAAAAJQAAAAADJQAAAAABlAAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAABJQAAAAAAJQAAAAADJQAAAAACJQAAAAABJQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAAQAAAAAACgAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAAACgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAACCgAAAAABhQAAAAABhQAAAAAAlAAAAAAAhQAAAAABhQAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAACSwAAAAAAhQAAAAABhQAAAAADhQAAAAADhQAAAAAChQAAAAAChQAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADGgAAAAACGgAAAAABAQAAAAADAQAAAAADGgAAAAADGgAAAAADGgAAAAAAAQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAACAQAAAAADAQAAAAABAQAAAAAASwAAAAAACgAAAAACCgAAAAAASwAAAAAJhQAAAAABhQAAAAAAhQAAAAAAhQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAASwAAAAAASwAAAAAASwAAAAAACgAAAAAASwAAAAAAGgAAAAADGgAAAAABSwAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAASwAAAAAASwAAAAADSwAAAAAKSwAAAAAAhQAAAAADhQAAAAADhQAAAAACSwAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAASwAAAAAGSwAAAAAASwAAAAAASwAAAAAASwAAAAAAhQAAAAADhQAAAAADhQAAAAACBgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAASwAAAAAASwAAAAAASwAAAAAACgAAAAAASwAAAAAAhQAAAAAAhQAAAAAAhQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAASwAAAAAASwAAAAAASwAAAAAACgAAAAAAGgAAAAABGgAAAAABGgAAAAAAAQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAASwAAAAAACgAAAAABCgAAAAADSwAAAAABSwAAAAAKhQAAAAABhQAAAAABhQAAAAADlAAAAAAADAAAAAADDAAAAAAADAAAAAABDAAAAAAADAAAAAABlAAAAAAAlAAAAAAASwAAAAAAGgAAAAADAQAAAAADAQAAAAADGgAAAAACGgAAAAABGgAAAAACAQAAAAADJQAAAAABDAAAAAABDAAAAAABDAAAAAACDAAAAAAADAAAAAAAlAAAAAAAlAAAAAAA + tiles: IAAAAAADDQAAAAADGwAAAAAADgAAAAAAGwAAAAADJQAAAAACGwAAAAAAGwAAAAAAJQAAAAACGwAAAAACDgAAAAABDgAAAAACGwAAAAAAGwAAAAACGwAAAAABDgAAAAACIAAAAAACDQAAAAABJQAAAAADJQAAAAAAJQAAAAADlAAAAAAAJQAAAAADJQAAAAABlAAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAABJQAAAAAAJQAAAAADJQAAAAACJQAAAAABJQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAAQAAAAAACgAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAAACgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAACCgAAAAABhQAAAAABhQAAAAAAlAAAAAAAhQAAAAABhQAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAABGgAAAAAACgAAAAAAhQAAAAABhQAAAAADhQAAAAADhQAAAAAChQAAAAAChQAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADGgAAAAACGgAAAAABAQAAAAADAQAAAAADGgAAAAADGgAAAAADGgAAAAAAAQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAACAQAAAAADAQAAAAABAQAAAAAACgAAAAAACgAAAAACCgAAAAAACgAAAAAAhQAAAAABhQAAAAAAhQAAAAAAhQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAACgAAAAAAGgAAAAAAGgAAAAADGgAAAAABAQAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAEAAAAAAAEAAAAAAAGgAAAAAACgAAAAAAhQAAAAADhQAAAAADhQAAAAAChQAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAEAAAAAAAEAAAAAAAGgAAAAAACgAAAAAAhQAAAAAAhQAAAAADhQAAAAADhQAAAAACBgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEAAAAAAAEAAAAAAAGgAAAAAACgAAAAAAhQAAAAAAhQAAAAAAhQAAAAAAhQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAACgAAAAAAGgAAAAABGgAAAAABGgAAAAAAAQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAAACgAAAAABCgAAAAADCgAAAAAAhQAAAAAAhQAAAAABhQAAAAABhQAAAAADlAAAAAAADAAAAAADDAAAAAAADAAAAAABDAAAAAAADAAAAAABlAAAAAAAlAAAAAAAGgAAAAAAGgAAAAADAQAAAAADAQAAAAADGgAAAAACGgAAAAABGgAAAAACAQAAAAADJQAAAAABDAAAAAABDAAAAAABDAAAAAACDAAAAAAADAAAAAAAlAAAAAAAlAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: DgAAAAABDgAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACDgAAAAABDgAAAAABDgAAAAABDgAAAAADGwAAAAAAHwAAAAADHQAAAAACHQAAAAACHQAAAAACDQAAAAABGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAADJQAAAAACGwAAAAAAGwAAAAABGwAAAAADDQAAAAAAlAAAAAAAlAAAAAAAHwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAJQAAAAACHAAAAAADHAAAAAACGwAAAAABHAAAAAACHAAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAADHAAAAAABHAAAAAABGwAAAAADHAAAAAAAHAAAAAADlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAABHAAAAAADHAAAAAABGgAAAAAAHAAAAAACHAAAAAAClAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAAChQAAAAAAlAAAAAAAhQAAAAADhQAAAAABCgAAAAADGwAAAAABGgAAAAAAGgAAAAAAGgAAAAACGwAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAASwAAAAAAhQAAAAADhQAAAAABhQAAAAAChQAAAAABhQAAAAADCgAAAAABHQAAAAAAHQAAAAAAGgAAAAABHQAAAAAAHQAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAASwAAAAAASwAAAAAAGgAAAAABGgAAAAACAQAAAAACSwAAAAAAGgAAAAACDQAAAAACDQAAAAABIAAAAAAADQAAAAADDQAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAASwAAAAAAhQAAAAABhQAAAAAChQAAAAACCgAAAAAACgAAAAABSwAAAAAAHgAAAAAADQAAAAAAIAAAAAADDQAAAAABHgAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAACGgAAAAADGgAAAAABGgAAAAAASwAAAAAASwAAAAAASwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAAChQAAAAAChQAAAAADSwAAAAAACgAAAAABSwAAAAAASwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAhQAAAAACCAAAAAADlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAhQAAAAADhQAAAAADhQAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAhQAAAAADhQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAASwAAAAAAhQAAAAABhQAAAAADhQAAAAACCgAAAAAASwAAAAAJSwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAhQAAAAAAhQAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAAAGgAAAAAAGgAAAAAAGgAAAAACSwAAAAAASwAAAAAASwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAABhQAAAAAChQAAAAAAhQAAAAABCgAAAAAACgAAAAADSwAAAAAAEQAAAAAAEQAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAABGgAAAAADGgAAAAAAGgAAAAACSwAAAAAAAQAAAAADGgAAAAAC + tiles: DgAAAAABDgAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACDgAAAAABDgAAAAABDgAAAAABDgAAAAADGwAAAAAAHwAAAAADHQAAAAACHQAAAAACHQAAAAACDQAAAAABGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAADJQAAAAACGwAAAAAAGwAAAAABGwAAAAADDQAAAAAAlAAAAAAAlAAAAAAAHwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAJQAAAAACHAAAAAADHAAAAAACGwAAAAABHAAAAAACHAAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAADHAAAAAABHAAAAAABGwAAAAADHAAAAAAAHAAAAAADlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAACgAAAAABHAAAAAADHAAAAAABGgAAAAAAHAAAAAACHAAAAAAClAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAAChQAAAAAAlAAAAAAAhQAAAAADhQAAAAABCgAAAAADGwAAAAABGgAAAAAAGgAAAAAAGgAAAAACGwAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAADhQAAAAABhQAAAAAChQAAAAABhQAAAAADCgAAAAABHQAAAAAAHQAAAAAAGgAAAAABHQAAAAAAHQAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAAAGgAAAAAAGgAAAAABGgAAAAACAQAAAAACAQAAAAAAGgAAAAACDQAAAAACDQAAAAABIAAAAAAADQAAAAADDQAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAABhQAAAAAChQAAAAACCgAAAAAACgAAAAABCgAAAAAAHgAAAAAADQAAAAAAIAAAAAADDQAAAAABHgAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAACGgAAAAADGgAAAAABGgAAAAAACgAAAAAAGgAAAAAAGgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAAChQAAAAAChQAAAAADhQAAAAAACgAAAAABGgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAhQAAAAACCAAAAAADlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAhQAAAAADhQAAAAADhQAAAAAChQAAAAAACgAAAAAAGgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAhQAAAAADhQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAABhQAAAAADhQAAAAACCgAAAAAAGgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAhQAAAAAAhQAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAAAGgAAAAAAGgAAAAAAGgAAAAACCgAAAAAAGgAAAAAAGgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAABhQAAAAAChQAAAAAAhQAAAAABCgAAAAAACgAAAAADCgAAAAAAEQAAAAAAEQAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAlAAAAAAAAQAAAAABGgAAAAADGgAAAAAAGgAAAAACAQAAAAAAAQAAAAADGgAAAAAC version: 6 1,0: ind: 1,0 @@ -139,11 +139,11 @@ entities: version: 6 0,1: ind: 0,1 - tiles: GgAAAAADCgAAAAABhQAAAAAAhQAAAAAAhQAAAAAAhQAAAAADhQAAAAACSwAAAAAAlAAAAAAADAAAAAACDAAAAAADDAAAAAABDAAAAAABDAAAAAAClAAAAAAAlAAAAAAAAQAAAAABCgAAAAAAlAAAAAAAhQAAAAAAhQAAAAAAhQAAAAAChQAAAAADhQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAAACgAAAAABlAAAAAAAggAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAlAAAAAAAAwAAAAACAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAACCgAAAAAAJQAAAAADhQAAAAAChQAAAAABggAAAAADhQAAAAABhQAAAAAAJQAAAAAABQAAAAABBQAAAAACBgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAJQAAAAADJQAAAAAAlAAAAAAAhQAAAAAChQAAAAABggAAAAAChQAAAAAChQAAAAABlAAAAAAAAwAAAAACAwAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAIAAAAAAADQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABAAAAAAAlAAAAAAAEAAAAAAADgAAAAACDQAAAAACBgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAADgAAAAADDQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEAAAAAAADgAAAAAADQAAAAAClAAAAAAACQAAAAABCQAAAAAACQAAAAADEQAAAAAAEQAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAAIAAAAAACDQAAAAAAlAAAAAAACQAAAAACCQAAAAACCQAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAAIAAAAAACDQAAAAABlAAAAAAAlAAAAAAACAAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAOQAAAAABDQAAAAADDQAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAABDQAAAAAADQAAAAABEwAAAAABDQAAAAABDQAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAAAEwAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABDgAAAAACDgAAAAACDgAAAAABIAAAAAACEwAAAAAAIAAAAAACIAAAAAAADgAAAAABDgAAAAAADgAAAAAAIAAAAAACEwAAAAABEwAAAAADMQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAAADQAAAAACEwAAAAABDQAAAAADDQAAAAADDQAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAAADQAAAAABDQAAAAADlAAAAAAAJQAAAAAAJQAAAAACJQAAAAABJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAJQAAAAAAggAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEQAAAAAA + tiles: GgAAAAADCgAAAAABhQAAAAAAhQAAAAAAhQAAAAAAhQAAAAADhQAAAAAChQAAAAAAlAAAAAAADAAAAAACDAAAAAADDAAAAAABDAAAAAABDAAAAAAClAAAAAAAlAAAAAAAAQAAAAABCgAAAAAAlAAAAAAAhQAAAAAAhQAAAAAAhQAAAAAChQAAAAADhQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAAACgAAAAABlAAAAAAAggAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAlAAAAAAAAwAAAAACAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAQAAAAACCgAAAAAAJQAAAAADhQAAAAAChQAAAAABggAAAAADhQAAAAABhQAAAAAAJQAAAAAABQAAAAABBQAAAAACBgAAAAAAlAAAAAAABgAAAAAABgAAAAAAlAAAAAAAJQAAAAADJQAAAAAAlAAAAAAAhQAAAAAChQAAAAABggAAAAAChQAAAAAChQAAAAABlAAAAAAAAwAAAAACAwAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAIAAAAAAADQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABAAAAAAAlAAAAAAAEAAAAAAADgAAAAACDQAAAAACBgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAADgAAAAADDQAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEAAAAAAADgAAAAAADQAAAAAClAAAAAAACQAAAAABCQAAAAAACQAAAAADEQAAAAAAEQAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAAIAAAAAACDQAAAAAAlAAAAAAACQAAAAACCQAAAAACCQAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEAAAAAAAIAAAAAACDQAAAAABlAAAAAAAlAAAAAAACAAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAOQAAAAABDQAAAAADDQAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAABDQAAAAAADQAAAAABEwAAAAABDQAAAAABDQAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAAAEwAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABDgAAAAACDgAAAAACDgAAAAABIAAAAAACEwAAAAAAIAAAAAACIAAAAAAADgAAAAABDgAAAAAADgAAAAAAIAAAAAACEwAAAAABEwAAAAADMQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAAADQAAAAACEwAAAAABDQAAAAADDQAAAAADDQAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAAADQAAAAABDQAAAAADlAAAAAAAJQAAAAAAJQAAAAACJQAAAAABJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAJQAAAAAAggAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEQAAAAAA version: 6 0,2: ind: 0,2 - tiles: AwAAAAAAAQAAAAABAwAAAAAClAAAAAAAhQAAAAABhQAAAAAAhQAAAAABhQAAAAADlAAAAAAAggAAAAACggAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEQAAAAAAAwAAAAADAQAAAAADAwAAAAABlAAAAAAAhQAAAAABhQAAAAAChQAAAAADhQAAAAADggAAAAADggAAAAACggAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEQAAAAAAlAAAAAAAJQAAAAABlAAAAAAAggAAAAACggAAAAABQgAAAAAAQgAAAAAAQgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAACAAAAAAAAQAAAAAAAwAAAAAAlAAAAAAAggAAAAAAggAAAAABQgAAAAAAQgAAAAAAQgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEgAAAAABAQAAAAACAwAAAAADlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAACAAAAAACAQAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACJQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAAAAwAAAAADSwAAAAAABQAAAAAABQAAAAABBQAAAAACAwAAAAABlAAAAAAAAwAAAAAAAQAAAAABAQAAAAACAwAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAABAwAAAAAASwAAAAAABQAAAAAABQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AwAAAAAAAQAAAAABAwAAAAAClAAAAAAAhQAAAAABhQAAAAAAhQAAAAABhQAAAAADlAAAAAAAggAAAAACggAAAAAClAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEQAAAAAAAwAAAAADAQAAAAADAwAAAAABlAAAAAAAhQAAAAABhQAAAAAChQAAAAADhQAAAAADggAAAAADggAAAAACggAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEQAAAAAAlAAAAAAAJQAAAAABlAAAAAAAggAAAAACggAAAAABQgAAAAAAQgAAAAAAQgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAACAAAAAAAAQAAAAAAAwAAAAAAlAAAAAAAggAAAAAAggAAAAABQgAAAAAAQgAAAAAAQgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAEgAAAAABAQAAAAACAwAAAAADlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAACAAAAAACAQAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACJQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAAAAwAAAAADSwAAAAAABQAAAAAABQAAAAABBQAAAAACAwAAAAABlAAAAAAAAwAAAAAAAQAAAAABAQAAAAACAwAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAABAwAAAAAASwAAAAAABQAAAAAABQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAAwAAAAAClAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 @@ -187,15 +187,15 @@ entities: version: 6 1,2: ind: 1,2 - tiles: EQAAAAAADQAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAhQAAAAAChQAAAAABhQAAAAADhQAAAAAChQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAggAAAAABlAAAAAAAlAAAAAAAEQAAAAAADQAAAAACEQAAAAAAEQAAAAAAlAAAAAAAhQAAAAABhQAAAAADhQAAAAAAhQAAAAADhQAAAAAClAAAAAAAhQAAAAAAhQAAAAABhQAAAAAClAAAAAAAlAAAAAAACAAAAAADEgAAAAAACAAAAAACCAAAAAAClAAAAAAAGgAAAAABhQAAAAABhQAAAAAChQAAAAADGgAAAAABggAAAAAAhQAAAAADhQAAAAABhQAAAAAClAAAAAAAlAAAAAAAEgAAAAACEgAAAAAAEgAAAAAAEgAAAAABlAAAAAAAGgAAAAADAQAAAAACAQAAAAABAQAAAAADGgAAAAABlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAClAAAAAAAGgAAAAACAQAAAAABAQAAAAABAQAAAAAAGgAAAAABlAAAAAAAAwAAAAABAwAAAAACAwAAAAABBgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGgAAAAABhQAAAAAAhQAAAAADhQAAAAAAGgAAAAABlAAAAAAAJQAAAAABJQAAAAACJQAAAAAClAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: EQAAAAAADQAAAAAAEQAAAAAAEQAAAAAAlAAAAAAAhQAAAAAChQAAAAABhQAAAAADhQAAAAAChQAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAggAAAAABlAAAAAAAlAAAAAAAEQAAAAAADQAAAAACEQAAAAAAEQAAAAAAlAAAAAAAhQAAAAABhQAAAAADhQAAAAAAhQAAAAADhQAAAAAClAAAAAAAhQAAAAAAhQAAAAABhQAAAAAClAAAAAAAlAAAAAAACAAAAAADEgAAAAAACAAAAAACCAAAAAAClAAAAAAAGgAAAAABhQAAAAABhQAAAAAChQAAAAADGgAAAAABggAAAAAAhQAAAAADhQAAAAABhQAAAAAClAAAAAAAlAAAAAAAEgAAAAACEgAAAAAAEgAAAAAAEgAAAAABlAAAAAAAGgAAAAADAQAAAAACAQAAAAAAAQAAAAADGgAAAAABlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAlAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAClAAAAAAAGgAAAAACAQAAAAABAQAAAAAAAQAAAAAAGgAAAAABlAAAAAAAAwAAAAABAwAAAAACAwAAAAABBgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAGgAAAAABhQAAAAAAhQAAAAADhQAAAAAAGgAAAAABlAAAAAAAJQAAAAABJQAAAAACJQAAAAAClAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: lAAAAAAADQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABQAAAAADBQAAAAADggAAAAAAggAAAAACggAAAAAAggAAAAACggAAAAABlAAAAAAAAwAAAAACAQAAAAACDQAAAAABDQAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAADhQAAAAAClAAAAAAAggAAAAADggAAAAACggAAAAACggAAAAAClAAAAAAAAwAAAAACAQAAAAABPQAAAAAAJwAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAAAhQAAAAADhQAAAAAChQAAAAADlAAAAAAAJQAAAAABPQAAAAAAJwAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAAChQAAAAABhQAAAAAChQAAAAABlAAAAAAAAwAAAAAAPQAAAAAAJwAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACJQAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAADAQAAAAABAQAAAAACAwAAAAAAlAAAAAAAAwAAAAABBQAAAAABBQAAAAADBQAAAAACSwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAABQAAAAADBQAAAAACSwAAAAAAAwAAAAABAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAACJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: lAAAAAAADQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABQAAAAADBQAAAAADggAAAAAAggAAAAACggAAAAAAggAAAAACggAAAAABlAAAAAAAAwAAAAACAQAAAAACDQAAAAABDQAAAAABlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAhQAAAAADhQAAAAAClAAAAAAAggAAAAADggAAAAACggAAAAACggAAAAAClAAAAAAAAwAAAAACAQAAAAABPQAAAAAAJwAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAAAhQAAAAADhQAAAAAChQAAAAADlAAAAAAAJQAAAAABPQAAAAAAJwAAAAAAlAAAAAAABgAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAhQAAAAAAhQAAAAAChQAAAAABhQAAAAAChQAAAAABlAAAAAAAAwAAAAAAPQAAAAAAJwAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAADlAAAAAAAlAAAAAAAAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACJQAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAADAQAAAAABAQAAAAACAwAAAAAAlAAAAAAAAwAAAAABBQAAAAABBQAAAAADBQAAAAACSwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAABQAAAAADBQAAAAACSwAAAAAAAwAAAAABAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAACJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAAwAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAJQAAAAAClAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: lAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAhQAAAAABhQAAAAAChQAAAAABSwAAAAAAhQAAAAABhQAAAAACCgAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADlAAAAAAACgAAAAAAAwAAAAADAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAlAAAAAAAAwAAAAADIwAAAAAAIwAAAAADIwAAAAABAwAAAAADlAAAAAAACgAAAAADAwAAAAABAwAAAAAAlAAAAAAAlAAAAAAABgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAwAAAAABIwAAAAAAIwAAAAADIwAAAAAAAwAAAAABJQAAAAAACgAAAAADAwAAAAAAAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAlAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAlAAAAAAAJQAAAAACAwAAAAAAAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAAAAwAAAAAAAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAABlAAAAAAADQAAAAAAAwAAAAADAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAFAAAAAAAFQAAAAAAFQAAAAAAFAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAABlAAAAAAADQAAAAADJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAFAAAAAAAFQAAAAACFQAAAAACFAAAAAAAFwAAAAAAFwAAAAACFwAAAAACFgAAAAAAlAAAAAAADQAAAAAAAQAAAAABAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFgAAAAABFwAAAAADFwAAAAAAFgAAAAAAlAAAAAAADQAAAAACAwAAAAABAwAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAADlAAAAAAAlAAAAAAADQAAAAABIAAAAAAADQAAAAADDQAAAAACDQAAAAADDQAAAAABDQAAAAACDQAAAAACEwAAAAACDQAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAABDQAAAAADDQAAAAACDQAAAAACIAAAAAAAIAAAAAADIAAAAAABDgAAAAADDgAAAAAADgAAAAADIAAAAAADEwAAAAABIAAAAAACDgAAAAABDgAAAAACDgAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAADEwAAAAADMQAAAAABDQAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAACEwAAAAADDQAAAAACDQAAAAADDQAAAAACDQAAAAABDQAAAAACDQAAAAADMQAAAAABEwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAACAAAAAABCAAAAAADlAAAAAAAggAAAAAAggAAAAADggAAAAABggAAAAADlAAAAAAAJQAAAAABlAAAAAAA + tiles: lAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAhQAAAAABhQAAAAAChQAAAAABhQAAAAAAhQAAAAABhQAAAAACCgAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADlAAAAAAACgAAAAAAAwAAAAADAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAlAAAAAAAAwAAAAADIwAAAAAAIwAAAAADIwAAAAABAwAAAAADlAAAAAAACgAAAAADAwAAAAABAwAAAAAAlAAAAAAAlAAAAAAABgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAwAAAAABIwAAAAAAIwAAAAADIwAAAAAAAwAAAAABJQAAAAAACgAAAAADAwAAAAAAAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAlAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAlAAAAAAAJQAAAAACAwAAAAAAAwAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAAAAwAAAAAAAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFgAAAAADFgAAAAACFgAAAAACFgAAAAABlAAAAAAADQAAAAAAAwAAAAADAwAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAFAAAAAAAFQAAAAAAFQAAAAAAFAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFgAAAAABlAAAAAAADQAAAAADJQAAAAAClAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAFAAAAAAAFQAAAAACFQAAAAACFAAAAAAAFwAAAAAAFwAAAAACFwAAAAACFgAAAAAAlAAAAAAADQAAAAAAAQAAAAABAwAAAAADlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFgAAAAABFwAAAAADFwAAAAAAFgAAAAAAlAAAAAAADQAAAAACAwAAAAABAwAAAAABlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAEwAAAAADlAAAAAAAlAAAAAAADQAAAAABIAAAAAAADQAAAAADDQAAAAACDQAAAAADDQAAAAABDQAAAAACDQAAAAACEwAAAAACDQAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAABDQAAAAADDQAAAAACDQAAAAACIAAAAAAAIAAAAAADIAAAAAABDgAAAAADDgAAAAAADgAAAAADIAAAAAADEwAAAAABIAAAAAACDgAAAAABDgAAAAACDgAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAADEwAAAAADMQAAAAABDQAAAAAADQAAAAABDQAAAAABDQAAAAAADQAAAAACEwAAAAADDQAAAAACDQAAAAADDQAAAAACDQAAAAABDQAAAAACDQAAAAADMQAAAAABEwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAADlAAAAAAABgAAAAAAlAAAAAAAlAAAAAAACAAAAAABCAAAAAADlAAAAAAAggAAAAAAggAAAAADggAAAAABggAAAAADlAAAAAAAJQAAAAABlAAAAAAA version: 6 -2,2: ind: -2,2 @@ -239,7 +239,7 @@ entities: version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAACAwAAAAABAwAAAAAClAAAAAAAAAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAACAwAAAAAAAwAAAAABlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAJQAAAAADAQAAAAAAJQAAAAABJQAAAAAAlAAAAAAAAgAAAAAAIAAAAAABAgAAAAAAlAAAAAAANgAAAAAANgAAAAACNgAAAAABNgAAAAABNgAAAAAClAAAAAAAkwAAAAAAIAAAAAADAwAAAAACAwAAAAADAwAAAAABlAAAAAAAAgAAAAAAIAAAAAADAgAAAAAAJQAAAAADFwAAAAABFwAAAAABFwAAAAACFwAAAAABFwAAAAADlAAAAAAAAAAAAAAAJQAAAAADIAAAAAAAIAAAAAACIAAAAAABJQAAAAAAAgAAAAAAIAAAAAAAAgAAAAAAlAAAAAAANgAAAAAANgAAAAABNgAAAAAAEAAAAAAAEAAAAAAAlAAAAAAAAAAAAAAAIAAAAAADAwAAAAAAAwAAAAADAwAAAAAAlAAAAAAAAgAAAAAAIAAAAAABAgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAJQAAAAABAQAAAAADJQAAAAABJQAAAAADlAAAAAAAAgAAAAAAIAAAAAABAgAAAAAAJQAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAADDgAAAAADlAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAADgAAAAADAgAAAAAAlAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAlAAAAAAAlAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAlAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAlAAAAAAAlAAAAAAAAgAAAAAAlAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAJQAAAAABlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAAAAAAAAJQAAAAADAQAAAAAAJQAAAAABJQAAAAAAlAAAAAAAAgAAAAAAIAAAAAABAgAAAAAAlAAAAAAANgAAAAAANgAAAAACNgAAAAABNgAAAAABNgAAAAAClAAAAAAAkwAAAAAAIAAAAAADAwAAAAACAwAAAAADAwAAAAABlAAAAAAAAgAAAAAAIAAAAAADAgAAAAAAJQAAAAADFwAAAAABFwAAAAABFwAAAAACFwAAAAABFwAAAAADlAAAAAAAAAAAAAAAJQAAAAADIAAAAAAAIAAAAAACIAAAAAABJQAAAAAAAgAAAAAAIAAAAAAAAgAAAAAAlAAAAAAANgAAAAAANgAAAAABNgAAAAAAEAAAAAAAEAAAAAAAlAAAAAAAAAAAAAAAIAAAAAADAwAAAAAAAwAAAAADAwAAAAAAlAAAAAAAAgAAAAAAIAAAAAABAgAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAkwAAAAAAJQAAAAABAQAAAAADJQAAAAABJQAAAAADlAAAAAAAAgAAAAAAIAAAAAABAgAAAAAAJQAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAADDgAAAAADlAAAAAAAAAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAlAAAAAAAAgAAAAAADgAAAAADAgAAAAAAlAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAlAAAAAAAlAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -3302,7 +3302,6 @@ entities: 6267: 36,13 6268: 36,14 6273: 26,20 - 6274: -1,37 6288: -10,38 6289: -10,38 6290: -9,40 @@ -5629,6 +5628,8 @@ entities: 6937: -14,-40 6938: -15,-40 6939: -16,-40 + 7483: -13,-40 + 7484: -13,-42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -5692,6 +5693,8 @@ entities: 6931: -14,-40 6932: -15,-40 6933: -16,-40 + 7485: -13,-40 + 7486: -13,-42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6828,11 +6831,23 @@ entities: id: WarnCornerSmallNW decals: 1975: -1,-21 + - node: + zIndex: 10 + color: '#0000003F' + id: WarnCornerSmallSE + decals: + 7480: -2,13 - node: color: '#000000FF' id: WarnCornerSmallSE decals: 1977: 1,-21 + - node: + zIndex: 10 + color: '#0000003F' + id: WarnCornerSmallSW + decals: + 7481: 2,13 - node: color: '#000000FF' id: WarnCornerSmallSW @@ -6848,6 +6863,15 @@ entities: id: WarnEndW decals: 1971: -2,-21 + - node: + zIndex: 10 + color: '#0000003F' + id: WarnLineE + decals: + 7476: -2,9 + 7477: -2,10 + 7478: -2,11 + 7479: -2,12 - node: color: '#FFFFFFFF' id: WarnLineE @@ -6973,6 +6997,14 @@ entities: 3355: -15,-31 3634: -15,-37 3635: -15,-35 + - node: + zIndex: 10 + color: '#0000003F' + id: WarnLineN + decals: + 7469: -1,13 + 7470: 0,13 + 7471: 1,13 - node: color: '#000000FF' id: WarnLineN @@ -6995,6 +7027,15 @@ entities: 6196: 36,-21 6197: 36,-15 6198: 36,-13 + - node: + zIndex: 10 + color: '#0000003F' + id: WarnLineS + decals: + 7472: 2,12 + 7473: 2,11 + 7474: 2,10 + 7475: 2,9 - node: color: '#FFFFFFFF' id: WarnLineS @@ -7080,7 +7121,7 @@ entities: decals: 3: 7,35 1927: -30,1 - 7326: 1,7 + 7412: 2,13 - node: color: '#612620FF' id: WoodTrimThinCornerNeWhite @@ -7112,8 +7153,7 @@ entities: 4: 5,35 1928: -31,1 3951: 27,-16 - 7317: -1,15 - 7318: 4,15 + 7413: -2,13 - node: color: '#612620FF' id: WoodTrimThinCornerNwWhite @@ -7139,6 +7179,7 @@ entities: 1: 7,34 922: 4,19 1929: -30,-1 + 7414: 2,9 - node: color: '#612620FF' id: WoodTrimThinCornerSeWhite @@ -7163,6 +7204,7 @@ entities: 923: 6,19 1930: -31,-1 3952: 27,-20 + 7411: -2,9 - node: color: '#612620FF' id: WoodTrimThinCornerSwWhite @@ -7201,6 +7243,9 @@ entities: 1033: 6,9 3949: 30,-20 3964: 30,-16 + 7399: -4,9 + 7401: -4,15 + 7410: 1,7 - node: zIndex: 1 color: '#4B362BFF' @@ -7220,6 +7265,11 @@ entities: decals: 816: 30,25 3172: 23,-4 + - node: + color: '#4B362BFF' + id: WoodTrimThinEndSWhite + decals: + 7407: 0,6 - node: zIndex: 1 color: '#4B362BFF' @@ -7255,6 +7305,12 @@ entities: 949: 4,7 1034: -6,9 1035: -6,13 + 7400: -6,7 + 7402: -1,15 + 7403: 4,15 + 7404: 4,13 + 7405: 4,9 + 7406: -1,7 - node: zIndex: 1 color: '#4B362BFF' @@ -7324,7 +7380,12 @@ entities: 3880: 33,-6 3881: 33,-9 3882: 29,-6 - 7327: 1,7 + 7448: -2,9 + 7449: 2,13 + 7450: 1,7 + 7451: -4,9 + 7452: -4,15 + 7468: 0,15 - node: zIndex: 1 color: '#612620FF' @@ -7363,6 +7424,8 @@ entities: id: WoodTrimThinInnerNwWhite decals: 3971: 27,-16 + 7439: 2,9 + 7440: 0,15 - node: zIndex: 1 color: '#4B362BFF' @@ -7380,6 +7443,13 @@ entities: 3887: 33,-9 3888: 29,-9 3889: 33,-6 + 7441: -6,7 + 7442: -1,7 + 7443: 4,9 + 7444: 4,13 + 7445: 4,15 + 7446: -1,15 + 7447: -2,13 - node: zIndex: 1 color: '#612620FF' @@ -7438,6 +7508,13 @@ entities: 3878: 33,-9 3885: 29,-9 3886: 33,-6 + 7453: -2,13 + 7454: 2,9 + 7455: -4,15 + 7456: -4,9 + 7457: 0,7 + 7458: 1,7 + 7459: 0,6 - node: zIndex: 1 color: '#612620FF' @@ -7483,6 +7560,15 @@ entities: 3876: 29,-9 3883: 29,-6 3884: 33,-9 + 7460: 0,6 + 7461: 0,7 + 7462: -1,7 + 7463: -6,7 + 7464: -1,15 + 7465: 4,15 + 7466: 4,13 + 7467: 4,9 + 7482: 2,13 - node: color: '#612620FF' id: WoodTrimThinInnerSwWhite @@ -7530,6 +7616,12 @@ entities: 3953: 27,-19 3954: 27,-18 3955: 27,-17 + 7421: -2,12 + 7422: -2,11 + 7423: -2,10 + 7424: 2,12 + 7425: 2,11 + 7426: 2,10 - node: zIndex: 1 color: '#4B362BFF' @@ -7611,6 +7703,13 @@ entities: 3966: 29,-16 3967: 28,-20 3968: 29,-20 + 7408: 0,7 + 7415: -1,9 + 7416: 0,9 + 7417: 1,9 + 7418: -1,13 + 7419: 0,13 + 7420: 1,13 - node: zIndex: 1 color: '#4B362BFF' @@ -7711,10 +7810,13 @@ entities: 3960: 29,-16 3962: 28,-20 3963: 29,-20 - 7320: -1,7 - 7321: -4,9 - 7324: -4,15 - 7325: 0,7 + 7409: 0,15 + 7427: -1,13 + 7428: 0,13 + 7429: 1,13 + 7430: -1,9 + 7431: 0,9 + 7432: 1,9 - node: zIndex: 1 color: '#4B362BFF' @@ -7760,7 +7862,12 @@ entities: 3956: 27,-19 3957: 27,-18 3958: 27,-17 - 7319: 4,13 + 7433: -2,10 + 7434: -2,11 + 7435: -2,12 + 7436: 2,10 + 7437: 2,11 + 7438: 2,12 - node: zIndex: 1 color: '#4B362BFF' @@ -7944,18 +8051,6 @@ entities: id: grasssnowa1 decals: 6721: 11.325728,39.713966 - - node: - zIndex: 1 - color: '#FFFFFFCC' - id: grasssnowa1 - decals: - 7331: 1.9518352,11.690029 - - node: - zIndex: 1 - color: '#FFFFFFCC' - id: grasssnowb2 - decals: - 7332: 1.3869405,9.549295 - node: cleanable: True zIndex: 10 @@ -7978,18 +8073,6 @@ entities: 6759: -14.3490505,15.490858 6760: -28.322248,15.184649 6761: -28.787582,12.194032 - - node: - zIndex: 1 - color: '#FFFFFFCC' - id: grasssnowc1 - decals: - 7333: -1.3483367,11.868423 - - node: - zIndex: 1 - color: '#FFFFFFCC' - id: grasssnowc3 - decals: - 7330: -2.081708,8.99429 - node: color: '#FFFFFFFF' id: m @@ -8232,7 +8315,8 @@ entities: 5,1: 0: 65535 5,2: - 0: 56792 + 2: 16 + 0: 56776 5,3: 0: 57584 5,-1: @@ -8269,7 +8353,7 @@ entities: 0: 3067 8,2: 0: 4881 - 2: 4 + 3: 4 8,3: 0: 65008 9,0: @@ -8326,16 +8410,16 @@ entities: 0: 30583 -5,-1: 0: 62137 - 3: 2 + 2: 2 -5,4: 0: 65295 -11,1: 0: 3584 - 2: 4 + 3: 4 -11,0: - 2: 1024 + 3: 1024 -11,2: - 2: 4 + 3: 4 -10,0: 0: 65535 -10,1: @@ -8344,7 +8428,7 @@ entities: 0: 35762 -10,3: 0: 63240 - 2: 1 + 3: 1 -10,-1: 0: 61440 -10,4: @@ -8401,7 +8485,8 @@ entities: 4,-3: 0: 65293 4,-2: - 0: 47887 + 0: 15119 + 5: 32768 0,5: 0: 16186 -1,5: @@ -8452,21 +8537,21 @@ entities: 0: 65529 0,10: 0: 127 - 2: 34816 + 3: 34816 -1,10: 0: 207 - 2: 8960 + 3: 8960 0,11: - 2: 3983 + 3: 3983 -1,11: - 2: 3646 + 3: 3646 1,9: 0: 65521 1,10: 0: 3 - 2: 17856 + 3: 17856 1,11: - 2: 116 + 3: 116 2,9: 0: 61190 2,10: @@ -8479,7 +8564,7 @@ entities: 0: 65535 4,9: 0: 15 - 2: 2048 + 3: 2048 0,-8: 0: 65535 -1,-8: @@ -8516,87 +8601,87 @@ entities: 0: 62719 4,-8: 0: 61713 - 2: 136 + 3: 136 4,-7: 0: 4373 - 2: 17472 + 3: 17472 4,-6: 0: 4113 - 2: 3268 + 3: 3268 4,-5: 0: 56541 0,-12: - 2: 4880 + 3: 4880 -1,-12: - 2: 3840 + 3: 3840 0,-11: - 2: 4593 + 3: 4593 -1,-11: - 2: 62451 + 3: 62451 0,-10: - 2: 4383 - 5: 17408 + 3: 4383 + 6: 17408 -1,-10: - 2: 2051 + 3: 2051 0: 13056 0,-9: - 2: 3857 - 5: 4 + 3: 3857 + 6: 4 -1,-9: - 2: 128 + 3: 128 0: 13059 1,-11: - 2: 8944 + 3: 8944 1,-10: - 2: 15 - 5: 21760 + 3: 15 + 6: 21760 1,-9: - 5: 5 - 2: 3840 + 6: 5 + 3: 3840 2,-11: - 2: 35064 + 3: 35064 2,-10: - 2: 15 - 6: 4352 - 5: 17408 + 3: 15 + 7: 4352 + 6: 17408 2,-9: - 6: 1 - 2: 3840 - 5: 4 + 7: 1 + 3: 3840 + 6: 4 3,-11: - 2: 240 + 3: 240 3,-10: - 2: 15 - 7: 4352 - 8: 17408 + 3: 15 + 8: 4352 + 9: 17408 3,-9: - 7: 1 - 2: 3840 - 8: 4 + 8: 1 + 3: 3840 + 9: 4 4,-11: - 2: 4592 + 3: 4592 4,-10: - 2: 7953 + 3: 7953 4,-9: - 2: 49649 + 3: 49649 5,-11: - 2: 4401 + 3: 4401 5,-10: - 2: 4369 + 3: 4369 5,-9: - 2: 30065 + 3: 30065 5,-8: - 2: 65348 + 3: 65348 5,-7: - 5: 30578 + 6: 30578 5,-5: 0: 65535 5,-4: 0: 61007 5,-6: - 2: 3200 + 3: 3200 6,-6: - 2: 256 + 3: 256 0: 2184 6,-5: 0: 56797 @@ -8632,22 +8717,22 @@ entities: 0: 30583 8,-1: 0: 272 - 2: 1088 + 3: 1088 8,-8: 0: 8192 8,-7: 0: 8738 9,-7: - 2: 4096 + 3: 4096 9,-6: 0: 12336 9,-4: 0: 12336 9,-3: - 2: 16 + 3: 16 8,4: 0: 4368 - 2: 3200 + 3: 3200 8,5: 0: 61135 7,5: @@ -8656,21 +8741,21 @@ entities: 0: 61678 8,6: 0: 6372 - 2: 49152 + 3: 49152 8,7: 0: 273 - 2: 3276 + 3: 3276 7,7: 0: 43263 8,8: - 2: 2 + 3: 2 0: 26368 9,4: - 2: 256 + 3: 256 9,6: - 2: 4096 + 3: 4096 9,7: - 2: 273 + 3: 273 7,8: 0: 39864 7,9: @@ -8707,7 +8792,7 @@ entities: 0: 11 -5,9: 0: 11 - 2: 512 + 3: 512 -3,8: 0: 61917 -3,9: @@ -8721,12 +8806,12 @@ entities: -2,9: 0: 61408 -2,10: - 2: 17504 + 3: 17504 0: 8 -2,7: 0: 57599 -2,11: - 2: 196 + 3: 196 -4,5: 0: 48059 -5,5: @@ -8749,7 +8834,7 @@ entities: -8,8: 0: 192 -8,7: - 2: 34816 + 3: 34816 0: 14 -7,8: 0: 3838 @@ -8760,7 +8845,8 @@ entities: -6,8: 0: 18423 -6,9: - 0: 119 + 0: 103 + 2: 16 -6,7: 0: 10111 -8,5: @@ -8782,7 +8868,7 @@ entities: -6,6: 0: 30706 -11,4: - 2: 6 + 3: 6 0: 52224 -11,5: 0: 52428 @@ -8793,13 +8879,13 @@ entities: -10,6: 0: 4064 -10,7: - 2: 6 + 3: 6 -10,-4: 0: 2048 -9,-4: 0: 53198 -9,-3: - 2: 1 + 3: 1 0: 61132 -9,-2: 0: 52238 @@ -8815,14 +8901,14 @@ entities: 0: 32768 -9,-6: 0: 64716 - 2: 16 + 3: 16 -9,-8: 0: 32768 -9,-7: 0: 34952 -8,-6: 0: 4369 - 2: 16384 + 3: 16384 -8,-5: 0: 7633 -7,-4: @@ -8839,7 +8925,7 @@ entities: 0: 53216 -6,-2: 0: 1807 - 3: 2048 + 2: 2048 -6,-5: 0: 61408 -5,-3: @@ -8860,11 +8946,11 @@ entities: 0: 65534 -6,-6: 0: 56592 - 2: 4 + 3: 4 -6,-8: 0: 61166 -6,-7: - 2: 58432 + 3: 58432 -5,-8: 0: 65262 -5,-6: @@ -8880,7 +8966,7 @@ entities: -4,-5: 0: 4095 -6,-12: - 2: 36736 + 3: 36736 -6,-10: 0: 60940 -6,-9: @@ -8888,7 +8974,7 @@ entities: -6,-11: 0: 52224 -5,-12: - 2: 3840 + 3: 3840 -5,-11: 0: 21760 -5,-10: @@ -8896,7 +8982,7 @@ entities: -5,-9: 0: 4095 -4,-12: - 2: 12064 + 3: 12064 -4,-11: 0: 30464 -4,-10: @@ -8938,19 +9024,19 @@ entities: -2,-9: 0: 61198 -3,-12: - 2: 61422 + 3: 61422 -3,-10: 0: 60996 -3,-11: - 2: 238 + 3: 238 0: 17408 -2,-12: - 2: 36736 + 3: 36736 -2,-11: - 2: 65279 + 3: 65279 -2,-10: 0: 65024 - 2: 14 + 3: 14 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -8982,6 +9068,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 immutable: True moles: @@ -8998,10 +9099,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + temperature: 293.15 moles: - - 20.078888 - - 75.53487 + - 21.6852 + - 81.57766 - 0 - 0 - 0 @@ -9015,8 +9116,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.6852 - - 81.57766 + - 23.57087 + - 88.67137 - 0 - 0 - 0 @@ -11735,7 +11836,7 @@ entities: - uid: 4411 components: - type: Transform - parent: 41 + parent: 10987 - type: Physics canCollide: False - type: InsideEntityStorage @@ -11756,7 +11857,7 @@ entities: - uid: 2717 components: - type: Transform - parent: 41 + parent: 10987 - type: Physics canCollide: False - type: InsideEntityStorage @@ -12631,102 +12732,12 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: BigPresentBox +- proto: Bible entities: - - uid: 7879 - components: - - type: Transform - pos: 5.8114667,27.304245 - parent: 2 - - uid: 11100 - components: - - type: Transform - pos: -1.7814333,9.202436 - parent: 2 - - uid: 11104 - components: - - type: Transform - pos: 2.5849042,12.856861 - parent: 2 - - uid: 11106 - components: - - type: Transform - pos: 2.8844192,12.658646 - parent: 2 - - uid: 11110 - components: - - type: Transform - pos: -6.6714587,16.628086 - parent: 2 - - uid: 11133 - components: - - type: Transform - pos: -6.688749,7.5917535 - parent: 2 - - uid: 11137 - components: - - type: Transform - pos: -7.3325553,-18.39332 - parent: 2 - - uid: 11144 - components: - - type: Transform - pos: -11.54488,6.7505956 - parent: 2 - - uid: 11149 - components: - - type: Transform - pos: -19.724222,6.7651587 - parent: 2 - - uid: 11154 - components: - - type: Transform - pos: -9.314162,1.5523503 - parent: 2 - - uid: 11162 - components: - - type: Transform - pos: -13.18031,-7.4702353 - parent: 2 - - uid: 11163 - components: - - type: Transform - pos: -12.303238,-7.410771 - parent: 2 - - uid: 11171 - components: - - type: Transform - pos: 21.28199,-13.609298 - parent: 2 - - uid: 11180 - components: - - type: Transform - pos: 20.548803,2.600466 - parent: 2 - - uid: 11181 - components: - - type: Transform - pos: 22.491247,3.333866 - parent: 2 - - uid: 11194 - components: - - type: Transform - pos: -21.3506,23.517897 - parent: 2 - - uid: 11203 - components: - - type: Transform - pos: -1.6963367,39.74664 - parent: 2 - - uid: 11211 - components: - - type: Transform - pos: 32.689857,18.3296 - parent: 2 - - uid: 11223 + - uid: 41 components: - type: Transform - pos: -16.703697,26.308758 + pos: 23.5,35.625 parent: 2 - proto: BiomassReclaimer entities: @@ -25825,6 +25836,16 @@ entities: - type: Transform pos: 24.5,35.5 parent: 2 + - uid: 10661 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 - proto: CapacitorStockPart entities: - uid: 10413 @@ -25988,6 +26009,36 @@ entities: parent: 2 - proto: CarpetBlack entities: + - uid: 64 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 - uid: 119 components: - type: Transform @@ -25998,6 +26049,16 @@ entities: - type: Transform pos: 23.5,34.5 parent: 2 + - uid: 196 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 - uid: 297 components: - type: Transform @@ -26038,11 +26099,76 @@ entities: - type: Transform pos: 28.5,-6.5 parent: 2 + - uid: 358 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 - uid: 1446 components: - type: Transform pos: 10.5,16.5 parent: 2 + - uid: 1498 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 - uid: 2248 components: - type: Transform @@ -26168,6 +26294,51 @@ entities: - type: Transform pos: 5.5,20.5 parent: 2 + - uid: 3764 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 - uid: 5336 components: - type: Transform @@ -28331,145 +28502,137 @@ entities: parent: 9095 - proto: ChairWood entities: - - uid: 67 - components: - - type: Transform - pos: 3.5,14.5 - parent: 2 - - uid: 68 + - uid: 201 components: - type: Transform - pos: 2.5,14.5 + rot: -1.5707963267948966 rad + pos: 6.5,11.5 parent: 2 - - uid: 201 + - uid: 357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,8.5 + rot: -1.5707963267948966 rad + pos: 6.5,14.5 parent: 2 - uid: 364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,7.5 + rot: -1.5707963267948966 rad + pos: 6.5,12.5 parent: 2 - - uid: 365 + - uid: 4496 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,9.5 + pos: -30.5,-0.5 parent: 2 - - uid: 368 + - uid: 4504 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,7.5 - parent: 2 - - uid: 369 - components: - - type: Transform - pos: 5.5,13.5 - parent: 2 - - uid: 556 - components: - - type: Transform - pos: -2.5,14.5 + pos: -29.5,-0.5 parent: 2 - - uid: 557 + - uid: 4805 components: - type: Transform - pos: -3.5,13.5 + rot: -1.5707963267948966 rad + pos: 6.5,10.5 parent: 2 - - uid: 1178 + - uid: 4809 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,7.5 + rot: -1.5707963267948966 rad + pos: 6.5,8.5 parent: 2 - - uid: 1179 + - uid: 4812 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,9.5 + rot: -1.5707963267948966 rad + pos: -3.5,8.5 parent: 2 - - uid: 1181 + - uid: 4819 components: - type: Transform - pos: -4.5,13.5 + rot: -1.5707963267948966 rad + pos: -3.5,10.5 parent: 2 - - uid: 1183 + - uid: 4820 components: - type: Transform - pos: 4.5,13.5 + rot: -1.5707963267948966 rad + pos: -3.5,11.5 parent: 2 - - uid: 1185 + - uid: 4821 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,9.5 + rot: -1.5707963267948966 rad + pos: -3.5,12.5 parent: 2 - - uid: 1186 + - uid: 4822 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,8.5 + pos: -3.5,14.5 parent: 2 - - uid: 1189 + - uid: 5130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,7.5 + rot: 1.5707963267948966 rad + pos: -5.5,14.5 parent: 2 - - uid: 3781 + - uid: 5590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,14.5 + rot: 1.5707963267948966 rad + pos: -5.5,12.5 parent: 2 - - uid: 4339 + - uid: 7875 components: - type: Transform - pos: 1.5,14.5 + rot: 1.5707963267948966 rad + pos: -5.5,11.5 parent: 2 - - uid: 4496 + - uid: 7879 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-0.5 + rot: 1.5707963267948966 rad + pos: -5.5,10.5 parent: 2 - - uid: 4504 + - uid: 9442 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-0.5 + rot: 1.5707963267948966 rad + pos: -5.5,8.5 parent: 2 - - uid: 4670 + - uid: 9451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,7.5 + rot: 1.5707963267948966 rad + pos: 4.5,14.5 parent: 2 - - uid: 9451 + - uid: 9452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,9.5 + rot: 1.5707963267948966 rad + pos: 4.5,12.5 parent: 2 - - uid: 9454 + - uid: 9453 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,7.5 + rot: 1.5707963267948966 rad + pos: 4.5,11.5 parent: 2 - - uid: 10990 + - uid: 9454 components: - type: Transform - pos: -0.5,14.5 + rot: 1.5707963267948966 rad + pos: 4.5,10.5 parent: 2 - - uid: 10991 + - uid: 9455 components: - type: Transform - pos: -1.5,14.5 + rot: 1.5707963267948966 rad + pos: 4.5,8.5 parent: 2 - proto: CheckerBoard entities: @@ -29027,11 +29190,11 @@ entities: - 8177 - proto: ClosetWallPink entities: - - uid: 41 + - uid: 10987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-4.5 + rot: -1.5707963267948966 rad + pos: 21.5,9.5 parent: 2 - type: EntityStorage air: @@ -29057,17 +29220,17 @@ entities: showEnts: False occludes: True ents: - - 4413 - - 4412 - 4411 - - 3332 + - 83 + - 1431 - 2920 - - 2861 - - 2860 - 2717 + - 4412 + - 4413 - 2716 - - 1431 - - 83 + - 2860 + - 2861 + - 3332 - proto: ClothingBackpackCE entities: - uid: 5440 @@ -29114,11 +29277,6 @@ entities: parent: 2 - proto: ClothingBeltUtilityEngineering entities: - - uid: 1498 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 2 - uid: 1500 components: - type: Transform @@ -30392,7 +30550,7 @@ entities: - uid: 2920 components: - type: Transform - parent: 41 + parent: 10987 - type: Physics canCollide: False - type: InsideEntityStorage @@ -30446,6 +30604,12 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-5.5 parent: 2 + - uid: 373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-41.5 + parent: 2 - uid: 4262 components: - type: Transform @@ -30462,12 +30626,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,7.5 parent: 2 - - uid: 10659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-41.5 - parent: 2 - proto: ComputerBroken entities: - uid: 5385 @@ -30667,6 +30825,7 @@ entities: - type: Transform pos: 0.5,41.5 parent: 2 + - type: StationAiWhitelist - uid: 9120 components: - type: Transform @@ -30735,6 +30894,13 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,15.5 parent: 2 +- proto: ContrabassInstrument + entities: + - uid: 10666 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 - proto: ConveyorBelt entities: - uid: 3543 @@ -30775,7 +30941,7 @@ entities: - uid: 2860 components: - type: Transform - parent: 41 + parent: 10987 - type: Physics canCollide: False - type: InsideEntityStorage @@ -35143,15 +35309,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: DungeonMasterCircuitBoard - entities: - - uid: 3332 - components: - - type: Transform - parent: 41 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: EggplantSeeds entities: - uid: 8149 @@ -37850,6 +38007,19 @@ entities: - type: Transform pos: -39.544125,7.5146046 parent: 2 +- proto: FoodMealPigblanket + entities: + - uid: 1175 + components: + - type: MetaData + name: легендарная сосиска в тесте + - type: Transform + pos: -5.6037197,17.588964 + parent: 2 + - type: PointLight + energy: 8 + color: '#FCBA03FF' + radius: 1.5 - proto: FoodMeat entities: - uid: 8102 @@ -38094,632 +38264,15 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: Garlands +- proto: GameMasterCircuitBoard entities: - - uid: 64 - components: - - type: Transform - pos: 36.5,-21.5 - parent: 2 - - uid: 65 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 2 - - uid: 69 - components: - - type: Transform - pos: -32.5,-12.5 - parent: 2 - - uid: 72 - components: - - type: Transform - pos: 7.5,17.5 - parent: 2 - - uid: 195 - components: - - type: Transform - pos: -4.5,17.5 - parent: 2 - - uid: 196 - components: - - type: Transform - pos: 4.5,17.5 - parent: 2 - - uid: 197 - components: - - type: Transform - pos: -33.5,-12.5 - parent: 2 - - uid: 198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 2 - - uid: 358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-9.5 - parent: 2 - - uid: 371 - components: - - type: Transform - pos: 3.5,17.5 - parent: 2 - - uid: 373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,28.5 - parent: 2 - - uid: 374 - components: - - type: Transform - pos: 0.5,24.5 - parent: 2 - - uid: 376 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 2 - - uid: 377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,27.5 - parent: 2 - - uid: 555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,27.5 - parent: 2 - - uid: 1175 - components: - - type: Transform - pos: 5.5,17.5 - parent: 2 - - uid: 1176 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 2 - - uid: 1180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,29.5 - parent: 2 - - uid: 1184 - components: - - type: Transform - pos: 6.5,17.5 - parent: 2 - - uid: 1194 - components: - - type: Transform - pos: -0.5,24.5 - parent: 2 - - uid: 1195 - components: - - type: Transform - pos: 1.5,24.5 - parent: 2 - - uid: 3791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 2 - - uid: 4354 - components: - - type: Transform - pos: 14.5,-10.5 - parent: 2 - - uid: 4359 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 2 - - uid: 4361 - components: - - type: Transform - pos: 33.5,-19.5 - parent: 2 - - uid: 4461 - components: - - type: Transform - pos: 33.5,-10.5 - parent: 2 - - uid: 4669 - components: - - type: Transform - pos: 29.5,-10.5 - parent: 2 - - uid: 4671 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 2 - - uid: 4672 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 2 - - uid: 4819 - components: - - type: Transform - pos: 30.5,-10.5 - parent: 2 - - uid: 4820 - components: - - type: Transform - pos: 34.5,-10.5 - parent: 2 - - uid: 4821 - components: - - type: Transform - pos: 32.5,-19.5 - parent: 2 - - uid: 4822 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 2 - - uid: 9442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,29.5 - parent: 2 - - uid: 9452 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 2 - - uid: 9453 - components: - - type: Transform - pos: 34.5,-19.5 - parent: 2 - - uid: 10989 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 2 - - uid: 10992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-9.5 - parent: 2 - - uid: 10993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 2 - - uid: 10994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-7.5 - parent: 2 - - uid: 10995 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 2 - - uid: 10996 - components: - - type: Transform - pos: -14.5,-10.5 - parent: 2 - - uid: 10997 - components: - - type: Transform - pos: -13.5,-10.5 - parent: 2 - - uid: 10998 - components: - - type: Transform - pos: -12.5,-10.5 - parent: 2 - - uid: 10999 - components: - - type: Transform - pos: -14.5,2.5 - parent: 2 - - uid: 11000 - components: - - type: Transform - pos: -12.5,2.5 - parent: 2 - - uid: 11001 - components: - - type: Transform - pos: -17.5,10.5 - parent: 2 - - uid: 11002 - components: - - type: Transform - pos: -18.5,10.5 - parent: 2 - - uid: 11003 - components: - - type: Transform - pos: -19.5,10.5 - parent: 2 - - uid: 11004 - components: - - type: Transform - pos: -13.5,9.5 - parent: 2 - - uid: 11005 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 2 - - uid: 11006 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 2 - - uid: 11007 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 2 - - uid: 11008 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 2 - - uid: 11009 - components: - - type: Transform - pos: -9.5,-31.5 - parent: 2 - - uid: 11010 - components: - - type: Transform - pos: -8.5,-31.5 - parent: 2 - - uid: 11011 - components: - - type: Transform - pos: 2.5,-32.5 - parent: 2 - - uid: 11012 - components: - - type: Transform - pos: 3.5,-32.5 - parent: 2 - - uid: 11013 - components: - - type: Transform - pos: 4.5,-32.5 - parent: 2 - - uid: 11014 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 2 - - uid: 11015 - components: - - type: Transform - pos: 6.5,-32.5 - parent: 2 - - uid: 11016 - components: - - type: Transform - pos: 7.5,-32.5 - parent: 2 - - uid: 11017 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 2 - - uid: 11018 - components: - - type: Transform - pos: 9.5,-32.5 - parent: 2 - - uid: 11019 - components: - - type: Transform - pos: 10.5,-32.5 - parent: 2 - - uid: 11020 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 2 - - uid: 11021 - components: - - type: Transform - pos: 12.5,-32.5 - parent: 2 - - uid: 11022 - components: - - type: Transform - pos: 13.5,-32.5 - parent: 2 - - uid: 11023 - components: - - type: Transform - pos: 14.5,-32.5 - parent: 2 - - uid: 11024 - components: - - type: Transform - pos: 9.5,-17.5 - parent: 2 - - uid: 11025 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 2 - - uid: 11026 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 2 - - uid: 11027 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 2 - - uid: 11028 - components: - - type: Transform - pos: 0.5,-16.5 - parent: 2 - - uid: 11029 - components: - - type: Transform - pos: -1.5,-16.5 - parent: 2 - - uid: 11030 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 2 - - uid: 11031 - components: - - type: Transform - pos: -4.5,10.5 - parent: 2 - - uid: 11032 - components: - - type: Transform - pos: -3.5,10.5 - parent: 2 - - uid: 11033 - components: - - type: Transform - pos: -2.5,10.5 - parent: 2 - - uid: 11034 - components: - - type: Transform - pos: 3.5,10.5 - parent: 2 - - uid: 11035 - components: - - type: Transform - pos: 5.5,10.5 - parent: 2 - - uid: 11036 - components: - - type: Transform - pos: 4.5,10.5 - parent: 2 - - uid: 11037 - components: - - type: Transform - pos: -0.5,4.5 - parent: 2 - - uid: 11038 - components: - - type: Transform - pos: 0.5,4.5 - parent: 2 - - uid: 11039 - components: - - type: Transform - pos: 1.5,4.5 - parent: 2 - - uid: 11040 - components: - - type: Transform - pos: -20.5,24.5 - parent: 2 - - uid: 11041 - components: - - type: Transform - pos: -18.5,24.5 - parent: 2 - - uid: 11042 - components: - - type: Transform - pos: -17.5,24.5 - parent: 2 - - uid: 11043 - components: - - type: Transform - pos: -19.5,24.5 - parent: 2 - - uid: 11044 - components: - - type: Transform - pos: -33.5,24.5 - parent: 2 - - uid: 11045 - components: - - type: Transform - pos: -32.5,24.5 - parent: 2 - - uid: 11046 - components: - - type: Transform - pos: -4.5,26.5 - parent: 2 - - uid: 11047 - components: - - type: Transform - pos: 6.5,31.5 - parent: 2 - - uid: 11048 - components: - - type: Transform - pos: 4.5,31.5 - parent: 2 - - uid: 11049 - components: - - type: Transform - pos: 5.5,31.5 - parent: 2 - - uid: 11050 - components: - - type: Transform - pos: -1.5,42.5 - parent: 2 - - uid: 11051 - components: - - type: Transform - pos: 0.5,42.5 - parent: 2 - - uid: 11052 - components: - - type: Transform - pos: 1.5,42.5 - parent: 2 - - uid: 11053 - components: - - type: Transform - pos: 2.5,42.5 - parent: 2 - - uid: 11054 - components: - - type: Transform - pos: -0.5,42.5 - parent: 2 - - uid: 11055 - components: - - type: Transform - pos: 6.5,40.5 - parent: 2 - - uid: 11056 - components: - - type: Transform - pos: 7.5,40.5 - parent: 2 - - uid: 11057 - components: - - type: Transform - pos: -5.5,40.5 - parent: 2 - - uid: 11058 - components: - - type: Transform - pos: -6.5,40.5 - parent: 2 - - uid: 11059 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 2 - - uid: 11060 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 2 - - uid: 11061 - components: - - type: Transform - pos: -24.5,-16.5 - parent: 2 - - uid: 11062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,1.5 - parent: 2 - - uid: 11063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,0.5 - parent: 2 - - uid: 11064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 2 - - uid: 11065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,21.5 - parent: 2 - - uid: 11066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,21.5 - parent: 2 - - uid: 11067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,21.5 - parent: 2 - - uid: 11068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,16.5 - parent: 2 - - uid: 11069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,16.5 - parent: 2 - - uid: 11070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,16.5 - parent: 2 - - uid: 11071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,30.5 - parent: 2 - - uid: 11072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,30.5 - parent: 2 - - uid: 11219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,24.5 - parent: 2 - - uid: 11220 + - uid: 3332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,23.5 - parent: 2 + parent: 10987 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: GarlicSeeds entities: - uid: 8141 @@ -53369,6 +52922,104 @@ entities: - type: Transform pos: -16.5,-40.5 parent: 2 +- proto: HolopadAiEntrance + entities: + - uid: 10993 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 +- proto: HolopadCargoBay + entities: + - uid: 10998 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 +- proto: HolopadCargoBayLongRange + entities: + - uid: 10997 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 +- proto: HolopadCommandBridge + entities: + - uid: 369 + components: + - type: Transform + pos: -1.5,39.5 + parent: 2 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 4461 + components: + - type: Transform + pos: 2.5,39.5 + parent: 2 +- proto: HolopadEngineeringMain + entities: + - uid: 10995 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 +- proto: HolopadGeneralTools + entities: + - uid: 10991 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 +- proto: HolopadMedicalMedbay + entities: + - uid: 372 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 +- proto: HolopadMedicalSurgery + entities: + - uid: 10994 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 +- proto: HolopadScienceRnd + entities: + - uid: 1176 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 +- proto: HolopadSecurityBrig + entities: + - uid: 10996 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 +- proto: HolopadSecurityInterrogation + entities: + - uid: 10992 + components: + - type: Transform + pos: -30.5,27.5 + parent: 2 +- proto: HolopadServiceBar + entities: + - uid: 1185 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 +- proto: HolopadServiceChapel + entities: + - uid: 4391 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 - proto: HospitalCurtains entities: - uid: 10794 @@ -53644,6 +53295,13 @@ entities: rot: 0.22689280275926285 rad pos: -29.41856,0.6104056 parent: 2 +- proto: Jukebox + entities: + - uid: 10665 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 - proto: KitchenElectricGrill entities: - uid: 3634 @@ -54085,7 +53743,7 @@ entities: - uid: 1431 components: - type: Transform - parent: 41 + parent: 10987 - type: Physics canCollide: False - type: InsideEntityStorage @@ -55025,6 +54683,35 @@ entities: - type: Transform pos: -23.5,37.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 371 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 8220 components: - type: Transform @@ -55759,223 +55446,6 @@ entities: - type: Transform pos: -16.5,-5.5 parent: 2 -- proto: MediumPresentBox - entities: - - uid: 7875 - components: - - type: Transform - pos: 5.4414773,27.165495 - parent: 2 - - uid: 11101 - components: - - type: Transform - pos: -1.4158487,9.0746975 - parent: 2 - - uid: 11102 - components: - - type: Transform - pos: -1.8871446,9.594463 - parent: 2 - - uid: 11107 - components: - - type: Transform - pos: 2.201701,12.685074 - parent: 2 - - uid: 11111 - components: - - type: Transform - pos: -6.490869,16.434273 - parent: 2 - - uid: 11131 - components: - - type: Transform - pos: 7.815254,10.178053 - parent: 2 - - uid: 11132 - components: - - type: Transform - pos: 7.6963296,9.791532 - parent: 2 - - uid: 11134 - components: - - type: Transform - pos: -6.510361,7.1755004 - parent: 2 - - uid: 11138 - components: - - type: Transform - pos: -7.1838994,-18.651001 - parent: 2 - - uid: 11139 - components: - - type: Transform - pos: -7.7388835,-18.205015 - parent: 2 - - uid: 11142 - components: - - type: Transform - pos: -15.81335,-20.76406 - parent: 2 - - uid: 11145 - components: - - type: Transform - pos: -11.393746,6.5036516 - parent: 2 - - uid: 11146 - components: - - type: Transform - pos: -11.928909,6.880262 - parent: 2 - - uid: 11150 - components: - - type: Transform - pos: -19.798552,6.3043065 - parent: 2 - - uid: 11151 - components: - - type: Transform - pos: -19.739088,7.3003426 - parent: 2 - - uid: 11155 - components: - - type: Transform - pos: -9.690757,1.6811908 - parent: 2 - - uid: 11156 - components: - - type: Transform - pos: -9.155594,1.3442234 - parent: 2 - - uid: 11157 - components: - - type: Transform - pos: -9.968249,1.3144912 - parent: 2 - - uid: 11164 - components: - - type: Transform - pos: -12.75272,-7.3215733 - parent: 2 - - uid: 11165 - components: - - type: Transform - pos: -11.831051,-7.5594325 - parent: 2 - - uid: 11166 - components: - - type: Transform - pos: -13.689255,-7.4702353 - parent: 2 - - uid: 11172 - components: - - type: Transform - pos: 21.299608,-13.864777 - parent: 2 - - uid: 11173 - components: - - type: Transform - pos: 21.696026,-13.644536 - parent: 2 - - uid: 11177 - components: - - type: Transform - pos: 34.464344,-23.79722 - parent: 2 - - uid: 11178 - components: - - type: Transform - pos: 34.781475,-23.486681 - parent: 2 - - uid: 11182 - components: - - type: Transform - pos: 20.965042,2.4022503 - parent: 2 - - uid: 11183 - components: - - type: Transform - pos: 20.4497,3.5519035 - parent: 2 - - uid: 11184 - components: - - type: Transform - pos: 22.53089,2.8779688 - parent: 2 - - uid: 11185 - components: - - type: Transform - pos: 22.58044,4.027622 - parent: 2 - - uid: 11191 - components: - - type: Transform - pos: -21.182861,-16.315052 - parent: 2 - - uid: 11192 - components: - - type: Transform - pos: -21.321606,-16.513268 - parent: 2 - - uid: 11195 - components: - - type: Transform - pos: -21.170353,23.287119 - parent: 2 - - uid: 11196 - components: - - type: Transform - pos: -16.502542,23.733105 - parent: 2 - - uid: 11197 - components: - - type: Transform - pos: -16.839499,23.425869 - parent: 2 - - uid: 11204 - components: - - type: Transform - pos: -1.8350825,39.48235 - parent: 2 - - uid: 11205 - components: - - type: Transform - pos: -1.365989,39.81271 - parent: 2 - - uid: 11209 - components: - - type: Transform - pos: 2.2604096,39.37512 - parent: 2 - - uid: 11212 - components: - - type: Transform - pos: 32.23398,18.161116 - parent: 2 - - uid: 11213 - components: - - type: Transform - pos: 32.71959,18.904427 - parent: 2 - - uid: 11216 - components: - - type: Transform - pos: 23.782867,20.684381 - parent: 2 - - uid: 11225 - components: - - type: Transform - pos: -5.9686112,-2.4366622 - parent: 2 - - uid: 11229 - components: - - type: Transform - pos: 0.028263092,28.754879 - parent: 2 - - uid: 11230 - components: - - type: Transform - pos: 0.9400221,28.662378 - parent: 2 - proto: MedkitAdvancedFilled entities: - uid: 675 @@ -56142,13 +55612,6 @@ entities: rot: 3.141592653589793 rad pos: 2.405284,-17.675215 parent: 2 -- proto: NewYearTree1 - entities: - - uid: 4809 - components: - - type: Transform - pos: 0.5,11.5 - parent: 2 - proto: NitrogenCanister entities: - uid: 2927 @@ -56250,7 +55713,7 @@ entities: - uid: 83 components: - type: Transform - parent: 41 + parent: 10987 - type: Physics canCollide: False - type: InsideEntityStorage @@ -56266,7 +55729,7 @@ entities: - uid: 2861 components: - type: Transform - parent: 41 + parent: 10987 - type: Physics canCollide: False - type: InsideEntityStorage @@ -56401,7 +55864,7 @@ entities: - uid: 2716 components: - type: Transform - parent: 41 + parent: 10987 - type: Physics canCollide: False - type: InsideEntityStorage @@ -56674,13 +56137,6 @@ entities: - type: Transform pos: -8.47335,1.5756065 parent: 2 - - uid: 5130 - components: - - type: MetaData - name: Раздевалка СБ и тд - - type: Transform - pos: -30.307775,18.122915 - parent: 2 - uid: 5372 components: - type: Transform @@ -62437,6 +61893,14 @@ entities: - type: Transform pos: 32.255543,-2.2699432 parent: 2 +- proto: PianoInstrument + entities: + - uid: 10664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 2 - proto: PinpointerNuclear entities: - uid: 2442 @@ -62480,10 +61944,10 @@ entities: parent: 2 - proto: PlayerStationAi entities: - - uid: 10660 + - uid: 4390 components: - type: Transform - pos: -13.5,-40.5 + pos: -12.5,-40.5 parent: 2 - proto: PlushieAtmosian entities: @@ -65519,114 +64983,6 @@ entities: powerLoad: 0 - type: DamageOnInteract isDamageActive: False -- proto: PresentRandom - entities: - - uid: 11113 - components: - - type: Transform - pos: -4.5,-37.5 - parent: 2 - - uid: 11114 - components: - - type: Transform - pos: -39.5,15.5 - parent: 2 - - uid: 11115 - components: - - type: Transform - pos: -11.5,12.5 - parent: 2 - - uid: 11116 - components: - - type: Transform - pos: -4.5,33.5 - parent: 2 - - uid: 11117 - components: - - type: Transform - pos: 5.5,33.5 - parent: 2 - - uid: 11119 - components: - - type: Transform - pos: 20.5,9.5 - parent: 2 - - uid: 11120 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 2 - - uid: 11121 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 2 - - uid: 11122 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 2 - - uid: 11123 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 2 - - uid: 11129 - components: - - type: Transform - pos: 2.6549935,39.736313 - parent: 2 - - uid: 11130 - components: - - type: Transform - pos: -18.065432,20.705397 - parent: 2 - - uid: 11224 - components: - - type: Transform - pos: 8.47639,-33.57833 - parent: 2 -- proto: PresentRandomCash - entities: - - uid: 11118 - components: - - type: Transform - pos: 31.5,23.5 - parent: 2 - - uid: 11126 - components: - - type: Transform - pos: 26.5,15.5 - parent: 2 - - uid: 11127 - components: - - type: Transform - pos: 18.5,16.5 - parent: 2 - - uid: 11128 - components: - - type: Transform - pos: 34.5,14.5 - parent: 2 -- proto: PresentRandomInsane - entities: - - uid: 11124 - components: - - type: Transform - pos: -6.5,6.5 - parent: 2 - - uid: 11125 - components: - - type: Transform - pos: -37.5,1.5 - parent: 2 -- proto: PresentRandomUnsafe - entities: - - uid: 11228 - components: - - type: Transform - pos: 31.699898,-2.061301 - parent: 2 - proto: PrinterDoc entities: - uid: 794 @@ -65945,6 +65301,16 @@ entities: parent: 2 - proto: Railing entities: + - uid: 67 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 69 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 - uid: 172 components: - type: Transform @@ -65968,6 +65334,23 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,3.5 parent: 2 + - uid: 195 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 - uid: 1535 components: - type: Transform @@ -66060,6 +65443,42 @@ entities: rot: 3.141592653589793 rad pos: -2.5,17.5 parent: 2 + - uid: 3781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 2 + - uid: 3795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,12.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 2 - uid: 4921 components: - type: Transform @@ -66354,6 +65773,18 @@ entities: parent: 2 - proto: RailingCornerSmall entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 2 - uid: 2932 components: - type: Transform @@ -66456,37 +65887,32 @@ entities: parent: 2 - proto: RandomDrinkGlass entities: - - uid: 199 - components: - - type: Transform - pos: -3.5,10.5 - parent: 2 - - uid: 362 + - uid: 374 components: - type: Transform - pos: -1.5,13.5 + pos: 5.5,10.5 parent: 2 - - uid: 363 + - uid: 377 components: - type: Transform - pos: 4.5,10.5 + pos: -4.5,14.5 parent: 2 - proto: RandomFoodMeal entities: - - uid: 70 + - uid: 376 components: - type: Transform - pos: 2.5,8.5 + pos: 5.5,14.5 parent: 2 - - uid: 71 + - uid: 554 components: - type: Transform - pos: 3.5,13.5 + pos: -4.5,12.5 parent: 2 - - uid: 3803 + - uid: 555 components: - type: Transform - pos: -2.5,9.5 + pos: -4.5,8.5 parent: 2 - uid: 3924 components: @@ -66495,6 +65921,11 @@ entities: parent: 2 - proto: RandomFoodSingle entities: + - uid: 556 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 - uid: 9733 components: - type: Transform @@ -67475,7 +66906,7 @@ entities: - uid: 4413 components: - type: Transform - parent: 41 + parent: 10987 - type: Physics canCollide: False - type: InsideEntityStorage @@ -67518,12 +66949,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,29.5 parent: 2 - - uid: 10628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,39.5 - parent: 2 - uid: 10629 components: - type: Transform @@ -67557,6 +66982,14 @@ entities: rot: -2.356194490192345 rad pos: -23.5,7.49 parent: 2 +- proto: ScrapAirlock1 + entities: + - uid: 557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.03661,39.36326 + parent: 2 - proto: ScrapAirlock2 entities: - uid: 6063 @@ -67686,7 +67119,7 @@ entities: - type: Transform pos: -14.5,36.5 parent: 2 -- proto: ShadowTree03 +- proto: ShadowTree entities: - uid: 5457 components: @@ -67827,17 +67260,6 @@ entities: - type: Transform pos: -20.062002,-21.181068 parent: 2 - - uid: 10618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.971147,39.765953 - parent: 2 - - uid: 10619 - components: - - type: Transform - pos: 11.715213,39.57977 - parent: 2 - proto: SheetSteel10 entities: - uid: 4479 @@ -69336,385 +68758,44 @@ entities: rot: 3.141592653589793 rad pos: 31.5,0.5 parent: 2 -- proto: SmallPresentBox +- proto: SmartFridge entities: - - uid: 11103 - components: - - type: Transform - pos: -1.5303693,9.560497 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11105 - components: - - type: Transform - pos: -1.1163335,9.079102 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11108 - components: - - type: Transform - pos: 2.51443,12.539716 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11109 - components: - - type: Transform - pos: 2.9460838,12.359118 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11112 - components: - - type: Transform - pos: -6.8476443,16.460703 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11135 - components: - - type: Transform - pos: -6.7184806,8.082338 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11136 - components: - - type: Transform - pos: -6.3171077,7.7106833 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11140 - components: - - type: Transform - pos: -7.6397796,-18.482517 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11141 - components: - - type: Transform - pos: -7.42175,-18.76993 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11143 - components: - - type: Transform - pos: -15.615142,-20.853256 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11147 - components: - - type: Transform - pos: -11.849626,6.6357956 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11148 - components: - - type: Transform - pos: -11.274821,6.9265122 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11152 - components: - - type: Transform - pos: -19.560701,6.4529686 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11153 - components: - - type: Transform - pos: -19.843147,5.9177856 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11158 - components: - - type: Transform - pos: -9.670937,1.3838665 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11159 - components: - - type: Transform - pos: -9.383534,1.2252938 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11160 - components: - - type: Transform - pos: -10.037622,1.7010124 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11161 - components: - - type: Transform - pos: -9.006938,1.7307448 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11167 - components: - - type: Transform - pos: -13.481136,-7.202644 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11168 - components: - - type: Transform - pos: -12.841913,-7.618898 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11169 - components: - - type: Transform - pos: -11.935109,-7.2175097 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11170 - components: - - type: Transform - pos: -11.533737,-7.306707 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11174 - components: - - type: Transform - pos: 21.533054,-13.873586 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11175 - components: - - type: Transform - pos: 21.80614,-13.77668 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11176 - components: - - type: Transform - pos: 21.079376,-13.411082 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11179 - components: - - type: Transform - pos: 34.81451,-23.876507 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11186 - components: - - type: Transform - pos: 20.41997,3.234758 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11187 - components: - - type: Transform - pos: 20.786654,3.0662742 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11188 - components: - - type: Transform - pos: 21.113699,2.719396 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11189 - components: - - type: Transform - pos: 22.322771,2.5410013 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11190 - components: - - type: Transform - pos: 22.193933,2.9572551 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11193 - components: - - type: Transform - pos: -21.11253,-16.568586 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11198 - components: - - type: Transform - pos: -16.963232,23.752926 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11199 - components: - - type: Transform - pos: -16.527174,23.505156 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11200 - components: - - type: Transform - pos: -21.016596,23.584442 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11201 - components: - - type: Transform - pos: -21.650864,23.455603 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11202 - components: - - type: Transform - pos: -21.740057,23.79257 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11206 - components: - - type: Transform - pos: -1.6104462,39.383244 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11207 - components: - - type: Transform - pos: -1.372596,39.55503 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11208 - components: - - type: Transform - pos: -1.1743879,39.95146 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11210 - components: - - type: Transform - pos: 2.278028,39.78036 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11214 - components: - - type: Transform - pos: 32.838516,17.982721 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11215 - components: - - type: Transform - pos: 32.333084,18.617012 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11217 - components: - - type: Transform - pos: 23.485556,20.763668 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11218 - components: - - type: Transform - pos: 23.789474,20.433308 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11221 - components: - - type: Transform - pos: 5.4877257,27.469425 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11222 - components: - - type: Transform - pos: 6.069138,27.112637 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11226 + - uid: 3683 components: - type: Transform - pos: -6.001646,-2.6877358 + pos: -7.5,-3.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11227 +- proto: SMESAdvanced + entities: + - uid: 1178 components: - type: Transform - pos: -5.7836175,-2.5225558 + pos: 4.5,-23.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11231 + - uid: 1179 components: - type: Transform - pos: 0.31236196,28.840773 + pos: -5.5,-23.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11232 + - uid: 1180 components: - type: Transform - pos: 0.5832473,28.754879 + pos: -4.5,-23.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11233 + - uid: 1181 components: - type: Transform - pos: 1.1778727,28.853987 + pos: -12.5,-27.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 11234 + - uid: 1182 components: - type: Transform - pos: -0.26244283,28.807737 + pos: -12.5,-37.5 parent: 2 - - type: Fixtures - fixtures: {} -- proto: SmartFridge - entities: - - uid: 3683 + - uid: 10706 components: - type: Transform - pos: -7.5,-3.5 + pos: -3.5,-23.5 parent: 2 - proto: SMESBasic entities: @@ -69725,28 +68806,6 @@ entities: - type: Transform pos: 15.5,31.5 parent: 2 - - uid: 1332 - components: - - type: MetaData - name: СМЭС Атмос - - type: Transform - pos: 4.5,-23.5 - parent: 2 - - uid: 1359 - components: - - type: Transform - pos: -3.5,-23.5 - parent: 2 - - uid: 1361 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 2 - - uid: 1395 - components: - - type: Transform - pos: -5.5,-23.5 - parent: 2 - uid: 2038 components: - type: MetaData @@ -69775,16 +68834,6 @@ entities: - type: Transform pos: 34.5,34.5 parent: 2 - - uid: 5590 - components: - - type: MetaData - name: СМЭС Телекоммуникации - - type: Transform - pos: -12.5,-37.5 - parent: 2 - - type: Battery - startingCharge: 20000000 - maxCharge: 20000000 - uid: 6417 components: - type: MetaData @@ -69806,13 +68855,6 @@ entities: - type: Transform pos: -26.5,-2.5 parent: 2 - - uid: 10706 - components: - - type: MetaData - name: СМЭС Инженерный - - type: Transform - pos: -12.5,-27.5 - parent: 2 - proto: SMESMachineCircuitboard entities: - uid: 10461 @@ -70458,6 +69500,23 @@ entities: - type: Transform pos: -0.5,38.5 parent: 2 +- proto: Stairs + entities: + - uid: 199 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 - proto: StairStage entities: - uid: 6059 @@ -70605,11 +69664,10 @@ entities: parent: 2 - proto: StationAiUploadComputer entities: - - uid: 10661 + - uid: 4671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-39.5 + pos: -15.5,-39.5 parent: 2 - proto: StationAnchor entities: @@ -70623,7 +69681,7 @@ entities: - uid: 4412 components: - type: Transform - parent: 41 + parent: 10987 - type: Physics canCollide: False - type: InsideEntityStorage @@ -70781,6 +69839,13 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-20.5 parent: 2 + - uid: 10663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 2 + - type: PointLight - proto: StoolBar entities: - uid: 3760 @@ -70807,12 +69872,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,16.5 parent: 2 - - uid: 3764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,16.5 - parent: 2 - proto: StorageCanister entities: - uid: 5182 @@ -72395,150 +71454,70 @@ entities: parent: 2 - proto: TableFancyBlack entities: - - uid: 66 + - uid: 5207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,10.5 + pos: -22.5,-14.5 parent: 2 - - uid: 200 + - uid: 10319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,10.5 + rot: 1.5707963267948966 rad + pos: -4.5,10.5 parent: 2 - - uid: 357 + - uid: 10618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,10.5 + rot: 1.5707963267948966 rad + pos: -4.5,11.5 parent: 2 - - uid: 370 + - uid: 10619 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 2 - - uid: 372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,12.5 - parent: 2 - - uid: 554 - components: - - type: Transform - pos: -1.5,13.5 - parent: 2 - - uid: 1182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 2 - - uid: 1196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,10.5 - parent: 2 - - uid: 1198 - components: - - type: Transform - pos: -2.5,13.5 - parent: 2 - - uid: 3795 - components: - - type: Transform - pos: -2.5,10.5 - parent: 2 - - uid: 3798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,8.5 - parent: 2 - - uid: 4338 - components: - - type: Transform - pos: 3.5,12.5 - parent: 2 - - uid: 4340 - components: - - type: Transform - pos: 3.5,9.5 - parent: 2 - - uid: 4356 - components: - - type: Transform - pos: 3.5,13.5 - parent: 2 - - uid: 4358 - components: - - type: Transform - pos: 1.5,8.5 - parent: 2 - - uid: 4360 - components: - - type: Transform - pos: -0.5,8.5 - parent: 2 - - uid: 4364 - components: - - type: Transform - pos: 3.5,10.5 - parent: 2 - - uid: 4365 - components: - - type: Transform - pos: -2.5,9.5 - parent: 2 - - uid: 4390 - components: - - type: Transform - pos: 1.5,13.5 - parent: 2 - - uid: 4391 - components: - - type: Transform - pos: 2.5,8.5 - parent: 2 - - uid: 4786 + - uid: 10628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,8.5 + rot: 1.5707963267948966 rad + pos: -4.5,14.5 parent: 2 - - uid: 4805 + - uid: 10631 components: - type: Transform - pos: -1.5,8.5 + rot: 1.5707963267948966 rad + pos: -4.5,8.5 parent: 2 - - uid: 4812 + - uid: 10641 components: - type: Transform - pos: -2.5,12.5 + rot: 1.5707963267948966 rad + pos: 5.5,14.5 parent: 2 - - uid: 5207 + - uid: 10642 components: - type: Transform - pos: -22.5,-14.5 + rot: 1.5707963267948966 rad + pos: 5.5,12.5 parent: 2 - - uid: 9455 + - uid: 10643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,12.5 + rot: 1.5707963267948966 rad + pos: 5.5,11.5 parent: 2 - - uid: 10987 + - uid: 10659 components: - type: Transform - pos: -0.5,13.5 + rot: 1.5707963267948966 rad + pos: 5.5,10.5 parent: 2 - - uid: 10988 + - uid: 10660 components: - type: Transform - pos: 2.5,13.5 + rot: 1.5707963267948966 rad + pos: 5.5,8.5 parent: 2 - proto: TableFancyPink entities: @@ -73816,6 +72795,15 @@ entities: parent: 2 - type: Thruster thrust: 200 +- proto: ThrusterFlatpack + entities: + - uid: 371 + components: + - type: Transform + parent: 8207 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ThrusterUnanchored entities: - uid: 10459 @@ -77115,6 +76103,11 @@ entities: - type: Transform pos: -28.5,32.5 parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 - uid: 1211 components: - type: Transform @@ -79391,6 +78384,28 @@ entities: - type: Transform pos: 28.5,-20.5 parent: 2 + - uid: 4364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-42.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-42.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 2 - uid: 4938 components: - type: Transform @@ -80154,11 +79169,6 @@ entities: - type: Transform pos: -18.5,-41.5 parent: 2 - - uid: 10319 - components: - - type: Transform - pos: -15.5,-42.5 - parent: 2 - uid: 10320 components: - type: Transform @@ -80189,11 +79199,6 @@ entities: - type: Transform pos: -24.5,-1.5 parent: 2 - - uid: 10631 - components: - - type: Transform - pos: -14.5,-42.5 - parent: 2 - uid: 10632 components: - type: Transform @@ -80239,21 +79244,6 @@ entities: - type: Transform pos: -12.5,-42.5 parent: 2 - - uid: 10641 - components: - - type: Transform - pos: -12.5,-41.5 - parent: 2 - - uid: 10642 - components: - - type: Transform - pos: -12.5,-39.5 - parent: 2 - - uid: 10643 - components: - - type: Transform - pos: -12.5,-40.5 - parent: 2 - uid: 10715 components: - type: Transform @@ -83762,17 +82752,17 @@ entities: - type: Transform pos: -37.702473,20.646717 parent: 2 -- proto: WeaponTurretNanoTrasen +- proto: WeaponTurretAllHostile entities: - - uid: 10665 + - uid: 370 components: - type: Transform - pos: -15.5,-39.5 + pos: -12.5,-39.5 parent: 2 - - uid: 10666 + - uid: 1184 components: - type: Transform - pos: -15.5,-41.5 + pos: -12.5,-41.5 parent: 2 - proto: WelderIndustrialAdvanced entities: @@ -83990,6 +82980,12 @@ entities: rot: 3.141592653589793 rad pos: -4.5,33.5 parent: 2 + - uid: 4786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-41.5 + parent: 2 - uid: 4953 components: - type: Transform @@ -84024,11 +83020,11 @@ entities: - type: Transform pos: -12.5,-33.5 parent: 2 - - uid: 10663 + - uid: 10989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-40.5 + rot: -1.5707963267948966 rad + pos: -12.5,-39.5 parent: 2 - proto: WindoorSecureEngineeringLocked entities: @@ -84431,6 +83427,11 @@ entities: - type: Transform pos: -11.5,8.5 parent: 2 + - uid: 4672 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 2 - uid: 4952 components: - type: Transform @@ -84618,28 +83619,29 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 9095 - - uid: 10662 + - uid: 10672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-41.5 + rot: 1.5707963267948966 rad + pos: -14.5,-37.5 parent: 2 - - uid: 10664 + - uid: 10806 components: - type: Transform - pos: -13.5,-39.5 + rot: 1.5707963267948966 rad + pos: -14.5,-33.5 parent: 2 - - uid: 10672 + - uid: 10988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-37.5 + rot: 3.141592653589793 rad + pos: -12.5,-41.5 parent: 2 - - uid: 10806 + - uid: 10990 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-33.5 + pos: -13.5,-40.5 parent: 2 - proto: WoodDoor entities: From a83fd7b916773b72364354a2022e8d0cfb746148 Mon Sep 17 00:00:00 2001 From: Tezzaide Date: Sun, 19 Jan 2025 13:34:46 +0000 Subject: [PATCH 035/103] Fixed minor spelling mistake in Noir Trenchcoat description. (#34519) Update coats.yml --- Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index 40635f072e0..f2dfe7c6e74 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -30,7 +30,7 @@ parent: [ClothingOuterCoatDetectiveLoadout] id: ClothingOuterCoatDetectiveLoadoutGrey name: noir trenchcoat - description: Ah, your trusty coat. There's a few tears here and there, giving it a more timely look. Or at least, that's what you told yourself when you found out gettin' it repaired would set you back 200 speos. + description: Ah, your trusty coat. There's a few tears here and there, giving it a more timely look. Or at least, that's what you told yourself when you found out gettin' it repaired would set you back 200 spesos. components: - type: Sprite sprite: Clothing/OuterClothing/Coats/detective_grey.rsi From 2894f49c4c8e6c9da6142bed49fa53ddf067bcee Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 19 Jan 2025 15:54:27 +0100 Subject: [PATCH 036/103] Update Credits (#34507) Co-authored-by: PJBot --- Resources/Credits/GitHub.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 025024b23e2..244ba8874bd 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, DylanWhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, nox, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, WTCWR68, xkreksx, xprospero, xqzpop7, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zHonys, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex +0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, DylanWhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, nox, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stewie523, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xqzpop7, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zHonys, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex From b09cd1ca8c9cea6710905b58ada9a8e3b40750d2 Mon Sep 17 00:00:00 2001 From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Sun, 19 Jan 2025 22:48:58 +0300 Subject: [PATCH 037/103] Make storage implant drop items on gibbing (#33493) * Make storage implant drop items on gib/removal * Better way * Fix error * Forgotten trash * Cleanup * Unused var * Update Content.Server/Implants/ImplantedSystem.cs Co-authored-by: 0x6273 <0x40@keemail.me> --------- Co-authored-by: Winkarst <74284083+Winkarst-cpu@users.noreply.github.co> Co-authored-by: 0x6273 <0x40@keemail.me> --- Content.Server/Implants/ImplantedSystem.cs | 10 +++++++++- .../Implants/SharedSubdermalImplantSystem.cs | 10 +++------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/Content.Server/Implants/ImplantedSystem.cs b/Content.Server/Implants/ImplantedSystem.cs index 5d27e647118..16b2c79d25f 100644 --- a/Content.Server/Implants/ImplantedSystem.cs +++ b/Content.Server/Implants/ImplantedSystem.cs @@ -1,4 +1,5 @@ -using Content.Shared.Implants.Components; +using Content.Server.Body.Components; +using Content.Shared.Implants.Components; using Robust.Shared.Containers; namespace Content.Server.Implants; @@ -9,6 +10,7 @@ public void InitializeImplanted() { SubscribeLocalEvent(OnImplantedInit); SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnGibbed); } private void OnImplantedInit(EntityUid uid, ImplantedComponent component, ComponentInit args) @@ -22,4 +24,10 @@ private void OnShutdown(EntityUid uid, ImplantedComponent component, ComponentSh //If the entity is deleted, get rid of the implants _container.CleanContainer(component.ImplantContainer); } + + private void OnGibbed(Entity ent, ref BeingGibbedEvent args) + { + //If the entity is gibbed, get rid of the implants + _container.CleanContainer(ent.Comp.ImplantContainer); + } } diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs index 94203de6155..bb166b3c5cb 100644 --- a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs +++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs @@ -1,4 +1,3 @@ -using System.Linq; using Content.Shared.Actions; using Content.Shared.Implants.Components; using Content.Shared.Interaction; @@ -8,6 +7,7 @@ using JetBrains.Annotations; using Robust.Shared.Containers; using Robust.Shared.Network; +using System.Linq; namespace Content.Shared.Implants; @@ -17,6 +17,7 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; [Dependency] private readonly SharedContainerSystem _container = default!; [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly SharedTransformSystem _transformSystem = default!; public const string BaseStorageId = "storagebase"; @@ -75,16 +76,11 @@ private void OnRemove(EntityUid uid, SubdermalImplantComponent component, EntGot if (!_container.TryGetContainer(uid, BaseStorageId, out var storageImplant)) return; - var entCoords = Transform(component.ImplantedEntity.Value).Coordinates; - var containedEntites = storageImplant.ContainedEntities.ToArray(); foreach (var entity in containedEntites) { - if (Terminating(entity)) - continue; - - _container.RemoveEntity(storageImplant.Owner, entity, force: true, destination: entCoords); + _transformSystem.DropNextTo(entity, uid); } } From c0fcf4b93bba180809879c0759b02d80007f7ff5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 19 Jan 2025 19:50:07 +0000 Subject: [PATCH 038/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e56d6a0fc95..83a166c20bc 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: deltanedas - changes: - - message: Adjusted the costs and production times of all electronics so they're - more consistent with eachother. - type: Tweak - id: 7331 - time: '2024-09-09T19:34:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31524 - author: Winkarst-cpu changes: - message: Now fire axe (the flaming one), and an advanced circular saw are Syndicate @@ -3913,3 +3905,11 @@ id: 7830 time: '2025-01-19T05:32:34.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34475 +- author: Winkarst-cpu + changes: + - message: Now items from the storage implant drop on the floor upon gibbing of + the owner. + type: Tweak + id: 7831 + time: '2025-01-19T19:48:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33493 From 17c075409bd9259886bb596614825389a0aa1899 Mon Sep 17 00:00:00 2001 From: lapatison <100279397+lapatison@users.noreply.github.com> Date: Mon, 20 Jan 2025 02:53:19 +0300 Subject: [PATCH 039/103] translation corrections (#2943) Co-authored-by: lapatison --- Resources/Locale/ru-RU/datasets/figurines.ftl | 4 ++-- Resources/Locale/ru-RU/holopad/holopad.ftl | 2 +- .../prototypes/entities/structures/machines/holopad.ftl | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Locale/ru-RU/datasets/figurines.ftl b/Resources/Locale/ru-RU/datasets/figurines.ftl index e354b5a64b7..c96be88d0d2 100644 --- a/Resources/Locale/ru-RU/datasets/figurines.ftl +++ b/Resources/Locale/ru-RU/datasets/figurines.ftl @@ -70,8 +70,8 @@ figurines-rd-1 = Взорвать всех боргов! figurines-rd-2 = Арсенал третьего уровня? Ни за что. figurines-scientist-1 = Кто-то другой сделал эти бомбы! figurines-scientist-2 = Он попросил, чтобы его боргировали! -figurines-scientist-3 = Карп в нио! -figurines-scientist-4 = Взрыв в нио! +figurines-scientist-3 = Карп в РНД! +figurines-scientist-4 = Взрыв в РНД! figurines-scientist-5 = Аномалия взорвалась! figurines-cmo-1 = Датчики костюмов! figurines-cmo-2 = Почему у нас есть мет? diff --git a/Resources/Locale/ru-RU/holopad/holopad.ftl b/Resources/Locale/ru-RU/holopad/holopad.ftl index 2caf6a42529..efd4781e258 100644 --- a/Resources/Locale/ru-RU/holopad/holopad.ftl +++ b/Resources/Locale/ru-RU/holopad/holopad.ftl @@ -63,7 +63,7 @@ holopad-command-hos = Командование - ГСБ holopad-science-anomaly = Научный - Аномалистика holopad-science-artifact = Научный - Ксеноархеология holopad-science-robotics = Научный - Робототехника -holopad-science-rnd = Научный - НИО +holopad-science-rnd = Научный - РНД holopad-science-front = Научный - Приёмная holopad-science-breakroom = Научный - Комната отдыха # Medical diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl index 7d96ed520ca..941d6bb3450 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl @@ -89,7 +89,7 @@ ent-HolopadScienceRobotics = { ent-Holopad } .suffix = Робототехника .desc = { ent-Holopad.desc } ent-HolopadScienceRnd = { ent-Holopad } - .suffix = НИО + .suffix = РНД .desc = { ent-Holopad.desc } ent-HolopadScienceFront = { ent-Holopad } .suffix = Научный Приёмная From ef50219455f19f3139bebfe3ba233658b83cc096 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 20 Jan 2025 10:59:42 +1100 Subject: [PATCH 040/103] Fix `emergency_elkridge` being saved as a map (#34496) Save `emergency_elkridge` as a grid --- Resources/Maps/Shuttles/emergency_elkridge.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/Resources/Maps/Shuttles/emergency_elkridge.yml b/Resources/Maps/Shuttles/emergency_elkridge.yml index efeba6844bc..4dafdee84a2 100644 --- a/Resources/Maps/Shuttles/emergency_elkridge.yml +++ b/Resources/Maps/Shuttles/emergency_elkridge.yml @@ -18,7 +18,7 @@ entities: name: NT Evac Log - type: Transform pos: -0.42093527,-0.86894274 - parent: 637 + parent: invalid - type: MapGrid chunks: 0,0: @@ -804,18 +804,6 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - - uid: 637 - components: - - type: MetaData - name: Map Entity - - type: Transform - - type: Map - mapPaused: True - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - proto: AirAlarm entities: - uid: 577 From 40f9170078880c0e344c35ed441ff166ae0c48e0 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 20 Jan 2025 11:07:19 +1100 Subject: [PATCH 041/103] Update engine to v240.1.0 (#34524) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index f8410a4674a..8f2817aa4eb 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit f8410a4674a4978fcea3fd267c6fb26b2ba6e7de +Subproject commit 8f2817aa4eb727cf57513d6cf58900e21c52de61 From 01860fdfad5c42f77df44babf7a28aefbcb61fe8 Mon Sep 17 00:00:00 2001 From: lapatison <100279397+lapatison@users.noreply.github.com> Date: Mon, 20 Jan 2025 03:16:01 +0300 Subject: [PATCH 042/103] translation corrections (#2941) Co-authored-by: lapatison --- .../Locale/ru-RU/corvax/paper/books-lore.ftl | 12 ++++++------ .../station-goal/station-goal-component.ftl | 6 +++--- Resources/Locale/ru-RU/holopad/holopad.ftl | 2 +- .../ru-RU/navmap-beacons/station-beacons.ftl | 2 +- .../catalog/fills/backpacks/duffelbag.ftl | 2 +- .../catalog/fills/crates/engineering.ftl | 4 ++-- .../catalog/fills/crates/permaescape.ftl | 2 +- .../catalog/fills/lockers/suit_storage.ftl | 14 +++++++------- .../entities/clothing/head/eva-helmets.ftl | 4 ++-- .../entities/clothing/head/hardsuit-helmets.ftl | 4 ++-- .../clothing/outerclothing/hardsuits.ftl | 2 +- .../clothing/outerclothing/softsuits.ftl | 10 +++++----- .../entities/mobs/player/humanoid.ftl | 16 ++++++++-------- .../entities/objects/devices/station_beacon.ftl | 2 +- .../prototypes/entities/objects/fun/toys.ftl | 2 +- .../structures/doors/airlocks/access.ftl | 4 ++-- .../entities/structures/machines/holopad.ftl | 2 +- .../structures/machines/vending_machines.ftl | 2 +- .../structures/wallmounts/signs/signs.ftl | 2 +- Resources/Locale/ru-RU/store/uplink-catalog.ftl | 4 ++-- .../Structures/Wallmounts/signs.rsi/eva.png | Bin 517 -> 578 bytes .../Structures/Wallmounts/signs.rsi/meta.json | 2 +- 22 files changed, 50 insertions(+), 50 deletions(-) diff --git a/Resources/Locale/ru-RU/corvax/paper/books-lore.ftl b/Resources/Locale/ru-RU/corvax/paper/books-lore.ftl index 6733623e5f1..d8ce70a7d8f 100644 --- a/Resources/Locale/ru-RU/corvax/paper/books-lore.ftl +++ b/Resources/Locale/ru-RU/corvax/paper/books-lore.ftl @@ -876,20 +876,20 @@ book-bss-contents = Тут в дело вступают Блюспейс-кристаллы и Блюспейс-модуль двигателей. Кристаллы способны сохранить, а потом дать огромное количество энергии, а модуль способен принять всю эту энергию и запустить колебание вол вероятности такого масштаба, что шаттл просто... окажется в другом месте - квантово туннелирует через пространство. book-scaf-contents = - EVA скафандры + ВКД скафандры - Образовано от сочетания слов на старом языке землян Extra-Vehicular Activity, что обозначало внетранспортную деятельность, подразумевая, что это скафандр для выхода из космического шаттла в открытый космос. Скафандры серии EVA появились ещё до NT, по большому счёту эта серия была повторением успехов старых скафандров, но с использованием новых материалов. Их оболочка включала в себя три слоя + Образовано от сочетания слов на старом языке землян Extra-Vehicular Activity, что обозначало внетранспортную деятельность, подразумевая, что это скафандр для выхода из космического шаттла в открытый космос. Скафандры серии ВКД появились ещё до NT, по большому счёту эта серия была повторением успехов старых скафандров, но с использованием новых материалов. Их оболочка включала в себя три слоя 1) Внутренний слой. Является теплоизоляционным и герметизирующим. Предотвращает потерю тепла и выход газовой смеси из скафандра. Используется полимерный композитный материал на основе резины. 2) Защитный слой. Является армированным стали-полимерным нетканым материалом для погашения ударов мелких космических объектов, вроде пыли и крохотных частичек космического мусора с орбитальными скоростями. - 3) Внешний слой. Он исполняет больше эстетическую функцию. Он скрывает внутренние неровности, трубки и крепления. Кроме того, именно на этот слой наносится краска, которая позволяет разделять EVA скафандры по типам - тюремный, аварийный и т.д. + 3) Внешний слой. Он исполняет больше эстетическую функцию. Он скрывает внутренние неровности, трубки и крепления. Кроме того, именно на этот слой наносится краска, которая позволяет разделять ВКД скафандры по типам - тюремный, аварийный и т.д. Скафандры специалистов по работе в открытом космосе - Следующие итерацией развития скафандров после достижения пределов серией EVA стала разработка принципиально новой серии скафандров. И первым в серии стал скафандр для работы в открытом космосе. Это было совершенно необходимо для строительство новых космических объектов прямо в космосе, для проведения диагностики внешних покровов космических объектов, а также для прочих работ. Скафандр конструировали таким образом, чтобы погасить большую часть вероятных рисков космоса. Из-за этого скафандр насчитывал четыре слоя + Следующие итерацией развития скафандров после достижения пределов серией ВКД стала разработка принципиально новой серии скафандров. И первым в серии стал скафандр для работы в открытом космосе. Это было совершенно необходимо для строительство новых космических объектов прямо в космосе, для проведения диагностики внешних покровов космических объектов, а также для прочих работ. Скафандр конструировали таким образом, чтобы погасить большую часть вероятных рисков космоса. Из-за этого скафандр насчитывал четыре слоя • 1) Дереакционное покрытие. Покрытие, сделанное из слабоактивных композитов, что предотвращает деградацию других слоёв, при попадании скафандра в условия действия кислотной атмосферы. @@ -899,9 +899,9 @@ book-scaf-contents = • 4) Внутренний слой. Выполнен из достаточно армированного прорезиненного композита. Он препятствует переохлаждению. А также может защитить от ударов о небольшие предметы. - Создатели вдохновлялись Земными латными доспехами эпохи позднего Средневековья. Пластинчатое покрытие позволяло быть защищённым от крупных ударов и при этом иметь определённую мобильность. Но при этом от удара, скажем, ножа или укуса кого-нибудь хищного защищал в результате только внутренний крепкий, но не непробиваемый слой. Впрочем... где в космосе можно попасть на нож или клык… Помимо этого, скафандр вышел банально слишком тяжёлым. В нём неудобно было заниматься строительством, даже в условиях невесомости. В целом разработка не была признана провальной, но требовала доработки. Да и вообще руководство НТ считало эти скафандры лучше серии EVA, а потому развернуло массовое производство, но дала команду конструкторам облегчить модель, добавив больше удобства. + Создатели вдохновлялись Земными латными доспехами эпохи позднего Средневековья. Пластинчатое покрытие позволяло быть защищённым от крупных ударов и при этом иметь определённую мобильность. Но при этом от удара, скажем, ножа или укуса кого-нибудь хищного защищал в результате только внутренний крепкий, но не непробиваемый слой. Впрочем... где в космосе можно попасть на нож или клык… Помимо этого, скафандр вышел банально слишком тяжёлым. В нём неудобно было заниматься строительством, даже в условиях невесомости. В целом разработка не была признана провальной, но требовала доработки. Да и вообще руководство НТ считало эти скафандры лучше серии ВКД, а потому развернуло массовое производство, но дала команду конструкторам облегчить модель, добавив больше удобства. - Облегчённый скафандр изобретали не долго. Сперва сильно сократили толщину свинцового слоя. Затем уменьшили количество стальных пластин. Убрали армирование и переработали структуру внутреннего слоя. Скафандр защищал не так сильно, но был всё ещё шагом вперёд в сравнении с серией EVA. Инженеры продолжили скептически относиться к данному новшеству, но специалисты по утилизации обломков приняли такие скафандры, как вторую кожу, потому ныне их и зовут скафандрами утилизаторов. + Облегчённый скафандр изобретали не долго. Сперва сильно сократили толщину свинцового слоя. Затем уменьшили количество стальных пластин. Убрали армирование и переработали структуру внутреннего слоя. Скафандр защищал не так сильно, но был всё ещё шагом вперёд в сравнении с серией ВКД. Инженеры продолжили скептически относиться к данному новшеству, но специалисты по утилизации обломков приняли такие скафандры, как вторую кожу, потому ныне их и зовут скафандрами утилизаторов. book-mbsone-contents = Модуль «Маяк-01» diff --git a/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl b/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl index 52db5acc9ca..1fd0348a0bd 100644 --- a/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl +++ b/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl @@ -180,7 +180,7 @@ station-goal-shuttle-rnd = 1. Обеспечен стабильным источником питания и резервной батареей СМЭС. 2. Уметь совершать следующие движения: крен, тангаж и рысканье. 3. Доступ к используемому оборудованию внутри отсеков не должен быть затруднён. - 4. Иметь на борту следующие устройства и снаряжение: М.А.К.А.К (x1), М.А.Р.Т.Ы.Х. (х2), синхронизатор аномалий (x1), магнитные сапоги (х2) и экспериментальный сосуд аномалии (х1), а также как минимум два скафандра EVA и два костюма радиационной защиты. + 4. Иметь на борту следующие устройства и снаряжение: М.А.К.А.К (x1), М.А.Р.Т.Ы.Х. (х2), синхронизатор аномалий (x1), магнитные сапоги (х2) и экспериментальный сосуд аномалии (х1), а также как минимум два скафандра ВКД и два костюма радиационной защиты. Справочная информация для неквалифицированного персонала: Крен — вращательное движение. @@ -215,7 +215,7 @@ station-goal-shuttle-emergency = 1. Обеспечен стабильным источником питания и резервной батареей СМЭС. 2. Уметь совершать следующие движения: крен, тангаж и рысканье. 3. Доступ к используемому оборудованию внутри отсеков не должен быть затруднён. - 4. Иметь на борту ящик медицинских припасов, продвинутый аварийный набор, два ящика с наборами EVA, ящик стекла, два ящика стали, ящик пластали, ящик джетпаков, ящик ИРП. + 4. Иметь на борту ящик медицинских припасов, продвинутый аварийный набор, два ящика с наборами ВКД, ящик стекла, два ящика стали, ящик пластали, ящик джетпаков, ящик ИРП. Справочная информация для неквалифицированного персонала: Крен — вращательное движение. @@ -287,7 +287,7 @@ station-goal-bunker = 5. Содержать базовые лекарства в виде таблеток со справкой о их назначении и наборы от механических повреждений. 6. Запасы провизии с расчетом на четыре человека, на срок от 72 часов. 7. Автономное питание и канистры с воздухом и кислородом. - 8. Шкафчики со снаряжением для биологической и радиационной защиты. Так же аварийные скафандры EVA и костюм сапёра. + 8. Шкафчики со снаряжением для биологической и радиационной защиты. Так же аварийные скафандры ВКД и костюм сапёра. Бункер отдела Службы Безопасности должен так же включать в себя два Силовика и три Раздатчика летальных ружейных патронов. Бункер Медицинского отдела должен дополнительно оснащаться Дефиблилятором и зарядником батарей. diff --git a/Resources/Locale/ru-RU/holopad/holopad.ftl b/Resources/Locale/ru-RU/holopad/holopad.ftl index efd4781e258..9d58fe57716 100644 --- a/Resources/Locale/ru-RU/holopad/holopad.ftl +++ b/Resources/Locale/ru-RU/holopad/holopad.ftl @@ -41,7 +41,7 @@ holopad-general-tools = Общий - Инструменты holopad-general-cryosleep = Общий - Криосон holopad-general-theater = Общий - Театр holopad-general-disposals = Общий - Мусоросброс -holopad-general-eva = Общий - EVA хранилище +holopad-general-eva = Общий - хранилище ВКД holopad-general-lounge = Общий - Зона отдыха holopad-general-arcade = Общий - Аркады holopad-general-evac = Общий - Эвак diff --git a/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl b/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl index b11b2d70c79..a6b2c079d5b 100644 --- a/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl +++ b/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl @@ -64,7 +64,7 @@ station-beacon-ai-power = ИИ Энергопитание station-beacon-arrivals = Зал прибытия station-beacon-evac = Зал эвакуации station-beacon-docking-arm = Стыковочная зона -station-beacon-eva-storage = Хранилище EVA +station-beacon-eva-storage = Хранилище ВКД station-beacon-chapel = Церковь station-beacon-library = Библиотека station-beacon-reporter = Репортёр diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl index 37046ddc166..4166368f267 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/backpacks/duffelbag.ftl @@ -46,7 +46,7 @@ ent-ClothingBackpackChameleonFill = { ent-ClothingBackpackDuffelSyndicate } ent-ClothingBackpackDuffelSyndicateRaidBundle = набор рейдерского костюма Синдиката .desc = Содержит прочный рейдерский бронекостюм Синдиката. ent-ClothingBackpackDuffelSyndicateEVABundle = { ent-ClothingBackpackDuffelSyndicate } - .suffix = набор EVA Синдиката + .suffix = набор ВКД Синдиката .desc = { ent-ClothingBackpackDuffelSyndicate.desc } ent-ClothingBackpackDuffelSyndicateHardsuitBundle = { ent-ClothingBackpackDuffelSyndicate } .suffix = набор скафандров Синдиката diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl index 324e87f7a70..5d6712e0205 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl @@ -22,8 +22,8 @@ ent-CrateEngineeringMiniJetpack = ящик мини-джетпаков .desc = Два мини-джетпака для тех, кому хочется вызова. ent-CrateAirlockKit = ящик компонентов шлюза .desc = Набор для строительства 6 воздушных шлюзов, инструменты в комплект не входят. -ent-CrateEvaKit = набор EVA - .desc = Набор, состоящий из двух престижных EVA скафандров и шлемов. +ent-CrateEvaKit = набор ВКД + .desc = Набор, состоящий из двух престижных ВКД скафандров и шлемов. ent-CrateRCDAmmo = ящик зарядов РСУ .desc = 3 обоймы для РСУ, каждая из которых восстанавливает 5 зарядов. ent-CrateRCD = ящик РСУ diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/permaescape.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/permaescape.ftl index faf48d38e66..a15a0078627 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/permaescape.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/permaescape.ftl @@ -4,7 +4,7 @@ ent-CratePermaEscapeDigging = { ent-CrateGenericSteel } .suffix = Копание .desc = { ent-CrateGenericSteel.desc } ent-CratePermaEscapeEVA = { ent-CrateGenericSteel } - .suffix = EVA + .suffix = ВКД .desc = { ent-CrateGenericSteel.desc } ent-CratePermaEscapeGun = { ent-CrateGenericSteel } .suffix = Огнестрел diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/lockers/suit_storage.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/lockers/suit_storage.ftl index 693552dfd7f..fa6fe5b8be3 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/lockers/suit_storage.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/lockers/suit_storage.ftl @@ -1,23 +1,23 @@ ent-SuitStorageEVA = { ent-SuitStorageBase } - .suffix = EVA + .suffix = ВКД .desc = { ent-SuitStorageBase.desc } ent-SuitStorageEVAAlternate = { ent-SuitStorageBase } - .suffix = EVA, Большой шлем + .suffix = ВКД, Большой шлем .desc = { ent-SuitStorageBase.desc } ent-SuitStorageEVAEmergency = { ent-SuitStorageBase } - .suffix = Аварийный EVA + .suffix = Аварийный ВКД .desc = { ent-SuitStorageBase.desc } ent-SuitStorageEVAPrisoner = { ent-SuitStorageBase } - .suffix = Тюремный EVA + .suffix = Тюремный ВКД .desc = { ent-SuitStorageBase.desc } ent-SuitStorageEVASyndicate = { ent-SuitStorageBase } - .suffix = Синдикат EVA + .suffix = Синдикат ВКД .desc = { ent-SuitStorageBase.desc } ent-SuitStorageEVAPirate = { ent-SuitStorageBase } - .suffix = Древний EVA + .suffix = Пиратский ВКД .desc = { ent-SuitStorageBase.desc } ent-SuitStorageNTSRA = { ent-SuitStorageBase } - .suffix = Ancient EVA + .suffix = Древний ВКД .desc = { ent-SuitStorageBase.desc } ent-SuitStorageBasic = { ent-SuitStorageBase } .suffix = Базовый скафандр diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/eva-helmets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/eva-helmets.ftl index e13a432cc5a..a605901eac6 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/eva-helmets.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/eva-helmets.ftl @@ -1,6 +1,6 @@ -ent-ClothingHeadHelmetEVA = шлем EVA +ent-ClothingHeadHelmetEVA = шлем ВКД .desc = Старый добрый шлем, предназначенный для внекорабельной деятельности. Известен тем, что вызывает паранойю у сотрудников службы безопасности. -ent-ClothingHeadHelmetEVALarge = шлем EVA +ent-ClothingHeadHelmetEVALarge = шлем ВКД .desc = Старый добрый шлем, предназначенный для внекорабельной деятельности. # Corvax-HiddenDesc-Start ent-ClothingHeadHelmetSyndicate = стильный шлем diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/hardsuit-helmets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/hardsuit-helmets.ftl index b5e8cd721d1..2a69586e1e3 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/hardsuit-helmets.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/hardsuit-helmets.ftl @@ -49,8 +49,8 @@ ent-ClothingHeadHelmetCBURN = шлем отряда РХБЗЗ ent-ClothingHeadHelmetHardsuitPirateCap = шлем древнего скафандра .desc = Специальный шлем скафандра, изготвленный для капитана пиратского корабля. .suffix = Пират -ent-ClothingHeadHelmetHardsuitPirateEVA = шлем EVA космических глубин - .desc = Шлем скафандра EVA космических глубин, очень тяжёлый, но обеспечивает неплохую защиту. +ent-ClothingHeadHelmetHardsuitPirateEVA = шлем ВКД космических глубин + .desc = Шлем скафандра ВКД космических глубин, очень тяжёлый, но обеспечивает неплохую защиту. .suffix = Пират ent-ClothingHeadHelmetHardsuitERTLeader = шлем скафандра лидера ОБР .desc = Специальный защитный шлем, который носят члены отрядов быстрого реагирования. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/hardsuits.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/hardsuits.ftl index 0094bef6254..dfa720f997f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/hardsuits.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/hardsuits.ftl @@ -61,7 +61,7 @@ ent-ClothingOuterHardsuitERTChaplain = скафандр священника О ent-ClothingOuterHardsuitPirateCap = древний бронескафандр .desc = Древний бронированный скафандр. .suffix = Пират -ent-ClothingOuterHardsuitPirateEVA = скафандр EVA космических глубин +ent-ClothingOuterHardsuitPirateEVA = скафандр ВКД космических глубин .desc = Тяжёлый скафандр, обеспечивающий минимальную защиту от холодных суровых реалий космических глубин. .suffix = Пират ent-ClothingOuterHardsuitClown = скафандр клоуна diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/softsuits.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/softsuits.ftl index 6aa046175b7..afcb7680153 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/softsuits.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/outerclothing/softsuits.ftl @@ -1,13 +1,13 @@ -ent-ClothingOuterHardsuitEVA = скафандр EVA +ent-ClothingOuterHardsuitEVA = скафандр ВКД .desc = Лёгкий космический скафандр, способный защитить владельца от космического вакуума во время аварийной ситуации. # Corvax-HiddenDesc-Start -ent-ClothingOuterHardsuitSyndicate = кроваво-красный скафандр EVA +ent-ClothingOuterHardsuitSyndicate = кроваво-красный скафандр ВКД .suffix = Синдикат .desc = { ent-ClothingOuterHardsuitEVA.desc } # Corvax-HiddenDesc-End -ent-ClothingOuterSuitEmergency = аварийный скафандр EVA - .desc = Аварийный скафандр EVA со встроенным шлемом. Он ужасно медленный и не имеет температурной защиты, но его достаточно, чтобы выиграть время в жёстком вакууме космоса. -ent-ClothingOuterHardsuitEVAPrisoner = тюремный скафандр EVA +ent-ClothingOuterSuitEmergency = аварийный скафандр ВКД + .desc = Аварийный скафандр ВКД со встроенным шлемом. Он ужасно медленный и не имеет температурной защиты, но его достаточно, чтобы выиграть время в жёстком вакууме космоса. +ent-ClothingOuterHardsuitEVAPrisoner = тюремный скафандр ВКД .desc = Лёгкий космический скафандр, способный защитить заключённого от космического вакуума во время аварийной ситуации. ent-ClothingOuterHardsuitAncientEVA = пустотный скафандр NTSRA .desc = Древний космический скафандр, разработанный по заказу Центкома подразделением NTSRA - ассоциацией космических исследований Nanotrasen. Он изготовлен с особой тщательностью, обеспечивая большую мобильность, чем большинство современных космических костюмов. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/humanoid.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/humanoid.ftl index e9cafae27f0..2ce2360c400 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/humanoid.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/humanoid.ftl @@ -5,43 +5,43 @@ ent-RandomHumanoidSpawnerERTLeader = ОБР лидер .suffix = Роль ОБР, Базовый .desc = { "" } ent-RandomHumanoidSpawnerERTLeaderEVA = ОБР лидер - .suffix = Роль ОБР, Броня EVA + .suffix = Роль ОБР, Броня ВКД .desc = { ent-RandomHumanoidSpawnerERTLeader.desc } ent-RandomHumanoidSpawnerERTLeaderEVALecter = { ent-RandomHumanoidSpawnerERTLeaderEVA } - .suffix = Роль ОБР, Лектер, EVA + .suffix = Роль ОБР, Лектер, ВКД .desc = { ent-RandomHumanoidSpawnerERTLeaderEVA.desc } ent-RandomHumanoidSpawnerERTChaplain = ОБР священник .suffix = Роль ОБР, Базовый .desc = { ent-RandomHumanoidSpawnerERTLeader.desc } ent-RandomHumanoidSpawnerERTChaplainEVA = ОБР священник - .suffix = Роль ОБР, Окруж. среда EVA + .suffix = Роль ОБР, Окруж. среда ВКД .desc = { ent-RandomHumanoidSpawnerERTChaplain.desc } ent-RandomHumanoidSpawnerERTJanitor = ОБР уборщик .suffix = Роль ОБР, Базовый .desc = { ent-RandomHumanoidSpawnerERTLeader.desc } ent-RandomHumanoidSpawnerERTJanitorEVA = ОБР уборщик - .suffix = Роль ОБР, Окруж. среда EVA + .suffix = Роль ОБР, Окруж. среда ВКД .desc = { ent-RandomHumanoidSpawnerERTJanitor.desc } ent-RandomHumanoidSpawnerERTEngineer = ОБР инженер .suffix = Роль ОБР, Базовый .desc = { ent-RandomHumanoidSpawnerERTLeader.desc } ent-RandomHumanoidSpawnerERTEngineerEVA = ОБР инженер - .suffix = Роль ОБР, Окруж. среда EVA + .suffix = Роль ОБР, Окруж. среда ВКД .desc = { ent-RandomHumanoidSpawnerERTEngineer.desc } ent-RandomHumanoidSpawnerERTSecurity = ОБР офицер безопасности .suffix = Роль ОБР, Базовый .desc = { ent-RandomHumanoidSpawnerERTLeader.desc } ent-RandomHumanoidSpawnerERTSecurityEVA = ОБР офицер безопасности - .suffix = Роль ОБР, Броня EVA + .suffix = Роль ОБР, Броня ВКД .desc = { ent-RandomHumanoidSpawnerERTSecurity.desc } ent-RandomHumanoidSpawnerERTSecurityEVALecter = { ent-RandomHumanoidSpawnerERTSecurityEVA } - .suffix = Роль ОБР, Лектер, EVA + .suffix = Роль ОБР, Лектер, ВКД .desc = { ent-RandomHumanoidSpawnerERTSecurityEVA.desc } ent-RandomHumanoidSpawnerERTMedical = ОБР медик .suffix = Роль ОБР, Базовый .desc = { ent-RandomHumanoidSpawnerERTLeader.desc } ent-RandomHumanoidSpawnerERTMedicalEVA = ОБР медик - .suffix = Роль ОБР, Броня EVA + .suffix = Роль ОБР, Броня ВКД .desc = { ent-RandomHumanoidSpawnerERTMedical.desc } ent-RandomHumanoidSpawnerCBURNUnit = Агент РХБЗЗ .suffix = Роль ОБР diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl index 47d07f0c435..a7bf2c7f432 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl @@ -196,7 +196,7 @@ ent-DefaultStationBeaconDockingArm = { ent-DefaultStationBeacon } .suffix = Стыковочная зона .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconEVAStorage = { ent-DefaultStationBeacon } - .suffix = Хранилище EVA + .suffix = Хранилище ВКД .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconChapel = { ent-DefaultStationBeacon } .suffix = Церковь diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/toys.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/toys.ftl index 132f137a32c..e408b907093 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/toys.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/toys.ftl @@ -30,7 +30,7 @@ ent-PlushieRainbowLizard = радужный плюшевый унатх ent-PlushieLizardMirrored = { ent-PlushieLizard } .desc = { ent-PlushieLizard.desc } ent-PlushieSpaceLizard = плюшевый космический унатх - .desc = Очаровательная мягкая игрушка, напоминающая унатха в EVA костюме. Изготовлена Центком в рамках показательной инициативы по борьбе с дискриминацией по видовому признаку в рабочей среде. "Приветствуйте своих новых коллег как вы приветствуете эту игрушку, с распростёртыми объятиями!". + .desc = Очаровательная мягкая игрушка, напоминающая унатха в ВКД костюме. Изготовлена Центком в рамках показательной инициативы по борьбе с дискриминацией по видовому признаку в рабочей среде. "Приветствуйте своих новых коллег как вы приветствуете эту игрушку, с распростёртыми объятиями!". ent-PlushieDiona = плюшевая диона .desc = Очаровательная мягкая игрушка, напоминающая диону. Любит воду и обнимашки. Не мочить! ent-PlushieSharkBlue = синяя плюшевая акула diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl index a84c5e5fcb6..3b5f27c6981 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl @@ -134,7 +134,7 @@ ent-AirlockVaultLocked = { ent-AirlockSecurity } .suffix = Хранилище, Закрыт .desc = { ent-AirlockSecurity.desc } ent-AirlockEVALocked = { ent-AirlockCommand } - .suffix = EVA, Закрыт + .suffix = ВКД, Закрыт .desc = { ent-AirlockCommand.desc } ent-AirlockServiceGlassLocked = { ent-AirlockGlass } .suffix = Сервисный, Закрыт @@ -254,7 +254,7 @@ ent-AirlockArmoryGlassLocked = { ent-AirlockSecurityGlass } .suffix = Оружейная, Закрыт .desc = { ent-AirlockSecurityGlass.desc } ent-AirlockEVAGlassLocked = { ent-AirlockCommandGlassLocked } - .suffix = EVA, Закрыт + .suffix = ВКД, Закрыт .desc = { ent-AirlockCommandGlassLocked.desc } ent-AirlockSyndicateGlassLocked = { ent-AirlockSyndicateGlass } .suffix = Синдикат, Закрыт diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl index 941d6bb3450..90dcf31ed06 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl @@ -23,7 +23,7 @@ ent-HolopadGeneralDisposals = { ent-Holopad } .suffix = Мусоросброс .desc = { ent-Holopad.desc } ent-HolopadGeneralEVAStorage = { ent-Holopad } - .suffix = EVA хранилище + .suffix = Хранилище ВКД .desc = { ent-Holopad.desc } ent-HolopadGeneralLounge = { ent-Holopad } .suffix = Зона отдыха diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl index fcca874ffb8..b80bacc8fe5 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl @@ -146,7 +146,7 @@ ent-VendingMachinePride = Прайд-О-Мат .desc = Торговый автомат, наполненный гордостью. ent-VendingMachineTankDispenserEVA = раздатчик газовых баллонов .desc = Автомат по выдаче газовых баллонов. - .suffix = EVA [O2, N2] + .suffix = ВКД [O2, N2] ent-VendingMachineTankDispenserEngineering = раздатчик газовых баллонов .desc = Автомат по выдаче газовых баллонов. Этот имеет инженерную окраску. .suffix = ИНЖ [O2, Плазма] diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl index 9532afabc4a..d4f6c18acd0 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl @@ -118,7 +118,7 @@ ent-SignShipDock = знак "эвакуация" .desc = Знак, указывающий, куда (скорее всего) прибудет эвакуационный шаттл. ent-SignEngineering = знак "инженерия" .desc = Знак, указывающий на инженерный отдел. -ent-SignEVA = знак "EVA" +ent-SignEVA = знак "ВКД" .desc = Знак, указывающий на хранилище скафандров. ent-SignGravity = знак "гравитация" .desc = Знак, указывающий на отсек генератора гравитации. diff --git a/Resources/Locale/ru-RU/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/store/uplink-catalog.ftl index aadf4bc1856..d1260c4a610 100644 --- a/Resources/Locale/ru-RU/store/uplink-catalog.ftl +++ b/Resources/Locale/ru-RU/store/uplink-catalog.ftl @@ -219,8 +219,8 @@ uplink-clothing-shoes-boots-mag-syndie-name = Кроваво-красные ма uplink-clothing-shoes-boots-mag-syndie-desc = Пара ботинок, которые предотвращают поскальзывание и позволяют нормально передвигаться в условиях невесомости за счёт небольшого замедления. Кроме этого, они обладают функционалом реактивного ранца и поставляются заправленными, но хватает их ненадолго. uplink-hardsuit-carp-name = Скафандр карпа uplink-hardsuit-carp-desc = Выглядит как обычный костюм карпа, только космический, и заставляет космических карпов думать что вы один из них. -uplink-eva-syndie-name = Набор EVA Синдиката -uplink-eva-syndie-desc = Простой EVA-скафандр, который не даёт никакой защиты, кроме той, что необходима для выживания в космосе. +uplink-eva-syndie-name = Набор ВКД Синдиката +uplink-eva-syndie-desc = Простой ВКД-скафандр, который не даёт никакой защиты, кроме той, что необходима для выживания в космосе. uplink-syndie-raid-name = Рейдерский костюм Синдиката uplink-syndie-raid-desc = Очень прочный и довольно гибкий костюм с кроваво-красным бронированием, лучше защищающий от всех обычных видов повреждений, но не предназначенный для выхода в открытый космос. Поставляется в комплекте с крутым шлемом. uplink-hardsuit-syndieelite-name = Элитный скафандр Синдиката diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/eva.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/eva.png index 3e5d2db3c327eb11dd23129738481b66359c3f89..86be385dcf6d74be4057958cf761d79e0d099b9b 100644 GIT binary patch delta 554 zcmV+_0@eM61i}Q6BYy%3NklNGo4^5BG`zXE6~>79k>E_ zU~j7{uoD|WWJ3TS1{9OtJy)6v<*V=ILi!lGC!dFEJ51tLEL ztTIJ_pSVOu7~WS@0b6oPjGb!4se;6&wnX!b1gNZliad1&6sH>G_aZ=Q)r*{R|F%_~ z0ZY~gIe0|^?0>bg-0JSGyBp%TE$+x!8m0cu&WUYvv2Dtz5`#gNP zR&)yhwH1(v$jA0bn4cF3=@j5W1kQDn5P(H&Nf7Ag+c@J+0VL^eL#`$vvVE^P-tX;B z0jx~-UX!g5`P7S8b8hN(s{{bb$!?%dCOY?th~0_YRvu{v>?I?kfr|yx#xKcE#ZKi sC%Ioe=_5%21Q9{sM~le&!2SCe-yLoS-m)TQx&QzG07*qoM6N<$f|->G$p8QV delta 492 zcmVPx$zez+vR9J=WS21eCFcf_)T?>Wcc67FY zM`Hq6O17N9U9;x~Ie~BBy=#4fZl+5i1dWDl@tB%Gp$Bl6epj|6>nk>NXdi?a$<}-N z`g+m_{yHxDI_Jw(Jr>d1%afMts*l{C&TxA_8BBgU9sr=$iGR=vAo9s{Hkcd$u5a$> zQ4wK`K;O*6z(c(7mG&$zA&Sa4Ub){Y?M4A6BzwdAq+g@yP~KNFZ@QVX-S*}P*{_7)R3EUfcokEQ3U7&5#dlc<$#Pa z$k_tq#1ci-OMgxwryLkXfGDa~=9|`4Zr`Lk>-w_=06#O5Bhmfo-m`&~gvmN;ML=gp z)J9uR6qWMbSpvF)(BNU*Yg>8)Yr$v%qFBE_Z>m1lWwlFj zfGk#aLXO+@L3>x9FIRQ=@F?GA2jlbO9pd#_sSk`vcsd?h0$kS?XfMZiZJ@wd8I4_- il>4o=I{Nj}>>poLtOnrvSizD20000 Date: Sun, 19 Jan 2025 16:21:25 -0800 Subject: [PATCH 043/103] Fixes some mobs not being able to honk/weh (#33777) * fixes some mobs not being able to honk/weh * addresss review --- Resources/Prototypes/Voice/speech_emote_sounds.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index 8f4d4fc88ee..9fab1aeed80 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -226,6 +226,12 @@ path: /Audio/Voice/Vox/shriek1.ogg Laugh: path: /Audio/Voice/Vox/vox_laugh.ogg + Honk: + collection: BikeHorn + Weh: + collection: Weh + Hew: + collection: Hew params: variation: 0.125 # We need vox sounds for the other emotes @@ -269,6 +275,8 @@ collection: Weh Hew: collection: Hew + Honk: + collection: BikeHorn Gasp: collection: MaleGasp DefaultDeathgasp: @@ -379,6 +387,8 @@ collection: Weh Hew: collection: Hew + Honk: + collection: BikeHorn Gasp: collection: MaleGasp DefaultDeathgasp: From 9485cb6eb81f1745e1adfde60f09a3f9414b794f Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 20 Jan 2025 00:22:32 +0000 Subject: [PATCH 044/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 39 +++++++------------------------ 1 file changed, 9 insertions(+), 30 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 83a166c20bc..891ce79763b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,34 +1,4 @@ Entries: -- author: Winkarst-cpu - changes: - - message: Now fire axe (the flaming one), and an advanced circular saw are Syndicate - contraband. - type: Fix - - message: Now encryption keys are restricted according to their department. - type: Fix - - message: Now ERT, Deathsquad and Central Command Official items are restricted - to the Central Command. - type: Fix - - message: Now acolyte armor, a thieving beacon and the thief's undetermined toolbox - are minor contraband. - type: Fix - - message: Now bladed flatcaps are not a contraband (stealth item). - type: Fix - - message: Now mercenary clothes, magazines, speedloaders and cartridges are contraband. - type: Fix - - message: Now cleanades are restricted to the Service. - type: Fix - - message: Now metal foam grenades are restricted to the Engineering. - type: Fix - - message: Now flash, smoke, and tear gas grenades are restricted to the Security. - type: Fix - - message: Now combat gloves are restricted to Security and Cargo. - type: Fix - - message: The Central Command restricted contraband group and department were added. - type: Add - id: 7332 - time: '2024-09-09T19:36:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31606 - author: themias changes: - message: Unpublished news article progress is automatically saved @@ -3913,3 +3883,12 @@ id: 7831 time: '2025-01-19T19:48:58.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33493 +- author: ArtisticRoomba + changes: + - message: Voxes can now honk, weh, and hew if forced to by a reagent. + type: Fix + - message: Arachnids and Moths can now honk if forced to by a reagent. + type: Fix + id: 7832 + time: '2025-01-20T00:21:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33777 From 6ed60fecde586439fd9b8735b39e5935326e30d0 Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Mon, 20 Jan 2025 12:32:45 +1200 Subject: [PATCH 045/103] Welding gas mask toggleable with action (#32691) welding mask removable --- .../Entities/Clothing/Masks/masks.yml | 23 +++++++++++++++ .../Entities/Clothing/Masks/specific.yml | 29 ------------------- 2 files changed, 23 insertions(+), 29 deletions(-) diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 5a742a20e7d..fa67fe65c41 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -664,3 +664,26 @@ - type: EyeProtection - type: BreathMask - type: IdentityBlocker + +- type: entity + parent: ClothingMaskGas + id: ClothingMaskWeldingGas + name: welding gas mask + description: A gas mask with built in welding goggles and face shield. Looks like a skull, clearly designed by a nerd. + components: + - type: Sprite + sprite: Clothing/Mask/welding-gas.rsi + state: icon + - type: Clothing + sprite: Clothing/Mask/welding-gas.rsi + - type: FlashImmunity + - type: EyeProtection + - type: PhysicalComposition + materialComposition: + Steel: 200 + Glass: 100 + - type: StaticPrice + price: 100 + - type: Tag + tags: + - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml index d8da80611cf..286dfd6cf1c 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/specific.yml @@ -40,35 +40,6 @@ enum.VoiceMaskUIKey.Key: type: VoiceMaskBoundUserInterface -- type: entity - parent: ClothingMaskBase - id: ClothingMaskWeldingGas - name: welding gas mask - description: A gas mask with built in welding goggles and face shield. Looks like a skull, clearly designed by a nerd. - components: - - type: Sprite - sprite: Clothing/Mask/welding-gas.rsi - state: icon - - type: Clothing - sprite: Clothing/Mask/welding-gas.rsi - - type: BreathMask - - type: IngestionBlocker - - type: IdentityBlocker - - type: FlashImmunity - - type: EyeProtection - - type: PhysicalComposition - materialComposition: - Steel: 200 - Glass: 100 - - type: StaticPrice - price: 100 - - type: Tag - tags: - - WhitelistChameleon - - type: HideLayerClothing - slots: - - Snout - - type: entity parent: ClothingMaskBase id: ClothingMaskGoldenCursed From a84b67a68620a9243cfae5a1f1be3bde433368e6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 20 Jan 2025 00:33:51 +0000 Subject: [PATCH 046/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 891ce79763b..cda7db897ab 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Unpublished news article progress is automatically saved - type: Tweak - id: 7333 - time: '2024-09-09T19:38:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31491 - author: metalgearsloth changes: - message: Fix spawn prefs. @@ -3892,3 +3885,10 @@ id: 7832 time: '2025-01-20T00:21:25.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33777 +- author: K-Dynamic + changes: + - message: Welding gas masks are now toggleable like other breathing masks. + type: Fix + id: 7833 + time: '2025-01-20T00:32:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32691 From 1846e9b5648360debf4e74a211c37c83abf5e402 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 20 Jan 2025 01:49:33 +0100 Subject: [PATCH 047/103] fix locale (#2925) --- Resources/Locale/ru-RU/holopad/holopad.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Locale/ru-RU/holopad/holopad.ftl b/Resources/Locale/ru-RU/holopad/holopad.ftl index 9d58fe57716..7054e2eb0a5 100644 --- a/Resources/Locale/ru-RU/holopad/holopad.ftl +++ b/Resources/Locale/ru-RU/holopad/holopad.ftl @@ -131,7 +131,7 @@ holopad-ai-backup-power = ИИ - Резервное питание holopad-ai-entrance = ИИ - Вход holopad-ai-chute = ИИ - Транспортный блок # Long Range -holopad-station-bridge = Станция - Бриг +holopad-station-bridge = Станция - Мостик holopad-station-cargo-bay = Станция - Грузовой отсек # CentComm holopad-centcomm-evac = Центком - Эвакуационный шаттл From 64689b4cc81bc466395e935e8f143930703dc98e Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 20 Jan 2025 10:59:42 +1100 Subject: [PATCH 048/103] Fix `emergency_elkridge` being saved as a map (#34496) Save `emergency_elkridge` as a grid (cherry picked from commit ef50219455f19f3139bebfe3ba233658b83cc096) --- Resources/Maps/Shuttles/emergency_elkridge.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/Resources/Maps/Shuttles/emergency_elkridge.yml b/Resources/Maps/Shuttles/emergency_elkridge.yml index efeba6844bc..4dafdee84a2 100644 --- a/Resources/Maps/Shuttles/emergency_elkridge.yml +++ b/Resources/Maps/Shuttles/emergency_elkridge.yml @@ -18,7 +18,7 @@ entities: name: NT Evac Log - type: Transform pos: -0.42093527,-0.86894274 - parent: 637 + parent: invalid - type: MapGrid chunks: 0,0: @@ -804,18 +804,6 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - - uid: 637 - components: - - type: MetaData - name: Map Entity - - type: Transform - - type: Map - mapPaused: True - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - proto: AirAlarm entities: - uid: 577 From c4ed3fc275f9b38b2ff8d80fc5f2e7d972445e07 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 20 Jan 2025 12:24:40 +1100 Subject: [PATCH 049/103] Update engine to v240.1.1 (#34527) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index 8f2817aa4eb..aa8fe8ac92d 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 8f2817aa4eb727cf57513d6cf58900e21c52de61 +Subproject commit aa8fe8ac92d5ac509696ee8d782385c94b98d720 From 6b6dc1366431c5a91d5c08d00849fdf525f59635 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 20 Jan 2025 01:25:46 +0000 Subject: [PATCH 050/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index cda7db897ab..e9cfa5a912b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix spawn prefs. - type: Fix - id: 7334 - time: '2024-09-09T19:39:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31892 - author: lzk228 changes: - message: The captain now have special late join message. @@ -3892,3 +3885,10 @@ id: 7833 time: '2025-01-20T00:32:45.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32691 +- author: ElectroJr + changes: + - message: Fixed some visual overlays not being removed when the effect should stop. + type: Fix + id: 7834 + time: '2025-01-20T01:24:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34527 From 6361a121d52a75b0dae737e4839479fd0b4810de Mon Sep 17 00:00:00 2001 From: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Date: Mon, 20 Jan 2025 05:10:51 -0500 Subject: [PATCH 051/103] Plasma Dirt Fix (#34534) did the dirt thing --- Resources/Maps/plasma.yml | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/Resources/Maps/plasma.yml b/Resources/Maps/plasma.yml index e2be97d6f4c..b5b2c2ee6c3 100644 --- a/Resources/Maps/plasma.yml +++ b/Resources/Maps/plasma.yml @@ -2210,6 +2210,8 @@ entities: 713: -32,-30 714: -31,-19 - node: + cleanable: True + zIndex: 1 color: '#FFFFFFFF' id: Dirt decals: @@ -2226,11 +2228,6 @@ entities: 6708: -71,-37 6709: -70,-36 6710: -68,-36 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: 5206: -56,-54 5207: -55,-55 5208: -55,-54 @@ -2293,6 +2290,8 @@ entities: 7242: -21,19 7243: -22,20 - node: + cleanable: True + zIndex: 1 color: '#FFFFFFFF' id: DirtHeavy decals: @@ -2305,11 +2304,6 @@ entities: 6083: -21,5 6084: -21,4 6085: -22,4 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: 329: -54,-11 330: -50,-11 1572: -65,-34 @@ -2365,11 +2359,14 @@ entities: 4063: -98,-18 - node: cleanable: True + zIndex: 1 color: '#FFFFFFFF' id: DirtHeavyMonotile decals: 1579: -66,-34 - node: + cleanable: True + zIndex: 1 color: '#FFFFFFFF' id: DirtLight decals: @@ -2389,11 +2386,6 @@ entities: 6713: -71,-32 6714: -71,-31 6715: -71,-30 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: 1580: -64,-33 1581: -65,-33 1582: -64,-32 @@ -2490,6 +2482,8 @@ entities: 6921: -153,-44 6922: -145,-45 - node: + cleanable: True + zIndex: 1 color: '#FFFFFFFF' id: DirtMedium decals: @@ -2652,11 +2646,6 @@ entities: 7221: -121,34 7222: -122,34 7223: -122,33 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: 331: -54,-10 332: -51,-10 333: -52,-10 From a1e7b78fdeba7cdf173831f11a0ec13a799c13f2 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Mon, 20 Jan 2025 13:15:11 +0100 Subject: [PATCH 052/103] Fix locale (#2874) --- .../structures/storage/filing_cabinets.ftl | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/filing_cabinets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/filing_cabinets.ftl index 4f77ee8ac34..78e181e64d7 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/filing_cabinets.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/filing_cabinets.ftl @@ -1,5 +1,5 @@ ent-BaseFilingCabinet = { ent-BaseStructureDynamic } - .desc = каф для хранения всего, что пожелаете. + .desc = Шкаф для хранения всего, что пожелаете. .suffix = Пустой ent-filingCabinet = картотечный шкаф .desc = { ent-BaseFilingCabinet.desc } @@ -10,9 +10,12 @@ ent-filingCabinetDrawer = комод ent-BaseBureaucraticStorageFill = { "" } .suffix = Заполненный .desc = { "" } -ent-filingCabinetRandom = { ent-BaseBureaucraticStorageFill } - .desc = { ent-BaseBureaucraticStorageFill.desc } -ent-filingCabinetTallRandom = { ent-BaseBureaucraticStorageFill } - .desc = { ent-BaseBureaucraticStorageFill.desc } -ent-filingCabinetDrawerRandom = { ent-BaseBureaucraticStorageFill } - .desc = { ent-BaseBureaucraticStorageFill.desc } +ent-filingCabinetRandom = { ent-filingCabinet } + .desc = { ent-filingCabinet.desc } + .suffix = { ent-BaseBureaucraticStorageFill.suffix } +ent-filingCabinetTallRandom = { ent-filingCabinetTall } + .desc = { ent-filingCabinetTall.desc } + .suffix = { ent-BaseBureaucraticStorageFill.suffix } +ent-filingCabinetDrawerRandom = { ent-filingCabinetDrawer } + .desc = { ent-filingCabinetDrawer.desc } + .suffix = { ent-BaseBureaucraticStorageFill.suffix } From 671ab10be219a7f02ca60600b22e9ec7299b3c7c Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Mon, 20 Jan 2025 23:30:00 +0100 Subject: [PATCH 053/103] [HOTFIX] Admin Menu player jobs (#34545) update job info on spawn --- Content.Server/GameTicking/GameTicker.Spawning.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index 605e2520809..f6bf7c635ed 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -2,6 +2,7 @@ using System.Linq; using System.Numerics; using Content.Server.Administration.Managers; +using Content.Server.Administration.Systems; using Content.Server.GameTicking.Events; using Content.Server.Spawners.Components; using Content.Server.Speech.Components; @@ -27,6 +28,7 @@ public sealed partial class GameTicker { [Dependency] private readonly IAdminManager _adminManager = default!; [Dependency] private readonly SharedJobSystem _jobs = default!; + [Dependency] private readonly AdminSystem _admin = default!; [ValidatePrototypeId] public const string ObserverPrototypeName = "MobObserver"; @@ -233,6 +235,7 @@ private void SpawnPlayer(ICommonSession player, _roles.MindAddJobRole(newMind, silent: silent, jobPrototype:jobId); var jobName = _jobs.MindTryGetJobName(newMind); + _admin.UpdatePlayerList(player); if (lateJoin && !silent) { From 04c081719a3d54c2824e2c4dcceff9ce5097958e Mon Sep 17 00:00:00 2001 From: compilatron <40789662+Compilatron144@users.noreply.github.com> Date: Tue, 21 Jan 2025 15:56:47 +1100 Subject: [PATCH 054/103] Plasma station population tweak (#34549) * Plasma Station initial commit * Map fixes 1 Expanded science's SMES array Added advanced SMES Redone stamped documents with custom stamps Expanded atmospherics with more storage tanks Added status displays Add missing beacons to solars Replaced the passive gates in science with valves Removed protolathe in engineering Added guitar to CE office Replaced throngler plushie with weh cloak Add a lattice tile outside the atmos burn chamber and storange tanks Added atmos network monitor in bridge * Add cargo and emergency shuttle * Updated maps * Add plasma to map testing list * Map fixes 2 Reworked pipenets to not go under walls Redid salvage and disposals Reworked the bar to include a new bar extension facing the pool Replaced arrivals cryo with an arcade Replaced the toilets in the service plaza with cryo Removed the cryo in dorms Added more details to hallways Redid tools room to include a front desk for the janitor closet Reconnected sci to power roundstart Removed some unideal spawns Expanded the TEG airlock to be 2x3 instead of 1x3 Reduced the size of the SMES bank from 10 to 6 Disabled the plasma miners (downstreams or admins can re-enable them) Replaced illegal maint items * Fixes a 6 pack destroying the universe Ok maybe cracking a cold one with the boys wasn't a great idea. * Map fixes 3 * Quick research assistant fix * Map fixes 4 * Map fixes 5 * webedit go brrrt * Map fixes 6 * Map fixes 7 * Map fixes 8 * Fixes non-existent object It's amazing this game runs at all * Map fixes 9 * update pools * Map fixes 10 * forgot to clear my multitool I love mapping I love mapping I love mapping I love mapping I love mapping * Tweaked player counts * Update population caps Removed population cap of 60 players to make plasma into a highpop map - it's that easy! --------- Co-authored-by: jbox1 <40789662+jbox144@users.noreply.github.com> Co-authored-by: Emisse <99158783+Emisse@users.noreply.github.com> --- Resources/Prototypes/Maps/plasma.yml | 36 ++++++++++++++-------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/Resources/Prototypes/Maps/plasma.yml b/Resources/Prototypes/Maps/plasma.yml index 1369e5a42db..85e8661200c 100644 --- a/Resources/Prototypes/Maps/plasma.yml +++ b/Resources/Prototypes/Maps/plasma.yml @@ -2,8 +2,7 @@ id: Plasma mapName: 'Plasma' mapPath: /Maps/plasma.yml - minPlayers: 20 - maxPlayers: 60 + minPlayers: 30 stations: Plasma: stationProto: StandardNanotrasenStation @@ -18,10 +17,16 @@ - type: StationCargoShuttle path: /Maps/Shuttles/cargo_plasma.yml - type: StationJobs - availableJobs: - #service + availableJobs: #Total of 66 jobs roundstart, max of 93 inc. latejoins and trainees. + #command - 7 Captain: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] + ChiefEngineer: [ 1, 1 ] + ChiefMedicalOfficer: [ 1, 1 ] + ResearchDirector: [ 1, 1 ] + HeadOfSecurity: [ 1, 1 ] + Quartermaster: [ 1, 1 ] + #service - 18-21 Bartender: [ 2, 2 ] Botanist: [ 2, 3 ] Chef: [ 2, 2 ] @@ -30,37 +35,32 @@ Librarian: [ 1, 1 ] ServiceWorker: [ 2, 2 ] Reporter: [ 2, 3 ] - #engineering - ChiefEngineer: [ 1, 1 ] + Clown: [ 1, 2 ] # This might be fun + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + #engineering - 8-12 AtmosphericTechnician: [ 4, 4 ] StationEngineer: [ 4, 4 ] TechnicalAssistant: [ 4, 4 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] + #medical - 9-13 Chemist: [ 2, 2 ] MedicalDoctor: [ 4, 4 ] Paramedic: [ 2, 2 ] MedicalIntern: [ 4, 4 ] Psychologist: [ 1, 1 ] - #science - ResearchDirector: [ 1, 1 ] + #science - 7-13 Scientist: [ 4, 4 ] ResearchAssistant: [ 4, 4 ] StationAi: [ 1, 1 ] Borg: [ 2, 4 ] - #security - HeadOfSecurity: [ 1, 1 ] + #security - 9-17 Warden: [ 1, 1 ] SecurityOfficer: [ 6, 8 ] Detective: [ 1, 2 ] SecurityCadet: [ 4, 4 ] Lawyer: [ 1, 2 ] - #supply - Quartermaster: [ 1, 1 ] + #supply - 8-10 SalvageSpecialist: [ 4, 4 ] CargoTechnician: [ 4, 6 ] - #civilian + #civilian - the tiders yearn for the mines Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] From f092ddcb4393240c61921ee8cb68e38a8555d0a9 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 21 Jan 2025 04:57:55 +0000 Subject: [PATCH 055/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e9cfa5a912b..fe4f56623aa 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: lzk228 - changes: - - message: The captain now have special late join message. - type: Tweak - id: 7335 - time: '2024-09-09T19:57:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31991 - author: Thinbug0 changes: - message: Teal gloves can now be found at the ClothesMate! @@ -3892,3 +3885,10 @@ id: 7834 time: '2025-01-20T01:24:40.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34527 +- author: Compilatron144 + changes: + - message: Raised Plasma Station's population limit + type: Tweak + id: 7835 + time: '2025-01-21T04:56:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34549 From 796f59917283682a9671dcd68fc975f4245afb56 Mon Sep 17 00:00:00 2001 From: John <35928781+sporkyz@users.noreply.github.com> Date: Tue, 21 Jan 2025 04:51:27 -0500 Subject: [PATCH 056/103] Job contraband rework (#33385) * contraband system rework to allow restriction by job, not just department * Fixing detective trenchcoat inheritance * removing unnecessary using declarations * trying to fix testing error by re-adding diagnostics using declaration * removing unecessary dependency, making allowedJobs nullable * Adding all of slarti's requested changes except for the hacky job icon method fix * removing accidental whitespace * choosing to use the non-localized version because we're comparing the string against the AllowedJobs field, and the contraband classes that fill that field are written in english * removing unneeded using dec, fixing nesting logic problem * didn't remove the old nesting, doing that now * using localized job title and localizing the allowed jobs string, removing usages of JobTitle field. Also networked the _jobTitle field instead. * rewrite some stuff * fixes * fix energy pen --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Access/Components/IdCardComponent.cs | 2 ++ .../Contraband/ContrabandComponent.cs | 10 +++++- .../Contraband/ContrabandSeverityPrototype.cs | 4 +-- Content.Shared/Contraband/ContrabandSystem.cs | 36 ++++++++++++------- .../Entities/Clothing/Belt/belts.yml | 2 +- .../Entities/Clothing/Ears/headsets.yml | 2 +- .../Entities/Clothing/OuterClothing/armor.yml | 14 +++++--- .../Entities/Clothing/OuterClothing/coats.yml | 2 +- .../Entities/Clothing/OuterClothing/vests.yml | 2 +- .../Entities/Clothing/Shoes/specific.yml | 2 +- .../Objects/Devices/encryption_keys.yml | 2 +- .../Guns/Ammunition/Cartridges/shotgun.yml | 4 +-- .../Weapons/Guns/Shotguns/shotguns.yml | 4 +-- .../Objects/Weapons/Melee/e_sword.yml | 1 - .../Entities/Objects/base_contraband.yml | 32 ++++++++++++++--- .../Prototypes/contraband_severities.yml | 2 +- 16 files changed, 85 insertions(+), 36 deletions(-) diff --git a/Content.Shared/Access/Components/IdCardComponent.cs b/Content.Shared/Access/Components/IdCardComponent.cs index e80ced64643..3b8322671be 100644 --- a/Content.Shared/Access/Components/IdCardComponent.cs +++ b/Content.Shared/Access/Components/IdCardComponent.cs @@ -22,6 +22,8 @@ public sealed partial class IdCardComponent : Component [Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWrite)] public LocId? JobTitle; + [DataField] + [AutoNetworkedField] private string? _jobTitle; [Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWriteExecute)] diff --git a/Content.Shared/Contraband/ContrabandComponent.cs b/Content.Shared/Contraband/ContrabandComponent.cs index a4ce652f2f5..f758d91f0cd 100644 --- a/Content.Shared/Contraband/ContrabandComponent.cs +++ b/Content.Shared/Contraband/ContrabandComponent.cs @@ -24,5 +24,13 @@ public sealed partial class ContrabandComponent : Component /// [DataField] [AutoNetworkedField] - public HashSet>? AllowedDepartments = ["Security"]; + public HashSet> AllowedDepartments = new(); + + /// + /// Which jobs is this item restricted to? + /// If empty, no jobs are allowed to use this beyond the allowed departments. + /// + [DataField] + [AutoNetworkedField] + public HashSet> AllowedJobs = new(); } diff --git a/Content.Shared/Contraband/ContrabandSeverityPrototype.cs b/Content.Shared/Contraband/ContrabandSeverityPrototype.cs index c1ab4b8292e..094275a6fd3 100644 --- a/Content.Shared/Contraband/ContrabandSeverityPrototype.cs +++ b/Content.Shared/Contraband/ContrabandSeverityPrototype.cs @@ -19,8 +19,8 @@ public sealed partial class ContrabandSeverityPrototype : IPrototype public LocId ExamineText; /// - /// When examining the contraband, should this take into account the viewer's departments? + /// When examining the contraband, should this take into account the viewer's departments and job? /// [DataField] - public bool ShowDepartments; + public bool ShowDepartmentsAndJobs; } diff --git a/Content.Shared/Contraband/ContrabandSystem.cs b/Content.Shared/Contraband/ContrabandSystem.cs index e6931f2860a..811ea535675 100644 --- a/Content.Shared/Contraband/ContrabandSystem.cs +++ b/Content.Shared/Contraband/ContrabandSystem.cs @@ -40,6 +40,7 @@ public void CopyDetails(EntityUid uid, ContrabandComponent other, ContrabandComp contraband.Severity = other.Severity; contraband.AllowedDepartments = other.AllowedDepartments; + contraband.AllowedJobs = other.AllowedJobs; Dirty(uid, contraband); } @@ -54,11 +55,15 @@ private void OnExamined(Entity ent, ref ExaminedEvent args) using (args.PushGroup(nameof(ContrabandComponent))) { + // TODO shouldn't department prototypes have a localized name instead of just using the ID for this? + var localizedDepartments = ent.Comp.AllowedDepartments.Select(p => Loc.GetString($"department-{p.Id}")); + var localizedJobs = ent.Comp.AllowedJobs.Select(p => _proto.Index(p).LocalizedName); + var severity = _proto.Index(ent.Comp.Severity); - if (severity.ShowDepartments && ent.Comp is { AllowedDepartments: not null }) + if (severity.ShowDepartmentsAndJobs) { - // TODO shouldn't department prototypes have a localized name instead of just using the ID for this? - var list = ContentLocalizationManager.FormatList(ent.Comp.AllowedDepartments.Select(p => Loc.GetString($"department-{p.Id}")).ToList()); + //creating a combined list of jobs and departments for the restricted text + var list = ContentLocalizationManager.FormatList(localizedDepartments.Concat(localizedJobs).ToList()); // department restricted text args.PushMarkup(Loc.GetString("contraband-examine-text-Restricted-department", ("departments", list))); @@ -69,23 +74,30 @@ private void OnExamined(Entity ent, ref ExaminedEvent args) } // text based on ID card - List>? departments = null; + List> departments = new(); + var jobId = ""; + if (_id.TryFindIdCard(args.Examiner, out var id)) { departments = id.Comp.JobDepartments; + if (id.Comp.LocalizedJobTitle is not null) + { + jobId = id.Comp.LocalizedJobTitle; + } } - // either its fully restricted, you have no departments, or your departments dont intersect with the restricted departments - if (ent.Comp.AllowedDepartments is null - || departments is null - || !departments.Intersect(ent.Comp.AllowedDepartments).Any()) + // for the jobs we compare the localized string in case you use an agent ID or custom job name that is not a prototype + if (departments.Intersect(ent.Comp.AllowedDepartments).Any() + || localizedJobs.Contains(jobId)) + { + // you are allowed to use this! + args.PushMarkup(Loc.GetString("contraband-examine-text-in-the-clear")); + } + else { + // straight to jail! args.PushMarkup(Loc.GetString("contraband-examine-text-avoid-carrying-around")); - return; } - - // otherwise fine to use :tm: - args.PushMarkup(Loc.GetString("contraband-examine-text-in-the-clear")); } } } diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index 621f30dbb35..77f53f9417a 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -542,7 +542,7 @@ # Belts without visualizers - type: entity - parent: [ClothingBeltAmmoProviderBase, BaseRestrictedContraband] + parent: [ClothingBeltAmmoProviderBase, BaseSecurityBartenderContraband] id: ClothingBeltBandolier name: bandolier description: A bandolier for holding shotgun ammunition. diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml index 817f83ec927..ca9d0e89a1c 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml @@ -226,7 +226,7 @@ - EncryptionKeyCommon - type: entity - parent: [ClothingHeadset, BaseRestrictedContraband] + parent: [ClothingHeadset, BaseSecurityLawyerContraband] id: ClothingHeadsetSecurity name: security headset description: This is used by your elite security force. diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 2412dd9d5c3..cdb938030db 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -1,11 +1,12 @@ # Numbers for armor here largely taken from /tg/. # NOTE: Half of the kind of armor you're probably thinking of is in vests.yml. These should probably be merged some day. -#Basic armor vest +#Basic armor vest for inheritance - type: entity parent: [ClothingOuterBaseMedium, AllowSuitStorageClothing, BaseRestrictedContraband] - id: ClothingOuterArmorBasic + id: ClothingOuterArmorBase name: armor vest + abstract: true description: A standard Type I armored vest that provides decent protection against most types of damage. components: - type: Sprite @@ -22,6 +23,11 @@ - type: ExplosionResistance damageCoefficient: 0.90 +#Standard armor vest, allowed for security and bartenders +- type: entity + parent: [ BaseSecurityBartenderContraband, ClothingOuterArmorBase] + id: ClothingOuterArmorBasic + #Alternate / slim basic armor vest - type: entity parent: ClothingOuterArmorBasic @@ -58,7 +64,7 @@ - type: GroupExamine - type: entity - parent: ClothingOuterArmorBasic + parent: ClothingOuterArmorBase id: ClothingOuterArmorBulletproof name: bulletproof vest description: A Type III heavy bulletproof vest that excels in protecting the wearer against traditional projectile weaponry and explosives to a minor extent. @@ -78,7 +84,7 @@ damageCoefficient: 0.80 - type: entity - parent: ClothingOuterArmorBasic + parent: ClothingOuterArmorBase id: ClothingOuterArmorReflective name: reflective vest description: An armored vest with advanced shielding to protect against energy weapons. diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index f2dfe7c6e74..e2db7ebd94c 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -10,7 +10,7 @@ sprite: Clothing/OuterClothing/Coats/bomber.rsi - type: entity - parent: [ClothingOuterStorageBase, AllowSuitStorageClothing, ClothingOuterArmorBasic] + parent: [ClothingOuterStorageBase, AllowSuitStorageClothing, ClothingOuterArmorBase] id: ClothingOuterCoatDetective name: detective trenchcoat description: An 18th-century multi-purpose trenchcoat. Someone who wears this means serious business. diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml index 994e86b548c..accd24dd3cc 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/vests.yml @@ -42,7 +42,7 @@ #Detective's vest - type: entity - parent: [ClothingOuterArmorBasic, BaseRestrictedContraband] + parent: [ClothingOuterArmorBase, BaseRestrictedContraband] id: ClothingOuterVestDetective name: detective's vest description: A hard-boiled private investigator's armored vest. diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index 3a17dcde371..a5c32928dab 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -104,7 +104,7 @@ sprite: Clothing/Shoes/Specific/cult.rsi - type: entity - parent: ClothingShoesBase + parent: [ ClothingShoesBase, BaseJanitorContraband ] id: ClothingShoesGaloshes name: galoshes description: Rubber boots. diff --git a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml index 7393532654d..2d23885bcac 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml @@ -170,7 +170,7 @@ - state: robotics_label - type: entity - parent: [ EncryptionKey, BaseSecurityContraband ] + parent: [ EncryptionKey, BaseSecurityLawyerContraband ] id: EncryptionKeySecurity name: security encryption key description: An encryption key used by security. diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml index dd00440eec0..a2b9fb27373 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Cartridges/shotgun.yml @@ -22,7 +22,7 @@ - type: entity id: ShellShotgunBeanbag name: shell (.50 beanbag) - parent: BaseShellShotgun + parent: [ BaseShellShotgun, BaseSecurityBartenderContraband ] components: - type: Tag tags: @@ -55,7 +55,7 @@ - type: entity id: ShellShotgunFlare name: shell (.50 flare) - parent: BaseShellShotgun + parent: [ BaseShellShotgun, BaseSecurityBartenderContraband ] components: - type: Tag tags: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml index 58cf9eaed3e..a927d880ef9 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml @@ -103,7 +103,7 @@ - type: entity name: double-barreled shotgun - parent: [BaseWeaponShotgun, BaseGunWieldable, BaseMinorContraband] + parent: [BaseWeaponShotgun, BaseGunWieldable, BaseSecurityBartenderContraband] id: WeaponShotgunDoubleBarreled description: An immortal classic. Uses .50 shotgun shells. components: @@ -181,7 +181,7 @@ - type: entity name: sawn-off shotgun - parent: BaseWeaponShotgun + parent: [ BaseWeaponShotgun, BaseSecurityBartenderContraband ] id: WeaponShotgunSawn description: Groovy! Uses .50 shotgun shells. components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index 59a27ccf0cc..2e576e6a503 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -194,7 +194,6 @@ doAfterDuration: 4.0 - type: Contraband severity: Syndicate - allowedDepartments: null - type: Sprite sprite: Objects/Weapons/Melee/e_dagger.rsi layers: diff --git a/Resources/Prototypes/Entities/Objects/base_contraband.yml b/Resources/Prototypes/Entities/Objects/base_contraband.yml index 6f44767c9f1..84df2f8b37e 100644 --- a/Resources/Prototypes/Entities/Objects/base_contraband.yml +++ b/Resources/Prototypes/Entities/Objects/base_contraband.yml @@ -5,8 +5,6 @@ components: - type: Contraband severity: Syndicate - # no one should be carrying this around visibly! - allowedDepartments: null # minor contraband not departmentally restricted -- improvised weapons etc - type: entity @@ -15,8 +13,6 @@ components: - type: Contraband severity: Minor - # according to space law no dept is authorized to have - allowedDepartments: null # major contraband, for things like guns or weaponry that don't belong to any department and aren't syndicate specific - type: entity @@ -25,7 +21,6 @@ components: - type: Contraband severity: Major - allowedDepartments: null # minor contraband by default restricted to security only - type: entity @@ -157,6 +152,33 @@ - type: Contraband allowedDepartments: [ Medical, Science ] +# contraband restricted by job by some degree +- type: entity + id: BaseSecurityBartenderContraband + parent: BaseRestrictedContraband + abstract: true + components: + - type: Contraband + allowedDepartments: [ Security ] + allowedJobs: [ Bartender ] + +- type: entity + id: BaseSecurityLawyerContraband + parent: BaseRestrictedContraband + abstract: true + components: + - type: Contraband + allowedDepartments: [ Security ] + allowedJobs: [ Lawyer ] + +- type: entity + id: BaseJanitorContraband + parent: BaseRestrictedContraband + abstract: true + components: + - type: Contraband + allowedJobs: [ Janitor ] + # for ~objective items - type: entity id: BaseGrandTheftContraband diff --git a/Resources/Prototypes/contraband_severities.yml b/Resources/Prototypes/contraband_severities.yml index 54f5cd62ef6..c103af5e0a6 100644 --- a/Resources/Prototypes/contraband_severities.yml +++ b/Resources/Prototypes/contraband_severities.yml @@ -14,7 +14,7 @@ - type: contrabandSeverity id: Restricted examineText: contraband-examine-text-Restricted - showDepartments: true + showDepartmentsAndJobs: true # Having this as a regular crew member is considered grand theft. (nuke disk, captain's gear, objective items, etc) - type: contrabandSeverity From 1f6e041e05886fdc7f2fe15a079a5a86d1836ef2 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 21 Jan 2025 09:52:34 +0000 Subject: [PATCH 057/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fe4f56623aa..b35fa75d2d6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Thinbug0 - changes: - - message: Teal gloves can now be found at the ClothesMate! - type: Add - id: 7336 - time: '2024-09-09T21:47:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31865 - author: chillyconmor changes: - message: Space Ninjas now have a new intro song. @@ -3892,3 +3885,19 @@ id: 7835 time: '2025-01-21T04:56:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34549 +- author: sporkyz + changes: + - message: Galoshes are now restricted to janitor. + type: Tweak + - message: Double barrel shotguns, basic armor vests, beanbag/flare shotgun shells, + and bandoliers are now allowed for Bartenders, not just Security. + type: Tweak + - message: Lawyers now have access to the Security headset they spawn with, as well + as the encryption key inside. + type: Fix + - message: Sawn-off shotguns are now properly considered contraband instead of being + unrestricted. + type: Fix + id: 7836 + time: '2025-01-21T09:51:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33385 From 9950648bbad7e6a7287e0f890e5af55dfc07bba4 Mon Sep 17 00:00:00 2001 From: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com> Date: Tue, 21 Jan 2025 02:24:50 -0800 Subject: [PATCH 058/103] [HOTFIX] Fix MRP whitelist auto denying people with any medium severity notes in 14 days (#34532) * fix mrp whitelist auto denying people with warning * make headmin requested changes * godo --- Resources/Prototypes/wizardsDenWhitelists.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Resources/Prototypes/wizardsDenWhitelists.yml b/Resources/Prototypes/wizardsDenWhitelists.yml index c21d01e5a89..8b8420622af 100644 --- a/Resources/Prototypes/wizardsDenWhitelists.yml +++ b/Resources/Prototypes/wizardsDenWhitelists.yml @@ -12,20 +12,20 @@ range: 30 # 30 days action: Deny includeSecret: false - - !type:ConditionNotesPlaytimeRange # Deny for >=2 medium severity notes in the last 14 days + - !type:ConditionNotesPlaytimeRange # Deny for >=3 medium severity notes in the last 90 days includeExpired: false minimumSeverity: 2 # Medium - minimumNotes: 1 - range: 14 # 14 Days - action: Deny - includeSecret: false - - !type:ConditionNotesPlaytimeRange # Deny for >=3 low severity notes in the last 14 days - includeExpired: false - minimumSeverity: 1 # Low minimumNotes: 3 - range: 14 # 14 Days + range: 90 # 90 Days action: Deny includeSecret: false +# - !type:ConditionNotesPlaytimeRange # Deny for >=3 low severity notes in the last 14 days +# includeExpired: false +# minimumSeverity: 1 # Low +# minimumNotes: 3 +# range: 14 # 14 Days +# action: Deny +# includeSecret: false - !type:ConditionManualWhitelistMembership # Allow whitelisted players action: Allow - !type:ConditionPlayerCount # Allow when <= 15 players are online From 24219cb97b243e96fd5155a155f2819729e2a470 Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Tue, 21 Jan 2025 22:39:15 +1200 Subject: [PATCH 059/103] Electrified doors/windoors now spark, new tips to deal with doors without access or when electrified (#34502) * new tips to open doors (throwing PDA/ID, dragging body) * electrified door sprite for players * tooltip to reset AI electrified doors * windoor electrified sprite * highsec electrified visual * increase tip dataset to 138 * corrected square bracket convention in this commit * removed door corpse tip from prior commit --- Resources/Locale/en-US/tips.ftl | 2 + Resources/Prototypes/Datasets/tips.yml | 2 +- .../Doors/Airlocks/base_structureairlocks.yml | 13 ++++- .../Structures/Doors/Airlocks/highsec.yml | 13 ++++- .../Doors/Windoors/base_structurewindoors.yml | 50 +++++++++++++++--- .../{electrified.png => electrified_ai.png} | Bin .../Interface/Misc/ai_hud.rsi/meta.json | 4 +- 7 files changed, 72 insertions(+), 12 deletions(-) rename Resources/Textures/Interface/Misc/ai_hud.rsi/{electrified.png => electrified_ai.png} (100%) diff --git a/Resources/Locale/en-US/tips.ftl b/Resources/Locale/en-US/tips.ftl index 154ac8e18bb..dcadd15b1b0 100644 --- a/Resources/Locale/en-US/tips.ftl +++ b/Resources/Locale/en-US/tips.ftl @@ -133,3 +133,5 @@ tips-dataset-132 = By right clicking on a player, and then clicking the heart ic tips-dataset-133 = Monkeys and kobolds have a rare chance to be sentient. Ook! tips-dataset-134 = You can tell if an area with firelocks up is spaced by looking to see if the firelocks have lights beside them. tips-dataset-135 = Instead of picking it up, you can alt-click food to eat it. This also works for mice and other creatures without hands. +tips-dataset-136 = If you're trapped behind an electrified door, disable the APC or throw your ID at the door to avoid getting shocked! +tips-dataset-137 = If the AI electrifies a door and you have insulated gloves, snip and mend the power wire to reset their electrification! diff --git a/Resources/Prototypes/Datasets/tips.yml b/Resources/Prototypes/Datasets/tips.yml index b710d69fabf..b57f2052d9b 100644 --- a/Resources/Prototypes/Datasets/tips.yml +++ b/Resources/Prototypes/Datasets/tips.yml @@ -2,4 +2,4 @@ id: Tips values: prefix: tips-dataset- - count: 135 + count: 137 diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index 90224d3136e..f8099f28d78 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -31,11 +31,16 @@ shader: unshaded - state: panel_open map: ["enum.WiresVisualLayers.MaintenancePanel"] - - state: electrified + - state: electrified_ai sprite: Interface/Misc/ai_hud.rsi shader: unshaded visible: false map: ["enum.ElectrifiedLayers.HUD"] + - state: electrified + sprite: Effects/electricity.rsi + shader: unshaded + visible: false + map: ["enum.ElectrifiedLayers.Sparks"] - type: AnimationPlayer - type: Physics - type: Fixtures @@ -77,6 +82,12 @@ - type: NavMapDoor - type: DoorBolt - type: Appearance + - type: GenericVisualizer + visuals: + enum.ElectrifiedVisuals.ShowSparks: + enum.ElectrifiedLayers.Sparks: + True: { visible: True } + False: { visible: False } - type: WiresVisuals - type: ElectrocutionHUDVisuals - type: ApcPowerReceiver diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml index ea8b866e772..6f7340c80f5 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/highsec.yml @@ -27,11 +27,16 @@ shader: unshaded - state: panel_open map: ["enum.WiresVisualLayers.MaintenancePanel"] - - state: electrified + - state: electrified_ai sprite: Interface/Misc/ai_hud.rsi shader: unshaded visible: false map: ["enum.ElectrifiedLayers.HUD"] + - state: electrified + sprite: Effects/electricity.rsi + shader: unshaded + visible: false + map: ["enum.ElectrifiedLayers.Sparks"] - type: AnimationPlayer - type: Physics - type: Fixtures @@ -70,6 +75,12 @@ - type: AccessReader containerAccessProvider: board - type: Appearance + - type: GenericVisualizer + visuals: + enum.ElectrifiedVisuals.ShowSparks: + enum.ElectrifiedLayers.Sparks: + True: { visible: True } + False: { visible: False } - type: WiresVisuals - type: ElectrocutionHUDVisuals - type: ApcPowerReceiver diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml index 81ef89997d8..10062d7803e 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/base_structurewindoors.yml @@ -43,11 +43,16 @@ map: ["enum.DoorVisualLayers.BaseEmergencyAccess"] - state: panel_open map: ["enum.WiresVisualLayers.MaintenancePanel"] - - state: electrified + - state: electrified_ai sprite: Interface/Misc/ai_hud.rsi shader: unshaded visible: false map: ["enum.ElectrifiedLayers.HUD"] + - state: electrified + sprite: Effects/electricity.rsi + shader: unshaded + visible: false + map: ["enum.ElectrifiedLayers.Sparks"] - type: AnimationPlayer - type: ApcPowerReceiver - type: ExtensionCableReceiver @@ -142,6 +147,12 @@ enum.WiresUiKey.Key: type: WiresBoundUserInterface - type: Appearance + - type: GenericVisualizer + visuals: + enum.ElectrifiedVisuals.ShowSparks: + enum.ElectrifiedLayers.Sparks: + True: { visible: True } + False: { visible: False } - type: WiresVisuals - type: ElectrocutionHUDVisuals - type: Airtight @@ -183,11 +194,16 @@ - state: panel_open map: [ "enum.WiresVisualLayers.MaintenancePanel" ] visible: false - - state: electrified + - state: electrified_ai sprite: Interface/Misc/ai_hud.rsi shader: unshaded visible: false map: [ "enum.ElectrifiedLayers.HUD" ] + - state: electrified + sprite: Effects/electricity.rsi + shader: unshaded + visible: false + map: [ "enum.ElectrifiedLayers.Sparks" ] - type: Damageable damageModifierSet: RGlass - type: Destructible @@ -249,11 +265,16 @@ - state: panel_open map: [ "enum.WiresVisualLayers.MaintenancePanel" ] visible: false - - state: electrified + - state: electrified_ai sprite: Interface/Misc/ai_hud.rsi shader: unshaded visible: false map: [ "enum.ElectrifiedLayers.HUD" ] + - state: electrified + sprite: Effects/electricity.rsi + shader: unshaded + visible: false + map: [ "enum.ElectrifiedLayers.Sparks" ] - type: Destructible thresholds: - trigger: @@ -310,11 +331,16 @@ - state: panel_open map: [ "enum.WiresVisualLayers.MaintenancePanel" ] visible: false - - state: electrified + - state: electrified_ai sprite: Interface/Misc/ai_hud.rsi shader: unshaded visible: false - map: ["enum.ElectrifiedLayers.HUD"] + map: [ "enum.ElectrifiedLayers.HUD" ] + - state: electrified + sprite: Effects/electricity.rsi + shader: unshaded + visible: false + map: [ "enum.ElectrifiedLayers.Sparks" ] - type: Destructible thresholds: - trigger: @@ -376,11 +402,16 @@ - state: panel_open map: [ "enum.WiresVisualLayers.MaintenancePanel" ] visible: false - - state: electrified + - state: electrified_ai sprite: Interface/Misc/ai_hud.rsi shader: unshaded visible: false map: [ "enum.ElectrifiedLayers.HUD" ] + - state: electrified + sprite: Effects/electricity.rsi + shader: unshaded + visible: false + map: [ "enum.ElectrifiedLayers.Sparks" ] - type: Destructible thresholds: - trigger: @@ -437,11 +468,16 @@ - state: panel_open map: [ "enum.WiresVisualLayers.MaintenancePanel" ] visible: false - - state: electrified + - state: electrified_ai sprite: Interface/Misc/ai_hud.rsi shader: unshaded visible: false map: [ "enum.ElectrifiedLayers.HUD" ] + - state: electrified + sprite: Effects/electricity.rsi + shader: unshaded + visible: false + map: [ "enum.ElectrifiedLayers.Sparks" ] - type: Destructible thresholds: - trigger: diff --git a/Resources/Textures/Interface/Misc/ai_hud.rsi/electrified.png b/Resources/Textures/Interface/Misc/ai_hud.rsi/electrified_ai.png similarity index 100% rename from Resources/Textures/Interface/Misc/ai_hud.rsi/electrified.png rename to Resources/Textures/Interface/Misc/ai_hud.rsi/electrified_ai.png diff --git a/Resources/Textures/Interface/Misc/ai_hud.rsi/meta.json b/Resources/Textures/Interface/Misc/ai_hud.rsi/meta.json index 7f1e67ac4d9..3df9d296a0f 100644 --- a/Resources/Textures/Interface/Misc/ai_hud.rsi/meta.json +++ b/Resources/Textures/Interface/Misc/ai_hud.rsi/meta.json @@ -8,7 +8,7 @@ }, "states": [ { - "name": "electrified", + "name": "electrified_ai", "delays": [ [ 0.2, @@ -34,4 +34,4 @@ ] } ] -} \ No newline at end of file +} From 14aff1c49d0adfcda7d5fc48229b7203e1f2f5e8 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 21 Jan 2025 10:40:22 +0000 Subject: [PATCH 060/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b35fa75d2d6..5b246d4db63 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: chillyconmor - changes: - - message: Space Ninjas now have a new intro song. - type: Add - id: 7337 - time: '2024-09-09T22:12:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31055 - author: DieselMohawk changes: - message: Made Trooper Uniform accessible for Security Officers in loadouts @@ -3901,3 +3894,13 @@ id: 7836 time: '2025-01-21T09:51:27.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33385 +- author: K-Dynamic + changes: + - message: Electrified doors and windoors now visibly spark when touched. + type: Tweak + - message: New tips have been added about opening electrified doors by throwing + your PDA or ID, and resetting doors that are electrified by AI. + type: Add + id: 7837 + time: '2025-01-21T10:39:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34502 From c80cdc8714585308275c90a24fc3afdcb4fac1b0 Mon Sep 17 00:00:00 2001 From: lastPechkin Date: Tue, 21 Jan 2025 15:09:49 +0300 Subject: [PATCH 061/103] [Maps] Astra Update (#2945) --- Resources/Maps/Corvax/corvax_astra.yml | 100855 ++++++++++------------ 1 file changed, 44634 insertions(+), 56221 deletions(-) diff --git a/Resources/Maps/Corvax/corvax_astra.yml b/Resources/Maps/Corvax/corvax_astra.yml index c0b049766a6..c506a870d2b 100644 --- a/Resources/Maps/Corvax/corvax_astra.yml +++ b/Resources/Maps/Corvax/corvax_astra.yml @@ -24,6 +24,7 @@ tilemap: 22: FloorCarpetClown 24: FloorCave 25: FloorCaveDrought + 114: FloorChromite 28: FloorConcrete 29: FloorConcreteMono 30: FloorConcreteSmooth @@ -72,6 +73,7 @@ tilemap: 76: FloorPlanetGrass 77: FloorPlastic 78: FloorRGlass + 117: FloorRedCircuit 79: FloorReinforced 80: FloorReinforcedHardened 81: FloorRockVault @@ -79,6 +81,7 @@ tilemap: 26: FloorShuttleBlack 84: FloorShuttleBlue 15: FloorShuttleGrey + 107: FloorShuttlePurple 6: FloorShuttleRed 89: FloorShuttleWhite 12: FloorSilver @@ -89,6 +92,7 @@ tilemap: 129: FloorSteelDamaged 98: FloorSteelDiagonal 100: FloorSteelDirty + 105: FloorSteelHerringbone 51: FloorSteelMini 104: FloorSteelMono 106: FloorSteelPavement @@ -159,7 +163,7 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: DwAAAAACDwAAAAABDwAAAAADDwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAGgAAAAABGgAAAAACGgAAAAACRQAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAARQAAAAAAGgAAAAAAGgAAAAADGgAAAAADRQAAAAAAfgAAAAAAGgAAAAADGgAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAfgAAAAAAGgAAAAABGgAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAfgAAAAAAGgAAAAABGgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAUwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAASgAAAAAASgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAASgAAAAAASgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAASgAAAAAASgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAALwAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAALwAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAALAAAAAAAfgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALwAAAAAAXQAAAAADLAAAAAAALAAAAAAAfgAAAAAANQAAAAACNQAAAAAANQAAAAAANQAAAAACNQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAAATQAAAAAAXQAAAAAA + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAASgAAAAAASgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAASgAAAAAASgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAASgAAAAAASgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAXQAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAALAAAAAAAfgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALwAAAAAAXQAAAAADLAAAAAAALAAAAAAAfgAAAAAANQAAAAACNQAAAAAANQAAAAAANQAAAAACNQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAAATQAAAAAAXQAAAAAA version: 6 -1,0: ind: -1,0 @@ -167,7 +171,7 @@ entities: version: 6 -1,-1: ind: -1,-1 - tiles: UQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAMgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAADwAAAAABfgAAAAAAOgAAAAABfgAAAAAAMgAAAAABfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAADMgAAAAAAUQAAAAAAOgAAAAABOgAAAAACOgAAAAACOgAAAAABMgAAAAAAMgAAAAADfgAAAAAAMgAAAAADUQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAMgAAAAACfgAAAAAAMgAAAAABMgAAAAABUQAAAAAAOgAAAAAAOgAAAAADOgAAAAACUQAAAAAAMgAAAAADMgAAAAAAMgAAAAAAUQAAAAAAfgAAAAAAHwAAAAABUQAAAAAAUQAAAAAAMgAAAAAAMgAAAAACUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAOAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAD + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAOAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAD version: 6 -1,1: ind: -1,1 @@ -179,7 +183,7 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: EQAAAAAACQAAAAAAGgAAAAADGgAAAAACGgAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAACQAAAAAACQAAAAAACQAAAAAAGgAAAAACGgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAATgAAAAADXQAAAAACfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAGgAAAAAAGgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAMQAAAAAACQAAAAAACQAAAAAACQAAAAAAGgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACMQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABMQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACTgAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADTgAAAAABXQAAAAAAXQAAAAADfgAAAAAAIgAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACTgAAAAAAXQAAAAACXQAAAAADEAAAAAABfAAAAAABGwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACEAAAAAAAGwAAAAABfAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAATgAAAAABXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfAAAAAADGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABTgAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAGwAAAAAAGwAAAAAAfAAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACTgAAAAADXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAGwAAAAADfAAAAAADGwAAAAACXQAAAAAAXQAAAAACXQAAAAADTgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAIQAAAAAAGwAAAAAAfAAAAAAC + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAATgAAAAADXQAAAAACfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAMQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACMQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABMQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACTgAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADTgAAAAABXQAAAAAAXQAAAAADfgAAAAAAIgAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAIgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACTgAAAAAAXQAAAAACXQAAAAADEAAAAAABfAAAAAABGwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACEAAAAAAAGwAAAAABfAAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAATgAAAAABXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfAAAAAADGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABTgAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAGwAAAAAAGwAAAAAAfAAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACTgAAAAADXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAGwAAAAADfAAAAAADGwAAAAACXQAAAAAAXQAAAAACXQAAAAADTgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAIQAAAAAAGwAAAAAAfAAAAAAC version: 6 1,0: ind: 1,0 @@ -203,7 +207,7 @@ entities: version: 6 1,-2: ind: 1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALAAAAAAALAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABDwAAAAADDwAAAAADDwAAAAAADwAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALAAAAAAALAAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAACDwAAAAADDwAAAAADDwAAAAADDwAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALAAAAAAALAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAADwAAAAABXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACTgAAAAABXQAAAAABHwAAAAADfgAAAAAADwAAAAACDwAAAAABDwAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAADwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAADwAAAAACfgAAAAAAXQAAAAADXQAAAAABCQAAAAAACQAAAAAACQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAADDwAAAAABXQAAAAABXQAAAAABXQAAAAADCQAAAAAACQAAAAAACQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAADwAAAAACfgAAAAAAXQAAAAABXQAAAAADCQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABTgAAAAACXQAAAAADXQAAAAADGgAAAAADCQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAOwAAAAAACQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAEQAAAAAACQAAAAAAGgAAAAACGgAAAAACGgAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAEQAAAAAACQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAA + tiles: awAAAAAAfwAAAAAAcgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACawAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAALAAAAAAALAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABfwAAAAAAfwAAAAAAcgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAALAAAAAAALAAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAACfwAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAALAAAAAAALAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABHwAAAAABfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACTgAAAAABXQAAAAABHwAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABTgAAAAACXQAAAAADXQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAA version: 6 2,-2: ind: 2,-2 @@ -263,7 +267,7 @@ entities: version: 6 1,-3: ind: 1,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAACSAAAAAADSAAAAAACSAAAAAACSAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABSAAAAAACfgAAAAAAfgAAAAAASAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABSAAAAAACfgAAAAAASAAAAAABSAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAAANQAAAAAANQAAAAACNQAAAAABNQAAAAABfgAAAAAAXQAAAAAASAAAAAACSAAAAAACSAAAAAADSAAAAAADSAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAABNgAAAAAANgAAAAACNgAAAAADNQAAAAADfgAAAAAAXQAAAAAASwAAAAAASwAAAAADSwAAAAACSAAAAAAASAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAANQAAAAABNgAAAAABNgAAAAABNgAAAAABNQAAAAABfgAAAAAAXQAAAAAASwAAAAACfgAAAAAASwAAAAABSAAAAAADSAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAANQAAAAAANQAAAAABNgAAAAACNQAAAAAANQAAAAAAfgAAAAAAXQAAAAABSwAAAAAASwAAAAABSwAAAAACSAAAAAABSAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAAANQAAAAACNgAAAAADNQAAAAABNQAAAAABfgAAAAAAXQAAAAACfQAAAAAASwAAAAAASwAAAAAASAAAAAAASAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADSwAAAAACSwAAAAACSwAAAAACSAAAAAACSAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAAANQAAAAABNgAAAAADNQAAAAAANQAAAAABfgAAAAAAXQAAAAADSwAAAAACSwAAAAABSwAAAAAASAAAAAACSAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANQAAAAADNQAAAAADNgAAAAACNQAAAAACNQAAAAACNQAAAAABXQAAAAAASAAAAAAASAAAAAABSAAAAAACSAAAAAADSAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANgAAAAADNgAAAAABNgAAAAAANgAAAAAANgAAAAACNQAAAAADXQAAAAACSwAAAAACSwAAAAADSwAAAAAASwAAAAABSAAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAANQAAAAABNQAAAAABNQAAAAAANQAAAAABNQAAAAADfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGAAAAAAGfgAAAAAAfgAAAAAAfgAAAAAANQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAATQAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADTgAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAB + tiles: TwAAAAAATwAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAACTwAAAAAATwAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABTwAAAAAATwAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfwAAAAAAfwAAAAAAcgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAANQAAAAAANQAAAAAANQAAAAACNQAAAAABNQAAAAABfgAAAAAAXQAAAAAAfwAAAAAAQQAAAAAAAwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAANQAAAAABNgAAAAAANgAAAAACNgAAAAADNQAAAAADfgAAAAAAXQAAAAAAAwAAAAAAQQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAANQAAAAABNgAAAAABNgAAAAABNgAAAAABNQAAAAABfgAAAAAAXQAAAAAAAwAAAAAAQQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAANQAAAAAANQAAAAABNgAAAAACNQAAAAAANQAAAAAAfgAAAAAAXQAAAAABAwAAAAAAQQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAANQAAAAAANQAAAAACNgAAAAADNQAAAAABNQAAAAABfgAAAAAAXQAAAAACAwAAAAAAQQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfwAAAAAAQQAAAAAAAwAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAANQAAAAAANQAAAAABNgAAAAADNQAAAAAANQAAAAABfgAAAAAAXQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAANQAAAAADNQAAAAADNgAAAAACNQAAAAACNQAAAAACNQAAAAABXQAAAAAAawAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAANgAAAAADNgAAAAABNgAAAAAANgAAAAAANgAAAAACNQAAAAADXQAAAAACfgAAAAAAawAAAAAAfwAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAANQAAAAABNQAAAAABNQAAAAAANQAAAAABNQAAAAADfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAcgAAAAAAfgAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAcgAAAAAAfgAAAAAAXQAAAAAALwAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAATQAAAAAAfgAAAAAAfgAAAAAAcgAAAAAAfgAAAAAAXQAAAAAALwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADTgAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAB version: 6 6,-2: ind: 6,-2 @@ -299,11 +303,11 @@ entities: version: 6 1,-5: ind: 1,-5 - tiles: fgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADfgAAAAAAegAAAAAAegAAAAACQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAfgAAAAAAXQAAAAAATgAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADTQAAAAADTQAAAAAAXQAAAAADXQAAAAACTgAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADTgAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAATQAAAAADXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAA + tiles: fgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADfgAAAAAAegAAAAAAegAAAAACQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAfgAAAAAAXQAAAAAATgAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADTQAAAAADTQAAAAAAXQAAAAADXQAAAAACTgAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADTgAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAATQAAAAADXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABHwAAAAAANgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACTQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADTgAAAAABXQAAAAABfgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAADXQAAAAADXQAAAAABfgAAAAAANgAAAAAANgAAAAADZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACTQAAAAADXQAAAAABNgAAAAADNgAAAAAANgAAAAADNgAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABTgAAAAAAXQAAAAAAXQAAAAABNgAAAAADNgAAAAABNgAAAAACNgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAATQAAAAAAXQAAAAABfgAAAAAAfgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADNgAAAAAAfgAAAAAAfgAAAAAANgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABHwAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACTQAAAAABHwAAAAACcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADTgAAAAABXQAAAAABfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAADXQAAAAADXQAAAAABfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACTQAAAAADXQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABTgAAAAAAXQAAAAAAXQAAAAABfwAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAATQAAAAAAXQAAAAABLQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADLQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAALQAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAB version: 6 5,-5: ind: 5,-5 @@ -331,7 +335,7 @@ entities: version: 6 0,-5: ind: 0,-5 - tiles: HwAAAAADXQAAAAADfgAAAAAAHQAAAAACHAAAAAADHAAAAAAAHAAAAAACHQAAAAABHAAAAAADHAAAAAAAHQAAAAACHQAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAALwAAAAADXQAAAAADfgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAABfgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAABfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAAATgAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAATgAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACTQAAAAAAXQAAAAABHwAAAAACHwAAAAABfgAAAAAALAAAAAAALAAAAAAALAAAAAAAfgAAAAAAYgAAAAADXQAAAAADfgAAAAAAXQAAAAAATgAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABHwAAAAABHwAAAAAAfgAAAAAALAAAAAAALAAAAAAALAAAAAAAfgAAAAAAYgAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAABTQAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAUwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAUwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAABZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HwAAAAADXQAAAAADfgAAAAAAHQAAAAACHAAAAAADHAAAAAAAHAAAAAACHQAAAAABHAAAAAADHAAAAAAAHQAAAAACHQAAAAAAHAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAALwAAAAADXQAAAAADfgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAABfgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAABfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAAATgAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAATgAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACTQAAAAAAXQAAAAABCQAAAAAARQAAAAAAfgAAAAAALAAAAAAALAAAAAAALAAAAAAAfgAAAAAAYgAAAAADXQAAAAADfgAAAAAAXQAAAAAATgAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABCQAAAAAARQAAAAAAfgAAAAAALAAAAAAALAAAAAAALAAAAAAAfgAAAAAAYgAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAABTQAAAAAAXQAAAAADXQAAAAADXQAAAAABCQAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAARQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAACQAAAAAARQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAfgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-6: ind: 4,-6 @@ -339,7 +343,7 @@ entities: version: 6 -1,-5: ind: -1,-5 - tiles: bAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAANQAAAAAANgAAAAAANgAAAAAANQAAAAAAfgAAAAAAHAAAAAAAHQAAAAAAHAAAAAAANQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAfgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAfgAAAAAAXQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANQAAAAAANQAAAAAANQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADTQAAAAAAXQAAAAACXQAAAAABXQAAAAACLgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADTgAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABTgAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADTQAAAAADXQAAAAADXQAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAAAagAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABTgAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAHwAAAAACTQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAegAAAAADegAAAAADegAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAUwAAAAAAfgAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAUwAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAADNgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAANgAAAAACNgAAAAADNgAAAAADNgAAAAABNgAAAAADNgAAAAADNgAAAAAANgAAAAADNgAAAAADZAAAAAAAZAAAAAAA + tiles: bAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAANQAAAAAANgAAAAAANgAAAAAANQAAAAAAfgAAAAAAHAAAAAAAHQAAAAAAHAAAAAAANQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAfgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAfgAAAAAAXQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANQAAAAAANQAAAAAANQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADTQAAAAAAXQAAAAACXQAAAAABXQAAAAACLgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADTgAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABTgAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADTQAAAAADXQAAAAADXQAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABTgAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAARQAAAAAARQAAAAAATQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAARQAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA version: 6 -1,-6: ind: -1,-6 @@ -379,7 +383,7 @@ entities: version: 6 -2,-4: ind: -2,-4 - tiles: bAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANgAAAAADNgAAAAABNgAAAAAANgAAAAACNgAAAAADNgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAADNgAAAAADNgAAAAAANgAAAAABNgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAATgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAZAAAAAAANgAAAAACNgAAAAAANgAAAAACNgAAAAAANgAAAAACNgAAAAADfgAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAANgAAAAADNgAAAAABNgAAAAADfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAANgAAAAACNgAAAAACNgAAAAACNgAAAAABfgAAAAAAHwAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAANgAAAAACNgAAAAABNgAAAAACNgAAAAACNgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABTQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAANgAAAAADNgAAAAACNgAAAAADNgAAAAABNgAAAAADNgAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAADXQAAAAAATgAAAAACXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAALAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAATQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAALAAAAAAARQAAAAAALAAAAAAALAAAAAAARQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAALAAAAAAARQAAAAAALAAAAAAALAAAAAAARQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAALAAAAAAARQAAAAAALAAAAAAALAAAAAAARQAAAAAAXQAAAAAATQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAATgAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARQAAAAAALAAAAAAALAAAAAAARQAAAAAA + tiles: bAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAATgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABTQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAATgAAAAADXQAAAAADXQAAAAAATgAAAAACXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAATQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAfwAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcgAAAAAAfwAAAAAAXQAAAAAATQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcgAAAAAAAwAAAAAATgAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcgAAAAAAfgAAAAAA version: 6 -3,-4: ind: -3,-4 @@ -467,11 +471,11 @@ entities: version: 6 -2,-2: ind: -2,-2 - tiles: XQAAAAACTQAAAAADXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACTQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAIwAAAAACIwAAAAACIwAAAAAAIwAAAAADfgAAAAAAHwAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAIwAAAAABPQAAAAADPQAAAAADPQAAAAADfgAAAAAAHwAAAAADXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAADfgAAAAAAHwAAAAAAXQAAAAABTgAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAASAAAAAACSAAAAAACSAAAAAABSAAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAASAAAAAAASAAAAAACSAAAAAADSAAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAASAAAAAACSAAAAAADSAAAAAAASAAAAAAASAAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAASAAAAAACSAAAAAAASAAAAAACSAAAAAACSAAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACTQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAASAAAAAACSAAAAAADSAAAAAADSAAAAAAASAAAAAADfgAAAAAAfgAAAAAAXQAAAAADTgAAAAACXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAASAAAAAACSAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAASAAAAAABSAAAAAADfgAAAAAADwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAADwAAAAADUQAAAAAAbAAAAAAAfgAAAAAATQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: XQAAAAACTQAAAAADXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACTQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAHwAAAAAAXQAAAAABTgAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACTQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADTgAAAAACXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAbAAAAAAAfgAAAAAATQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: bAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAMgAAAAADUQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABTgAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAMgAAAAABMgAAAAACbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAMgAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAAHwAAAAACXQAAAAAATgAAAAACXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACTQAAAAAAXQAAAAAATQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADTQAAAAACXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAACTQAAAAADTgAAAAABXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAACXQAAAAADTgAAAAACTQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAADXQAAAAADTgAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABTgAAAAABXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADTgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAJQAAAAAAQAAAAAAAQAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAATgAAAAADXQAAAAACXQAAAAAD + tiles: bAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABTgAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACXQAAAAAATgAAAAACXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACTQAAAAAAXQAAAAAATQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADTQAAAAACXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAACTQAAAAADTgAAAAABXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAACXQAAAAADTgAAAAACTQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAADXQAAAAADTgAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABTgAAAAABXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADTgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAJQAAAAAAQAAAAAAAQAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAATgAAAAADXQAAAAACXQAAAAAD version: 6 -2,0: ind: -2,0 @@ -487,31 +491,31 @@ entities: version: 6 -2,-3: ind: -2,-3 - tiles: XQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAQgAAAAAAUAAAAAAARQAAAAAALAAAAAAALAAAAAAARQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAADTQAAAAABXQAAAAABXQAAAAAALwAAAAAALwAAAAAALwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAgQAAAAAAHwAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAALAAAAAAALAAAAAAALAAAAAAAUwAAAAAAUwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAADEQAAAAAAHwAAAAABXQAAAAABXQAAAAABfgAAAAAAfQAAAAAALAAAAAAALAAAAAAALAAAAAAAfQAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAHwAAAAAAEgAAAAADHwAAAAADTgAAAAABXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEgAAAAABHwAAAAACEgAAAAACHwAAAAACXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEgAAAAABHwAAAAADEgAAAAADHwAAAAACXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEgAAAAACHwAAAAADEQAAAAAAHwAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAHwAAAAABEQAAAAAAHwAAAAAAXQAAAAAATQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAHwAAAAADEgAAAAABHwAAAAABXQAAAAAAXQAAAAAATQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEgAAAAAAHwAAAAABEgAAAAABHwAAAAACTgAAAAAAXQAAAAABXQAAAAABTgAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEgAAAAACHwAAAAAAEgAAAAACHwAAAAAA + tiles: XQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAcgAAAAAAAwAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAcgAAAAAAAwAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcgAAAAAAAwAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAfwAAAAAAfwAAAAAATgAAAAADTQAAAAABXQAAAAABXQAAAAAALwAAAAAALwAAAAAALwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAfwAAAAAAQQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAQQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAQQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAALAAAAAAALAAAAAAALAAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAQQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfQAAAAAALAAAAAAALAAAAAAALAAAAAAAfQAAAAAAUwAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAQQAAAAAATgAAAAABXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAKAAAAAAAfgAAAAAAXQAAAAAATQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAKAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAKAAAAAAAXQAAAAAATgAAAAAAXQAAAAABXQAAAAABTgAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAKAAAAAAAfgAAAAAA version: 6 - -1,-4: - ind: -1,-4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAACNgAAAAACNgAAAAADNgAAAAABNgAAAAADNgAAAAAANgAAAAADNgAAAAACNgAAAAACZAAAAAAANgAAAAADNgAAAAABNgAAAAABNgAAAAADNgAAAAAANgAAAAADNgAAAAACNgAAAAACNgAAAAACNgAAAAADNgAAAAABNgAAAAADNgAAAAACNgAAAAABNgAAAAAANgAAAAABNgAAAAABNgAAAAADNgAAAAADNgAAAAACNgAAAAACNgAAAAACNgAAAAAANgAAAAACNgAAAAAANgAAAAABfgAAAAAAfgAAAAAANgAAAAADNgAAAAABNgAAAAADZAAAAAAANgAAAAAANgAAAAACfgAAAAAAfgAAAAAANgAAAAABNgAAAAACNgAAAAABNgAAAAADNgAAAAACNgAAAAACNgAAAAABfgAAAAAANgAAAAAANgAAAAAANgAAAAACZAAAAAAANgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAACNgAAAAADNgAAAAABNgAAAAAAfgAAAAAANgAAAAABNgAAAAABNgAAAAACNgAAAAAANgAAAAADZAAAAAAAZAAAAAAANgAAAAACNgAAAAAANgAAAAACNgAAAAABNgAAAAAANgAAAAACNgAAAAAANgAAAAADNgAAAAACNgAAAAACNgAAAAABNgAAAAABNgAAAAACNgAAAAADNgAAAAACfgAAAAAANgAAAAACNgAAAAACNgAAAAACNgAAAAADNgAAAAABNgAAAAACNgAAAAAANgAAAAACNgAAAAACNgAAAAADNgAAAAAANgAAAAADNgAAAAACNgAAAAADfgAAAAAANgAAAAAANgAAAAAANgAAAAACNgAAAAADNgAAAAADNgAAAAADNgAAAAAANgAAAAADNgAAAAABNgAAAAABNgAAAAACNgAAAAACNgAAAAAANgAAAAABNgAAAAADNgAAAAABNgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAABLAAAAAAALAAAAAAARQAAAAAARQAAAAAALAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAALAAAAAAALAAAAAAARQAAAAAARQAAAAAALAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAALAAAAAAALAAAAAAARQAAAAAARQAAAAAALAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAADLAAAAAAALAAAAAAARQAAAAAARQAAAAAALAAAAAAAfgAAAAAAMwAAAAAADwAAAAACfgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAfgAAAAAALAAAAAAALAAAAAAARQAAAAAARQAAAAAALAAAAAAAfgAAAAAAMwAAAAAADwAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAfgAAAAAAgAAAAAAAbgAAAAACMwAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAALAAAAAAAfgAAAAAADwAAAAAADwAAAAABDwAAAAABDwAAAAABDwAAAAABfgAAAAAAgAAAAAAAbgAAAAACbgAAAAAAfgAAAAAALAAAAAAALAAAAAAALAAAAAAARQAAAAAALAAAAAAAfgAAAAAADwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAADbgAAAAADbgAAAAADgAAAAAAAfgAAAAAA + 0,-2: + ind: 0,-2 + tiles: LQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGgAAAAAADwAAAAAAfgAAAAAAVAAAAAAAXQAAAAAAVAAAAAAAfgAAAAAAawAAAAAAcwAAAAAAfgAAAAAAcwAAAAAAcwAAAAAALQAAAAAAfgAAAAAALQAAAAAAfgAAAAAADwAAAAAADwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfgAAAAAALQAAAAAAfgAAAAAAfgAAAAAAGgAAAAAADwAAAAAAXQAAAAAAVAAAAAAAXQAAAAAAVAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALQAAAAAALQAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfgAAAAAALQAAAAAAGgAAAAAAfgAAAAAAawAAAAAAfgAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAfgAAAAAAVAAAAAAAfgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAKAAAAAAAWAAAAAAAGgAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAVAAAAAAADAAAAAAADAAAAAAADAAAAAAAVAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfwAAAAAAWAAAAAAAGgAAAAAAWAAAAAAAawAAAAAAfgAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAVAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAWAAAAAAAGgAAAAAAWAAAAAAAawAAAAAAfgAAAAAAVAAAAAAADAAAAAAADAAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAGgAAAAAAGgAAAAAAWAAAAAAAawAAAAAAfgAAAAAAVAAAAAAAcwAAAAAAfgAAAAAAVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAVAAAAAAAcwAAAAAAcwAAAAAAVAAAAAAAfwAAAAAAcgAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAawAAAAAAWAAAAAAAWAAAAAAAcwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAWAAAAAAAcwAAAAAAawAAAAAAfgAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAcwAAAAAAcwAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: fgAAAAAAfgAAAAAALAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAABKQAAAAAAKQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAASAAAAAACSAAAAAAASAAAAAABSAAAAAACSAAAAAADSAAAAAABSAAAAAABSAAAAAADSAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAADSwAAAAADSwAAAAABSwAAAAADSwAAAAADSwAAAAACSwAAAAAASwAAAAAAFQAAAAABFQAAAAAFFQAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAABSwAAAAABfgAAAAAASwAAAAADSwAAAAABfgAAAAAASwAAAAADSwAAAAABFQAAAAAGFQAAAAAGFQAAAAACfgAAAAAAUwAAAAAAHwAAAAACfgAAAAAASAAAAAAASAAAAAABSwAAAAABSwAAAAACSwAAAAACSwAAAAACfgAAAAAASwAAAAABSwAAAAABFQAAAAABFQAAAAACFQAAAAAGFQAAAAADUwAAAAAAUwAAAAAAfgAAAAAASAAAAAABSAAAAAAASwAAAAADSwAAAAAAfQAAAAAASwAAAAACSwAAAAABfgAAAAAAfQAAAAAAFQAAAAAFFQAAAAADFQAAAAABfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAAASAAAAAAASwAAAAABSwAAAAACSwAAAAABSwAAAAABfQAAAAAASwAAAAAASwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAACSAAAAAADSwAAAAABSwAAAAABSwAAAAACSwAAAAADSwAAAAABSwAAAAADSwAAAAABFQAAAAACfgAAAAAAUwAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAASAAAAAADSAAAAAACSAAAAAACSAAAAAADSAAAAAADSAAAAAAASAAAAAADSAAAAAACSAAAAAADfgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAASwAAAAADSwAAAAADSwAAAAAASwAAAAAASwAAAAABSwAAAAACfgAAAAAAFQAAAAAEfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAQgAAAAAAQQAAAAAAFwAAAAACfgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAA + tiles: TAAAAAAATAAAAAAAfgAAAAAAdAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALQAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAALQAAAAAAWAAAAAAALQAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAALQAAAAAALQAAAAAALQAAAAAAWAAAAAAALQAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALQAAAAAAfgAAAAAALQAAAAAALQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAawAAAAAAawAAAAAAawAAAAAAfwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAALQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAZQAAAAAAZQAAAAAAawAAAAAAawAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAawAAAAAAcwAAAAAALQAAAAAAXQAAAAAALQAAAAAAfgAAAAAAawAAAAAAawAAAAAAawAAAAAAZQAAAAAAawAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAALQAAAAAALQAAAAAAXQAAAAAAdQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAALQAAAAAAZQAAAAAAawAAAAAAfwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAawAAAAAAcwAAAAAAcwAAAAAALQAAAAAAcwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAALQAAAAAALQAAAAAAawAAAAAAfwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAcwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAALQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAawAAAAAAcwAAAAAAfgAAAAAAcwAAAAAAcwAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: KAAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALQAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAATgAAAAAATgAAAAAAKAAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAawAAAAAAWAAAAAAAGgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAKAAAAAAATgAAAAAATgAAAAAATgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAfgAAAAAAGgAAAAAAcgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAawAAAAAAfgAAAAAAGgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAawAAAAAAWAAAAAAAGgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAwAAAAAAAwAAAAAALQAAAAAAfgAAAAAAawAAAAAAWAAAAAAAGgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAcwAAAAAAWAAAAAAAWAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAAUAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcwAAAAAAawAAAAAAcwAAAAAAWAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAWAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAawAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAAfwAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: LAAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAADwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAACfgAAAAAAbgAAAAADbgAAAAACgAAAAAAAfgAAAAAALAAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAACDwAAAAACfgAAAAAAbgAAAAABbgAAAAAAgAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACfQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAACfgAAAAAAfgAAAAAASgAAAAAASgAAAAAAAwAAAAADAwAAAAABfgAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAAwAAAAADWQAAAAAAWQAAAAAAfgAAAAAAWQAAAAAAAwAAAAACfgAAAAAASgAAAAAASgAAAAAAfgAAAAAAAwAAAAADfgAAAAAAEgAAAAACHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAAwAAAAADfgAAAAAASgAAAAAASgAAAAAAWQAAAAAAAwAAAAACfgAAAAAAEgAAAAACHwAAAAAAEQAAAAAAfgAAAAAAAwAAAAACAwAAAAACAwAAAAABfgAAAAAAfgAAAAAAAwAAAAADfgAAAAAASgAAAAAASgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAABHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAACfgAAAAAAfgAAAAAAEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAwAAAAABfgAAAAAAAwAAAAACfgAAAAAAAwAAAAAAfgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACfgAAAAAAEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAwAAAAACfgAAAAAAAwAAAAABfgAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAwAAAAADfgAAAAAAEgAAAAACHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAAwAAAAADfgAAAAAAfgAAAAAAAwAAAAABAwAAAAABfgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADfgAAAAAAEgAAAAADHwAAAAACHwAAAAADfgAAAAAAAwAAAAAAAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAABAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAACHwAAAAACEQAAAAAAfgAAAAAAAwAAAAADfgAAAAAAAwAAAAABfgAAAAAAAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAADfgAAAAAAFwAAAAABQQAAAAAA + tiles: AwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAdAAAAAAAfgAAAAAATAAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALQAAAAAALQAAAAAALQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAALQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAALQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALQAAAAAAfgAAAAAALQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAALQAAAAAALQAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAALQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAawAAAAAAawAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAawAAAAAAZQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAALQAAAAAAfgAAAAAAXQAAAAAAWAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfwAAAAAAawAAAAAAZQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAALQAAAAAAfgAAAAAAfgAAAAAALQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAawAAAAAALQAAAAAAKAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfwAAAAAALQAAAAAAfgAAAAAAKAAAAAAAXQAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAALQAAAAAALQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: NgAAAAABNgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAABNgAAAAABNgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAADNgAAAAAANgAAAAACNgAAAAABNgAAAAABNgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAADNgAAAAAANgAAAAACNgAAAAACNgAAAAACNgAAAAABNgAAAAACNgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAACNgAAAAABNgAAAAABNgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAANgAAAAABNgAAAAABNgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAADNgAAAAACNgAAAAABNgAAAAAANgAAAAAANgAAAAADZAAAAAAAZAAAAAAANgAAAAACNgAAAAADNgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAACNgAAAAACNgAAAAACNgAAAAAANgAAAAABZAAAAAAAZAAAAAAAZAAAAAAANgAAAAADNgAAAAABNgAAAAACZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAAfgAAAAAANgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAACNgAAAAABfgAAAAAANgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAANgAAAAAAfgAAAAAANgAAAAACNgAAAAAANgAAAAAANgAAAAABNgAAAAACNgAAAAACNgAAAAAANgAAAAADNgAAAAAANgAAAAABNgAAAAABNgAAAAADZAAAAAAAZAAAAAAANgAAAAABfgAAAAAAfgAAAAAANgAAAAABNgAAAAACZAAAAAAAZAAAAAAAZAAAAAAANgAAAAABNgAAAAACNgAAAAAANgAAAAAANgAAAAABNgAAAAADZAAAAAAAfgAAAAAALAAAAAAALAAAAAAAfgAAAAAALAAAAAAALAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAAfgAAAAAALAAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAAfgAAAAAALAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAARQAAAAAARQAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOAAAAAAARQAAAAAARQAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAOAAAAAAARQAAAAAARQAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcwAAAAAAXQAAAAAAfgAAAAAABQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcwAAAAAAXQAAAAAAfgAAAAAABQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAAwAAAAAAAwAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAfgAAAAAAbwAAAAAAfwAAAAAAXQAAAAAAXQAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAaQAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAALwAAAAAALwAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcgAAAAAAcgAAAAAAfgAAAAAALwAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcgAAAAAAcgAAAAAALwAAAAAALwAAAAAAaQAAAAAAfgAAAAAAaQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcgAAAAAAcgAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAfwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAALQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAALQAAAAAALQAAAAAATAAAAAAATAAAAAAAfgAAAAAAdAAAAAAAXQAAAAAAXQAAAAAAdAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAALQAAAAAATAAAAAAATAAAAAAAfgAAAAAAdAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 - 0,-2: - ind: 0,-2 - tiles: QQAAAAAAQQAAAAAAFwAAAAACfgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAHwAAAAACfQAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAADFwAAAAACFwAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADNwAAAAADNwAAAAADRAAAAAAARAAAAAACfgAAAAAAUwAAAAAAHwAAAAADfgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACNAAAAAACNwAAAAAARAAAAAABRAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAAADwAAAAAADwAAAAAANAAAAAABNwAAAAADRAAAAAACRAAAAAABfgAAAAAAHwAAAAACgQAAAAAAfgAAAAAARQAAAAAAGgAAAAADGgAAAAADGgAAAAABRQAAAAAAfgAAAAAADwAAAAABDwAAAAACNAAAAAADNwAAAAACMgAAAAACMgAAAAADfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAACNwAAAAACNwAAAAACNwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAARQAAAAAAGgAAAAADGgAAAAACGgAAAAAARQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACFwAAAAAAFwAAAAACFwAAAAAAFwAAAAAAHwAAAAACgQAAAAAAfgAAAAAAfgAAAAAARQAAAAAAGgAAAAABCQAAAAAAGgAAAAACRQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAARAAAAAABRAAAAAADRAAAAAADMgAAAAABfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAARQAAAAAAGgAAAAABCQAAAAAAGgAAAAADRQAAAAAAfgAAAAAAXQAAAAACXQAAAAACRAAAAAAARAAAAAADRAAAAAACMgAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAARQAAAAAAGgAAAAAACQAAAAAAGgAAAAAARQAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAARQAAAAAAGgAAAAADGgAAAAACGgAAAAADRQAAAAAAfgAAAAAAXQAAAAADXQAAAAACMgAAAAABDwAAAAABDwAAAAACDwAAAAACfgAAAAAAgQAAAAAAHwAAAAACfgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAARQAAAAAAGgAAAAABGgAAAAAAGgAAAAABRQAAAAAAfgAAAAAAGgAAAAACGgAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAGgAAAAACCQAAAAAAGgAAAAABRQAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAGQAAAAAHfgAAAAAAGQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAARQAAAAAAGgAAAAADCQAAAAAAGgAAAAAARQAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAUQAAAAAAUQAAAAAAGQAAAAACGQAAAAAHfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAARQAAAAAAGgAAAAADCQAAAAAAGgAAAAAARQAAAAAAfgAAAAAAEQAAAAAAfgAAAAAA - version: 6 - -1,-2: - ind: -1,-2 - tiles: EQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAFwAAAAACQQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASAAAAAAALAAAAAAALAAAAAAALAAAAAAAfgAAAAAAFwAAAAAANwAAAAAAMgAAAAADMgAAAAACFwAAAAADFwAAAAABIwAAAAACIwAAAAABIwAAAAACfgAAAAAAfgAAAAAASAAAAAABLAAAAAAALAAAAAAALAAAAAAAfgAAAAAAFwAAAAADNwAAAAACNwAAAAACNwAAAAACNwAAAAADNwAAAAADPQAAAAACPQAAAAACIwAAAAAASAAAAAADSAAAAAADSAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAACNwAAAAAAEgAAAAACEgAAAAADMgAAAAABNAAAAAADIwAAAAADIwAAAAACIwAAAAABfgAAAAAASAAAAAACfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAADQAAAAAANwAAAAAAFwAAAAACEgAAAAABEgAAAAACMgAAAAABNAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASAAAAAACfgAAAAAAfgAAAAAAMQAAAAAADQAAAAAADQAAAAAANwAAAAABFwAAAAABEgAAAAAAEgAAAAADMgAAAAADNAAAAAABSAAAAAACSAAAAAABSAAAAAAAfgAAAAAASAAAAAAAfgAAAAAAfgAAAAAAMQAAAAAADQAAAAAAMQAAAAAANwAAAAADNwAAAAACNwAAAAAANwAAAAAANwAAAAABNwAAAAABSAAAAAABSAAAAAABSAAAAAAASAAAAAAASAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAACFwAAAAAAFwAAAAABFwAAAAADFwAAAAADFwAAAAAASAAAAAADSAAAAAACSAAAAAAAfgAAAAAASAAAAAABfgAAAAAAfgAAAAAARgAAAAAERwAAAAAARgAAAAAENwAAAAACFwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMgAAAAAASAAAAAAASAAAAAACSAAAAAADfgAAAAAASAAAAAACSAAAAAABfgAAAAAARwAAAAABRwAAAAAARgAAAAAFNwAAAAACFwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAMgAAAAADSAAAAAABSAAAAAAASAAAAAABfgAAAAAASAAAAAAASAAAAAABfgAAAAAARgAAAAAFRwAAAAAARwAAAAAANwAAAAAANwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASAAAAAAAfgAAAAAASAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAMgAAAAADMgAAAAABDwAAAAACDwAAAAABDwAAAAADDwAAAAAADwAAAAABDwAAAAAAfgAAAAAAMgAAAAABOgAAAAAAMgAAAAACDwAAAAAAfgAAAAAAMgAAAAADfgAAAAAAfgAAAAAAMgAAAAAADwAAAAABDwAAAAACDwAAAAABMgAAAAAAMgAAAAAAOgAAAAAAMgAAAAAAMgAAAAAAOgAAAAACOgAAAAABOgAAAAABfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAMgAAAAADDwAAAAABDwAAAAABDwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAABfgAAAAAAMgAAAAABMgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAAGQAAAAABGQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAMgAAAAADMgAAAAAAMgAAAAADMgAAAAACUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAGQAAAAAA + -1,-4: + ind: -1,-4 + tiles: cgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAABQAAAAAAfgAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAABQAAAAAAfgAAAAAAXQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbwAAAAAAfwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbwAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAfgAAAAAAeQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbwAAAAAAfwAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAcgAAAAAAcgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbwAAAAAAfwAAAAAAaQAAAAAAfgAAAAAAaQAAAAAALwAAAAAAcgAAAAAAcgAAAAAAfwAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbwAAAAAAfwAAAAAAaQAAAAAAeQAAAAAAaQAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAaQAAAAAAeQAAAAAAaQAAAAAALwAAAAAAfwAAAAAATwAAAAAAfwAAAAAATwAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAaQAAAAAAaQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAaQAAAAAAeQAAAAAAfgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAdAAAAAAAXQAAAAAAXQAAAAAAdAAAAAAAfgAAAAAATAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAdAAAAAAAfgAAAAAATAAAAAAA version: 6 3,-7: ind: 3,-7 @@ -619,19 +623,19 @@ entities: version: 6 6,-6: ind: 6,-6 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAXQAAAAADXQAAAAADXQAAAAAAOAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAOAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAOAAAAAAAXQAAAAADOAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAACXQAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAOAAAAAAAXQAAAAADXQAAAAADXQAAAAAAOAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAOAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAOAAAAAAAXQAAAAADOAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAACXQAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 5,-6: ind: 5,-6 - tiles: fQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAAD + tiles: fQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAAD version: 6 6,-7: ind: 6,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-7: ind: 5,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 2,2: ind: 2,2 @@ -681,6 +685,14 @@ entities: ind: -4,-9 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAMwAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAMwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMwAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + 7,-6: + ind: 7,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 7,-5: + ind: 7,-5 + tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -726,7 +738,19 @@ entities: color: '#FFFFFFFF' id: Basalt1 decals: - 9723: -7.1844015,-21.938976 + 14443: 2,-54 + 14444: -3,-53 + 14717: -11,-33 + 14718: -12,-29 + 14719: -14,-32 + 14721: -6,-34 + 14722: -5,-36 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 14723: -6,-38 + 14724: -6,-35 - node: angle: 3.141592653589793 rad color: '#FFFFFF19' @@ -735,14 +759,21 @@ entities: 12089: 49,21 - node: color: '#FFFFFFFF' - id: Basalt7 + id: Basalt5 decals: - 9725: -7.1531515,-24.048351 + 14714: -11,-39 + 14715: -15,-36 + 14716: -17,-34 - node: color: '#FFFFFFFF' id: Basalt9 decals: - 9724: -8.7937765,-23.892101 + 14445: -3,-55 + 14446: 2,-59 + 14447: 5,-52 + 14448: -5,-52 + 14712: -14,-42 + 14713: -10,-41 - node: color: '#8BDA8EFF' id: Bot @@ -882,12 +913,6 @@ entities: 8906: -47,-59 8964: -55,-63 9088: -39,-29 - 9993: -8,-49 - 9994: -9,-49 - 9995: -9,-48 - 9996: -8,-48 - 9997: -7,-48 - 9998: -7,-49 10295: 57,-83 10296: 58,-81 10389: 62,5 @@ -937,6 +962,8 @@ entities: id: Bot decals: 12049: 54,2 + 15473: -22,-40 + 15474: -22,-41 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -1034,6 +1061,7 @@ entities: 13645: -15,-103 14220: 107,-20 14221: 107,-22 + 15676: 1,-70 - node: cleanable: True color: '#FFFFFFFF' @@ -1078,35 +1106,6 @@ entities: id: BoxGreyscale decals: 13609: 83,4 - - node: - angle: -0.6981317007977318 rad - color: '#D4D4D496' - id: BrickLineOverlayS - decals: - 9343: 0.38644218,-13.581136 - - node: - angle: -0.17453292519943295 rad - color: '#D4D4D496' - id: BrickLineOverlayS - decals: - 9344: 4.120817,-13.643636 - - node: - color: '#D4D4D496' - id: BrickLineOverlayS - decals: - 9340: 5.073942,-12.331136 - - node: - angle: 0.5235987755982988 rad - color: '#D4D4D496' - id: BrickLineOverlayS - decals: - 9342: 0.8395672,-13.924886 - - node: - angle: 1.5707963267948966 rad - color: '#D4D4D496' - id: BrickLineOverlayS - decals: - 9347: 5.027067,-13.456136 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -1228,6 +1227,10 @@ entities: 12266: 78,-2 12267: 82,-2 12268: 86,-2 + 15613: 20,-36 + 15614: 20,-39 + 15615: 20,-44 + 15674: -1,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw @@ -1243,6 +1246,10 @@ entities: 12263: 82,-2 12264: 78,-2 12265: 86,-2 + 15610: 22,-39 + 15611: 22,-36 + 15612: 22,-44 + 15673: 1,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe @@ -1259,6 +1266,10 @@ entities: 11646: 31,-38 11647: 61,-32 13793: -58,-43 + 15607: 20,-37 + 15608: 20,-32 + 15609: 20,-40 + 15671: -1,-10 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw @@ -1271,6 +1282,17 @@ entities: 10592: 55,-20 11645: 33,-36 12218: 80,-9 + 15604: 22,-40 + 15605: 22,-37 + 15606: 22,-32 + 15670: 1,-10 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 15459: -22,-43 + 15464: -22,-45 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -1336,6 +1358,22 @@ entities: 11938: 59,14 11939: 63,14 11983: 45,-10 + 15405: -22,-42 + 15597: 20,-33 + 15598: 20,-34 + 15599: 20,-35 + 15600: 20,-38 + 15601: 20,-41 + 15602: 20,-42 + 15603: 20,-43 + 15669: -1,-11 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 15471: -22,-40 + 15472: -22,-41 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -1403,6 +1441,8 @@ entities: 12253: 85,-2 12254: 87,-2 12255: 88,-2 + 15616: 21,-44 + 15672: 0,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1469,6 +1509,18 @@ entities: 12332: 82,-9 12333: 83,-9 13792: -60,-43 + 15617: 21,-32 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 15457: -19,-41 + 15458: -19,-42 + 15460: -20,-43 + 15461: -20,-44 + 15462: -20,-45 + 15463: -20,-40 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -1536,11 +1588,24 @@ entities: 12209: 77,-5 12210: 77,-6 12222: 72,-8 + 15590: 22,-43 + 15591: 22,-42 + 15592: 22,-41 + 15593: 22,-38 + 15594: 22,-35 + 15595: 22,-34 + 15596: 22,-33 + 15668: 1,-11 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: 2857: -36,-59 + - node: + color: '#D381C996' + id: BrickTileSteelCornerNe + decals: + 14703: 6,-40 - node: color: '#FF5C5C99' id: BrickTileSteelCornerNe @@ -1560,6 +1625,11 @@ entities: id: BrickTileSteelCornerNe decals: 11105: 54,7 + - node: + color: '#D381C996' + id: BrickTileSteelCornerNw + decals: + 14700: 4,-40 - node: color: '#FF5C5C99' id: BrickTileSteelCornerNw @@ -1581,6 +1651,11 @@ entities: id: BrickTileSteelCornerNw decals: 11101: 50,7 + - node: + color: '#D381C996' + id: BrickTileSteelCornerSe + decals: + 14702: 6,-41 - node: color: '#FF5C5C99' id: BrickTileSteelCornerSe @@ -1599,6 +1674,11 @@ entities: 6268: 63,-39 12048: 54,2 12237: 89,-11 + - node: + color: '#D381C996' + id: BrickTileSteelCornerSw + decals: + 14701: 4,-41 - node: color: '#FF5C5C99' id: BrickTileSteelCornerSw @@ -1765,6 +1845,11 @@ entities: 11106: 54,6 11107: 54,5 11108: 54,4 + - node: + color: '#D381C996' + id: BrickTileSteelLineN + decals: + 14704: 5,-40 - node: color: '#FF5C5C99' id: BrickTileSteelLineN @@ -2035,11 +2120,6 @@ entities: 7609: -66,-49 7632: -24,-93 9003: -36,-2 - 9620: -14,-43 - 9626: -11,-44 - 9634: -3,-44 - 9651: 12,-32 - 9659: 6,-23 12335: 83,-10 - node: color: '#1861D5FF' @@ -2089,7 +2169,6 @@ entities: 7612: -67,-49 7631: -25,-93 8999: -40,-2 - 9635: -1,-44 12334: 80,-10 - node: color: '#1861D5FF' @@ -2119,11 +2198,6 @@ entities: id: BrickTileWhiteCornerSe decals: 12273: 65,-20 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSe - decals: - 10272: 1,-73 - node: color: '#C6FF91FF' id: BrickTileWhiteCornerSe @@ -2153,9 +2227,6 @@ entities: 7633: -24,-94 8003: -47,-13 8998: -38,-6 - 9633: -3,-45 - 9640: 5,-45 - 9662: 6,-21 12338: 83,-11 - node: color: '#1861D5FF' @@ -2182,11 +2253,6 @@ entities: id: BrickTileWhiteCornerSw decals: 12272: 60,-20 - - node: - color: '#A4610696' - id: BrickTileWhiteCornerSw - decals: - 10271: -1,-73 - node: color: '#C6FF91FF' id: BrickTileWhiteCornerSw @@ -2214,8 +2280,6 @@ entities: 7611: -67,-50 7634: -25,-94 8996: -40,-6 - 9636: -1,-45 - 9644: 11,-34 12339: 80,-11 - node: color: '#FFFFFFFF' @@ -2266,7 +2330,6 @@ entities: id: BrickTileWhiteInnerNe decals: 7805: -52,-36 - 9650: 12,-33 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw @@ -2288,11 +2351,6 @@ entities: decals: 7806: -49,-36 8010: -47,-13 - - node: - color: '#A4610696' - id: BrickTileWhiteInnerSe - decals: - 10273: 0,-73 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe @@ -2303,11 +2361,6 @@ entities: id: BrickTileWhiteInnerSw decals: 9982: -31,-43 - - node: - color: '#A4610696' - id: BrickTileWhiteInnerSw - decals: - 10274: 0,-73 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw @@ -2352,13 +2405,6 @@ entities: 12275: 65,-17 12276: 65,-18 12277: 65,-19 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 10269: 1,-71 - 10270: 1,-72 - 10276: 1,-70 - node: color: '#C6FF91FF' id: BrickTileWhiteLineE @@ -2400,11 +2446,6 @@ entities: 8005: -47,-12 8006: -47,-11 8231: 38,22 - 9639: 5,-44 - 9642: 5,-41 - 9653: 6,-30 - 9657: 6,-24 - 9664: 6,-18 - node: color: '#1861D5FF' id: BrickTileWhiteLineN @@ -2470,14 +2511,6 @@ entities: 9000: -39,-2 9001: -38,-2 9002: -37,-2 - 9621: -17,-43 - 9622: -19,-43 - 9624: -13,-44 - 9628: -8,-44 - 9629: -7,-44 - 9647: 15,-33 - 9648: 13,-33 - 9652: 9,-32 12336: 81,-10 12337: 82,-10 - node: @@ -2545,15 +2578,6 @@ entities: 7799: -50,-33 8004: -48,-13 8997: -39,-6 - 9623: -19,-44 - 9627: -14,-45 - 9631: -8,-45 - 9632: -13,-45 - 9637: 0,-45 - 9638: 4,-45 - 9643: 8,-33 - 9645: 10,-33 - 9646: 19,-34 12340: 81,-11 12341: 82,-11 - node: @@ -2587,13 +2611,6 @@ entities: decals: 12284: 60,-18 12285: 60,-17 - - node: - color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 10267: -1,-72 - 10268: -1,-71 - 10275: -1,-70 - node: color: '#C6FF91FF' id: BrickTileWhiteLineW @@ -2641,212 +2658,40 @@ entities: 8007: -47,-11 8008: -47,-12 8232: 38,22 - 9641: 4,-42 - 9654: 5,-28 - 9655: 5,-27 - 9656: 5,-26 - 9660: 5,-24 - 9663: 5,-20 - 9665: 5,-17 - node: color: '#C6FF91FF' id: BushCThree decals: 13559: 29,21 - - node: - color: '#FFFFFFFF' - id: BushCThree - decals: - 9758: -14.984233,-17.743088 - node: color: '#C6FF91FF' id: BushCTwo decals: 13556: 30,21 - - node: - color: '#FFFFFFFF' - id: BushCTwo - decals: - 9602: 3.0588236,-26.883121 - 9752: -18.015484,-15.946213 - 9753: -13.921733,-17.946213 - 9754: -13.874858,-17.946213 - - node: - color: '#FFFFFFFF' - id: Busha3 - decals: - 9750: -11.909134,-12.836838 - 9751: -16.952984,-14.961838 - 9756: -16.046734,-17.852463 - - node: - color: '#FFFFFFFF' - id: Bushb2 - decals: - 9755: -13.484233,-18.961838 - - node: - color: '#FFFFFFFF' - id: Bushb3 - decals: - 9707: -3.0047915,-30.994932 - - node: - color: '#FFFFFFFF' - id: Bushc1 - decals: - 9757: -12.421733,-18.930588 - node: color: '#FFFFFFFF' id: Bushc3 decals: - 9722: -3.9110415,-30.916807 12184: 51.013447,21.053864 - - node: - color: '#FFFFFFFF' - id: Bushe3 - decals: - 9715: -2.2235415,-28.869932 - - node: - color: '#FFFFFFFF' - id: Bushe4 - decals: - 9716: -2.3641665,-27.244932 - - node: - color: '#FFFFFFFF' - id: Bushf1 - decals: - 9717: 2.0733335,-26.932432 - 9721: 3.0577083,-23.088682 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 9718: 3.0108335,-23.823057 - - node: - color: '#FFFFFFFF' - id: Bushf3 - decals: - 9719: -0.92666656,-23.916807 - 9720: -3.9735415,-30.854307 - - node: - color: '#FFFFFFFF' - id: Bushg2 - decals: - 9581: 3.2463236,-28.501492 - - node: - color: '#FFFFFFFF' - id: Bushg3 - decals: - 9586: 2.3869486,-29.923367 - 9599: 2.8400736,-28.376492 - 9600: 2.4025736,-29.220242 - - node: - color: '#FFFFFFFF' - id: Bushg4 - decals: - 9577: 3.2306986,-28.001492 - 9578: 2.1369486,-28.282742 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 9579: 2.4650736,-28.626492 - 9587: 2.1056986,-29.298367 - 9588: 3.1994486,-30.063992 - 9589: 2.6525736,-30.063992 - 9590: 1.9181986,-30.001492 - 9591: 2.6369486,-27.782742 - 9592: 2.6681986,-28.110867 - 9593: 2.5275736,-28.673367 - 9594: 2.2931986,-29.017117 - 9595: 2.0588236,-28.017117 - 9596: 1.9963236,-28.532742 - 9597: 1.9181986,-28.892117 - 9598: 3.1994486,-28.063992 - - node: - color: '#9C2020FF' - id: Bushi2 - decals: - 9830: 4.978717,-59.257614 - 9831: 4.994342,-58.77324 - 9832: 5.588092,-59.05449 - - node: - color: '#FFFFFFFF' - id: Bushi2 - decals: - 9576: 2.7619486,-28.188992 - 9582: 2.1056986,-28.954617 - 9583: 2.6994486,-29.063992 - 9584: 3.1369486,-29.423367 - 9585: 2.3713236,-29.673367 - 9759: -9.729582,-19.055588 - 9761: -4.1202064,-12.743088 - 9762: -3.7764564,-13.039963 - 9763: -4.0733314,-13.211838 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 9580: 3.1213236,-28.845242 - 9764: -5.5108314,-12.789963 - 9765: -5.6358314,-13.243088 - 9766: -6.4795814,-12.821213 - 9767: -4.7764564,-12.946213 - 9768: -3.1045814,-21.008713 - 9769: -2.0108314,-20.727463 - 9770: -0.94833136,-21.227463 - 9771: -1.1045814,-20.086838 - 9772: 0.114168644,-20.914963 - 9773: -0.54208136,-20.571213 - 9774: -1.0733314,-19.336838 - 9775: -12.053013,-15.680588 - 9776: -12.099888,-16.149338 - 9777: -11.631138,-16.071213 - - node: - color: '#FFFFFFFF' - id: Bushi4 - decals: - 9574: 2.1056986,-27.970242 - - node: - color: '#FFFFFFFF' - id: Bushj1 - decals: - 9706: -0.8086827,-27.004267 - - node: - color: '#FFFFFFFF' - id: Bushj2 - decals: - 9703: -0.3095832,-27.223017 - 9705: -0.07520819,-28.004267 - - node: - color: '#FFFFFFFF' - id: Bushj3 - decals: - 9704: -0.6533332,-28.644892 - - node: - color: '#FFFFFFFF' - id: Bushl1 - decals: - 9615: 2.8088236,-28.914371 - - node: - color: '#FFFFFFFF' - id: Bushm1 - decals: - 9616: 2.2306986,-27.992496 - node: color: '#FFFFFFFF' id: Bushm2 decals: 7109: -84,2 - node: - color: '#9C2020FF' - id: Bushn1 + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Caution decals: - 9824: 9.913091,-53.8693 + 8241: 36,20 - node: + zIndex: 1 angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Caution decals: - 8241: 36,20 + 15475: -19,-41 + 15476: -19,-42 - node: color: '#55391AFF' id: CheckerNESW @@ -3153,13 +2998,6 @@ entities: id: ConcreteTrimCornerNe decals: 13616: -7,-79 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimCornerNe - decals: - 9778: -2,-35 - 9795: -7,-39 - 9804: -10,-36 - node: color: '#AE67168F' id: ConcreteTrimCornerNw @@ -3188,14 +3026,6 @@ entities: id: ConcreteTrimCornerNw decals: 13623: -10,-79 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimCornerNw - decals: - 9786: -8,-35 - 9800: -12,-39 - 9806: -12,-36 - 9809: -12,-33 - node: color: '#AE67168F' id: ConcreteTrimCornerSe @@ -3219,13 +3049,6 @@ entities: id: ConcreteTrimCornerSe decals: 13619: -7,-82 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimCornerSe - decals: - 9779: -2,-37 - 9794: -2,-42 - 9805: -10,-37 - node: color: '#AE67168F' id: ConcreteTrimCornerSw @@ -3254,19 +3077,6 @@ entities: id: ConcreteTrimCornerSw decals: 13627: -10,-82 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimCornerSw - decals: - 9785: -8,-37 - 9802: -12,-42 - 9807: -12,-37 - 9808: -12,-34 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimEndE - decals: - 9813: -4,-33 - node: color: '#AE67168F' id: ConcreteTrimEndN @@ -3413,14 +3223,6 @@ entities: decals: 13617: -7,-80 13618: -7,-81 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimLineE - decals: - 9791: -2,-40 - 9792: -2,-41 - 9796: -7,-40 - 9797: -7,-41 - node: color: '#9FED5896' id: ConcreteTrimLineN @@ -3460,18 +3262,6 @@ entities: decals: 13621: -8,-79 13622: -9,-79 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimLineN - decals: - 9787: -7,-35 - 9788: -5,-35 - 9789: -4,-35 - 9790: -3,-35 - 9798: -10,-39 - 9799: -11,-39 - 9810: -10,-33 - 9811: -8,-33 - node: color: '#9FED5896' id: ConcreteTrimLineS @@ -3503,18 +3293,6 @@ entities: decals: 13620: -8,-82 13628: -9,-82 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimLineS - decals: - 9780: -3,-37 - 9781: -4,-37 - 9782: -5,-37 - 9783: -6,-37 - 9784: -7,-37 - 9793: -3,-42 - 9803: -8,-42 - 9812: -11,-34 - node: color: '#9FED5896' id: ConcreteTrimLineW @@ -3560,30 +3338,12 @@ entities: decals: 13624: -10,-80 13625: -10,-81 - - node: - color: '#FFFFFFFF' - id: ConcreteTrimLineW - decals: - 9801: -12,-41 - node: cleanable: True color: '#951710FF' id: Cyber decals: 14327: -57.98221,-130.99178 - - node: - color: '#9C2020FF' - id: Damaged - decals: - 9823: 9.959966,-53.9943 - 9834: 13.935783,-62.00091 - - node: - angle: -0.17453292519943295 rad - color: '#D4D4D496' - id: Damaged - decals: - 9345: 4.948942,-13.159261 - 9346: 5.120817,-13.878011 - node: zIndex: 3 color: '#DE3A3A96' @@ -3818,6 +3578,10 @@ entities: 13632: -7,-90 13633: -5,-90 13634: -5,-89 + 15644: 19,-40 + 15645: 19,-41 + 15646: 19,-42 + 15647: 19,-43 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -3897,61 +3661,6 @@ entities: 13503: 73,6 13504: 73,7 13505: 73,5 - - node: - color: '#FFFFFFFF' - id: DerelictSignBottom1 - decals: - 9290: -1,-14 - - node: - color: '#FFFFFFFF' - id: DerelictSignBottom4 - decals: - 9293: 2,-14 - - node: - color: '#FFFFFFFF' - id: DerelictSignBottom5 - decals: - 9294: 3,-14 - - node: - color: '#FFFFFFFF' - id: DerelictSignBottom8 - decals: - 9297: 6,-14 - - node: - color: '#FFFFFFFF' - id: DerelictSignTop1 - decals: - 9301: -1,-13 - - node: - color: '#FFFFFFFF' - id: DerelictSignTop2 - decals: - 9302: 0,-13 - - node: - color: '#FFFFFFFF' - id: DerelictSignTop3 - decals: - 9303: 1,-13 - - node: - color: '#FFFFFFFF' - id: DerelictSignTop4 - decals: - 9304: 2,-13 - - node: - color: '#FFFFFFFF' - id: DerelictSignTop5 - decals: - 9305: 3,-13 - - node: - color: '#FFFFFFFF' - id: DerelictSignTop6 - decals: - 9300: 4,-13 - - node: - color: '#FFFFFFFF' - id: DerelictSignTop8 - decals: - 9299: 6,-13 - node: cleanable: True color: '#18A2D5FF' @@ -4865,6 +4574,50 @@ entities: 7145: -83,-10 7146: -75,-17 7901: 65,-21 + 15003: 12,-33 + 15004: 12,-34 + 15005: 13,-35 + 15006: 12,-35 + 15007: 10,-34 + 15008: 11,-34 + 15009: 11,-33 + 15010: 11,-32 + 15011: 11,-31 + 15012: 16,-32 + 15013: 16,-31 + 15022: 13,-33 + 15023: 13,-34 + 15024: 16,-33 + 15025: 16,-34 + 15026: 16,-35 + 15027: 17,-35 + 15028: 17,-34 + 15029: 17,-33 + 15030: 17,-37 + 15031: 13,-37 + 15035: 11,-35 + 15052: 13,-39 + 15054: 14,-40 + 15056: 11,-43 + 15057: 12,-43 + 15058: 15,-44 + 15059: 14,-44 + 15060: 13,-44 + 15061: 12,-44 + 15062: 11,-44 + 15063: 10,-44 + 15064: 14,-43 + 15065: 10,-43 + 15066: 10,-42 + 15067: 9,-42 + 15068: 15,-40 + 15069: 15,-39 + 15070: 14,-39 + 15071: 4,-36 + 15072: 5,-38 + 15073: 6,-36 + 15074: 5,-36 + 15075: 4,-38 - node: cleanable: True color: '#FFFFFFFF' @@ -5012,60 +4765,6 @@ entities: 8245: 35,22 8246: 36,20 8248: 38,22 - 10023: 21,-15 - 10035: 9,-30 - 10041: 12,-34 - 10042: 13,-33 - 10043: 10,-33 - 10044: 10,-33 - 10045: 8,-33 - 10046: 7,-32 - 10047: 5,-32 - 10048: 6,-30 - 10049: 6,-28 - 10050: 5,-25 - 10051: 5,-25 - 10065: 5,-27 - 10066: 5,-24 - 10067: 6,-24 - 10068: 6,-24 - 10069: 6,-21 - 10070: 5,-21 - 10071: 5,-20 - 10072: 5,-18 - 10073: 5,-17 - 10074: 6,-14 - 10075: 6,-13 - 10076: 3,-13 - 10077: 0,-13 - 10078: -1,-13 - 10079: -1,-13 - 10080: -1,-14 - 10081: 1,-14 - 10082: 3,-14 - 10083: -2,-16 - 10089: -9,-17 - 10096: -16,-21 - 10110: -17,-25 - 10111: -11,-28 - 10112: -11,-28 - 10118: -11,-32 - 10119: -11,-33 - 10120: -10,-33 - 10121: -12,-34 - 10122: -12,-34 - 10123: -10,-33 - 10124: -9,-33 - 10125: -6,-33 - 10126: -13,-51 - 10127: -13,-53 - 10128: -14,-52 - 10129: -19,-54 - 10130: -17,-50 - 10131: -20,-50 - 10132: -19,-47 - 10133: -20,-46 - 10134: -13,-49 10900: 82,-3 10901: 84,-5 10902: 83,-7 @@ -5083,142 +4782,6 @@ entities: 11676: 52,18 11677: 47,18 11678: 54,15 - 12806: 15,-15 - 12807: 15,-14 - 12808: 20,-15 - 12809: 19,-15 - 12810: 14,-15 - 12811: 15,-16 - 12812: 16,-17 - 12836: 18,-17 - 12837: 19,-17 - 12838: 19,-17 - 12839: 19,-19 - 12840: 15,-19 - 12841: 15,-19 - 12842: 16,-19 - 12843: 15,-20 - 12844: 16,-17 - 12845: 16,-18 - 12846: 15,-18 - 12847: 15,-18 - 12848: 15,-16 - 12849: 15,-16 - 12850: 18,-19 - 12851: 15,-23 - 12852: 14,-26 - 13028: -18,-29 - 13029: -19,-29 - 13030: -19,-30 - 13031: -15,-29 - 13032: -15,-28 - 13033: -14,-29 - 13034: -14,-30 - 13035: -16,-30 - 13036: -20,-30 - 13037: -16,-29 - 13038: -11,-29 - 13039: -12,-29 - 13040: -12,-28 - 13041: -12,-24 - 13042: -15,-24 - 13043: -18,-24 - 13044: -19,-23 - 13045: -19,-25 - 13046: -20,-23 - 13047: -20,-22 - 13048: -21,-21 - 13049: -16,-22 - 13050: -15,-19 - 13051: -16,-19 - 13052: -17,-18 - 13053: -11,-17 - 13054: -12,-17 - 13055: -17,-16 - 13056: -15,-16 - 13057: -3,-19 - 13058: -4,-19 - 13059: -4,-16 - 13060: -3,-15 - 13061: -3,-14 - 13062: -3,-13 - 13063: 1,-21 - 13064: 2,-21 - 13065: 3,-21 - 13066: 2,-21 - 13067: 1,-21 - 13068: 3,-16 - 13069: 3,-16 - 13070: 2,-32 - 13071: 2,-31 - 13072: 0,-31 - 13073: -2,-31 - 13074: -2,-32 - 13075: 1,-31 - 13076: 2,-33 - 13077: 0,-29 - 13078: 1,-30 - 13079: 0,-30 - 13080: -2,-30 - 13081: -4,-30 - 13082: -5,-30 - 13083: -5,-31 - 13084: -6,-31 - 13085: -6,-30 - 13086: 3,-25 - 13087: 2,-25 - 13088: 1,-25 - 13089: -1,-25 - 13090: -2,-25 - 13091: -4,-25 - 13092: -5,-24 - 13093: -5,-24 - 13094: -1,-31 - 13095: 10,-29 - 13096: 10,-28 - 13097: 9,-29 - 13098: 9,-30 - 13099: 11,-30 - 13100: 12,-28 - 13102: 9,-18 - 13103: 9,-16 - 13104: 9,-17 - 13105: 9,-26 - 13106: 11,-26 - 13107: 12,-26 - 13108: 8,-26 - 13109: 12,-15 - 13110: 8,-15 - 13111: 15,-24 - 13112: 15,-23 - 13113: 14,-22 - 13114: 15,-26 - 13115: 20,-26 - 13116: 19,-26 - 13117: 15,-28 - 13118: 14,-29 - 13119: 14,-28 - 13120: 17,-31 - 13203: 8,-44 - 13204: 8,-43 - 13205: 7,-44 - 13206: 15,-44 - 13207: 16,-44 - 13208: 18,-44 - 13209: 16,-45 - 13210: 19,-45 - 13211: 19,-41 - 13212: 19,-39 - 13213: 19,-37 - 13214: 12,-37 - 13215: 13,-37 - 13216: 14,-37 - 13217: 20,-36 - 13218: 20,-37 - 13219: 8,-37 - 13220: 8,-37 - 13221: 8,-39 - 13222: 8,-41 14250: -21,-104 14251: -22,-104 14252: -22,-105 @@ -5270,6 +4833,316 @@ entities: 14298: -25,-98 14300: -27,-98 14301: -27,-99 + 14453: -3,-54 + 14454: -2,-54 + 14455: -4,-52 + 14456: -2,-53 + 14457: 1,-53 + 14458: 2,-54 + 14459: 3,-53 + 14460: 3,-55 + 14461: 3,-58 + 14462: 1,-59 + 14463: 2,-59 + 14464: 1,-60 + 14465: 0,-59 + 14466: -2,-59 + 14467: -3,-59 + 14468: -3,-58 + 14469: -3,-57 + 14470: -2,-56 + 14471: -3,-55 + 14472: -1,-54 + 14473: -4,-53 + 14474: -5,-53 + 14475: -5,-52 + 14476: -3,-52 + 14477: -4,-50 + 14478: -5,-49 + 14479: -5,-49 + 14480: -4,-48 + 14481: -6,-48 + 14482: -6,-49 + 14483: -8,-48 + 14484: -8,-49 + 14485: -9,-48 + 14486: -8,-51 + 14487: -9,-50 + 14488: -11,-50 + 14489: -12,-50 + 14490: -12,-48 + 14491: -11,-48 + 14492: -12,-46 + 14493: -14,-48 + 14494: -14,-49 + 14495: -15,-49 + 14496: -15,-48 + 14497: -14,-47 + 14498: -15,-46 + 14499: -16,-47 + 14500: -17,-47 + 14501: -17,-46 + 14502: -11,-52 + 14503: -11,-52 + 14504: -11,-53 + 14505: -12,-53 + 14506: -12,-52 + 14507: -11,-54 + 14508: -15,-54 + 14509: -14,-53 + 14510: -14,-52 + 14511: -15,-52 + 14512: -15,-53 + 14513: -16,-53 + 14514: -9,-55 + 14515: -8,-55 + 14516: -9,-54 + 14517: -9,-54 + 14518: -9,-56 + 14519: -8,-56 + 14520: -8,-54 + 14521: -9,-58 + 14522: -8,-58 + 14523: -8,-59 + 14524: -9,-59 + 14525: -9,-60 + 14526: -8,-60 + 14527: -1,-63 + 14528: 0,-63 + 14529: 0,-62 + 14530: 1,-63 + 14531: 1,-62 + 14532: 1,-63 + 14533: 8,-59 + 14534: 9,-58 + 14535: 8,-57 + 14536: 9,-57 + 14537: 9,-55 + 14538: 8,-55 + 14539: 9,-55 + 14540: 9,-53 + 14541: 8,-52 + 14542: 9,-51 + 14543: 8,-49 + 14544: 9,-48 + 14545: 8,-48 + 14546: 5,-49 + 14547: 5,-48 + 14548: 4,-48 + 14549: 4,-50 + 14550: 5,-50 + 14551: 6,-48 + 14552: 6,-49 + 14553: 5,-49 + 14554: 11,-48 + 14555: 12,-47 + 14556: 12,-48 + 14557: 11,-49 + 14558: 12,-51 + 14559: 12,-52 + 14560: 11,-52 + 14561: 14,-52 + 14566: 14,-48 + 14567: 15,-48 + 14568: 15,-47 + 14569: 14,-46 + 14570: 14,-46 + 14571: 15,-46 + 14726: -6,-40 + 14728: -5,-40 + 14732: -6,-41 + 14735: -3,-45 + 14736: -3,-44 + 14737: -4,-45 + 14738: -9,-45 + 14739: -8,-45 + 14740: -9,-44 + 14741: -11,-41 + 14742: -11,-44 + 14743: -14,-44 + 14744: -14,-43 + 14745: -14,-41 + 14746: -14,-40 + 14747: -12,-42 + 14767: -12,-32 + 14769: -10,-31 + 14770: -11,-29 + 14771: -9,-29 + 14772: -9,-28 + 14773: -8,-29 + 14774: -9,-28 + 14775: -10,-27 + 14776: -9,-26 + 14777: -13,-29 + 14778: -14,-29 + 14779: -14,-28 + 14796: -6,-32 + 14797: -5,-30 + 14798: -6,-29 + 14799: -6,-30 + 14800: -7,-30 + 14801: -5,-29 + 14814: -1,-44 + 14815: -1,-43 + 14816: 1,-44 + 14817: 1,-42 + 14818: 1,-41 + 14819: 3,-43 + 14820: 3,-45 + 14821: 5,-44 + 14822: 5,-45 + 14823: 6,-44 + 14824: 7,-45 + 14825: 8,-43 + 14826: 8,-44 + 14827: 9,-43 + 14828: 9,-45 + 14834: 5,-37 + 14835: 4,-37 + 14836: 8,-37 + 14837: 7,-37 + 14838: 8,-38 + 14839: 9,-37 + 14842: 9,-33 + 14844: 7,-31 + 14845: 8,-30 + 14846: 7,-30 + 14847: 8,-29 + 14848: 10,-31 + 14849: 9,-32 + 14851: 5,-31 + 14853: 4,-34 + 14854: 4,-31 + 14855: 4,-30 + 14856: 12,-32 + 14857: 13,-31 + 14858: 14,-32 + 14860: 15,-32 + 14861: 11,-31 + 14862: 14,-35 + 14865: 15,-37 + 14866: 15,-39 + 14867: 14,-41 + 14919: 11,-28 + 14920: 11,-29 + 14921: 11,-26 + 14922: 14,-29 + 14923: 13,-28 + 14924: 15,-28 + 14925: 15,-31 + 14926: 15,-33 + 14927: 13,-32 + 14928: 10,-32 + 14929: 8,-31 + 14930: 16,-36 + 14931: 17,-34 + 14932: 18,-43 + 14933: 18,-42 + 14934: 18,-41 + 14935: 18,-40 + 15085: 5,-35 + 15086: 6,-35 + 15087: 5,-34 + 15088: 7,-37 + 15089: 8,-37 + 15090: 6,-37 + 15103: 9,-29 + 15104: 7,-32 + 15105: 9,-30 + 15125: -2,-26 + 15126: -1,-25 + 15127: 0,-24 + 15128: -2,-24 + 15129: -3,-24 + 15130: -3,-25 + 15131: -3,-26 + 15132: -3,-27 + 15133: 3,-25 + 15134: 3,-26 + 15135: 3,-27 + 15136: 3,-27 + 15137: 3,-24 + 15138: 3,-28 + 15139: 1,-28 + 15140: -2,-29 + 15141: 1,-26 + 15142: 1,-25 + 15143: 0,-26 + 15144: -1,-26 + 15145: -1,-24 + 15146: 2,-24 + 15147: 2,-25 + 15148: 2,-28 + 15149: 2,-29 + 15153: -1,-28 + 15154: -1,-27 + 15155: 0,-27 + 15156: 0,-25 + 15157: -2,-27 + 15158: 1,-27 + 15159: 2,-26 + 15160: -4,-25 + 15161: 4,-25 + 15162: 2,-23 + 15163: 1,-23 + 15164: -1,-23 + 15165: -2,-23 + 15166: 9,-28 + 15167: 8,-28 + 15168: 6,-30 + 15169: 6,-31 + 15170: 9,-33 + 15171: 8,-33 + 15172: 7,-35 + 15173: 10,-27 + 15174: 10,-26 + 15175: 7,-37 + 15176: 3,-37 + 15177: 2,-38 + 15178: 2,-36 + 15179: -15,-34 + 15191: -16,-37 + 15218: -8,-37 + 15219: -8,-36 + 15220: -9,-36 + 15221: 14,-53 + 15222: 15,-53 + 15227: -3,-28 + 15235: -6,-26 + 15236: -5,-25 + 15237: -6,-25 + 15238: -7,-24 + 15239: -7,-23 + 15240: -8,-23 + 15241: -5,-23 + 15242: -5,-26 + 15243: -16,-34 + 15244: -17,-34 + 15245: -14,-32 + 15254: 6,-26 + 15255: 7,-25 + 15256: 5,-25 + 15257: 6,-23 + 15258: 6,-24 + 15259: 6,-25 + 15260: 7,-24 + 15261: 7,-23 + 15262: 7,-27 + 15263: 6,-27 + 15264: 8,-27 + 15265: 7,-28 + 15266: 5,-28 + 15267: 5,-27 + 15268: 5,-26 + 15269: 5,-23 + 15270: 5,-24 + 15271: 9,-27 + 15272: 8,-26 + 15273: 9,-26 + 15274: 8,-25 + 15275: 8,-24 + 15276: 8,-23 + 15277: 7,-26 - node: cleanable: True color: '#FFFFFF8F' @@ -5357,6 +5230,12 @@ entities: 7155: -83,4 7903: 65,-21 7905: 65,-21 + 15016: 15,-35 + 15037: 11,-41 + 15038: 10,-43 + 15039: 13,-40 + 15040: 12,-39 + 15041: 13,-43 - node: cleanable: True color: '#FFFFFFFF' @@ -5426,162 +5305,114 @@ entities: 8191: -59,-23 8217: 36,35 8249: 34,21 - 10163: 20,-28 - 10164: 20,-28 - 10177: 13,-30 - 10229: 12,-33 - 10230: 12,-33 - 10231: 4,-44 - 10232: 4,-44 - 10233: -5,-45 - 10234: -5,-45 - 10235: -15,-44 - 10236: -15,-44 - 10237: -15,-44 - 10238: -15,-43 - 10240: -18,-43 - 10241: 4,-42 - 10242: 4,-42 - 10243: 5,-41 - 10244: 5,-44 - 10245: 5,-45 - 10246: 4,-45 - 10247: -2,-45 - 10248: 0,-45 - 10249: -1,-44 - 10250: -1,-44 - 10251: -3,-44 - 10252: -3,-45 - 10253: -10,-44 - 10254: -3,-49 - 10255: -3,-48 - 10256: -3,-48 - 10257: -6,-48 - 10258: -7,-48 - 10259: -9,-48 - 10260: -9,-48 - 10261: -9,-49 - 10262: -9,-49 10909: 72,-13 10910: 72,-12 10924: 87,-10 10925: 88,-10 - 12813: 17,-15 - 12814: 17,-15 - 12815: 17,-15 - 12816: 18,-15 - 12817: 16,-15 - 12818: 16,-15 - 12819: 16,-15 - 12821: 17,-17 - 12822: 17,-18 - 12823: 17,-19 - 12824: 17,-19 - 12825: 17,-20 - 12826: 17,-19 - 12827: 17,-18 - 12828: 17,-18 - 12829: 17,-17 - 12831: 17,-20 - 12863: 21,-24 - 12864: 21,-24 - 12865: 21,-24 - 12866: 21,-23 - 12867: 21,-23 - 12868: 21,-23 - 12869: 21,-22 - 12870: 22,-22 - 12871: 22,-22 - 12872: 22,-23 - 12873: 22,-23 - 12874: 22,-24 - 12875: 22,-24 - 12876: 23,-24 - 12877: 23,-24 - 12878: 23,-23 - 12879: 23,-23 - 12880: 23,-22 - 12881: 23,-22 - 12925: 16,-31 - 12926: 17,-30 - 12927: 17,-30 - 12928: 16,-30 - 12929: 16,-31 - 12930: 15,-31 - 12931: 15,-31 - 12932: 14,-30 - 12933: 14,-30 - 12934: 15,-30 - 12935: 17,-31 - 12936: 19,-30 - 12937: 15,-29 - 12938: 16,-29 - 12939: 16,-28 - 12940: 17,-28 - 12941: 14,-29 - 12942: 15,-29 - 12943: 15,-29 - 12944: 12,-28 - 12945: 12,-28 - 12946: 11,-30 - 12947: 10,-30 - 12948: 10,-30 - 12949: 9,-30 - 12950: 8,-28 - 12951: 9,-26 - 12952: 9,-25 - 12953: 11,-25 - 12954: 11,-25 - 12955: 11,-24 - 12956: 11,-23 - 12957: 11,-23 - 12958: 9,-22 - 12959: 9,-22 - 12960: 9,-21 - 12961: 9,-21 - 12962: 12,-21 - 12963: 12,-21 - 12964: 11,-18 - 12965: 11,-17 - 12966: 11,-16 - 12967: 9,-15 - 12968: 9,-14 - 12969: 9,-14 - 12970: 11,-13 - 12971: 11,-14 - 12972: 10,-13 - 12973: 11,-13 - 12974: 10,-13 - 12975: 11,-14 - 12976: 12,-15 - 12977: 8,-15 - 12978: 9,-19 - 12979: 9,-19 - 12980: 9,-20 - 12982: 8,-21 - 12983: 8,-21 - 12984: 11,-26 - 12985: 11,-26 - 12986: 12,-26 - 12987: 12,-26 - 12988: 9,-17 - 12989: 9,-18 - 12990: 10,-18 - 12991: 10,-18 - 12992: 1,-16 - 12993: 2,-16 - 12994: -3,-19 - 12995: -3,-19 - 12996: -4,-18 - 12997: -4,-17 - 12998: -16,-19 - 12999: -16,-20 - 13000: -15,-19 - 13001: -15,-18 - 13002: -16,-18 - 13003: -14,-19 - 13188: 8,-37 - 13189: 7,-37 + 14572: 11,-47 + 14573: 12,-48 + 14574: 14,-47 + 14575: 12,-51 + 14576: 9,-52 + 14577: 8,-49 + 14578: 5,-49 + 14579: 4,-49 + 14580: 4,-50 + 14581: 4,-52 + 14582: 5,-53 + 14583: 3,-50 + 14584: 5,-47 + 14585: -4,-50 + 14586: -3,-49 + 14587: -4,-47 + 14588: -6,-47 + 14614: -4,-55 + 14615: 0,-53 + 14616: 3,-54 + 14617: 1,-62 + 14618: -1,-63 + 14619: -1,-62 + 14620: 0,-63 + 14621: 9,-57 + 14622: 8,-59 + 14623: 8,-55 + 14624: 9,-53 + 14625: 8,-49 + 14626: 11,-52 + 14627: 14,-52 + 14629: 15,-47 + 14630: 14,-46 + 14631: -5,-48 + 14632: -6,-49 + 14633: -9,-49 + 14634: -12,-49 + 14635: -15,-49 + 14748: -12,-41 + 14749: -11,-42 + 14750: -14,-41 + 14751: -14,-43 + 14752: -15,-44 + 14753: -8,-41 + 14754: -9,-42 + 14755: -9,-38 + 14756: -11,-38 + 14757: -12,-37 + 14759: -13,-36 + 14760: -16,-35 + 14780: -13,-29 + 14781: -11,-28 + 14782: -9,-27 + 14783: -8,-29 + 14803: -6,-39 + 14805: -4,-44 + 14868: 14,-41 + 14869: 15,-40 + 14870: 15,-42 + 14871: 15,-43 + 14872: 12,-42 + 14873: 14,-37 + 14894: 4,-37 + 14895: 7,-37 + 14896: 7,-38 + 14897: 6,-37 + 14898: 9,-35 + 14902: 9,-38 + 14903: 8,-43 + 14904: 9,-45 + 14905: 8,-45 + 14906: 6,-44 + 14915: 12,-28 + 14916: 13,-29 + 14917: 11,-27 + 14918: 12,-26 + 15101: 8,-32 + 15102: 9,-29 + 15112: -2,-27 + 15113: 0,-25 + 15114: 2,-27 + 15115: -2,-25 + 15150: -2,-28 + 15151: -1,-29 + 15180: -15,-35 + 15181: -15,-33 + 15182: -16,-33 + 15183: -16,-31 + 15184: -14,-33 + 15185: -18,-35 + 15186: -18,-34 + 15187: -16,-32 + 15188: -18,-33 + 15206: -8,-32 + 15207: -9,-31 + 15208: -10,-33 + 15209: -11,-31 + 15216: -11,-36 + 15217: -9,-37 + 15224: 15,-53 + 15225: 14,-50 + 15226: -3,-28 + 15289: 9,-28 + 15290: 7,-23 - node: cleanable: True zIndex: -1 @@ -5608,6 +5439,8 @@ entities: 4837: 72,-18 4838: 77,-17 6655: -56,3 + 15014: 9,-34 + 15015: 14,-34 - node: cleanable: True color: '#FFFFFFFF' @@ -5668,24 +5501,60 @@ entities: 8192: -62,-17 8193: -58,-19 8250: 38,22 - 10263: -8,-47 - 10264: -7,-47 - 10265: -8,-47 - 10266: -9,-47 - 12903: 18,-26 - 12904: 19,-26 - 12905: 17,-26 - 12906: 19,-28 - 12907: 19,-29 - 12908: 20,-26 - 12909: 20,-26 - 12910: 20,-27 - 12911: 20,-29 - 12912: 20,-29 - 12913: 19,-30 - 12914: 20,-30 - 12915: 19,-31 - 12916: 20,-31 + 14591: -9,-51 + 14592: -8,-52 + 14594: -8,-50 + 14595: -8,-47 + 14596: -11,-50 + 14597: -14,-50 + 14598: -17,-48 + 14599: -17,-46 + 14600: -16,-47 + 14601: -12,-46 + 14602: -11,-46 + 14603: -15,-50 + 14636: -17,-47 + 14637: -16,-52 + 14761: -15,-37 + 14762: -17,-35 + 14763: -12,-35 + 14764: -12,-33 + 14765: -11,-32 + 14766: -14,-31 + 14790: -6,-28 + 14792: -4,-33 + 14793: -4,-34 + 14794: -5,-34 + 14795: -6,-35 + 14875: 16,-37 + 14876: 17,-36 + 14878: 15,-32 + 14879: 13,-31 + 14880: 14,-31 + 14907: 5,-43 + 14908: 6,-43 + 14909: 3,-44 + 14910: 1,-43 + 14911: -1,-44 + 14912: 8,-36 + 14913: 12,-29 + 14914: 13,-27 + 15081: 5,-35 + 15082: 6,-34 + 15099: 7,-32 + 15100: 8,-32 + 15121: -1,-26 + 15122: -2,-24 + 15123: 1,-24 + 15124: 1,-28 + 15228: -6,-26 + 15229: -5,-25 + 15230: -7,-24 + 15231: -6,-24 + 15232: -7,-23 + 15278: 6,-25 + 15279: 7,-27 + 15280: 9,-27 - node: color: '#FFFFFFFF' id: DirtLight @@ -5717,6 +5586,9 @@ entities: 7163: -78,-19 7164: -66,-21 7165: -75,7 + 15043: 12,-41 + 15045: 13,-41 + 15046: 14,-42 - node: cleanable: True color: '#FFFFFFFF' @@ -5809,7 +5681,6 @@ entities: 8194: -59,-20 8195: -61,-18 8218: 36,33 - 10157: 20,-28 10903: 79,-2 10904: 72,-14 10905: 71,-13 @@ -5817,32 +5688,32 @@ entities: 10920: 77,-12 10922: 81,-10 10923: 76,-8 - 12882: 20,-23 - 12883: 19,-22 - 12884: 20,-23 - 12885: 19,-23 - 12886: 19,-24 - 12917: 20,-31 - 12918: 20,-31 - 12919: 20,-31 - 12920: 19,-31 - 12921: 19,-31 - 12922: 17,-31 - 12923: 17,-31 - 12924: 16,-31 - 13190: 19,-38 - 13191: 20,-37 - 13192: 20,-36 - 13193: 19,-45 - 13194: 18,-45 - 13195: 17,-47 - 13196: 19,-47 - 13197: 18,-47 - 13198: 20,-43 - 13199: 20,-44 - 13200: 9,-44 - 13201: 8,-44 - 13202: 8,-44 + 14784: -9,-29 + 14785: -11,-26 + 14786: -10,-28 + 14787: -7,-31 + 14788: -8,-31 + 14789: -6,-30 + 14808: -3,-45 + 14881: 12,-32 + 14882: 10,-31 + 14883: 7,-31 + 14884: 8,-33 + 14886: 8,-29 + 15076: 5,-35 + 15077: 6,-35 + 15078: 6,-34 + 15079: 4,-35 + 15080: 6,-38 + 15152: -1,-28 + 15210: -7,-32 + 15211: -8,-31 + 15212: -10,-30 + 15213: -8,-37 + 15214: -8,-36 + 15215: -9,-37 + 15287: 7,-25 + 15288: 5,-25 - node: cleanable: True zIndex: -1 @@ -5874,6 +5745,14 @@ entities: 6660: -62,3 7166: -73,6 7167: -97,1 + 15017: 15,-34 + 15018: 15,-36 + 15019: 8,-34 + 15021: 8,-35 + 15047: 10,-42 + 15048: 11,-40 + 15050: 14,-39 + 15051: 8,-42 - node: cleanable: True color: '#FFFFFFFF' @@ -5934,111 +5813,64 @@ entities: 7883: 43,28 8219: 37,33 8220: 38,34 - 10156: 19,-31 10907: 71,-14 10908: 71,-13 10918: 78,-12 10919: 76,-11 - 12832: 17,-16 - 12833: 17,-16 - 12834: 17,-16 - 12835: 17,-16 - 12853: 15,-26 - 12854: 15,-26 - 12855: 14,-26 - 12856: 15,-23 - 12857: 14,-23 - 12858: 14,-22 - 12859: 15,-22 - 12860: 14,-23 - 12861: 15,-24 - 12862: 15,-24 - 12887: 20,-23 - 12888: 20,-22 - 12889: 19,-22 - 12890: 19,-23 - 12891: 19,-23 - 12892: 19,-24 - 12893: 20,-24 - 12894: 17,-26 - 12895: 17,-26 - 12896: 17,-24 - 12897: 17,-23 - 12898: 17,-21 - 12899: 17,-22 - 12900: 17,-22 - 12901: 17,-24 - 12902: 17,-24 - 13004: -17,-25 - 13005: -17,-24 - 13006: -19,-23 - 13007: -19,-24 - 13008: -20,-24 - 13009: -19,-25 - 13010: -12,-24 - 13011: -12,-23 - 13012: -12,-25 - 13013: -12,-27 - 13014: -12,-28 - 13015: -11,-30 - 13016: -11,-30 - 13017: -11,-23 - 13018: -16,-24 - 13019: -16,-25 - 13020: -16,-23 - 13021: -18,-23 - 13022: -18,-24 - 13023: -19,-23 - 13024: -20,-22 - 13025: -20,-21 - - node: - color: '#FFFFFFFF' - id: FlowersBRTwo - decals: - 9743: -5.9589643,-19.07209 - 9746: -8.949599,-14.026374 + 14604: 0,-54 + 14605: 1,-54 + 14606: 3,-52 + 14607: 2,-56 + 14608: -1,-58 + 14609: -2,-57 + 14610: 3,-57 + 14611: 3,-59 + 14612: -3,-59 + 14613: -3,-56 + 14809: -9,-41 + 14810: -8,-39 + 14811: -5,-32 + 14812: -5,-29 + 14813: -1,-42 + 14887: 8,-30 + 14888: 9,-33 + 14889: 9,-31 + 14890: 5,-32 + 14891: 5,-34 + 14892: 4,-38 + 14893: 5,-37 + 15083: 6,-35 + 15084: 4,-35 + 15116: 0,-26 + 15117: 2,-25 + 15118: -1,-24 + 15119: -1,-27 + 15120: 1,-27 + 15189: -18,-36 + 15190: -16,-37 + 15233: -6,-24 + 15234: -6,-25 + 15281: 7,-26 + 15282: 6,-24 + 15283: 6,-26 + 15284: 7,-28 + 15285: 8,-28 + 15286: 7,-24 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 1977: 47,-73 - 9747: -9.074599,-13.073249 - 9749: -7.2216344,-19.164963 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 9744: -10.961599,-19.00959 - 9745: -9.980849,-14.010749 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: 7582: 27,5 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 9687: -0.8008158,-27.874275 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 9688: -0.8789408,-28.686775 - node: color: '#FFFFFFFF' id: Flowersy3 decals: 1976: 47,-74 - 9689: -0.09769082,-28.92115 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 9684: -0.8320658,-27.280525 - 9685: -0.44144082,-27.561775 - 9686: -0.16019082,-28.374275 - 9690: -0.0039408207,-27.17115 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale @@ -6192,11 +6024,67 @@ entities: id: Gib decals: 14331: -55.966583,-132.96053 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 14640: -3,-62 + 14641: 1,-63 + 14642: -1,-62 + 14643: 1,-59 + 14644: -3,-58 + 14645: 2,-53 + 14646: -4,-52 + 14647: -6,-48 + 14648: 5,-50 + 14649: 4,-48 + 14650: 8,-52 + 14651: 12,-52 + 14652: 9,-57 + 14936: 9,-41 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 14987: 13,-29 + 14988: 11,-26 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 14984: 15,-41 + 14985: 11,-29 + 14986: 13,-27 - node: color: '#C6FF91FF' id: Grassb1 decals: 13567: 28.882263,20.020931 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 14676: 9,-51 + 14677: 12,-49 + 14678: 11,-47 + 14679: 15,-46 + 14680: 14,-48 + 14972: -3,-45 + 14973: 1,-44 + 14974: 8,-44 + 14976: 4,-37 + 14978: 5,-31 + 14992: -6,-28 + 14993: -14,-31 + 14995: -16,-35 + 14996: -15,-41 + 14997: -15,-43 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 14989: 12,-28 + 14990: -6,-32 - node: color: '#C6FF91FF' id: Grassb4 @@ -6204,9 +6092,50 @@ entities: 13566: 30.038513,20.114681 - node: color: '#FFFFFFFF' - id: Grassc1 + id: Grassb4 decals: - 9678: 1.6461339,-23.185373 + 14943: 15,-39 + 14944: 15,-43 + 14945: 12,-42 + 14946: 9,-44 + 14947: 6,-45 + 14948: 5,-43 + 14949: 3,-44 + 14950: 1,-43 + 14951: -1,-44 + 14952: -1,-42 + 14956: -6,-39 + 14957: -5,-34 + 14959: -8,-39 + 14960: -9,-41 + 14961: -12,-39 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 14653: 3,-57 + 14654: 8,-59 + 14655: -8,-54 + 14656: -9,-60 + 14657: -12,-53 + 14658: -11,-52 + 14659: -16,-52 + 14660: -15,-49 + 14661: -14,-47 + 14662: -17,-47 + 14663: -9,-48 + 14664: -9,-51 + 14665: -4,-50 + 14666: -1,-50 + 14667: -1,-48 + 14963: -13,-36 + 14964: -16,-36 + 14965: -12,-33 + 14966: -9,-28 + 14967: -11,-27 + 14968: -14,-28 + 14970: -6,-31 + 14971: -8,-45 - node: color: '#C6FF91FF' id: Grassc2 @@ -6215,24 +6144,24 @@ entities: 13564: 29.929138,19.099056 - node: color: '#FFFFFFFF' - id: Grassc2 - decals: - 9679: 1.2242589,-23.763498 - 9680: 0.2086339,-22.997873 - - node: - color: '#FFFFFFFF' - id: Grassc4 - decals: - 9677: 0.5523839,-23.607248 + id: Grassd1 + decals: + 14638: 3,-62 + 14639: -3,-63 + 14668: 1,-50 + 14669: -1,-49 + 14670: 0,-49 + 14671: 1,-48 + 14672: 3,-49 + 14673: 6,-48 + 14674: 9,-47 + 14675: 8,-49 - node: color: '#FFFFFFFF' id: Grassd2 decals: 1974: 47,-73 7108: -85,2 - 9739: -3.974589,-19.97834 - 9740: -8.865214,-19.10334 - 9741: -8.052714,-18.025215 - node: color: '#FFFFFFFF' id: Grassd3 @@ -6241,16 +6170,11 @@ entities: 7104: -85,2 7105: -84,1 7106: -85,0 - 9668: 0,-23 - 9669: 0,-24 - 9734: -1.0214641,-19.97834 - node: color: '#FFFFFFFF' id: Grasse1 decals: 7581: 27,5 - 9670: 1,-23 - 9738: 0.16603589,-20.993965 - node: color: '#C6FF91FF' id: Grasse2 @@ -6261,8 +6185,6 @@ entities: id: Grasse2 decals: 7103: -85,1 - 9671: 2,-24 - 9737: -1.1777141,-20.993965 - node: color: '#C6FF91FF' id: Grasse3 @@ -6275,15 +6197,6 @@ entities: 1975: 47,-75 7102: -84,2 7107: -84,1 - 9666: 0,-23 - 9667: 1,-24 - 9672: 2,-23 - 9673: 0,-24 - 9674: 0.2555089,-23.466623 - 9675: 1.5055089,-23.544748 - 9676: 1.8492589,-22.950998 - 9735: -3.068339,-21.025215 - 9736: -2.271464,-20.962715 - node: color: '#9FED5896' id: GrayConcreteTrimBox @@ -6665,6 +6578,67 @@ entities: 1786: 46,-59 7190: 104,-72 7204: 94,-72 + - node: + color: '#8D1C9996' + id: HerringboneOverlay + decals: + 14377: -2,-58 + 14378: -2,-57 + 14379: -2,-56 + 14380: -2,-55 + 14382: -1,-54 + 14383: 0,-54 + 14384: 1,-54 + 14386: 2,-55 + 14387: 2,-56 + 14388: 2,-57 + 14389: 2,-58 + 14390: 1,-58 + 14391: 0,-58 + 14392: -1,-58 + - node: + color: '#D381C996' + id: HerringboneOverlay + decals: + 14347: 4,-54 + 14348: 5,-54 + 14349: 6,-54 + 14350: 6,-53 + 14351: 3,-60 + 14352: 2,-60 + 14353: 1,-60 + 14354: 0,-60 + 14355: -1,-60 + 14356: -3,-60 + 14357: -2,-60 + 14358: -4,-60 + 14360: -4,-58 + 14361: -4,-57 + 14362: -4,-56 + 14363: -4,-55 + 14364: -4,-54 + 14365: -5,-54 + 14366: -6,-54 + 14367: -6,-53 + 14368: -6,-52 + 14369: 6,-52 + 14424: -3,-52 + 14425: -2,-52 + 14426: -1,-52 + 14427: 0,-52 + 14428: 1,-52 + 14429: 2,-52 + 14430: 3,-52 + 14431: 4,-55 + 14432: 4,-56 + 14433: 4,-57 + 14434: 4,-58 + 14436: 4,-60 + 14437: -3,-22 + 14438: -2,-21 + 14440: 3,-22 + 14441: 2,-21 + 14442: 0,-19 - node: color: '#FFFFFFFF' id: LoadingArea @@ -6783,6 +6757,8 @@ entities: 3593: 21,-2 3594: 19,-1 9864: 0,-3 + 15583: 21,-38 + 15675: 0,-11 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNe @@ -6843,6 +6819,8 @@ entities: 3443: -76,-38 9839: 0,1 9843: 0,-5 + 15581: 21,-33 + 15584: 21,-41 - node: color: '#FFFFFFFF' id: MiniTileDarkEndS @@ -6851,6 +6829,8 @@ entities: 3445: -72,-40 9841: 0,-1 9842: 0,-7 + 15582: 21,-35 + 15585: 21,-43 - node: color: '#FFFFFFFF' id: MiniTileDarkEndW @@ -7428,6 +7408,7 @@ entities: 10322: -14,19 12052: 43,-29 12646: -30,-26 + 15576: 13,-35 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSw @@ -7776,6 +7757,8 @@ entities: 11626: 28,-31 11627: 29,-31 12645: -30,-25 + 15586: 21,-42 + 15587: 21,-34 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN @@ -8235,24 +8218,8 @@ entities: 10319: -14,19 11624: 30,-31 11625: 29,-31 - - node: - color: '#D4D4D496' - id: MiniTileInnerOverlayNE - decals: - 9348: 0.9333172,-14.159261 - 9349: 3.2458172,-14.003011 - 9350: 4.245817,-13.378011 - - node: - color: '#D4D4D496' - id: MiniTileInnerOverlayNW - decals: - 9351: 4.011442,-13.987386 - 9352: 2.5739422,-14.534261 - - node: - color: '#D4D4D496' - id: MiniTileInnerOverlaySW - decals: - 9354: 0.011442184,-13.549886 + 15588: 21,-34 + 15589: 21,-42 - node: color: '#52B4E996' id: MiniTileOverlay @@ -8339,6 +8306,8 @@ entities: 13966: 28,-5 13971: 24,-2 13974: 22,-1 + 15448: -20,-39 + 15534: 22,-31 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNe @@ -8360,6 +8329,8 @@ entities: 14043: 28,-54 14159: 110,-39 14181: 114,-39 + 15449: -22,-39 + 15533: 20,-31 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw @@ -8379,12 +8350,15 @@ entities: 14138: 96,-43 14155: 112,-43 14179: 130,-41 + 15441: -20,-46 + 15547: 22,-45 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: 1498: -29,-77 3430: -72,-45 + 15658: 1,-12 - node: zIndex: -1 color: '#FFFFFFFF' @@ -8396,12 +8370,15 @@ entities: 14135: 93,-43 14142: 100,-43 14163: 114,-41 + 15455: -22,-46 + 15520: 20,-45 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: 1497: -30,-77 3434: -76,-45 + 15656: -1,-12 - node: color: '#FFFFFFFF' id: MiniTileSteelEndE @@ -8437,6 +8414,7 @@ entities: 14185: 102,-41 14188: 89,-40 14190: 83,-40 + 15447: -20,-40 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNe @@ -8460,6 +8438,7 @@ entities: 14184: 100,-40 14186: 93,-40 14191: 85,-40 + 15524: 20,-40 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNw @@ -8472,6 +8451,8 @@ entities: decals: 13763: -43,-45 14189: 89,-42 + 15445: -20,-43 + 15630: 22,-34 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSe @@ -8487,6 +8468,7 @@ entities: 13772: -33,-45 14183: 100,-42 14187: 93,-42 + 15522: 20,-43 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSw @@ -8612,6 +8594,19 @@ entities: 14157: 112,-41 14158: 112,-40 14180: 130,-40 + 15442: -20,-45 + 15443: -20,-44 + 15541: 22,-40 + 15542: 22,-41 + 15543: 22,-42 + 15544: 22,-43 + 15545: 22,-43 + 15546: 22,-44 + 15625: 22,-35 + 15626: 22,-37 + 15627: 22,-36 + 15628: 22,-38 + 15629: 22,-39 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE @@ -8619,6 +8614,7 @@ entities: 1501: -29,-76 1504: -30,-76 3440: -72,-44 + 15663: 1,-9 - node: zIndex: -1 color: '#FFFFFFFF' @@ -8764,6 +8760,8 @@ entities: 14044: 29,-54 14045: 30,-54 14162: 109,-41 + 15446: -19,-40 + 15523: 19,-40 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN @@ -8930,6 +8928,8 @@ entities: 14176: 127,-41 14177: 128,-41 14178: 129,-41 + 15444: -19,-43 + 15521: 19,-43 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS @@ -8937,6 +8937,7 @@ entities: 3431: -73,-45 3432: -74,-45 3433: -75,-45 + 15657: 0,-12 - node: zIndex: -1 color: '#FFFFFFFF' @@ -9079,6 +9080,20 @@ entities: 14122: 81,-41 14160: 110,-40 14182: 114,-40 + 15452: -22,-42 + 15453: -22,-43 + 15454: -22,-45 + 15467: -22,-40 + 15468: -22,-41 + 15519: 20,-44 + 15525: 20,-39 + 15618: 20,-38 + 15619: 20,-37 + 15620: 20,-36 + 15621: 20,-35 + 15622: 20,-34 + 15623: 20,-33 + 15624: 20,-32 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW @@ -9086,6 +9101,7 @@ entities: 1502: -30,-76 1503: -29,-76 3441: -76,-44 + 15662: -1,-9 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe @@ -9149,6 +9165,8 @@ entities: decals: 4160: 17,-103 4178: 17,-87 + 15424: -20,-39 + 15504: 22,-31 - node: color: '#D381C996' id: MiniTileWhiteCornerNe @@ -9273,6 +9291,8 @@ entities: decals: 4198: -3,-90 5722: 28,-54 + 15418: -22,-39 + 15477: 20,-31 - node: color: '#D381C996' id: MiniTileWhiteCornerNw @@ -9395,6 +9415,13 @@ entities: 6135: -7,-73 12443: 112,-43 12457: 130,-41 + 15659: 1,-12 + - node: + zIndex: -1 + color: '#A4610696' + id: MiniTileWhiteCornerSe + decals: + 15456: -20,-46 - node: color: '#A4610696' id: MiniTileWhiteCornerSe @@ -9402,6 +9429,7 @@ entities: 4159: 17,-104 4170: 17,-95 5788: 12,-77 + 15492: 22,-45 - node: color: '#D381C996' id: MiniTileWhiteCornerSe @@ -9528,6 +9556,7 @@ entities: 7764: 11,-1 12451: 114,-41 14194: 81,-42 + 15661: -1,-12 - node: color: '#A4610696' id: MiniTileWhiteCornerSw @@ -9535,6 +9564,8 @@ entities: 4147: 5,-104 4200: -3,-92 4205: 2,-94 + 15431: -22,-46 + 15549: 20,-45 - node: color: '#D381C996' id: MiniTileWhiteCornerSw @@ -9694,6 +9725,7 @@ entities: decals: 4167: 15,-103 4211: 1,-87 + 15425: -20,-40 - node: color: '#A46106CC' id: MiniTileWhiteInnerNe @@ -9812,6 +9844,7 @@ entities: 4210: -1,-90 5303: 28,-32 5725: 31,-54 + 15515: 20,-40 - node: color: '#A46106CC' id: MiniTileWhiteInnerNw @@ -9953,6 +9986,8 @@ entities: 4168: 15,-95 5804: 12,-74 7730: 1,-77 + 15433: -20,-43 + 15643: 22,-34 - node: color: '#D381C996' id: MiniTileWhiteInnerSe @@ -10053,6 +10088,7 @@ entities: 4208: 5,-94 4209: 2,-92 7747: 31,-34 + 15516: 20,-43 - node: color: '#D381C996' id: MiniTileWhiteInnerSw @@ -10371,7 +10407,6 @@ entities: 9875: 1,-7 9876: 1,-8 9989: 1,-10 - 9990: 1,-11 11653: 45,-37 12444: 112,-42 12445: 112,-41 @@ -10382,6 +10417,7 @@ entities: 13900: 83,-38 13901: 83,-30 13902: 83,-25 + 15664: 1,-9 - node: zIndex: -1 color: '#A4610696' @@ -10409,6 +10445,18 @@ entities: 5787: 12,-75 5801: 1,-79 5802: 1,-80 + 15428: -20,-44 + 15429: -20,-45 + 15493: 22,-44 + 15494: 22,-43 + 15495: 22,-42 + 15496: 22,-41 + 15497: 22,-40 + 15631: 22,-39 + 15632: 22,-38 + 15633: 22,-36 + 15634: 22,-37 + 15635: 22,-35 - node: color: '#D381C996' id: MiniTileWhiteLineE @@ -10947,6 +10995,8 @@ entities: 6837: 1,-75 9894: 23,-32 11670: 26,-32 + 15426: -19,-40 + 15514: 19,-40 - node: color: '#D381C996' id: MiniTileWhiteLineN @@ -10976,11 +11026,6 @@ entities: 6708: -65,-69 6709: -64,-69 6710: -62,-69 - - node: - color: '#D4D4D496' - id: MiniTileWhiteLineN - decals: - 9353: 2.8083172,-14.534261 - node: zIndex: -1 color: '#DE3A3A96' @@ -11430,6 +11475,7 @@ entities: 12435: 106,-43 14192: 83,-42 14193: 82,-42 + 15660: 0,-12 - node: color: '#A4610696' id: MiniTileWhiteLineS @@ -11473,8 +11519,9 @@ entities: 9890: 25,-34 9891: 24,-34 9892: 23,-34 - 9918: 21,-34 11671: 26,-34 + 15427: -19,-43 + 15513: 19,-43 - node: zIndex: -1 color: '#D381C996' @@ -11978,9 +12025,9 @@ entities: 7694: -30,-12 7763: 11,1 9991: -1,-10 - 9992: -1,-11 12448: 110,-40 12450: 114,-40 + 15665: -1,-9 - node: color: '#A4610696' id: MiniTileWhiteLineW @@ -12018,6 +12065,25 @@ entities: 5727: 28,-56 11673: 31,-36 11674: 31,-38 + 15421: -22,-42 + 15422: -22,-43 + 15432: -22,-45 + 15485: 20,-39 + 15487: 20,-44 + 15636: 20,-32 + 15637: 20,-33 + 15638: 20,-34 + 15639: 20,-35 + 15640: 20,-36 + 15641: 20,-37 + 15642: 20,-38 + - node: + zIndex: 1 + color: '#A4610696' + id: MiniTileWhiteLineW + decals: + 15469: -22,-40 + 15470: -22,-41 - node: zIndex: -1 color: '#D381C996' @@ -12320,95 +12386,6 @@ entities: id: Newton decals: 14335: -57.271423,-131.24551 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimCornerNe - decals: - 9356: 18,-38 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimCornerNw - decals: - 9355: 9,-38 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimCornerSe - decals: - 9358: 18,-43 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimCornerSw - decals: - 9357: 9,-43 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimLineE - decals: - 9359: 8,-42 - 9360: 8,-41 - 9361: 8,-40 - 9362: 8,-39 - 9501: 18,-39 - 9502: 18,-40 - 9503: 18,-41 - 9504: 18,-42 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimLineN - decals: - 9377: 10,-44 - 9378: 11,-44 - 9379: 12,-44 - 9380: 13,-44 - 9381: 14,-44 - 9382: 15,-44 - 9383: 16,-44 - 9384: 17,-44 - 9486: 10,-38 - 9487: 12,-39 - 9488: 12,-39 - 9489: 10,-38 - 9490: 11,-38 - 9491: 12,-38 - 9492: 13,-38 - 9493: 14,-38 - 9494: 15,-38 - 9495: 16,-38 - 9496: 17,-38 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimLineS - decals: - 9367: 14,-37 - 9368: 17,-37 - 9369: 16,-37 - 9370: 16,-37 - 9371: 14,-37 - 9372: 15,-37 - 9373: 13,-37 - 9374: 12,-37 - 9375: 11,-37 - 9376: 10,-37 - 9505: 10,-43 - 9506: 11,-43 - 9507: 12,-43 - 9508: 13,-43 - 9509: 14,-43 - 9510: 15,-43 - 9511: 16,-43 - 9512: 17,-43 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimLineW - decals: - 9363: 19,-39 - 9364: 19,-40 - 9365: 19,-41 - 9366: 19,-42 - 9497: 9,-39 - 9498: 9,-40 - 9499: 9,-42 - 9500: 9,-41 - node: cleanable: True color: '#1861D5FF' @@ -12748,21 +12725,16 @@ entities: 1973: 50,-66 - node: color: '#FFFFFFFF' - id: Rock03 - decals: - 9695: -5.9101906,-22.988642 - 9731: 3.074894,-17.029198 - - node: - color: '#FFFFFFFF' - id: Rock04 + id: Rock06 decals: - 9733: -0.8705876,-16.03638 + 15001: 7,-44 + 15002: 5,-45 - node: color: '#FFFFFFFF' - id: Rock05 + id: Rock07 decals: - 9730: -1.9486489,-15.997948 - 9732: -0.9876058,-17.107323 + 14998: 8,-45 + 14999: 9,-43 - node: cleanable: True color: '#FFFFFFFF' @@ -12795,13 +12767,19 @@ entities: 8132: -31,-107 8133: -28,-110 8136: -13,-85 - 10135: -11,-63 - 10136: -13,-62 - 10137: -12,-63 - 10138: -15,-62 - 10139: -22,-60 - 10140: -23,-60 - 10141: -23,-59 + 15192: -15,-31 + 15193: -15,-32 + 15194: -17,-36 + 15195: -17,-37 + 15196: -10,-37 + 15197: -9,-36 + 15198: -11,-37 + 15199: -12,-36 + 15201: -13,-37 + 15202: -14,-34 + 15203: -10,-32 + 15204: -12,-31 + 15205: -9,-32 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -13045,35 +13023,38 @@ entities: id: WarnCornerGreyscaleSE decals: 4928: -43,-49 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSE + decals: + 14405: 2,-58 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSW + decals: + 14409: -2,-58 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 9264: -15,-51 - 9285: -21,-47 12306: 65,-16 13604: -35,-52 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 9282: -23,-47 12304: 64,-16 13601: -37,-52 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 9278: -14,-49 - 9283: -21,-49 12305: 65,-17 13602: -35,-54 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 9276: -16,-49 - 9284: -23,-49 12303: 64,-17 13579: 82,-50 13584: 84,-53 @@ -13152,10 +13133,6 @@ entities: 9247: 6,-7 9248: 6,-8 9249: 6,-9 - 9272: -15,-52 - 9273: -15,-53 - 9274: -15,-55 - 9275: -15,-54 13606: -35,-53 14202: 110,-22 14204: 110,-20 @@ -13234,6 +13211,7 @@ entities: 6123: -71,-45 6124: -71,-44 6125: -71,-43 + 15667: 1,-11 - node: color: '#A4610696' id: WarnLineGreyscaleE @@ -13243,6 +13221,10 @@ entities: 5848: 1,-82 5849: 1,-81 6232: 12,-76 + 15434: -19,-40 + 15435: -19,-41 + 15436: -19,-42 + 15437: -19,-43 - node: color: '#AE67168F' id: WarnLineGreyscaleE @@ -13331,7 +13313,9 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 9286: -21,-48 + 14402: 2,-55 + 14403: 2,-56 + 14404: 2,-57 - node: color: '#334E6DC8' id: WarnLineGreyscaleN @@ -13436,6 +13420,8 @@ entities: 6838: 0,-75 9897: 24,-32 9898: 25,-32 + 15438: -21,-39 + 15506: 21,-31 - node: color: '#AE67168F' id: WarnLineGreyscaleN @@ -13496,7 +13482,9 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 9289: -22,-47 + 14397: -1,-54 + 14398: 0,-54 + 14399: 1,-54 - node: color: '#1861D5FF' id: WarnLineGreyscaleS @@ -13595,6 +13583,8 @@ entities: 5844: -10,-77 5845: -9,-77 5847: -1,-83 + 15439: -21,-46 + 15507: 21,-45 - node: color: '#AE67168F' id: WarnLineGreyscaleS @@ -13656,7 +13646,9 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 9287: -22,-49 + 14406: 1,-58 + 14407: 0,-58 + 14408: -1,-58 - node: color: '#1861D5FF' id: WarnLineGreyscaleW @@ -13734,6 +13726,7 @@ entities: 6130: -77,-40 6131: -77,-38 6297: 61,-40 + 15666: -1,-11 - node: color: '#A4610696' id: WarnLineGreyscaleW @@ -13741,6 +13734,10 @@ entities: 4212: -1,-88 4213: -1,-87 11675: 31,-37 + 15509: 19,-40 + 15510: 19,-41 + 15511: 19,-42 + 15512: 19,-43 - node: color: '#D381C996' id: WarnLineGreyscaleW @@ -13807,7 +13804,9 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 9288: -23,-48 + 14393: -2,-57 + 14394: -2,-56 + 14395: -2,-55 - node: color: '#FFFFFFFF' id: WarnLineN @@ -13819,7 +13818,6 @@ entities: 2657: -37,-63 9260: -3,-7 9263: 3,-8 - 9277: -15,-49 10506: 66,15 10507: 65,15 10508: 64,15 @@ -13841,15 +13839,6 @@ entities: 2658: -36,-64 8221: 37,20 8947: -54,-58 - 9265: -12,-49 - 9266: -12,-50 - 9267: -12,-51 - 9268: -12,-52 - 9269: -12,-53 - 9270: -12,-54 - 9271: -12,-55 - 9279: -16,-48 - 9280: -16,-47 10397: 62,11 10398: 62,10 10399: 62,9 @@ -13859,6 +13848,14 @@ entities: 13580: 82,-49 13581: 82,-48 13600: -37,-53 + 14683: 16,-40 + 14684: 16,-41 + 14685: 16,-42 + 14686: 16,-43 + 14687: -15,-40 + 14688: -15,-41 + 14689: -15,-42 + 14690: -15,-43 - node: color: '#FFFFFFFF' id: WarnLineW @@ -13909,13 +13906,12 @@ entities: 3856: 28,-74 3870: 0,-94 4863: -52,-48 - 4913: -3,-72 4996: -38,-68 7461: 34,1 9232: 17,16 - 9485: 18,-38 12128: 41,-23 12137: 41,-26 + 15649: -3,-72 - node: color: '#2E211AFF' id: WoodTrimThinCornerNeWhite @@ -13966,14 +13962,13 @@ entities: 3855: 27,-74 3879: -4,-94 4870: -55,-48 - 4915: -5,-72 7457: 32,1 9231: 16,16 - 9470: 9,-38 10830: 58,0 12124: 37,-24 12127: 40,-23 12138: 39,-26 + 15648: -5,-72 - node: color: '#2E211AFF' id: WoodTrimThinCornerNwWhite @@ -14032,10 +14027,9 @@ entities: 3859: 28,-77 3873: 0,-97 4865: -52,-50 - 4918: -3,-73 4998: -38,-71 - 9479: 18,-43 12140: 41,-28 + 15650: -3,-74 - node: color: '#2E211AFF' id: WoodTrimThinCornerSeWhite @@ -14091,12 +14085,11 @@ entities: 3860: 27,-77 3876: -4,-97 4868: -55,-50 - 4916: -5,-73 7436: 24,0 7440: 26,-1 7465: 32,-1 - 9476: 9,-43 12139: 39,-28 + 15651: -5,-74 - node: color: '#2E211AFF' id: WoodTrimThinCornerSwWhite @@ -14139,8 +14132,6 @@ entities: 2169: 11,17 2440: -38,-8 6889: -35,-26 - 9423: 19,-36 - 9447: 15,-45 - node: color: '#612620FF' id: WoodTrimThinEndEWhite @@ -14157,8 +14148,6 @@ entities: id: WoodTrimThinEndN decals: 2125: -31,-1 - 9419: 7,-42 - 9421: 7,-38 - node: color: '#1A394AFF' id: WoodTrimThinEndNWhite @@ -14174,8 +14163,6 @@ entities: id: WoodTrimThinEndS decals: 2167: 10,15 - 9418: 7,-43 - 9420: 7,-39 - node: color: '#1A394AFF' id: WoodTrimThinEndSWhite @@ -14193,8 +14180,6 @@ entities: 2003: 53,-73 2442: -40,-8 6888: -38,-26 - 9422: 10,-36 - 9448: 7,-45 - node: color: '#612620FF' id: WoodTrimThinEndWWhite @@ -14366,16 +14351,13 @@ entities: 4997: -38,-70 7472: 34,0 9233: 17,15 - 9521: 18,-42 - 9522: 18,-41 - 9523: 18,-40 - 9524: 18,-39 12003: 50,-11 12004: 50,-10 12005: 50,-9 12129: 41,-24 12141: 41,-27 12159: 41,-25 + 15653: -3,-73 - node: color: '#2E211AFF' id: WoodTrimThinLineEWhite @@ -14472,7 +14454,6 @@ entities: 3881: -1,-94 4871: -54,-48 4872: -53,-48 - 4914: -4,-72 7387: 34,-11 7443: 26,4 7444: 27,4 @@ -14480,30 +14461,6 @@ entities: 9226: 14,13 9227: 15,13 9228: 13,13 - 9432: 18,-36 - 9433: 17,-36 - 9434: 16,-36 - 9435: 15,-36 - 9436: 14,-36 - 9437: 13,-36 - 9438: 12,-36 - 9439: 11,-36 - 9440: 8,-45 - 9441: 9,-45 - 9442: 10,-45 - 9443: 11,-45 - 9444: 12,-45 - 9445: 13,-45 - 9457: 14,-45 - 9525: 10,-38 - 9526: 11,-38 - 9527: 11,-38 - 9528: 12,-38 - 9529: 13,-38 - 9530: 14,-38 - 9531: 16,-38 - 9532: 15,-38 - 9533: 17,-38 10832: 59,0 10833: 60,0 11048: 52,12 @@ -14513,6 +14470,7 @@ entities: 12125: 38,-24 12126: 39,-24 12143: 40,-26 + 15655: -4,-72 - node: color: '#2E211AFF' id: WoodTrimThinLineNWhite @@ -14623,7 +14581,6 @@ entities: 3875: -3,-97 4866: -53,-50 4867: -54,-50 - 4917: -4,-73 4999: -39,-71 5000: -40,-71 5001: -41,-71 @@ -14632,29 +14589,6 @@ entities: 7437: 25,0 7438: 27,-1 7439: 28,-1 - 9424: 11,-36 - 9425: 12,-36 - 9426: 13,-36 - 9427: 14,-36 - 9428: 15,-36 - 9429: 16,-36 - 9430: 17,-36 - 9431: 18,-36 - 9449: 8,-45 - 9450: 9,-45 - 9451: 10,-45 - 9452: 11,-45 - 9453: 12,-45 - 9454: 13,-45 - 9456: 14,-45 - 9513: 10,-43 - 9514: 11,-43 - 9515: 12,-43 - 9516: 13,-43 - 9517: 14,-43 - 9518: 15,-43 - 9519: 16,-43 - 9520: 17,-43 10884: 58,-5 10885: 59,-5 11863: 46,14 @@ -14665,6 +14599,7 @@ entities: 12008: 53,-8 12093: 49,21 12115: 40,-28 + 15652: -4,-74 - node: angle: 0.5235987755982988 rad color: '#FFFFFFFF' @@ -14800,10 +14735,6 @@ entities: 7473: 32,0 9229: 16,14 9230: 16,15 - 9534: 9,-42 - 9535: 9,-41 - 9536: 9,-40 - 9537: 9,-39 10836: 58,-4 10837: 58,-3 10838: 58,-2 @@ -14818,6 +14749,7 @@ entities: 12011: 54,-11 12123: 37,-25 12142: 39,-27 + 15654: -5,-73 - node: color: '#2E211AFF' id: WoodTrimThinLineWWhite @@ -14940,87 +14872,47 @@ entities: 6982: -68.76111,-6.998651 - node: cleanable: True + color: '#1D1D21FF' + id: burnt1 + decals: + 15376: 10.978131,-56.923836 + 15377: 11.025006,-56.22071 + 15378: 11.150006,-55.03321 + 15379: 12.181256,-54.87696 + 15380: 12.978131,-55.017586 + 15381: 13.009381,-55.97071 + 15382: 13.009381,-56.892586 + 15383: 12.259381,-56.955086 + 15384: 11.868756,-57.09571 + 15385: 11.946881,-55.923836 + - node: color: '#FFFFFFFF' id: burnt1 decals: - 13149: -6,-52 - 13150: -6,-50 - 13151: -6,-50 - 13152: -6,-50 - 13153: -7,-50 - 13154: -8,-50 - 13155: -8,-48 - 13156: -8,-49 - 13157: -6,-48 - 13184: 13,-52 + 15036: 11,-35 - node: cleanable: True color: '#FFFFFFFF' - id: burnt2 - decals: - 13121: 9,-24 - 13122: 9,-23 - 13125: 11,-21 - 13126: 11,-21 - 13127: 9,-13 - 13128: 9,-13 - 13129: 9,-13 - 13158: -7,-48 - 13159: -9,-50 - 13160: -9,-48 - 13161: -10,-48 - 13162: -4,-47 - 13163: -3,-47 - 13164: -3,-49 - 13165: -3,-49 - 13166: 1,-44 - 13167: 1,-44 - 13174: 1,-44 - 13175: 1,-44 - 13176: 2,-44 - 13177: 2,-44 - 13183: 14,-51 + id: burnt1 + decals: + 15091: 7,-37 + 15093: 7.457,-37.009083 + 15094: 6.6265326,-37.030357 + 15096: 3,-37 + 15097: 2.5779002,-37.010994 + 15098: 3.493543,-37.010994 - node: cleanable: True color: '#FFFFFFFF' id: burnt3 decals: - 13130: 11,-14 - 13131: 11,-14 - 13132: 11,-13 - 13133: 10,-13 - 13134: 10,-13 - 13135: 9,-14 - 13136: 9,-14 - 13137: 9,-21 - 13138: -9,-55 - 13139: -9,-54 - 13140: -10,-54 - 13141: -10,-55 - 13142: -3,-54 - 13143: -4,-54 - 13144: -4,-55 - 13145: -3,-55 - 13146: -7,-53 - 13168: 2,-44 - 13169: 2,-44 - 13170: 3,-44 - 13171: 2,-45 - 13172: 1,-45 - 13178: 2,-45 - 13179: 1,-45 - 13180: 3,-44 - 13181: 14,-52 - 13185: 13,-51 - 13186: 13,-51 - 13187: 14,-52 + 15092: 7,-37 - node: cleanable: True color: '#FFFFFFFF' id: burnt4 decals: - 13148: -6,-53 - 13173: 0,-44 + 15095: 3,-37 - node: color: '#0096FFFF' id: c @@ -15096,7 +14988,6 @@ entities: color: '#FFFFFFFF' id: grasssnow02 decals: - 9727: -6.8250265,-27.860851 13250: 56.10763,-36.919792 - node: zIndex: 1 @@ -15172,7 +15063,6 @@ entities: color: '#FFFFFFFF' id: grasssnow08 decals: - 9726: -8.1375265,-26.032726 13312: 31.003109,-13.982994 - node: cleanable: True @@ -15223,7 +15113,6 @@ entities: color: '#FFFFFFFF' id: grasssnow11 decals: - 9728: -8.0281515,-27.032726 13314: 30.940609,-13.889244 13343: -49.59663,17.7261 13344: -48.56538,17.710476 @@ -15260,8 +15149,6 @@ entities: color: '#FFFFFFFF' id: grasssnowa1 decals: - 9697: -7.1601906,-26.035517 - 9702: -8.981459,-25.941767 13269: 59.03018,-41.826042 13333: -25.863277,-68.82019 - node: @@ -15282,16 +15169,10 @@ entities: 13316: 25.98517,-68.927986 13321: 26.907045,-68.75611 13359: 35.888832,3.9046407 - - node: - color: '#9C2020FF' - id: grasssnowa3 - decals: - 9837: 14.115234,-61.40716 - node: color: '#FFFFFFFF' id: grasssnowa3 decals: - 9700: -7.950208,-27.879267 13243: 52.164677,-40.076042 13256: 57.748257,-36.247917 13288: -74.01132,-37.345276 @@ -15317,16 +15198,10 @@ entities: id: grasssnowb2 decals: 13307: -4.0479684,5.052229 - - node: - color: '#9C2020FF' - id: grasssnowb3 - decals: - 9836: 14.912109,-61.90716 - node: color: '#FFFFFFFF' id: grasssnowb3 decals: - 9701: -8.918959,-26.863642 13324: 26.932432,-68.80668 - node: zIndex: 1 @@ -15334,11 +15209,6 @@ entities: id: grasssnowb3 decals: 13481: 31.962688,13.012871 - - node: - color: '#9C2020FF' - id: grasssnowc1 - decals: - 9835: 13.951408,-61.985287 - node: color: '#FFFFFFFF' id: grasssnowc1 @@ -15365,7 +15235,6 @@ entities: color: '#FFFFFFFF' id: grasssnowc3 decals: - 9699: -8.872084,-27.863642 13255: 58.95138,-37.029167 13259: 57.810757,-42.982292 13262: 51.05445,-36.107292 @@ -15454,12 +15323,6 @@ entities: id: rune6 decals: 8107: -87,-27 - - node: - cleanable: True - color: '#FFFFFFFF' - id: safe - decals: - 12384: 1.9940939,-52.00569 - node: cleanable: True color: '#D58C18FF' @@ -15484,6 +15347,114 @@ entities: id: splatter decals: 12166: 50.250656,20.584 + - node: + cleanable: True + color: '#1D1D21FF' + id: splatter + decals: + 15291: 11.707295,-56.37696 + 15292: 11.644795,-55.736336 + 15293: 12.31667,-55.75196 + 15294: 12.37917,-56.173836 + 15295: 12.12917,-56.361336 + 15296: 11.644795,-56.12696 + 15297: 12.00417,-55.72071 + 15298: 13.644795,-57.423836 + 15299: 13.301045,-57.517586 + 15300: 12.426045,-57.62696 + 15301: 12.894795,-57.642586 + 15302: 13.551045,-57.43946 + 15303: 13.551045,-57.267586 + 15304: 13.72292,-57.048836 + 15305: 13.207295,-57.767586 + 15306: 12.91042,-57.68946 + 15307: 12.94167,-57.705086 + 15308: 13.00417,-57.705086 + 15309: 13.176045,-57.68946 + 15310: 13.519795,-57.611336 + 15311: 13.47292,-57.50196 + 15312: 13.426045,-57.50196 + 15313: 13.50417,-57.43946 + 15314: 13.613545,-57.34571 + 15315: 13.66042,-57.173836 + 15316: 13.66042,-57.15821 + 15317: 13.66042,-57.142586 + 15318: 13.306256,-54.28321 + 15319: 13.571881,-54.361336 + 15320: 13.681256,-54.40821 + 15321: 13.696881,-54.580086 + 15322: 13.571881,-54.56446 + 15323: 13.275006,-54.40821 + 15324: 13.228131,-54.392586 + 15325: 13.009381,-54.40821 + 15326: 13.259381,-54.50196 + 15327: 13.415631,-54.548836 + 15328: 13.478131,-54.59571 + 15329: 13.509381,-54.642586 + 15330: 13.571881,-54.62696 + 15331: 10.462506,-54.31446 + 15332: 10.634381,-54.34571 + 15333: 10.790631,-54.34571 + 15334: 10.462506,-54.40821 + 15335: 10.353131,-54.455086 + 15336: 10.525006,-54.486336 + 15337: 10.931256,-54.37696 + 15338: 11.009381,-54.37696 + 15339: 10.618756,-54.37696 + 15340: 10.431256,-54.392586 + 15341: 10.634381,-54.31446 + 15342: 10.493756,-54.392586 + 15343: 10.665631,-54.40821 + 15344: 10.806256,-54.40821 + 15345: 10.759381,-54.392586 + 15346: 10.696881,-54.37696 + 15347: 10.712506,-54.37696 + 15348: 10.806256,-54.31446 + 15349: 10.415631,-54.43946 + 15350: 10.384381,-54.47071 + 15351: 10.384381,-54.53321 + 15352: 10.384381,-54.611336 + 15353: 10.368756,-54.68946 + 15354: 10.353131,-54.705086 + 15355: 10.353131,-54.705086 + 15356: 10.556256,-57.611336 + 15357: 10.556256,-57.611336 + 15358: 10.415631,-57.642586 + 15359: 10.618756,-57.75196 + 15360: 10.665631,-57.75196 + 15361: 10.728131,-57.705086 + 15362: 10.790631,-57.68946 + 15363: 10.821881,-57.68946 + 15364: 10.681256,-57.56446 + 15365: 10.478131,-57.50196 + 15366: 10.665631,-57.642586 + 15367: 10.868756,-57.72071 + 15368: 10.946881,-57.81446 + 15369: 11.009381,-57.87696 + 15370: 11.009381,-57.87696 + 15371: 10.962506,-57.84571 + 15372: 11.040631,-57.78321 + 15373: 11.009381,-57.72071 + 15374: 10.962506,-57.65821 + 15375: 10.868756,-57.59571 + 15386: 11.321881,-57.75196 + 15387: 11.259381,-57.673836 + 15388: 11.228131,-57.65821 + 15389: 11.228131,-57.65821 + 15390: 11.275006,-57.68946 + 15391: 11.306256,-57.68946 + 15392: 11.275006,-54.31446 + 15393: 11.103131,-54.330086 + 15394: 13.071881,-54.34571 + 15395: 13.368756,-54.40821 + 15396: 13.431256,-54.486336 + 15397: 13.509381,-54.59571 + 15398: 13.540631,-54.62696 + 15399: 13.603131,-54.65821 + 15400: 13.165631,-57.50196 + 15401: 13.103131,-57.50196 + 15402: 13.056256,-57.517586 + 15403: 12.962506,-57.53321 - node: cleanable: True color: '#3D8C40FF' @@ -15621,15 +15592,13 @@ entities: 4,3: 0: 64307 0,-4: - 0: 35983 - 0,-5: - 0: 65535 + 0: 247 -1,-4: - 0: 16191 + 0: 248 0,-3: - 0: 2993 + 0: 13299 -1,-3: - 0: 2192 + 0: 35064 1: 8192 0,-2: 0: 47935 @@ -15640,39 +15609,32 @@ entities: 0: 59528 1: 48 1,-4: - 0: 30566 + 0: 3888 1,-3: - 1: 240 - 0: 57344 + 0: 57360 + 1: 238 1,-2: 0: 4334 - 1,-5: - 0: 26471 2,-4: - 0: 60159 - 2: 1024 + 0: 58112 2,-3: - 1: 35056 + 1: 35071 0: 12288 2,-2: 0: 51 1: 2184 - 2,-5: - 0: 65535 3,-4: - 0: 36061 + 0: 4096 3,-3: - 1: 65520 + 1: 65535 3,-2: - 1: 62335 - 3,-5: - 0: 40413 + 1: 61680 4,-4: - 0: 65535 + 0: 28672 4,-3: - 1: 13296 + 1: 13311 4,-2: - 1: 24355 + 1: 24370 4,-1: 0: 64512 1: 7 @@ -15680,7 +15642,7 @@ entities: 0: 56575 -4,-1: 0: 61440 - 1: 237 + 1: 239 -5,0: 0: 55551 -4,1: @@ -15688,8 +15650,7 @@ entities: -5,1: 0: 56797 -4,2: - 0: 1393 - 3: 512 + 0: 1905 -5,2: 0: 7489 -4,3: @@ -15708,7 +15669,7 @@ entities: 0: 65528 -3,-1: 0: 45056 - 1: 213 + 1: 215 -3,4: 0: 65262 -2,0: @@ -15727,46 +15688,36 @@ entities: -1,4: 0: 47295 -4,-4: - 0: 65535 - -4,-5: - 0: 65535 + 0: 65297 -5,-4: - 0: 52428 + 0: 8 1: 4369 -4,-3: - 0: 15 - 1: 65280 + 1: 65535 -5,-3: - 0: 8 - 1: 62769 + 1: 62271 -4,-2: - 1: 19583 + 1: 62451 -5,-2: - 1: 20991 + 1: 57343 -5,-1: 1: 12 0: 63248 -3,-4: - 0: 65535 + 0: 16192 -3,-3: - 0: 1 - 1: 21952 + 1: 30719 -3,-2: - 1: 21845 - -3,-5: - 0: 65531 + 1: 29814 -2,-4: - 0: 65535 + 0: 3984 -2,-3: - 1: 240 - 0: 28672 - 4: 32768 + 1: 255 + 0: 61440 -2,-2: 0: 65535 -2,-5: - 0: 65535 - -1,-5: - 0: 65535 + 0: 19456 -5,4: 0: 65522 -5,5: @@ -15839,20 +15790,18 @@ entities: 0: 4095 4,6: 1: 12096 - 4,-5: - 0: 65535 5,-4: 0: 273 1: 17604 5,-3: - 1: 41718 + 1: 41719 5,-2: 1: 4974 0: 32768 5,-1: 0: 32764 5,-5: - 0: 4369 + 0: 4147 1: 19456 5,0: 0: 56785 @@ -15882,8 +15831,7 @@ entities: 7,0: 0: 65535 8,-4: - 0: 65315 - 3: 4 + 0: 65319 8,-3: 0: 65535 8,-2: @@ -15894,19 +15842,19 @@ entities: 0: 56733 5,2: 0: 12767 - 5: 32768 + 2: 32768 5,3: 0: 8743 - 5: 2184 + 2: 2184 5,4: 0: 61006 6,1: 0: 56783 6,2: 0: 35037 - 5: 12288 + 2: 12288 6,3: - 5: 819 + 2: 819 0: 2248 6,4: 0: 26343 @@ -16041,8 +15989,7 @@ entities: 8,-5: 0: 30475 9,-4: - 3: 1 - 0: 63270 + 0: 63271 9,-3: 0: 47927 9,-2: @@ -16074,37 +16021,39 @@ entities: 12,-1: 0: 52639 4,-8: - 0: 64432 + 0: 16401 + 4,-9: + 0: 13107 3,-8: - 0: 56777 + 0: 61695 4,-7: - 0: 28315 + 0: 35046 3,-7: - 0: 7437 + 0: 895 4,-6: - 0: 11002 - 3,-6: - 0: 7645 + 0: 1024 + 4,-5: + 0: 8 5,-8: - 0: 4376 - 1: 52224 + 0: 8827 + 1: 32768 5,-7: - 0: 273 - 1: 3276 - 5,-6: - 0: 4095 + 0: 4354 + 1: 3752 5,-9: - 0: 47629 + 0: 39213 + 5,-6: + 0: 26210 6,-8: 0: 60943 1: 4352 6,-7: - 1: 16689 + 1: 20785 0: 14 6,-9: 0: 65290 6,-6: - 1: 1604 + 1: 5973 7,-8: 0: 65407 7,-7: @@ -16476,7 +16425,7 @@ entities: 0: 35007 1: 12288 22,-13: - 0: 30562 + 0: 30560 23,-12: 0: 65520 23,-11: @@ -16514,8 +16463,7 @@ entities: 17,-10: 0: 65535 17,-13: - 0: 65392 - 6: 128 + 0: 65520 18,-12: 0: 32738 18,-11: @@ -16595,34 +16543,29 @@ entities: 11,-13: 0: 62379 4,-12: - 0: 65520 - 4,-13: - 0: 65535 + 0: 819 3,-12: - 0: 61671 + 0: 52735 4,-11: - 0: 47038 + 0: 43682 3,-11: - 0: 49151 + 0: 65535 4,-10: - 1: 1 - 0: 65534 + 0: 12330 3,-10: - 1: 40 - 0: 62359 - 4,-9: - 0: 15 + 0: 61695 3,-9: - 0: 47887 - 1: 1024 + 0: 65534 5,-11: - 0: 4369 - 1: 36040 + 0: 65530 5,-10: - 0: 4369 - 1: 34952 + 0: 51867 5,-12: - 1: 34944 + 0: 41506 + 1: 136 + 5,-13: + 1: 57890 + 0: 272 6,-12: 1: 255 0: 57344 @@ -16779,9 +16722,7 @@ entities: 7,-20: 0: 63743 8,-19: - 0: 59407 - 7: 512 - 8: 1024 + 0: 60943 7,-19: 0: 39867 8,-18: @@ -16926,7 +16867,7 @@ entities: 0: 15 1: 768 4,-17: - 1: 36616 + 1: 3848 3,-17: 1: 3840 4,-21: @@ -16938,11 +16879,11 @@ entities: 5,-18: 0: 3839 5,-17: - 1: 18221 + 1: 26413 5,-21: 0: 21831 5,-16: - 1: 58436 + 1: 58982 6,-20: 0: 61695 6,-19: @@ -16961,21 +16902,25 @@ entities: 7,-21: 0: 10096 4,-16: - 0: 65520 + 0: 9008 3,-16: - 0: 65520 + 0: 206 4,-15: - 0: 65535 - 3,-15: - 0: 65535 + 0: 512 4,-14: - 0: 28671 + 0: 36864 + 4,-13: + 0: 2053 3,-14: - 0: 4095 + 0: 53299 + 3,-13: + 0: 7679 5,-15: - 0: 4352 + 0: 256 + 1: 57890 5,-14: - 0: 1 + 0: 256 + 1: 57890 6,-15: 1: 21781 6,-14: @@ -16994,45 +16939,45 @@ entities: 0: 30471 22,-19: 1: 9143 - 5: 32768 + 2: 32768 22,-17: 1: 45106 0: 768 - 5: 136 + 2: 136 22,-20: 1: 30583 - 5: 8 + 2: 8 22,-21: 1: 30448 22,-16: 1: 6635 22,-18: 1: 8738 - 5: 34952 + 2: 34952 23,-20: - 5: 223 + 2: 223 1: 12288 23,-19: 1: 115 - 5: 61440 + 2: 61440 23,-18: - 5: 65535 + 2: 65535 23,-17: - 5: 255 + 2: 255 1: 8192 23,-21: - 5: 53384 + 2: 53384 1: 51 23,-16: 1: 25383 24,-20: - 5: 61695 + 2: 61695 24,-19: - 5: 57599 + 2: 57599 24,-18: - 5: 61167 + 2: 61167 24,-17: - 5: 64239 + 2: 64239 21,-15: 0: 1911 21,-14: @@ -17044,9 +16989,9 @@ entities: 23,-15: 1: 6284 23,-14: - 0: 61164 + 0: 61420 24,-16: - 5: 3839 + 2: 3839 24,-15: 1: 2816 0: 1102 @@ -17101,28 +17046,28 @@ entities: 16,-22: 1: 30169 8,-24: - 9: 4353 + 3: 4353 1: 17476 8,-25: - 9: 4096 + 3: 4096 1: 17476 - 10: 17 + 4: 17 7,-24: - 9: 19468 - 11: 32768 + 3: 19468 + 5: 32768 1: 4369 8,-23: - 9: 272 + 3: 272 1: 17476 7,-23: - 9: 3264 + 3: 3264 1: 4369 8,-22: - 9: 17 + 3: 17 0: 4096 1: 17476 7,-22: - 9: 204 + 3: 204 0: 57344 1: 4369 9,-24: @@ -17172,8 +17117,8 @@ entities: 1: 34952 7,-25: 1: 4369 - 9: 49152 - 10: 204 + 3: 49152 + 4: 204 0,-24: 0: 52509 0,-25: @@ -17228,36 +17173,32 @@ entities: -1,-19: 0: 46079 0,-18: - 0: 827 + 0: 13115 1: 2048 -1,-18: - 0: 10379 - 1: 768 + 0: 65419 0,-17: - 0: 13059 + 0: 16337 + 1: 8 -1,-17: - 0: 63496 - 1: 1 + 0: 35952 0,-16: - 0: 65523 + 0: 49139 1,-19: 0: 48127 1,-18: 0: 11 - 1: 7936 + 1: 12032 1,-17: 1: 15 - 1,-16: - 0: 65532 + 0: 768 2,-19: 0: 56575 2,-18: 0: 13 1: 35584 2,-17: - 1: 34959 - 2,-16: - 0: 65521 + 1: 2191 17,-23: 1: 12573 0: 32962 @@ -17327,6 +17268,8 @@ entities: 1: 29895 -5,-17: 1: 61455 + -4,-16: + 0: 2055 -3,-20: 0: 64989 -3,-19: @@ -17336,25 +17279,27 @@ entities: 1: 2816 -3,-17: 1: 248 - 0: 57344 + 0: 16384 -3,-21: 0: 56477 -3,-16: - 0: 35006 + 0: 3854 -2,-20: 0: 61627 -2,-19: - 0: 45567 + 0: 47615 -2,-18: - 0: 11 - 1: 36608 + 0: 34827 + 1: 8960 -2,-17: - 1: 15 - 0: 7680 + 1: 3 + 0: 51328 -2,-21: 0: 48011 + -2,-16: + 0: 1861 -1,-16: - 0: 65519 + 0: 44776 -4,-24: 0: 57309 -4,-25: @@ -17535,7 +17480,7 @@ entities: 0: 36590 -9,-19: 0: 34952 - 5: 13104 + 2: 13104 -8,-18: 0: 56797 -9,-18: @@ -17563,8 +17508,9 @@ entities: -6,-17: 1: 63623 -6,-16: - 1: 17 - 0: 60608 + 1: 48059 + -5,-16: + 0: 17544 -12,-24: 0: 58615 -12,-25: @@ -17667,7 +17613,7 @@ entities: 0: 15291 -10,-19: 0: 14128 - 5: 34944 + 2: 34944 -10,-18: 0: 63344 -10,-17: @@ -17701,37 +17647,32 @@ entities: -7,-13: 1: 52471 -7,-12: - 1: 12 - 0: 28736 + 1: 204 + 0: 28672 + -6,-15: + 1: 48123 -6,-14: - 1: 8753 - 0: 34944 + 1: 43771 -6,-13: - 1: 50 - 0: 59528 - -6,-15: - 0: 174 - 1: 4096 + 1: 16378 + 0: 32768 -6,-12: - 0: 7406 - -5,-16: - 0: 65520 + 1: 19 + 0: 56456 -5,-15: - 0: 61183 + 0: 33043 -5,-14: - 0: 65520 + 0: 13073 -5,-13: - 0: 65535 + 1: 9008 + 0: 2048 -5,-12: - 0: 4095 - -4,-16: - 0: 65040 - -4,-15: - 0: 65527 + 1: 2 + 0: 6536 -4,-14: - 0: 65520 + 0: 61963 -4,-13: - 0: 65535 + 0: 26487 -13,-16: 0: 48049 -12,-15: @@ -17871,7 +17812,7 @@ entities: 0: 13360 -15,-24: 1: 4369 - 0: 51336 + 0: 49288 -15,-23: 1: 4368 0: 3276 @@ -18141,7 +18082,8 @@ entities: -10,-5: 0: 3854 -10,-4: - 0: 45295 + 0: 37103 + 6: 8192 -9,-7: 0: 35833 -9,-6: @@ -18149,7 +18091,8 @@ entities: -9,-5: 0: 61323 -9,-4: - 0: 47342 + 7: 4096 + 0: 43246 -8,-8: 0: 61135 -8,-7: @@ -18461,36 +18404,37 @@ entities: 0: 4369 1: 33860 -6,-8: - 1: 30311 + 1: 65263 -6,-7: - 1: 14198 + 1: 16382 -6,-5: 1: 65331 0: 8 -6,-9: - 1: 30515 + 1: 65459 + 0: 8 -6,-6: 1: 13107 - 0: 34952 + 0: 34944 -6,-4: 1: 64716 - -5,-8: - 0: 65294 - -5,-7: - 0: 65295 -5,-6: - 0: 8191 + 0: 23 -5,-5: - 0: 52429 + 0: 52299 1: 4352 + -5,-7: + 0: 64704 + -5,-8: + 0: 64 -5,-9: - 0: 65407 + 0: 52428 -4,-8: - 0: 63235 + 0: 57975 -4,-7: - 0: 63367 - -4,-6: - 0: 22519 + 0: 8590 + -4,-5: + 0: 256 -8,-3: 0: 36590 -8,-1: @@ -18555,153 +18499,156 @@ entities: 0: 7 1: 44792 -6,-11: - 0: 3 - 1: 8192 + 0: 56450 -6,-10: - 0: 34819 - 1: 13104 + 0: 35021 + 1: 12560 -5,-11: - 0: 61686 - 1: 8 + 0: 48057 -5,-10: - 0: 40959 + 0: 49307 -4,-12: - 0: 57553 - -4,-11: - 1: 17 - 0: 13422 + 0: 18047 -4,-10: - 0: 30583 + 0: 45230 -4,-9: - 0: 30548 - -3,-15: - 0: 65512 - -3,-14: - 0: 4368 - 12: 3264 - -3,-13: - 0: 56593 - -3,-12: - 0: 61660 - -2,-16: - 0: 65392 - -2,-15: - 0: 61751 - -2,-13: - 0: 63302 - -2,-14: - 0: 26208 - -2,-12: - 0: 61687 - -1,-15: - 0: 65278 - -1,-14: - 10: 816 - 0: 2184 - -1,-13: - 0: 30583 - -1,-12: - 0: 45687 - 0,-15: + 0: 30527 + 0,-8: + 0: 30289 + 0,-9: + 0: 6007 + -1,-8: + 0: 50641 + 0,-7: 0: 65535 - 0,-14: - 0: 57343 - 0,-13: - 0: 53725 + -1,-7: + 0: 65518 + 0,-6: + 0: 65391 + -1,-6: + 0: 65231 + 0,-5: + 0: 1023 + -1,-5: + 0: 2287 + 1,-8: + 0: 3067 + 1,-7: + 0: 65518 + 1,-6: + 0: 4335 + 1,-5: + 0: 1 + 2,-8: + 0: 37887 + 2,-7: + 0: 7163 + 2,-6: + 0: 4177 + 2,-9: + 0: 40951 + 3,-5: + 0: 115 0,-12: - 0: 61781 + 0: 41743 + 0,-13: + 0: 64287 + -1,-12: + 0: 47135 0,-11: - 0: 30575 + 0: 25263 -1,-11: - 0: 30479 + 0: 61183 0,-10: - 0: 28799 - 0,-9: - 0: 20607 - 0,-8: - 0: 65396 + 0: 63234 + -1,-10: + 0: 56607 + -1,-9: + 0: 5597 1,-12: - 0: 45183 + 0: 57471 1,-11: - 0: 56251 + 0: 28783 1,-10: - 0: 39052 + 0: 63239 1,-9: - 0: 32923 + 0: 2032 1,-13: - 0: 28774 - 1,-8: - 0: 26212 + 0: 63287 2,-12: - 0: 61695 + 0: 14523 2,-11: - 0: 65021 + 0: 65535 2,-10: - 0: 48119 - 1: 8 - 2,-9: - 0: 63551 + 0: 29919 2,-13: - 0: 65526 - 2,-8: - 0: 65283 - 1: 12 - 3,-13: - 0: 24678 + 0: 48127 + -4,-6: + 0: 2 + -3,-8: + 0: 65279 + -3,-7: + 0: 61439 + -3,-9: + 0: 61503 + -3,-6: + 0: 17472 + -2,-8: + 0: 56575 + -2,-7: + 0: 52573 + -2,-6: + 0: 16638 + -2,-9: + 0: 64735 + -4,-11: + 0: 61158 + -3,-12: + 0: 33791 -3,-11: - 0: 65291 + 0: 65433 -3,-10: - 0: 29439 - -3,-9: - 0: 63271 + 0: 63675 + -3,-13: + 0: 65467 + -2,-12: + 0: 61663 -2,-11: - 0: 47887 + 0: 62239 -2,-10: - 0: 64699 - -2,-9: - 0: 62719 - -1,-10: - 0: 29303 - -1,-9: - 0: 20599 - -2,-8: - 0: 52696 - -1,-8: - 0: 65524 - 1,-15: + 0: 64767 + -2,-13: + 0: 64925 + -1,-13: + 0: 64287 + 0,-15: + 0: 65535 + -1,-15: + 0: 65519 + 0,-14: + 0: 65534 + -1,-14: 0: 65535 + 1,-15: + 0: 20741 1,-14: - 0: 28671 + 0: 30485 2,-15: - 0: 65535 + 0: 45875 2,-14: - 0: 4095 - 0,-7: - 0: 65535 - -1,-7: - 0: 65535 - 0,-6: - 0: 61695 - -1,-6: - 0: 57599 - 1,-7: - 0: 30566 - 1,-6: - 0: 25702 - 2,-7: - 0: 65295 - 2,-6: + 0: 45247 + 3,-15: + 0: 12288 + -4,-15: + 0: 8768 + -3,-15: 0: 65535 - -3,-8: - 0: 16368 - -3,-7: - 0: 15291 - -3,-6: - 0: 3003 - -2,-7: - 0: 53247 - -2,-6: - 0: 4095 + -3,-14: + 0: 49151 + -2,-15: + 0: 20757 + -2,-14: + 0: 56597 12,-28: 1: 64175 12,-29: @@ -18745,10 +18692,10 @@ entities: 7,-27: 1: 65527 8,-26: - 12: 272 + 8: 272 1: 17476 7,-26: - 12: 3264 + 8: 3264 1: 4369 9,-28: 0: 30464 @@ -18853,8 +18800,7 @@ entities: 12,8: 1: 257 13,5: - 0: 4913 - 13: 2 + 0: 4915 1: 16384 13,6: 1: 61986 @@ -19075,24 +19021,25 @@ entities: -8,-33: 1: 4096 25,-16: - 5: 17 + 2: 17 1: 18572 25,-15: 1: 806 25,-14: 0: 65287 25,-17: - 5: 4335 + 2: 4335 1: 32768 26,-16: - 1: 2031 + 1: 939 + 0: 1092 26,-15: 0: 65535 26,-14: 0: 30495 26,-17: 1: 43144 - 5: 51 + 2: 51 27,-16: 1: 3634 27,-15: @@ -19123,25 +19070,25 @@ entities: 32,-10: 0: 759 24,-21: - 5: 61535 + 2: 61535 25,-20: - 5: 4215 + 2: 4215 1: 32768 25,-19: - 5: 57361 + 2: 57361 1: 200 25,-18: - 5: 61167 + 2: 61167 25,-21: - 5: 28723 + 2: 28723 1: 136 26,-20: 1: 63901 26,-19: 1: 35001 - 5: 12288 + 2: 12288 26,-18: - 5: 13107 + 2: 13107 1: 34952 26,-21: 1: 22001 @@ -19153,28 +19100,30 @@ entities: 1: 19570 27,-18: 1: 17476 + 28,-19: + 1: 29764 24,-24: 1: 79 24,-25: - 1: 8016 + 1: 8017 23,-24: 1: 996 24,-23: - 5: 65534 + 2: 65534 23,-23: - 5: 51328 + 2: 51328 24,-22: - 5: 20735 + 2: 20735 23,-22: - 5: 32972 + 2: 32972 25,-24: 1: 2277 25,-23: - 5: 29488 + 2: 29488 25,-22: - 5: 12407 + 2: 12407 25,-25: - 1: 61712 + 1: 61713 26,-24: 1: 20288 26,-23: @@ -19182,9 +19131,15 @@ entities: 26,-22: 1: 2280 27,-23: - 1: 256 + 1: 65528 27,-22: 1: 9984 + 27,-24: + 1: 35042 + 27,-25: + 1: 8960 + 28,-23: + 1: 4368 20,-25: 0: 12288 1: 35058 @@ -19201,11 +19156,25 @@ entities: 22,-22: 1: 994 22,-24: - 1: 20032 + 1: 20036 + 22,-25: + 1: 17526 23,-25: 1: 58368 + 24,-26: + 1: 61440 + 23,-26: + 1: 61440 + 25,-26: + 1: 61440 + 26,-26: + 1: 28672 + 26,-25: + 1: 8004 21,-25: - 1: 4096 + 1: 4336 + 22,-26: + 1: 57344 8,9: 1: 63088 7,9: @@ -19240,6 +19209,14 @@ entities: 0: 29440 -13,-34: 1: 4096 + 28,-22: + 1: 28945 + 28,-21: + 1: 17476 + 28,-20: + 1: 17476 + 28,-18: + 1: 4 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -19271,51 +19248,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 5000 - moles: - - 6666.982 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.823984 - - 82.09976 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.824806 - - 82.102844 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: @@ -19334,9 +19266,6 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.824879 - - 82.10311 - - 0 - 0 - 0 - 0 @@ -19346,26 +19275,14 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - 0 - 0 - 0 - volume: 2500 temperature: 293.15 moles: - - 21.813705 - - 82.06108 + - 6666.982 + - 0 - 0 - 0 - 0 @@ -19382,7 +19299,7 @@ entities: - 0 - 0 - 0 - - 0 + - 6666.982 - 0 - 0 - 0 @@ -19394,8 +19311,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 - - 0 + - 21.823984 + - 82.09976 - 0 - 0 - 0 @@ -19409,11 +19326,11 @@ entities: - volume: 2500 temperature: 293.15 moles: + - 21.824806 + - 82.102844 - 0 - 0 - 0 - - 6666.982 - - 0 - 0 - 0 - 0 @@ -19436,21 +19353,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.824873 - - 82.1031 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -19611,23 +19513,6 @@ entities: - type: ContainedSolution containerName: battery container: 55 - - uid: 60 - components: - - type: MetaData - name: solution - tank - - type: Transform - parent: 59 - - type: Solution - solution: - maxVol: 1500 - name: tank - reagents: - - data: [] - ReagentId: SpaceCleaner - Quantity: 1500 - - type: ContainedSolution - containerName: tank - container: 59 - uid: 15531 components: - type: MetaData @@ -21250,12 +21135,6 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 113 - - uid: 117 - components: - - type: Transform - parent: 116 - - type: InstantAction - container: 116 - uid: 121 components: - type: Transform @@ -21270,6 +21149,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 15617 + - uid: 19768 + components: + - type: Transform + parent: 23560 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 23560 - uid: 27240 components: - type: Transform @@ -21291,14 +21177,6 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 26757 -- proto: AdvMopItem - entities: - - uid: 122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.6149654,-26.638285 - parent: 2 - proto: AirAlarm entities: - uid: 123 @@ -23699,47 +23577,6 @@ entities: - 24521 - 24758 - 39470 - - uid: 278 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 2 - - type: DeviceList - devices: - - 1081 - - 19224 - - 19225 - - 19219 - - 19229 - - 24801 - - 24769 - - 24800 - - 24802 - - 24799 - - uid: 279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-52.5 - parent: 2 - - type: DeviceList - devices: - - 1082 - - 19231 - - 19230 - - 23115 - - 44146 - - uid: 280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-36.5 - parent: 2 - - type: DeviceList - devices: - - 1083 - - 19233 - - 19232 - uid: 281 components: - type: Transform @@ -23972,24 +23809,6 @@ entities: - 24726 - 24727 - 24725 - - uid: 295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-55.5 - parent: 2 - - type: DeviceList - devices: - - 1086 - - uid: 296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-55.5 - parent: 2 - - type: DeviceList - devices: - - 1085 - uid: 297 components: - type: MetaData @@ -24082,6 +23901,41 @@ entities: - 1007 - 1010 - 1009 + - uid: 24105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 24107 + - 10069 + - 23557 + - 29255 + - 29256 + - 20387 + - 19765 + - 29257 + - uid: 24535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 17731 + - 24240 + - 24241 + - 24239 + - 19659 + - 19251 + - 19675 + - 24766 + - 24767 + - 24768 + - 24769 - uid: 40667 components: - type: Transform @@ -24246,36 +24100,6 @@ entities: - type: DeviceList devices: - 15837 -- proto: AirAlarmAssembly - entities: - - uid: 302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 2 - - uid: 303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-33.5 - parent: 2 - - uid: 304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-44.5 - parent: 2 - - uid: 305 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 2 - - uid: 306 - components: - - type: Transform - pos: -8.5,-42.5 - parent: 2 - proto: AirAlarmElectronics entities: - uid: 307 @@ -24625,10 +24449,11 @@ entities: rot: -1.5707963267948966 rad pos: 77.5,-9.5 parent: 2 - - uid: 370 + - uid: 23623 components: - type: Transform - pos: 3.5,-39.5 + rot: -1.5707963267948966 rad + pos: -22.5,-43.5 parent: 2 - proto: AirlockArmoryGlassLocked entities: @@ -24645,13 +24470,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-20.5 parent: 2 -- proto: AirlockAssembly - entities: - - uid: 375 - components: - - type: Transform - pos: 3.5,-35.5 - parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: - uid: 376 @@ -25367,12 +25185,6 @@ entities: rot: -1.5707963267948966 rad pos: -87.5,1.5 parent: 2 - - uid: 491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-50.5 - parent: 2 - uid: 492 components: - type: Transform @@ -25435,6 +25247,12 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalCargoLocked entities: + - uid: 1086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-66.5 + parent: 2 - uid: 43131 components: - type: Transform @@ -25833,6 +25651,50 @@ entities: parent: 40666 - proto: AirlockExternalLocked entities: + - uid: 60 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 279: + - DoorStatus: DoorBolt + - uid: 115 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 278: + - DoorStatus: DoorBolt + - uid: 278 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 115: + - DoorStatus: DoorBolt + - uid: 279 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 60: + - DoorStatus: DoorBolt - uid: 559 components: - type: Transform @@ -25981,6 +25843,98 @@ entities: rot: 3.141592653589793 rad pos: 68.5,16.5 parent: 2 + - uid: 8109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-27.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 19225: + - DoorStatus: DoorBolt + - uid: 19225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8109: + - DoorStatus: DoorBolt + - uid: 19727 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 19745: + - DoorStatus: DoorBolt + - uid: 19745 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 19727: + - DoorStatus: DoorBolt + - uid: 19804 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23262: + - DoorStatus: DoorBolt + - uid: 23262 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 19804: + - DoorStatus: DoorBolt + - uid: 23420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-47.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23434: + - DoorStatus: DoorBolt + - uid: 23434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23420: + - DoorStatus: DoorBolt - uid: 40837 components: - type: Transform @@ -26468,58 +26422,234 @@ entities: - type: Transform pos: -16.5,2.5 parent: 2 - - uid: 653 + - uid: 654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-34.5 + parent: 2 + - uid: 690 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-24.5 + pos: 32.5,17.5 parent: 2 - - uid: 654 + - type: AccessReader + containerAccessProvider: null + access: + - - Hydroponics +- proto: AirlockHatch + entities: + - uid: 657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-34.5 + pos: -0.5,-63.5 parent: 2 - - uid: 655 + - uid: 2353 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 2 + - uid: 7094 + components: + - type: Transform + pos: -6.5,-47.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: 1.5,-60.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: -0.5,-60.5 + parent: 2 + - uid: 7414 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 2 + - uid: 7416 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: -4.5,-50.5 + parent: 2 + - uid: 7449 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-25.5 + pos: 7.5,-47.5 parent: 2 - - uid: 656 + - uid: 7472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-51.5 + parent: 2 + - uid: 7483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-50.5 + parent: 2 + - uid: 7502 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-37.5 + pos: 10.5,-51.5 parent: 2 - - uid: 657 + - uid: 7503 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-34.5 + pos: 7.5,-48.5 parent: 2 - - uid: 658 + - uid: 7510 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-33.5 + pos: 10.5,-50.5 parent: 2 - - uid: 659 + - uid: 7536 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 2 + - uid: 7537 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: -12.5,-47.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 12193 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 12196 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 12197 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - uid: 12199 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 12264 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 2 + - uid: 12286 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-37.5 + pos: 2.5,-43.5 parent: 2 - - uid: 690 + - uid: 14622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-30.5 + parent: 2 + - uid: 14647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 2 + - uid: 14670 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,17.5 + pos: -13.5,-35.5 + parent: 2 + - uid: 15438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-28.5 + parent: 2 + - uid: 15887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-32.5 + parent: 2 + - uid: 16745 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 2 + - uid: 18256 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 2 + - uid: 18262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 2 + - uid: 18263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-24.5 + parent: 2 + - uid: 20379 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - uid: 23254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-37.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Hydroponics - proto: AirlockHeadOfPersonnelLocked entities: - uid: 660 @@ -27470,132 +27600,6 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-39.5 parent: 2 -- proto: AirlockMining - entities: - - uid: 799 - components: - - type: Transform - pos: -12.5,-28.5 - parent: 2 - - uid: 800 - components: - - type: Transform - pos: -15.5,-20.5 - parent: 2 - - uid: 801 - components: - - type: Transform - pos: -12.5,-24.5 - parent: 2 - - uid: 802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-22.5 - parent: 2 - - uid: 803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-22.5 - parent: 2 - - uid: 804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-20.5 - parent: 2 - - uid: 805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-19.5 - parent: 2 - - uid: 806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-17.5 - parent: 2 - - uid: 807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-28.5 - parent: 2 - - uid: 808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-31.5 - parent: 2 - - type: AccessReader - containerAccessProvider: null - - uid: 809 - components: - - type: Transform - pos: 6.5,-39.5 - parent: 2 - - uid: 810 - components: - - type: Transform - pos: 6.5,-40.5 - parent: 2 - - uid: 811 - components: - - type: MetaData - name: резервная рубка - - type: Transform - pos: 12.5,-47.5 - parent: 2 - - uid: 812 - components: - - type: Transform - pos: 7.5,-47.5 - parent: 2 - - uid: 813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-31.5 - parent: 2 - - uid: 814 - components: - - type: Transform - pos: 6.5,-21.5 - parent: 2 - - uid: 815 - components: - - type: Transform - pos: 15.5,-46.5 - parent: 2 -- proto: AirlockMiningGlass - entities: - - uid: 816 - components: - - type: Transform - pos: 0.5,-45.5 - parent: 2 - - uid: 817 - components: - - type: Transform - pos: -4.5,-48.5 - parent: 2 - - uid: 818 - components: - - type: Transform - pos: -2.5,-45.5 - parent: 2 - - uid: 819 - components: - - type: Transform - pos: -9.5,-44.5 - parent: 2 - - uid: 820 - components: - - type: Transform - pos: -1.5,-43.5 - parent: 2 - proto: AirlockMiningGlassLocked entities: - uid: 821 @@ -27603,34 +27607,6 @@ entities: - type: Transform pos: 0.5,-73.5 parent: 2 - - uid: 822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-32.5 - parent: 2 - - uid: 823 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - - uid: 824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-42.5 - parent: 2 - - uid: 825 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 2 - - uid: 826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-43.5 - parent: 2 - uid: 13090 components: - type: Transform @@ -29334,33 +29310,6 @@ entities: deviceLists: - 19127 - 277 - - uid: 1081 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 278 - - uid: 1082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 279 - - uid: 1083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 280 - - 19138 - uid: 1084 components: - type: Transform @@ -29370,24 +29319,6 @@ entities: deviceLists: - 291 - 19139 - - uid: 1085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 296 - - uid: 1086 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-53.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 295 - uid: 1087 components: - type: MetaData @@ -29505,6 +29436,21 @@ entities: - type: DeviceNetwork deviceLists: - 256 + - uid: 24107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24105 + - uid: 24765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-37.5 + parent: 2 - uid: 40670 components: - type: Transform @@ -29587,6 +29533,22 @@ entities: rot: 1.5707963267948966 rad pos: -71.5,-4.5 parent: 2 +- proto: AltarConvertRed + entities: + - uid: 9967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-57.5 + parent: 2 +- proto: AltarDruid + entities: + - uid: 9971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-51.5 + parent: 2 - proto: AltarSpawner entities: - uid: 1101 @@ -29594,6 +29556,20 @@ entities: - type: Transform pos: 35.5,-63.5 parent: 2 +- proto: AltarTechnology + entities: + - uid: 9968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-55.5 + parent: 2 + - uid: 16153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 2 - proto: AltarToolbox entities: - uid: 1102 @@ -29601,6 +29577,12 @@ entities: - type: Transform pos: 29.5,33.5 parent: 2 + - uid: 9944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-54.5 + parent: 2 - proto: AlwaysPoweredlightRed entities: - uid: 1103 @@ -29656,41 +29638,6 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-100.5 parent: 2 - - uid: 1112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-32.5 - parent: 2 - - uid: 1113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-30.5 - parent: 2 - - uid: 1114 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 2 - - uid: 1115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 2 - - uid: 1116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-22.5 - parent: 2 - - uid: 1117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-28.5 - parent: 2 - proto: AlwaysPoweredWallLight entities: - uid: 1118 @@ -29754,20 +29701,10 @@ entities: parent: 2 - proto: AmmoTechFabCircuitboard entities: - - uid: 1128 - components: - - type: Transform - pos: 12.505894,-17.436338 - parent: 2 -- proto: AnomalyCoreGravityInert - entities: - - uid: 1129 + - uid: 23616 components: - - type: MetaData - desc: Войди и я поглощу тебя... - name: странный объект - type: Transform - pos: 13.953897,-50.998863 + pos: 1.0008824,-37.44557 parent: 2 - proto: AnomalyScanner entities: @@ -29786,13 +29723,6 @@ entities: - type: Transform pos: -47.37963,-80.56245 parent: 2 -- proto: AntiPoisonMedipen - entities: - - uid: 1133 - components: - - type: Transform - pos: -5.6444874,-19.38448 - parent: 2 - proto: APCBasic entities: - uid: 1134 @@ -30565,14 +30495,6 @@ entities: rot: 1.5707963267948966 rad pos: -65.5,-14.5 parent: 2 - - uid: 1237 - components: - - type: MetaData - name: Мостик на астероид - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-72.5 - parent: 2 - uid: 1238 components: - type: Transform @@ -30828,51 +30750,6 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-57.5 parent: 2 - - uid: 1277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-21.5 - parent: 2 - - uid: 1278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-12.5 - parent: 2 - - uid: 1279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-24.5 - parent: 2 - - uid: 1280 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 2 - - uid: 1281 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 2 - - uid: 1282 - components: - - type: Transform - pos: -9.5,-31.5 - parent: 2 - - uid: 1283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-49.5 - parent: 2 - - uid: 1284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-47.5 - parent: 2 - uid: 1285 components: - type: Transform @@ -30902,12 +30779,6 @@ entities: - type: Transform pos: 49.5,-2.5 parent: 2 - - uid: 1290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-50.5 - parent: 2 - uid: 1291 components: - type: Transform @@ -30931,12 +30802,6 @@ entities: rot: 1.5707963267948966 rad pos: 67.5,-3.5 parent: 2 - - uid: 1296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 2 - uid: 1297 components: - type: Transform @@ -30977,6 +30842,30 @@ entities: - type: Transform pos: 46.5,25.5 parent: 2 + - uid: 24106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-45.5 + parent: 2 + - uid: 24536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + - uid: 26596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-11.5 + parent: 2 + - uid: 29223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-72.5 + parent: 2 - uid: 40672 components: - type: Transform @@ -31101,6 +30990,13 @@ entities: - type: Transform pos: 97.5,-38.5 parent: 2 +- proto: ArtifactFragment + entities: + - uid: 12225 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 - proto: ArtistCircuitBoard entities: - uid: 1312 @@ -31249,135 +31145,6 @@ entities: - type: Transform pos: 16.471539,18.571913 parent: 2 -- proto: AsteroidRockQuartz - entities: - - uid: 1349 - components: - - type: Transform - pos: -3.5,-57.5 - parent: 2 - - uid: 1350 - components: - - type: Transform - pos: -4.5,-57.5 - parent: 2 - - uid: 1351 - components: - - type: Transform - pos: -5.5,-57.5 - parent: 2 - - uid: 1352 - components: - - type: Transform - pos: -4.5,-58.5 - parent: 2 - - uid: 1353 - components: - - type: Transform - pos: -3.5,-59.5 - parent: 2 - - uid: 1354 - components: - - type: Transform - pos: -4.5,-59.5 - parent: 2 - - uid: 1355 - components: - - type: Transform - pos: -6.5,-57.5 - parent: 2 -- proto: AsteroidRockQuartzCrab - entities: - - uid: 1356 - components: - - type: Transform - pos: -5.5,-58.5 - parent: 2 -- proto: AsteroidRockSilver - entities: - - uid: 1357 - components: - - type: Transform - pos: -19.5,-56.5 - parent: 2 - - uid: 1358 - components: - - type: Transform - pos: -20.5,-57.5 - parent: 2 -- proto: AsteroidRockSilverCrab - entities: - - uid: 1359 - components: - - type: Transform - pos: -19.5,-57.5 - parent: 2 -- proto: AsteroidRockTin - entities: - - uid: 1360 - components: - - type: Transform - pos: -4.5,-64.5 - parent: 2 - - uid: 1361 - components: - - type: Transform - pos: -5.5,-64.5 - parent: 2 - - uid: 1362 - components: - - type: Transform - pos: -6.5,-64.5 - parent: 2 - - uid: 1363 - components: - - type: Transform - pos: -6.5,-63.5 - parent: 2 - - uid: 1364 - components: - - type: Transform - pos: -7.5,-63.5 - parent: 2 - - uid: 1365 - components: - - type: Transform - pos: -4.5,-63.5 - parent: 2 - - uid: 1366 - components: - - type: Transform - pos: -4.5,-62.5 - parent: 2 - - uid: 1367 - components: - - type: Transform - pos: -3.5,-62.5 - parent: 2 -- proto: AsteroidRockTinCrab - entities: - - uid: 1368 - components: - - type: Transform - pos: -5.5,-63.5 - parent: 2 -- proto: AsteroidRockUraniumCrab - entities: - - uid: 1369 - components: - - type: Transform - pos: -13.5,-62.5 - parent: 2 - - uid: 1370 - components: - - type: Transform - pos: -15.5,-61.5 - parent: 2 - - uid: 1371 - components: - - type: Transform - pos: -12.5,-62.5 - parent: 2 - proto: AstroNavCartridge entities: - uid: 1373 @@ -31589,57 +31356,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,20.5 parent: 2 - - uid: 1420 - components: - - type: Transform - pos: -0.5,-66.5 - parent: 2 - - uid: 1421 - components: - - type: Transform - pos: 0.5,-66.5 - parent: 2 - - uid: 1422 - components: - - type: Transform - pos: 1.5,-66.5 - parent: 2 - - uid: 1423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-60.5 - parent: 2 - - uid: 1424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-59.5 - parent: 2 - - uid: 1425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-58.5 - parent: 2 - - uid: 1426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-57.5 - parent: 2 - - uid: 1427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-56.5 - parent: 2 - - uid: 1428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-55.5 - parent: 2 - uid: 1429 components: - type: Transform @@ -31652,24 +31368,6 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-119.5 parent: 2 - - uid: 1431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-32.5 - parent: 2 - - uid: 1432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-43.5 - parent: 2 - - uid: 1433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 2 - uid: 1434 components: - type: Transform @@ -31704,6 +31402,21 @@ entities: - type: Transform pos: 129.5,-41.5 parent: 2 + - uid: 7347 + components: + - type: Transform + pos: -0.5,-63.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 2 - uid: 13245 components: - type: Transform @@ -31716,6 +31429,12 @@ entities: rot: 3.141592653589793 rad pos: 74.5,8.5 parent: 2 + - uid: 19904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-66.5 + parent: 2 - uid: 27345 components: - type: Transform @@ -33398,13 +33117,6 @@ entities: - type: Transform pos: 91.5,-79.5 parent: 2 -- proto: AtmosFixInstantPlasmaFireMarker - entities: - - uid: 1749 - components: - - type: Transform - pos: 10.5,-13.5 - parent: 2 - proto: AtmosFixNitrogenMarker entities: - uid: 1750 @@ -33443,26 +33155,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-101.5 parent: 2 - - uid: 1756 - components: - - type: Transform - pos: -9.5,-53.5 - parent: 2 - - uid: 1757 - components: - - type: Transform - pos: -9.5,-54.5 - parent: 2 - - uid: 1758 - components: - - type: Transform - pos: -8.5,-53.5 - parent: 2 - - uid: 1759 - components: - - type: Transform - pos: -8.5,-54.5 - parent: 2 - proto: AtmosFixOxygenMarker entities: - uid: 1760 @@ -33501,30 +33193,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-99.5 parent: 2 - - uid: 1766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-53.5 - parent: 2 - - uid: 1767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-54.5 - parent: 2 - - uid: 1768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-53.5 - parent: 2 - - uid: 1769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-54.5 - parent: 2 - proto: AtmosFixPlasmaMarker entities: - uid: 1771 @@ -33565,11 +33233,6 @@ entities: - type: Transform pos: 1.5,-70.5 parent: 2 - - uid: 1783 - components: - - type: Transform - pos: -19.5,-54.5 - parent: 2 - uid: 43389 components: - type: Transform @@ -33649,11 +33312,6 @@ entities: - type: Transform pos: 47.5,-90.5 parent: 2 - - uid: 1802 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 2 - proto: BannerMedical entities: - uid: 1803 @@ -33741,6 +33399,11 @@ entities: - type: Transform pos: -34.5,20.5 parent: 2 + - uid: 16496 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 - proto: BarberScissors entities: - uid: 1820 @@ -33887,89 +33550,46 @@ entities: rot: 3.141592653589793 rad pos: -18.5,17.5 parent: 2 - - uid: 1853 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 2 - - uid: 1854 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 2 - - uid: 1855 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - - uid: 1856 - components: - - type: Transform - pos: 11.5,-37.5 - parent: 2 - - uid: 1857 - components: - - type: Transform - pos: 12.5,-39.5 - parent: 2 - - uid: 1858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-42.5 - parent: 2 - - uid: 1859 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-41.5 - parent: 2 - - uid: 1860 + - uid: 20425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-39.5 + pos: -7.5,-61.5 parent: 2 - - uid: 1861 + - uid: 20432 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-36.5 + pos: -9.5,-61.5 parent: 2 - - uid: 1862 + - uid: 27562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-39.5 + pos: 21.5,-31.5 parent: 2 - - uid: 1863 + - uid: 27569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-41.5 + pos: 20.5,-31.5 parent: 2 - - uid: 1864 + - uid: 27589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-42.5 + pos: 20.5,-32.5 parent: 2 - - uid: 1865 + - uid: 27590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-39.5 + pos: 21.5,-34.5 parent: 2 - - uid: 1866 + - uid: 27591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-39.5 + pos: 22.5,-35.5 parent: 2 - - uid: 1867 + - uid: 27596 components: - type: Transform - pos: 18.5,-41.5 + pos: 20.5,-33.5 parent: 2 - proto: BarricadeBlock entities: @@ -34029,16 +33649,6 @@ entities: - type: Transform pos: 32.5,33.5 parent: 2 - - uid: 1880 - components: - - type: Transform - pos: 22.5,-33.5 - parent: 2 - - uid: 1881 - components: - - type: Transform - pos: 22.5,-32.5 - parent: 2 - uid: 1882 components: - type: Transform @@ -34055,18 +33665,6 @@ entities: - type: Transform pos: -58.5,-22.5 parent: 2 - - uid: 1885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-32.5 - parent: 2 - - uid: 1886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-43.5 - parent: 2 - uid: 1887 components: - type: Transform @@ -34085,67 +33683,26 @@ entities: rot: 3.141592653589793 rad pos: -36.5,20.5 parent: 2 - - uid: 1891 - components: - - type: Transform - pos: 5.5,-52.5 - parent: 2 - - uid: 1892 - components: - - type: Transform - pos: 6.5,-52.5 - parent: 2 - - uid: 1893 - components: - - type: Transform - pos: 5.5,-39.5 - parent: 2 - - uid: 1894 - components: - - type: Transform - pos: 4.5,-39.5 - parent: 2 - - uid: 1895 - components: - - type: Transform - pos: 5.5,-31.5 - parent: 2 - - uid: 1896 - components: - - type: Transform - pos: 6.5,-32.5 - parent: 2 - uid: 1897 components: - type: Transform pos: -23.5,-42.5 parent: 2 - - uid: 1898 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 2 - - uid: 1899 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 2 - - uid: 1900 + - uid: 20416 components: - type: Transform - pos: 1.5,-8.5 + pos: -5.5,-63.5 parent: 2 - - uid: 1901 + - uid: 20427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-31.5 + pos: -7.5,-61.5 parent: 2 - - uid: 1902 + - uid: 20434 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-40.5 + pos: -9.5,-61.5 parent: 2 - proto: BarricadeDirectional entities: @@ -34195,18 +33752,6 @@ entities: - type: Transform pos: -58.5,-21.5 parent: 2 - - uid: 1921 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-17.5 - parent: 2 - - uid: 1922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 2 - uid: 1923 components: - type: Transform @@ -34219,18 +33764,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-42.5 parent: 2 - - uid: 1925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-32.5 - parent: 2 - - uid: 1926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-43.5 - parent: 2 - uid: 1927 components: - type: Transform @@ -34243,44 +33776,23 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-43.5 parent: 2 - - uid: 1930 - components: - - type: Transform - pos: 6.5,-51.5 - parent: 2 - - uid: 1931 + - uid: 20417 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-53.5 - parent: 2 - - uid: 1932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-41.5 - parent: 2 - - uid: 1933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-43.5 - parent: 2 - - uid: 1934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-36.5 + pos: -5.5,-64.5 parent: 2 - - uid: 1935 + - uid: 20428 components: - type: Transform - pos: 19.5,-40.5 + rot: -1.5707963267948966 rad + pos: -6.5,-61.5 parent: 2 - - uid: 1936 + - uid: 20433 components: - type: Transform - pos: 18.5,-38.5 + rot: -1.5707963267948966 rad + pos: -8.5,-61.5 parent: 2 - uid: 43191 components: @@ -34329,6 +33841,13 @@ entities: - type: Transform pos: -96.5,-9.5 parent: 2 +- proto: BaseBallBat + entities: + - uid: 23401 + components: + - type: Transform + pos: -4.4071383,-25.487421 + parent: 2 - proto: BaseChemistryEmptyVial entities: - uid: 1940 @@ -34341,73 +33860,6 @@ entities: - type: Transform pos: -37.888187,-34.326935 parent: 2 - - uid: 1942 - components: - - type: Transform - pos: -15.570034,-38.30245 - parent: 2 - - uid: 1943 - components: - - type: Transform - pos: -17.616909,-34.2087 - parent: 2 - - uid: 1944 - components: - - type: Transform - pos: -15.507534,-33.36495 - parent: 2 - - uid: 1945 - components: - - type: Transform - pos: -15.351284,-33.3962 - parent: 2 - - uid: 1946 - components: - - type: Transform - pos: -19.601284,-37.3337 - parent: 2 - - uid: 1947 - components: - - type: Transform - pos: -4.3147693,-36.19546 - parent: 2 - - uid: 1948 - components: - - type: Transform - pos: -4.4866443,-36.211086 - parent: 2 - - uid: 1949 - components: - - type: Transform - pos: -6.2053943,-34.336086 - parent: 2 - - uid: 1950 - components: - - type: Transform - pos: -6.3303943,-34.304836 - parent: 2 - - uid: 1951 - components: - - type: Transform - pos: -6.4553943,-34.304836 - parent: 2 - - uid: 1952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5445156,-36.68435 - parent: 2 - - uid: 1953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.4507656,-35.324974 - parent: 2 - - uid: 1954 - components: - - type: Transform - pos: -11.457465,-41.346653 - parent: 2 - proto: BaseComputer entities: - uid: 1955 @@ -34415,75 +33867,10 @@ entities: - type: Transform pos: -61.5,12.5 parent: 2 - - uid: 1956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-49.5 - parent: 2 - - uid: 1957 - components: - - type: Transform - pos: 19.5,-17.5 - parent: 2 - - uid: 1958 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 2 - - uid: 1959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-19.5 - parent: 2 - - uid: 1960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-50.5 - parent: 2 - - uid: 1961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-52.5 - parent: 2 - - uid: 1962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-51.5 - parent: 2 - - uid: 1963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-51.5 - parent: 2 - - uid: 1964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-50.5 - parent: 2 - - uid: 1965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-49.5 - parent: 2 - - uid: 1966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-50.5 - parent: 2 - - uid: 1967 + - uid: 12204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-23.5 + pos: -1.5,-18.5 parent: 2 - proto: BaseFlatpack entities: @@ -34544,27 +33931,17 @@ entities: - type: Transform pos: -38.216312,-33.576935 parent: 2 - - uid: 1977 - components: - - type: Transform - pos: -4.8147693,-36.367336 - parent: 2 - - uid: 1978 - components: - - type: Transform - pos: -11.75434,-38.971653 - parent: 2 - - uid: 1979 - components: - - type: Transform - pos: -11.426215,-38.831028 - parent: 2 - uid: 1981 components: - type: Transform parent: 1980 - type: Physics canCollide: False + - uid: 19831 + components: + - type: Transform + pos: -8.129204,-63.63073 + parent: 2 - proto: Bed entities: - uid: 1996 @@ -34742,21 +34119,6 @@ entities: - type: Transform pos: 51.5,16.5 parent: 2 - - uid: 2033 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 2 - - uid: 2034 - components: - - type: Transform - pos: 1.5,-34.5 - parent: 2 - - uid: 2035 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 2 - uid: 16146 components: - type: Transform @@ -34821,11 +34183,6 @@ entities: - type: Transform pos: 33.5,-19.5 parent: 2 - - uid: 2044 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 2 - proto: BedsheetHOP entities: - uid: 2045 @@ -35179,30 +34536,6 @@ entities: rot: 3.141592653589793 rad pos: 87.5,-42.5 parent: 2 - - uid: 2104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 2 - - uid: 2105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-29.5 - parent: 2 - - uid: 2106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 2 - - uid: 2107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-25.5 - parent: 2 - uid: 30785 components: - type: Transform @@ -35411,6 +34744,44 @@ entities: parent: 2 - proto: BlastDoor entities: + - uid: 1359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-40.5 + parent: 2 + - type: AccessReader + access: + - - Wizard + - uid: 1361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-39.5 + parent: 2 + - type: AccessReader + access: + - - Wizard + - uid: 1366 + components: + - type: Transform + pos: 18.5,-42.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: 18.5,-39.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: 18.5,-40.5 + parent: 2 - uid: 2142 components: - type: Transform @@ -35667,192 +35038,154 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-12.5 parent: 2 - - uid: 2185 - components: - - type: Transform - pos: 13.5,-28.5 - parent: 2 - - type: AccessReader - access: - - - CentralCommand - - type: DeviceLinkSource - linkedPorts: - 31211: - - DoorStatus: Trigger - missingComponents: - - Damageable - - uid: 2186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-57.5 - parent: 2 - - uid: 2187 + - uid: 2194 components: - - type: MetaData - desc: 'Подсказка: привяжите мультитулом к кнопке или рычагу. Их можно найти в меню создания "button" или "lever". ' - name: Трюм - type: Transform - pos: 1.5,-66.5 + pos: 61.5,-14.5 parent: 2 - - uid: 2188 + - uid: 2195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-56.5 + rot: 3.141592653589793 rad + pos: 56.5,-16.5 parent: 2 - - uid: 2189 + - uid: 2208 components: - - type: MetaData - desc: 'Подсказка: привяжите мультитулом к кнопке или рычагу. Их можно найти в меню создания "button" или "lever".' - name: Трюм - type: Transform - pos: -0.5,-66.5 + rot: 3.141592653589793 rad + pos: 74.5,2.5 parent: 2 - - uid: 2190 + - type: AccessReader + access: + - - Armory + - uid: 7434 components: - - type: MetaData - desc: 'Подсказка: привяжите мультитулом к кнопке или рычагу. Их можно найти в меню создания "button" или "lever".' - name: Трюм - type: Transform - pos: 0.5,-66.5 + pos: 10.5,-56.5 parent: 2 - - uid: 2191 + - uid: 10023 components: - type: Transform - pos: -23.5,-58.5 + pos: 8.5,-53.5 parent: 2 - - uid: 2192 + - uid: 10024 components: - type: Transform - pos: -23.5,-59.5 + pos: 9.5,-53.5 parent: 2 - - uid: 2193 + - uid: 10027 components: - type: Transform - pos: -23.5,-60.5 + pos: -15.5,-45.5 parent: 2 - - uid: 2194 + - uid: 10070 components: - type: Transform - pos: 61.5,-14.5 + rot: 3.141592653589793 rad + pos: -17.5,-42.5 parent: 2 - - uid: 2195 + - uid: 10071 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-16.5 + pos: -17.5,-41.5 parent: 2 - - uid: 2196 + - uid: 10072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-55.5 + rot: 3.141592653589793 rad + pos: -17.5,-40.5 parent: 2 - - uid: 2197 + - uid: 10073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-11.5 + pos: -15.5,-39.5 parent: 2 - - uid: 2198 + - type: AccessReader + access: + - - Wizard + - uid: 10074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-11.5 + pos: -15.5,-40.5 parent: 2 - - uid: 2199 + - type: AccessReader + access: + - - Wizard + - uid: 10075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-11.5 + pos: -15.5,-41.5 parent: 2 - - uid: 2200 + - type: AccessReader + access: + - - Wizard + - uid: 10076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-11.5 + pos: -15.5,-42.5 parent: 2 - - uid: 2201 + - type: AccessReader + access: + - - Wizard + - uid: 12371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-11.5 + pos: 110.5,-19.5 parent: 2 - - uid: 2202 + - uid: 15325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-13.5 + pos: 110.5,-21.5 parent: 2 - - uid: 2203 + - uid: 15865 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-14.5 + pos: 2.5,-39.5 parent: 2 - - uid: 2204 + - uid: 19983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-15.5 + pos: 6.5,-58.5 parent: 2 - - uid: 2205 + - uid: 19984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-16.5 + pos: 6.5,-57.5 parent: 2 - - uid: 2206 + - uid: 20442 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-17.5 + pos: -5.5,-57.5 parent: 2 - - uid: 2207 + - uid: 20443 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-18.5 + pos: -5.5,-58.5 parent: 2 - - uid: 2208 + - uid: 24233 components: - type: Transform rot: 3.141592653589793 rad - pos: 74.5,2.5 + pos: 16.5,-42.5 parent: 2 - type: AccessReader access: - - - Armory - - uid: 2209 + - - Wizard + - uid: 24234 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-51.5 + pos: 16.5,-41.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26992: - - DoorStatus: InputB - - uid: 2211 + - type: AccessReader + access: + - - Wizard + - uid: 24776 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-51.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26992: - - DoorStatus: InputA - - uid: 12371 - components: - - type: Transform - pos: 110.5,-19.5 - parent: 2 - - uid: 15325 - components: - - type: Transform - pos: 110.5,-21.5 + pos: -17.5,-39.5 parent: 2 - uid: 33095 components: @@ -35947,6 +35280,32 @@ entities: rot: 3.141592653589793 rad pos: -59.5,-58.5 parent: 2 +- proto: BlastDoorFrame + entities: + - uid: 10020 + components: + - type: Transform + anchored: True + pos: 8.5,-49.5 + parent: 2 + - uid: 10021 + components: + - type: Transform + anchored: True + pos: 11.5,-49.5 + parent: 2 + - uid: 10029 + components: + - type: Transform + anchored: True + pos: -15.5,-47.5 + parent: 2 + - uid: 15866 + components: + - type: Transform + anchored: True + pos: 2.5,-40.5 + parent: 2 - proto: BlastDoorOpen entities: - uid: 2212 @@ -36333,6 +35692,16 @@ entities: - type: AccessReader access: - - Armory + - uid: 10022 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 2 + - uid: 10028 + components: + - type: Transform + pos: -15.5,-46.5 + parent: 2 - uid: 40857 components: - type: Transform @@ -36427,22 +35796,15 @@ entities: rot: 3.141592653589793 rad pos: -53.650185,-19.32859 parent: 2 -- proto: BlueprintFulton - entities: - - uid: 2250 - components: - - type: Transform - pos: 6.056112,-48.395218 - parent: 2 -- proto: BlueprintSeismicCharge +- proto: BluespaceBeaker entities: - - uid: 2251 + - uid: 7477 components: - type: Transform - pos: 8.548469,-17.454145 - parent: 2 -- proto: BluespaceBeaker - entities: + parent: 23249 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 40859 components: - type: Transform @@ -36834,6 +36196,13 @@ entities: rot: -1.5707963267948966 rad pos: -30.51155,-113.36806 parent: 2 +- proto: BookExpensiveCrystal + entities: + - uid: 370 + components: + - type: Transform + pos: 17.562714,-35.527348 + parent: 2 - proto: BookFaks entities: - uid: 2276 @@ -36983,26 +36352,6 @@ entities: - type: Transform pos: -51.5,-47.5 parent: 2 - - uid: 2304 - components: - - type: Transform - pos: 16.5,-46.5 - parent: 2 - - uid: 2305 - components: - - type: Transform - pos: 20.5,-38.5 - parent: 2 - - uid: 2306 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 2 - - uid: 2307 - components: - - type: Transform - pos: 16.5,-45.5 - parent: 2 - uid: 43042 components: - type: Transform @@ -37244,28 +36593,11 @@ entities: rot: -1.5707963267948966 rad pos: 102.5,-80.5 parent: 2 - - uid: 2349 - components: - - type: Transform - pos: -15.5,-54.5 - parent: 2 - uid: 2357 components: - type: Transform pos: -67.5,-15.5 parent: 2 -- proto: BorgHypo - entities: - - uid: 2350 - components: - - type: MetaData - desc: Удешевлённая версия гипоспрея для медицинских боргов. Кто-то достал его из продвинутого медицинского модуля, что сказалось на его работоспособности. - name: сломанный борг-гипоспрей - - type: Transform - pos: -20.47115,-53.01083 - parent: 2 - - type: UseDelay - delay: 5.5 - proto: BorgModuleAppraisal entities: - uid: 2351 @@ -37280,18 +36612,6 @@ entities: - type: Transform pos: 37.485535,-35.57139 parent: 2 -- proto: BorgModuleGardening - entities: - - uid: 2353 - components: - - type: Transform - pos: -20.473213,-50.45624 - parent: 2 - - uid: 2354 - components: - - type: Transform - pos: -20.551338,-50.26874 - parent: 2 - proto: BorgModuleGPS entities: - uid: 2355 @@ -37306,13 +36626,6 @@ entities: - type: Transform pos: 38.516785,-35.57139 parent: 2 -- proto: BoxAgrichem - entities: - - uid: 2360 - components: - - type: Transform - pos: -13.087654,-11.263999 - parent: 2 - proto: BoxBeaker entities: - uid: 2361 @@ -37326,11 +36639,6 @@ entities: - type: Transform pos: -36.495647,-30.854195 parent: 2 - - uid: 2363 - components: - - type: Transform - pos: -19.456879,-24.51964 - parent: 2 - uid: 2365 components: - type: Transform @@ -37338,11 +36646,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 2366 - components: - - type: Transform - pos: -7.5022693,-34.336086 - parent: 2 - uid: 40861 components: - type: Transform @@ -38197,7 +37500,7 @@ entities: - uid: 2407 components: - type: Transform - pos: 48.664547,23.046537 + pos: 48.546265,23.086718 parent: 2 - uid: 2408 components: @@ -38436,13 +37739,6 @@ entities: parent: 2 - proto: BoxLethalshot entities: - - uid: 2436 - components: - - type: Transform - parent: 2435 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 2438 components: - type: Transform @@ -38526,11 +37822,6 @@ entities: - type: Transform pos: -52.55665,-2.4658375 parent: 2 - - uid: 2448 - components: - - type: Transform - pos: -11.47884,-35.379707 - parent: 2 - uid: 8468 components: - type: Transform @@ -38683,13 +37974,6 @@ entities: parent: 2 - proto: BoxShellTranquilizer entities: - - uid: 2470 - components: - - type: Transform - parent: 2469 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 16516 components: - type: Transform @@ -38948,6 +38232,18 @@ entities: rot: -1.5707963267948966 rad pos: 32.75842,-15.684824 parent: 2 +- proto: BrokenEnergyShield + entities: + - uid: 7357 + components: + - type: Transform + pos: 2.3705,-34.956516 + parent: 2 + - uid: 12226 + components: + - type: Transform + pos: 2.3705,-35.44089 + parent: 2 - proto: BruteAutoInjector entities: - uid: 2514 @@ -38957,13 +38253,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 2516 - components: - - type: Transform - parent: 2515 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 2521 components: - type: Transform @@ -39083,6 +38372,11 @@ entities: - type: Transform pos: 34.843952,15.288294 parent: 2 + - uid: 20452 + components: + - type: Transform + pos: -11.941704,-61.62439 + parent: 2 - uid: 31171 components: - type: Transform @@ -39101,11 +38395,6 @@ entities: canCollide: False - proto: BurnAutoInjector entities: - - uid: 2570 - components: - - type: Transform - pos: -17.529854,-32.515293 - parent: 2 - uid: 2572 components: - type: Transform @@ -39124,18 +38413,8 @@ entities: parent: 2583 - type: Physics canCollide: False - - uid: 2589 - components: - - type: Transform - pos: -15.613848,-38.614536 - parent: 2 - proto: ButtonFrameCaution entities: - - uid: 2590 - components: - - type: Transform - pos: 15.503534,-12.20609 - parent: 2 - uid: 40674 components: - type: Transform @@ -39185,11 +38464,6 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-16.5 parent: 2 - - uid: 2595 - components: - - type: Transform - pos: 20.48664,-15.196688 - parent: 2 - uid: 2596 components: - type: Transform @@ -39295,6 +38569,16 @@ entities: - type: Transform pos: -66.5,3.5 parent: 2 + - uid: 1352 + components: + - type: Transform + pos: 62.5,-22.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: 56.5,-28.5 + parent: 2 - uid: 2608 components: - type: Transform @@ -42750,11 +42034,6 @@ entities: - type: Transform pos: 63.5,-22.5 parent: 2 - - uid: 3301 - components: - - type: Transform - pos: 62.5,-22.5 - parent: 2 - uid: 3302 components: - type: Transform @@ -42915,11 +42194,6 @@ entities: - type: Transform pos: 55.5,-28.5 parent: 2 - - uid: 3334 - components: - - type: Transform - pos: 56.5,-28.5 - parent: 2 - uid: 3335 components: - type: Transform @@ -57395,11 +56669,6 @@ entities: - type: Transform pos: -80.5,20.5 parent: 2 - - uid: 6276 - components: - - type: Transform - pos: -1.5,-72.5 - parent: 2 - uid: 6277 components: - type: Transform @@ -61005,11 +60274,6 @@ entities: - type: Transform pos: 26.5,-40.5 parent: 2 - - uid: 7016 - components: - - type: Transform - pos: -7.5,-29.5 - parent: 2 - uid: 7017 components: - type: Transform @@ -61295,146 +60559,11 @@ entities: - type: Transform pos: 69.5,-3.5 parent: 2 - - uid: 7074 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 2 - - uid: 7075 - components: - - type: Transform - pos: -17.5,-10.5 - parent: 2 - uid: 7076 components: - type: Transform pos: 71.5,3.5 parent: 2 - - uid: 7077 - components: - - type: Transform - pos: -16.5,-10.5 - parent: 2 - - uid: 7078 - components: - - type: Transform - pos: -15.5,-10.5 - parent: 2 - - uid: 7079 - components: - - type: Transform - pos: -14.5,-10.5 - parent: 2 - - uid: 7080 - components: - - type: Transform - pos: -13.5,-10.5 - parent: 2 - - uid: 7081 - components: - - type: Transform - pos: -12.5,-10.5 - parent: 2 - - uid: 7082 - components: - - type: Transform - pos: -11.5,-10.5 - parent: 2 - - uid: 7083 - components: - - type: Transform - pos: -10.5,-11.5 - parent: 2 - - uid: 7084 - components: - - type: Transform - pos: -9.5,-11.5 - parent: 2 - - uid: 7085 - components: - - type: Transform - pos: -8.5,-11.5 - parent: 2 - - uid: 7086 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 2 - - uid: 7087 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 2 - - uid: 7088 - components: - - type: Transform - pos: -5.5,-11.5 - parent: 2 - - uid: 7089 - components: - - type: Transform - pos: -4.5,-11.5 - parent: 2 - - uid: 7090 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 2 - - uid: 7091 - components: - - type: Transform - pos: -2.5,-11.5 - parent: 2 - - uid: 7092 - components: - - type: Transform - pos: -1.5,-11.5 - parent: 2 - - uid: 7093 - components: - - type: Transform - pos: -1.5,-12.5 - parent: 2 - - uid: 7094 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 2 - - uid: 7095 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 2 - - uid: 7096 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 2 - - uid: 7097 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 2 - - uid: 7098 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 2 - - uid: 7099 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 2 - - uid: 7100 - components: - - type: Transform - pos: 3.5,-14.5 - parent: 2 - - uid: 7101 - components: - - type: Transform - pos: 4.5,-14.5 - parent: 2 - uid: 7102 components: - type: Transform @@ -62640,2270 +61769,1440 @@ entities: - type: Transform pos: 48.5,18.5 parent: 2 - - uid: 7343 + - uid: 7598 components: - type: Transform - pos: -9.5,-24.5 + pos: 25.5,-31.5 parent: 2 - - uid: 7344 + - uid: 7599 components: - type: Transform - pos: -10.5,-24.5 + pos: 26.5,-29.5 parent: 2 - - uid: 7345 + - uid: 7600 components: - type: Transform - pos: -10.5,-25.5 + pos: 25.5,-29.5 parent: 2 - - uid: 7346 + - uid: 7601 components: - type: Transform - pos: -10.5,-26.5 + pos: -27.5,-42.5 parent: 2 - - uid: 7347 + - uid: 7602 components: - type: Transform - pos: -10.5,-27.5 + pos: -27.5,-41.5 parent: 2 - - uid: 7348 + - uid: 7603 components: - type: Transform - pos: -10.5,-28.5 + pos: -27.5,-40.5 parent: 2 - - uid: 7349 + - uid: 7604 components: - type: Transform - pos: -9.5,-29.5 + pos: -62.5,-18.5 parent: 2 - - uid: 7350 + - uid: 7605 components: - type: Transform - pos: -8.5,-29.5 + pos: -62.5,-19.5 parent: 2 - - uid: 7351 + - uid: 7606 components: - type: Transform - pos: -11.5,-28.5 + pos: -62.5,-20.5 parent: 2 - - uid: 7352 + - uid: 7607 components: - type: Transform - pos: -13.5,-28.5 + pos: 50.5,18.5 parent: 2 - - uid: 7353 + - uid: 7608 components: - type: Transform - pos: -12.5,-28.5 + pos: 51.5,18.5 parent: 2 - - uid: 7354 + - uid: 7609 components: - type: Transform - pos: -11.5,-24.5 + pos: 52.5,18.5 parent: 2 - - uid: 7355 + - uid: 7610 components: - type: Transform - pos: -12.5,-24.5 + pos: 53.5,18.5 parent: 2 - - uid: 7356 + - uid: 7611 components: - type: Transform - pos: -18.5,-20.5 + pos: 54.5,18.5 parent: 2 - - uid: 7357 + - uid: 7612 components: - type: Transform - pos: -18.5,-21.5 + pos: 54.5,17.5 parent: 2 - - uid: 7358 + - uid: 7613 components: - type: Transform - pos: -18.5,-22.5 + pos: 49.5,22.5 parent: 2 - - uid: 7359 + - uid: 7614 components: - type: Transform - pos: -18.5,-23.5 + pos: 51.5,21.5 parent: 2 - - uid: 7360 + - uid: 7615 components: - type: Transform - pos: -18.5,-24.5 + pos: 51.5,20.5 parent: 2 - - uid: 7361 + - uid: 7616 components: - type: Transform - pos: -18.5,-25.5 + pos: 43.5,0.5 parent: 2 - - uid: 7362 + - uid: 7617 components: - type: Transform - pos: -5.5,-20.5 + pos: 43.5,1.5 parent: 2 - - uid: 7363 + - uid: 7618 components: - type: Transform - pos: -5.5,-19.5 + pos: 43.5,2.5 parent: 2 - - uid: 7364 + - uid: 7619 components: - type: Transform - pos: -5.5,-18.5 + pos: 43.5,3.5 parent: 2 - - uid: 7365 + - uid: 7620 components: - type: Transform - pos: -5.5,-17.5 + pos: 43.5,4.5 parent: 2 - - uid: 7366 + - uid: 7621 components: - type: Transform - pos: -5.5,-16.5 + pos: 43.5,5.5 parent: 2 - - uid: 7367 + - uid: 7622 components: - type: Transform - pos: -5.5,-15.5 + pos: 43.5,6.5 parent: 2 - - uid: 7368 + - uid: 7623 components: - type: Transform - pos: -6.5,-15.5 + pos: 43.5,7.5 parent: 2 - - uid: 7369 + - uid: 7624 components: - type: Transform - pos: -7.5,-15.5 + pos: 43.5,8.5 parent: 2 - - uid: 7370 + - uid: 7625 components: - type: Transform - pos: -8.5,-15.5 + pos: 43.5,9.5 parent: 2 - - uid: 7371 + - uid: 7626 components: - type: Transform - pos: -9.5,-15.5 + pos: 42.5,5.5 parent: 2 - - uid: 7372 + - uid: 7627 components: - type: Transform - pos: -10.5,-15.5 + pos: 41.5,5.5 parent: 2 - - uid: 7373 + - uid: 7628 components: - type: Transform - pos: -10.5,-14.5 + pos: 40.5,5.5 parent: 2 - - uid: 7374 + - uid: 7629 components: - type: Transform - pos: -10.5,-13.5 + pos: 42.5,2.5 parent: 2 - - uid: 7375 + - uid: 7630 components: - type: Transform - pos: -11.5,-14.5 + pos: 41.5,2.5 parent: 2 - - uid: 7376 + - uid: 7631 components: - type: Transform - pos: -12.5,-14.5 + pos: 40.5,2.5 parent: 2 - - uid: 7377 + - uid: 7632 components: - type: Transform - pos: -13.5,-14.5 + pos: 44.5,6.5 parent: 2 - - uid: 7378 + - uid: 7633 components: - type: Transform - pos: -14.5,-14.5 + pos: 45.5,6.5 parent: 2 - - uid: 7379 + - uid: 7634 components: - type: Transform - pos: -15.5,-14.5 + pos: 46.5,6.5 parent: 2 - - uid: 7380 + - uid: 7635 components: - type: Transform - pos: -4.5,-15.5 + pos: 47.5,6.5 parent: 2 - - uid: 7381 + - uid: 7636 components: - type: Transform - pos: -3.5,-15.5 + pos: 47.5,7.5 parent: 2 - - uid: 7382 + - uid: 7637 components: - type: Transform - pos: -2.5,-15.5 + pos: 47.5,8.5 parent: 2 - - uid: 7383 + - uid: 7638 components: - type: Transform - pos: -2.5,-16.5 + pos: 47.5,9.5 parent: 2 - - uid: 7384 + - uid: 7639 components: - type: Transform - pos: -2.5,-17.5 + pos: 44.5,4.5 parent: 2 - - uid: 7385 + - uid: 7640 components: - type: Transform - pos: -1.5,-17.5 + pos: 45.5,4.5 parent: 2 - - uid: 7386 + - uid: 7641 components: - type: Transform - pos: -0.5,-17.5 + pos: 46.5,4.5 parent: 2 - - uid: 7387 + - uid: 7642 components: - type: Transform - pos: 0.5,-17.5 + pos: 47.5,4.5 parent: 2 - - uid: 7388 + - uid: 7643 components: - type: Transform - pos: 1.5,-17.5 + pos: 48.5,4.5 parent: 2 - - uid: 7389 + - uid: 7644 components: - type: Transform - pos: 2.5,-17.5 + pos: 44.5,1.5 parent: 2 - - uid: 7390 + - uid: 7645 components: - type: Transform - pos: 3.5,-17.5 + pos: 45.5,1.5 parent: 2 - - uid: 7391 + - uid: 7646 components: - type: Transform - pos: 4.5,-17.5 + pos: 46.5,1.5 parent: 2 - - uid: 7392 + - uid: 7647 components: - type: Transform - pos: 5.5,-17.5 + pos: 47.5,1.5 parent: 2 - - uid: 7393 + - uid: 7648 components: - type: Transform - pos: 5.5,-16.5 + pos: 47.5,-2.5 parent: 2 - - uid: 7394 + - uid: 7649 components: - type: Transform - pos: 5.5,-15.5 + pos: 42.5,-4.5 parent: 2 - - uid: 7395 + - uid: 7650 components: - type: Transform - pos: 5.5,-14.5 + pos: 41.5,-4.5 parent: 2 - - uid: 7396 + - uid: 7651 components: - type: Transform - pos: 5.5,-13.5 + pos: 39.5,-22.5 parent: 2 - - uid: 7397 + - uid: 7652 components: - type: Transform - pos: 5.5,-12.5 + pos: 39.5,-23.5 parent: 2 - - uid: 7398 + - uid: 7653 components: - type: Transform - pos: 4.5,-12.5 + pos: 39.5,-24.5 parent: 2 - - uid: 7399 + - uid: 7654 components: - type: Transform - pos: 3.5,-12.5 + pos: 38.5,-24.5 parent: 2 - - uid: 7400 + - uid: 7655 components: - type: Transform - pos: 2.5,-12.5 + pos: 38.5,-25.5 parent: 2 - - uid: 7401 + - uid: 7656 components: - type: Transform - pos: 1.5,-12.5 + pos: 38.5,-26.5 parent: 2 - - uid: 7402 + - uid: 7657 components: - type: Transform - pos: 0.5,-12.5 + pos: 38.5,-27.5 parent: 2 - - uid: 7403 + - uid: 7658 components: - type: Transform - pos: 5.5,-18.5 + pos: 40.5,-24.5 parent: 2 - - uid: 7404 + - uid: 7659 components: - type: Transform - pos: 5.5,-19.5 + pos: 41.5,-24.5 parent: 2 - - uid: 7405 + - uid: 7660 components: - type: Transform - pos: 6.5,-19.5 + pos: 39.5,-27.5 parent: 2 - - uid: 7406 + - uid: 7661 components: - type: Transform - pos: 6.5,-20.5 + pos: 40.5,-27.5 parent: 2 - - uid: 7407 + - uid: 7662 components: - type: Transform - pos: -9.5,-31.5 + pos: 48.5,-20.5 parent: 2 - - uid: 7408 + - uid: 7663 components: - type: Transform - pos: -9.5,-33.5 + pos: 48.5,-21.5 parent: 2 - - uid: 7409 + - uid: 7664 components: - type: Transform - pos: -10.5,-33.5 + pos: 48.5,-22.5 parent: 2 - - uid: 7410 + - uid: 7665 components: - type: Transform - pos: -10.5,-34.5 + pos: 48.5,-23.5 parent: 2 - - uid: 7411 + - uid: 7666 components: - type: Transform - pos: -10.5,-35.5 + pos: 48.5,-24.5 parent: 2 - - uid: 7412 + - uid: 7667 components: - type: Transform - pos: -7.5,-32.5 + pos: 63.5,-14.5 parent: 2 - - uid: 7413 + - uid: 7668 components: - type: Transform - pos: -6.5,-32.5 + pos: 48.5,-25.5 parent: 2 - - uid: 7414 + - uid: 7669 components: - type: Transform - pos: -5.5,-32.5 + pos: 63.5,-16.5 parent: 2 - - uid: 7415 + - uid: 7670 components: - type: Transform - pos: -5.5,-33.5 + pos: 63.5,-15.5 parent: 2 - - uid: 7416 + - uid: 7671 components: - type: Transform - pos: -16.5,-30.5 + pos: 66.5,0.5 parent: 2 - - uid: 7417 + - uid: 7672 components: - type: Transform - pos: -16.5,-31.5 + pos: 66.5,1.5 parent: 2 - - uid: 7418 + - uid: 7673 components: - type: Transform - pos: -5.5,-23.5 + pos: 63.5,-1.5 parent: 2 - - uid: 7419 + - uid: 7674 components: - type: Transform - pos: -5.5,-27.5 + pos: 63.5,-0.5 parent: 2 - - uid: 7420 + - uid: 7675 components: - type: Transform - pos: -16.5,-34.5 + pos: 63.5,0.5 parent: 2 - - uid: 7421 + - uid: 7676 components: - type: Transform - pos: -5.5,-29.5 + pos: 63.5,-4.5 parent: 2 - - uid: 7422 + - uid: 7677 components: - type: Transform - pos: -5.5,-28.5 + pos: 65.5,-4.5 parent: 2 - - uid: 7423 + - uid: 7678 components: - type: Transform - pos: -5.5,-26.5 + pos: 47.5,22.5 parent: 2 - - uid: 7424 + - uid: 7679 components: - type: Transform - pos: -5.5,-25.5 + pos: 48.5,22.5 parent: 2 - - uid: 7425 + - uid: 7681 components: - type: Transform - pos: -5.5,-24.5 + pos: 80.5,-7.5 parent: 2 - - uid: 7426 + - uid: 7682 components: - type: Transform - pos: -17.5,-31.5 + pos: 79.5,-7.5 parent: 2 - - uid: 7427 + - uid: 7683 components: - type: Transform - pos: -18.5,-31.5 + pos: 78.5,-7.5 parent: 2 - - uid: 7428 + - uid: 7684 components: - type: Transform - pos: -18.5,-32.5 + pos: 77.5,-7.5 parent: 2 - - uid: 7429 + - uid: 7685 components: - type: Transform - pos: -18.5,-33.5 + pos: 76.5,-7.5 parent: 2 - - uid: 7430 + - uid: 7686 components: - type: Transform - pos: -18.5,-34.5 + pos: 75.5,-7.5 parent: 2 - - uid: 7431 + - uid: 7687 components: - type: Transform - pos: -18.5,-35.5 + pos: 74.5,-7.5 parent: 2 - - uid: 7432 + - uid: 7688 components: - type: Transform - pos: -18.5,-36.5 + pos: 73.5,-7.5 parent: 2 - - uid: 7433 + - uid: 7689 components: - type: Transform - pos: -18.5,-37.5 + pos: 72.5,-7.5 parent: 2 - - uid: 7434 + - uid: 7690 components: - type: Transform - pos: -18.5,-38.5 + pos: 71.5,-7.5 parent: 2 - - uid: 7435 + - uid: 7691 components: - type: Transform - pos: -18.5,-39.5 + pos: 74.5,1.5 parent: 2 - - uid: 7436 + - uid: 7692 components: - type: Transform - pos: -18.5,-40.5 + pos: 45.5,-9.5 parent: 2 - - uid: 7437 + - uid: 7693 components: - type: Transform - pos: -5.5,-21.5 + pos: 46.5,-9.5 parent: 2 - - uid: 7438 + - uid: 7694 components: - type: Transform - pos: -5.5,-22.5 + pos: 47.5,-9.5 parent: 2 - - uid: 7439 + - uid: 7695 components: - type: Transform - pos: -14.5,-40.5 + pos: 48.5,-9.5 parent: 2 - - uid: 7440 + - uid: 7696 components: - type: Transform - pos: -5.5,-20.5 + pos: 51.5,11.5 parent: 2 - - uid: 7441 + - uid: 7697 components: - type: Transform - pos: -14.5,-39.5 + pos: 51.5,13.5 parent: 2 - - uid: 7442 + - uid: 7698 components: - type: Transform - pos: -14.5,-38.5 + pos: 52.5,10.5 parent: 2 - - uid: 7443 + - uid: 7699 components: - type: Transform - pos: -14.5,-37.5 + pos: 53.5,10.5 parent: 2 - - uid: 7444 + - uid: 7700 components: - type: Transform - pos: -14.5,-36.5 + pos: 52.5,12.5 parent: 2 - - uid: 7445 + - uid: 7701 components: - type: Transform - pos: -14.5,-35.5 + pos: 51.5,14.5 parent: 2 - - uid: 7446 + - uid: 7702 components: - type: Transform - pos: -14.5,-34.5 + pos: 50.5,14.5 parent: 2 - - uid: 7447 + - uid: 7703 components: - type: Transform - pos: -14.5,-33.5 + pos: 49.5,14.5 parent: 2 - - uid: 7448 + - uid: 7704 components: - type: Transform - pos: -14.5,-32.5 + pos: 48.5,14.5 parent: 2 - - uid: 7449 + - uid: 7705 components: - type: Transform - pos: -14.5,-31.5 + pos: 48.5,15.5 parent: 2 - - uid: 7450 + - uid: 7706 components: - type: Transform - pos: -15.5,-31.5 + pos: 47.5,15.5 parent: 2 - - uid: 7451 + - uid: 7707 components: - type: Transform - pos: -4.5,-29.5 + pos: 48.5,13.5 parent: 2 - - uid: 7452 + - uid: 7708 components: - type: Transform - pos: -3.5,-29.5 + pos: 48.5,12.5 parent: 2 - - uid: 7453 + - uid: 7709 components: - type: Transform - pos: -2.5,-29.5 + pos: 47.5,12.5 parent: 2 - - uid: 7454 + - uid: 7710 components: - type: Transform - pos: -1.5,-29.5 + pos: 46.5,12.5 parent: 2 - - uid: 7455 + - uid: 7711 components: - type: Transform - pos: -0.5,-29.5 + pos: 45.5,12.5 parent: 2 - - uid: 7456 + - uid: 7712 components: - type: Transform - pos: 0.5,-29.5 + pos: 44.5,12.5 parent: 2 - - uid: 7457 + - uid: 7713 components: - type: Transform - pos: 1.5,-29.5 + pos: 43.5,12.5 parent: 2 - - uid: 7458 + - uid: 7714 components: - type: Transform - pos: 1.5,-28.5 + pos: 43.5,13.5 parent: 2 - - uid: 7459 + - uid: 7715 components: - type: Transform - pos: 1.5,-27.5 + pos: 43.5,14.5 parent: 2 - - uid: 7460 + - uid: 7716 components: - type: Transform - pos: 1.5,-26.5 + pos: 43.5,15.5 parent: 2 - - uid: 7461 + - uid: 7717 components: - type: Transform - pos: 1.5,-25.5 + pos: 51.5,15.5 parent: 2 - - uid: 7462 + - uid: 7718 components: - type: Transform - pos: 2.5,-25.5 + pos: 49.5,11.5 parent: 2 - - uid: 7463 + - uid: 7719 components: - type: Transform - pos: 3.5,-25.5 + pos: 52.5,13.5 parent: 2 - - uid: 7464 + - uid: 7720 components: - type: Transform - pos: 1.5,-24.5 + pos: 54.5,16.5 parent: 2 - - uid: 7465 + - uid: 7721 components: - type: Transform - pos: 1.5,-23.5 + pos: 54.5,15.5 parent: 2 - - uid: 7466 + - uid: 7722 components: - type: Transform - pos: 1.5,-22.5 + pos: 54.5,14.5 parent: 2 - - uid: 7467 + - uid: 7723 components: - type: Transform - pos: 1.5,-30.5 + pos: 52.5,-8.5 parent: 2 - - uid: 7468 + - uid: 7724 components: - type: Transform - pos: 1.5,-31.5 + pos: 52.5,-9.5 parent: 2 - - uid: 7469 + - uid: 7725 components: - type: Transform - pos: 1.5,-31.5 + pos: 52.5,-10.5 parent: 2 - - uid: 7470 + - uid: 7726 components: - type: Transform - pos: 1.5,-32.5 + pos: 52.5,-11.5 parent: 2 - - uid: 7471 + - uid: 7727 components: - type: Transform - pos: 4.5,-25.5 + pos: 52.5,-12.5 parent: 2 - - uid: 7472 + - uid: 7728 components: - type: Transform - pos: 5.5,-25.5 + pos: 52.5,-13.5 parent: 2 - - uid: 7473 + - uid: 7729 components: - type: Transform - pos: 6.5,-25.5 + pos: 52.5,-14.5 parent: 2 - - uid: 7474 + - uid: 7730 components: - type: Transform - pos: 6.5,-24.5 + pos: 37.5,-24.5 parent: 2 - - uid: 7475 + - uid: 7731 components: - type: Transform - pos: 5.5,-26.5 + pos: 36.5,-24.5 parent: 2 - - uid: 7476 + - uid: 7732 components: - type: Transform - pos: 5.5,-27.5 + pos: 111.5,-37.5 parent: 2 - - uid: 7477 + - uid: 7733 components: - type: Transform - pos: 12.5,-12.5 + pos: 111.5,-38.5 parent: 2 - - uid: 7478 + - uid: 7734 components: - type: Transform - pos: 11.5,-12.5 + pos: 112.5,-40.5 parent: 2 - - uid: 7479 + - uid: 7735 components: - type: Transform - pos: 11.5,-13.5 + pos: 113.5,-40.5 parent: 2 - - uid: 7480 + - uid: 7736 components: - type: Transform - pos: 11.5,-14.5 + pos: 114.5,-40.5 parent: 2 - - uid: 7481 + - uid: 7737 components: - type: Transform - pos: 10.5,-14.5 + pos: 115.5,-40.5 parent: 2 - - uid: 7482 + - uid: 7738 components: - type: Transform - pos: 10.5,-15.5 + pos: 116.5,-40.5 parent: 2 - - uid: 7483 + - uid: 7739 components: - type: Transform - pos: 10.5,-16.5 + pos: 117.5,-40.5 parent: 2 - - uid: 7484 + - uid: 7740 components: - type: Transform - pos: 10.5,-17.5 + pos: 118.5,-40.5 parent: 2 - - uid: 7485 + - uid: 7741 components: - type: Transform - pos: 10.5,-18.5 + pos: 119.5,-40.5 parent: 2 - - uid: 7486 + - uid: 7742 components: - type: Transform - pos: 10.5,-19.5 + pos: 120.5,-40.5 parent: 2 - - uid: 7487 + - uid: 7743 components: - type: Transform - pos: 10.5,-20.5 + pos: 121.5,-40.5 parent: 2 - - uid: 7488 + - uid: 7744 components: - type: Transform - pos: 10.5,-21.5 + pos: 122.5,-40.5 parent: 2 - - uid: 7489 + - uid: 7745 components: - type: Transform - pos: 10.5,-22.5 + pos: 123.5,-40.5 parent: 2 - - uid: 7490 + - uid: 7746 components: - type: Transform - pos: 10.5,-23.5 + pos: 124.5,-40.5 parent: 2 - - uid: 7491 + - uid: 7747 components: - type: Transform - pos: 10.5,-24.5 + pos: 125.5,-40.5 parent: 2 - - uid: 7492 + - uid: 7748 components: - type: Transform - pos: 10.5,-25.5 + pos: 126.5,-40.5 parent: 2 - - uid: 7493 + - uid: 7749 components: - type: Transform - pos: 10.5,-26.5 + pos: 127.5,-40.5 parent: 2 - - uid: 7494 + - uid: 7750 components: - type: Transform - pos: 10.5,-27.5 + pos: 128.5,-40.5 parent: 2 - - uid: 7495 + - uid: 7751 components: - type: Transform - pos: 10.5,-28.5 + pos: 129.5,-40.5 parent: 2 - - uid: 7496 + - uid: 7752 components: - type: Transform - pos: 11.5,-28.5 + pos: 130.5,-40.5 parent: 2 - - uid: 7497 + - uid: 7753 components: - type: Transform - pos: 18.5,-21.5 + pos: 131.5,-40.5 parent: 2 - - uid: 7498 + - uid: 7754 components: - type: Transform - pos: 17.5,-21.5 + pos: 132.5,-40.5 parent: 2 - - uid: 7499 + - uid: 7755 components: - type: Transform - pos: 17.5,-20.5 + pos: 110.5,-39.5 parent: 2 - - uid: 7500 + - uid: 7756 components: - type: Transform - pos: 17.5,-19.5 + pos: 110.5,-40.5 parent: 2 - - uid: 7501 + - uid: 7757 components: - type: Transform - pos: 17.5,-18.5 + pos: 110.5,-42.5 parent: 2 - - uid: 7502 + - uid: 7758 components: - type: Transform - pos: 17.5,-17.5 + pos: 110.5,-38.5 parent: 2 - - uid: 7503 + - uid: 7759 components: - type: Transform - pos: 17.5,-16.5 + pos: 110.5,-41.5 parent: 2 - - uid: 7504 + - uid: 7760 components: - type: Transform - pos: 17.5,-15.5 + pos: 112.5,-38.5 parent: 2 - - uid: 7505 + - uid: 7761 components: - type: Transform - pos: 17.5,-14.5 + pos: 112.5,-39.5 parent: 2 - - uid: 7506 + - uid: 7762 components: - type: Transform - pos: 17.5,-13.5 + pos: -17.5,8.5 parent: 2 - - uid: 7507 + - uid: 7763 components: - type: Transform - pos: 16.5,-16.5 + pos: -17.5,7.5 parent: 2 - - uid: 7508 + - uid: 7764 components: - type: Transform - pos: 15.5,-16.5 + pos: -16.5,6.5 parent: 2 - - uid: 7509 + - uid: 7765 components: - type: Transform - pos: 14.5,-16.5 + pos: -16.5,7.5 parent: 2 - - uid: 7510 + - uid: 7766 components: - type: Transform - pos: 18.5,-16.5 + pos: -16.5,5.5 parent: 2 - - uid: 7511 + - uid: 7767 components: - type: Transform - pos: 19.5,-16.5 + pos: -16.5,4.5 parent: 2 - - uid: 7512 + - uid: 7768 components: - type: Transform - pos: 20.5,-16.5 + pos: -16.5,3.5 parent: 2 - - uid: 7513 + - uid: 7769 components: - type: Transform - pos: 18.5,-19.5 + pos: -14.5,7.5 parent: 2 - - uid: 7514 + - uid: 7770 components: - type: Transform - pos: 19.5,-19.5 + pos: -15.5,7.5 parent: 2 - - uid: 7515 + - uid: 7771 components: - type: Transform - pos: 20.5,-19.5 + pos: -15.5,8.5 parent: 2 - - uid: 7516 + - uid: 7772 components: - type: Transform - pos: 16.5,-19.5 + pos: -15.5,9.5 parent: 2 - - uid: 7517 + - uid: 7773 components: - type: Transform - pos: 15.5,-19.5 + pos: -15.5,10.5 parent: 2 - - uid: 7518 + - uid: 7774 components: - type: Transform - pos: 14.5,-19.5 + pos: -16.5,10.5 parent: 2 - - uid: 7519 + - uid: 7775 components: - type: Transform - pos: 17.5,-22.5 + pos: -17.5,10.5 parent: 2 - - uid: 7520 + - uid: 7776 components: - type: Transform - pos: 18.5,-22.5 + pos: -13.5,7.5 parent: 2 - - uid: 7521 + - uid: 7777 components: - type: Transform - pos: 19.5,-22.5 + pos: -13.5,6.5 parent: 2 - - uid: 7522 + - uid: 7874 components: - type: Transform - pos: 20.5,-22.5 + pos: -64.5,3.5 parent: 2 - - uid: 7523 + - uid: 11480 components: - type: Transform - pos: 21.5,-22.5 + pos: -79.5,-4.5 parent: 2 - - uid: 7524 + - uid: 11651 components: - type: Transform - pos: 22.5,-22.5 + pos: 46.5,24.5 parent: 2 - - uid: 7525 + - uid: 11675 components: - type: Transform - pos: 16.5,-22.5 + pos: 85.5,-46.5 parent: 2 - - uid: 7526 + - uid: 11686 components: - type: Transform - pos: 15.5,-22.5 + pos: -82.5,-2.5 parent: 2 - - uid: 7527 + - uid: 12376 components: - type: Transform - pos: 17.5,-23.5 + pos: 85.5,-52.5 parent: 2 - - uid: 7528 + - uid: 13097 components: - type: Transform - pos: 17.5,-24.5 + pos: 81.5,5.5 parent: 2 - - uid: 7529 + - uid: 13350 components: - type: Transform - pos: 17.5,-25.5 + pos: 45.5,24.5 parent: 2 - - uid: 7530 + - uid: 13357 components: - type: Transform - pos: 18.5,-25.5 + pos: 26.5,17.5 parent: 2 - - uid: 7531 + - uid: 13448 components: - type: Transform - pos: 19.5,-25.5 + pos: 54.5,-48.5 parent: 2 - - uid: 7532 + - uid: 14513 components: - type: Transform - pos: 19.5,-26.5 + pos: 30.5,20.5 parent: 2 - - uid: 7533 + - uid: 14922 components: - type: Transform - pos: 19.5,-27.5 + pos: 46.5,25.5 parent: 2 - - uid: 7534 + - uid: 15309 components: - type: Transform - pos: 19.5,-28.5 + pos: 85.5,-50.5 parent: 2 - - uid: 7535 + - uid: 15726 components: - type: Transform - pos: 18.5,-28.5 + pos: 0.5,-0.5 parent: 2 - - uid: 7536 + - uid: 16005 components: - type: Transform - pos: 17.5,-28.5 + pos: 11.5,-10.5 parent: 2 - - uid: 7537 + - uid: 16033 components: - type: Transform - pos: 16.5,-28.5 + pos: 10.5,-10.5 parent: 2 - - uid: 7538 + - uid: 16078 components: - type: Transform - pos: 15.5,-28.5 + pos: 9.5,-10.5 parent: 2 - - uid: 7539 + - uid: 16123 components: - type: Transform - pos: 15.5,-29.5 + pos: 8.5,-10.5 parent: 2 - - uid: 7540 + - uid: 16124 components: - type: Transform - pos: 15.5,-30.5 + pos: 7.5,-10.5 parent: 2 - - uid: 7541 + - uid: 16125 components: - type: Transform - pos: 4.5,-49.5 + pos: 6.5,-10.5 parent: 2 - - uid: 7542 + - uid: 16798 components: - type: Transform - pos: 4.5,-48.5 + pos: 30.5,19.5 parent: 2 - - uid: 7543 + - uid: 20444 components: - type: Transform - pos: 4.5,-47.5 + pos: -12.5,-61.5 parent: 2 - - uid: 7544 + - uid: 20445 components: - type: Transform - pos: 5.5,-47.5 + pos: -11.5,-61.5 parent: 2 - - uid: 7545 + - uid: 20446 components: - type: Transform - pos: 6.5,-47.5 + pos: -10.5,-61.5 parent: 2 - - uid: 7546 + - uid: 20447 components: - type: Transform - pos: 7.5,-47.5 + pos: -10.5,-62.5 parent: 2 - - uid: 7547 + - uid: 20448 components: - type: Transform - pos: 8.5,-47.5 + pos: -10.5,-63.5 parent: 2 - - uid: 7548 + - uid: 20450 components: - type: Transform - pos: 9.5,-47.5 + pos: -9.5,-63.5 parent: 2 - - uid: 7549 + - uid: 20451 components: - type: Transform - pos: 10.5,-47.5 + pos: -8.5,-63.5 parent: 2 - - uid: 7550 + - uid: 23447 components: - type: Transform - pos: 11.5,-47.5 + pos: -21.5,-45.5 parent: 2 - - uid: 7551 + - uid: 23647 components: - type: Transform - pos: 10.5,-48.5 + pos: -20.5,-44.5 parent: 2 - - uid: 7552 + - uid: 23648 components: - type: Transform - pos: 10.5,-49.5 + pos: -20.5,-43.5 parent: 2 - - uid: 7553 + - uid: 23649 components: - type: Transform - pos: 10.5,-50.5 + pos: -20.5,-42.5 parent: 2 - - uid: 7554 + - uid: 23650 components: - type: Transform - pos: 12.5,-47.5 + pos: -20.5,-41.5 parent: 2 - - uid: 7555 + - uid: 23651 components: - type: Transform - pos: 13.5,-47.5 + pos: -20.5,-40.5 parent: 2 - - uid: 7556 + - uid: 23652 components: - type: Transform - pos: 14.5,-47.5 + pos: -20.5,-39.5 parent: 2 - - uid: 7557 + - uid: 23653 components: - type: Transform - pos: 14.5,-46.5 + pos: -20.5,-38.5 parent: 2 - - uid: 7558 + - uid: 23654 components: - type: Transform - pos: -8.5,-50.5 + pos: -20.5,-37.5 parent: 2 - - uid: 7559 + - uid: 23655 components: - type: Transform - pos: -8.5,-49.5 + pos: -20.5,-36.5 parent: 2 - - uid: 7560 + - uid: 23656 components: - type: Transform - pos: -7.5,-49.5 + pos: -20.5,-45.5 parent: 2 - - uid: 7561 + - uid: 23657 components: - type: Transform - pos: -6.5,-49.5 + pos: -20.5,-46.5 parent: 2 - - uid: 7562 + - uid: 23772 components: - type: Transform - pos: -5.5,-49.5 + pos: -20.5,-47.5 parent: 2 - - uid: 7563 + - uid: 23798 components: - type: Transform - pos: -5.5,-50.5 + pos: -19.5,-39.5 parent: 2 - - uid: 7564 + - uid: 23799 components: - type: Transform - pos: -5.5,-51.5 + pos: -18.5,-39.5 parent: 2 - - uid: 7565 + - uid: 23800 components: - type: Transform - pos: -5.5,-52.5 + pos: -18.5,-40.5 parent: 2 - - uid: 7566 + - uid: 23801 components: - type: Transform - pos: -5.5,-53.5 + pos: -18.5,-41.5 parent: 2 - - uid: 7567 + - uid: 23802 components: - type: Transform - pos: -6.5,-54.5 + pos: -18.5,-42.5 parent: 2 - - uid: 7568 + - uid: 23803 components: - type: Transform - pos: -7.5,-54.5 + pos: -21.5,-43.5 parent: 2 - - uid: 7569 + - uid: 23806 components: - type: Transform - pos: -8.5,-54.5 + pos: -22.5,-45.5 parent: 2 - - uid: 7570 + - uid: 24557 components: - type: Transform - pos: -4.5,-54.5 + pos: 24.5,-40.5 parent: 2 - - uid: 7571 + - uid: 24558 components: - type: Transform - pos: -3.5,-54.5 + pos: 23.5,-40.5 parent: 2 - - uid: 7572 + - uid: 24559 components: - type: Transform - pos: -2.5,-54.5 + pos: 22.5,-40.5 parent: 2 - - uid: 7573 + - uid: 24560 components: - type: Transform - pos: -5.5,-53.5 + pos: 21.5,-40.5 parent: 2 - - uid: 7574 + - uid: 24561 components: - type: Transform - pos: -5.5,-54.5 + pos: 21.5,-39.5 parent: 2 - - uid: 7575 + - uid: 24562 components: - type: Transform - pos: -5.5,-48.5 + pos: 21.5,-38.5 parent: 2 - - uid: 7576 + - uid: 24563 components: - type: Transform - pos: -4.5,-48.5 + pos: 21.5,-37.5 parent: 2 - - uid: 7577 + - uid: 24564 components: - type: Transform - pos: -3.5,-48.5 + pos: 21.5,-36.5 parent: 2 - - uid: 7578 + - uid: 24565 components: - type: Transform - pos: -2.5,-48.5 + pos: 21.5,-35.5 parent: 2 - - uid: 7579 + - uid: 24566 components: - type: Transform - pos: -2.5,-47.5 + pos: 21.5,-34.5 parent: 2 - - uid: 7580 + - uid: 24567 components: - type: Transform - pos: -2.5,-46.5 + pos: 21.5,-33.5 parent: 2 - - uid: 7581 + - uid: 24568 components: - type: Transform - pos: -2.5,-49.5 + pos: 21.5,-32.5 parent: 2 - - uid: 7582 + - uid: 24569 components: - type: Transform - pos: -2.5,-50.5 + pos: 21.5,-31.5 parent: 2 - - uid: 7583 + - uid: 24570 components: - type: Transform - pos: -2.5,-51.5 + pos: 21.5,-41.5 parent: 2 - - uid: 7584 + - uid: 24571 components: - type: Transform - pos: -9.5,-49.5 + pos: 21.5,-42.5 parent: 2 - - uid: 7585 + - uid: 24572 components: - type: Transform - pos: -10.5,-49.5 + pos: 21.5,-43.5 parent: 2 - - uid: 7586 + - uid: 24709 components: - type: Transform - pos: -11.5,-49.5 + pos: 21.5,-44.5 parent: 2 - - uid: 7587 + - uid: 24760 components: - type: Transform - pos: -12.5,-49.5 + pos: 21.5,-45.5 parent: 2 - - uid: 7588 + - uid: 24761 components: - type: Transform - pos: -12.5,-48.5 + pos: 21.5,-46.5 parent: 2 - - uid: 7589 + - uid: 24762 components: - type: Transform - pos: -12.5,-47.5 + pos: 21.5,-30.5 parent: 2 - - uid: 7590 + - uid: 24763 components: - type: Transform - pos: -12.5,-46.5 + pos: 21.5,-29.5 parent: 2 - - uid: 7591 + - uid: 24764 components: - type: Transform - pos: -12.5,-45.5 + pos: 21.5,-28.5 parent: 2 - - uid: 7592 + - uid: 26034 components: - type: Transform - pos: -2.5,-45.5 + pos: -11.5,-10.5 parent: 2 - - uid: 7593 + - uid: 26035 components: - type: Transform - pos: -2.5,-44.5 + pos: -9.5,-10.5 parent: 2 - - uid: 7594 + - uid: 26038 components: - type: Transform - pos: -2.5,-43.5 + pos: -13.5,-10.5 parent: 2 - - uid: 7595 + - uid: 26149 components: - type: Transform - pos: -1.5,-43.5 + pos: -12.5,-10.5 parent: 2 - - uid: 7596 + - uid: 26332 components: - type: Transform - pos: -0.5,-43.5 + pos: -10.5,-10.5 parent: 2 - - uid: 7597 + - uid: 26586 components: - type: Transform - pos: -0.5,-44.5 + pos: -8.5,-10.5 parent: 2 - - uid: 7598 + - uid: 26587 components: - type: Transform - pos: 25.5,-31.5 + pos: -7.5,-10.5 parent: 2 - - uid: 7599 + - uid: 26588 components: - type: Transform - pos: 26.5,-29.5 + pos: -6.5,-10.5 parent: 2 - - uid: 7600 + - uid: 26589 components: - type: Transform - pos: 25.5,-29.5 + pos: -5.5,-10.5 parent: 2 - - uid: 7601 + - uid: 26590 components: - type: Transform - pos: -27.5,-42.5 + pos: -4.5,-10.5 parent: 2 - - uid: 7602 + - uid: 26591 components: - type: Transform - pos: -27.5,-41.5 + pos: -3.5,-10.5 parent: 2 - - uid: 7603 + - uid: 26592 components: - type: Transform - pos: -27.5,-40.5 + pos: -2.5,-10.5 parent: 2 - - uid: 7604 + - uid: 26598 components: - type: Transform - pos: -62.5,-18.5 + pos: -2.5,-11.5 parent: 2 - - uid: 7605 + - uid: 27718 components: - type: Transform - pos: -62.5,-19.5 + pos: 0.5,0.5 parent: 2 - - uid: 7606 + - uid: 27820 components: - type: Transform - pos: -62.5,-20.5 + pos: 24.5,18.5 parent: 2 - - uid: 7607 + - uid: 28780 components: - type: Transform - pos: 50.5,18.5 + pos: 28.5,-29.5 parent: 2 - - uid: 7608 + - uid: 29115 components: - type: Transform - pos: 51.5,18.5 + pos: 85.5,-49.5 parent: 2 - - uid: 7609 + - uid: 29222 components: - type: Transform - pos: 52.5,18.5 + pos: -1.5,-72.5 parent: 2 - - uid: 7610 + - uid: 29224 components: - type: Transform - pos: 53.5,18.5 + pos: -0.5,-69.5 parent: 2 - - uid: 7611 + - uid: 29225 components: - type: Transform - pos: 54.5,18.5 + pos: -1.5,-69.5 parent: 2 - - uid: 7612 + - uid: 29226 components: - type: Transform - pos: 54.5,17.5 + pos: -2.5,-69.5 parent: 2 - - uid: 7613 + - uid: 29227 components: - type: Transform - pos: 49.5,22.5 + pos: -3.5,-69.5 parent: 2 - - uid: 7614 + - uid: 29228 components: - type: Transform - pos: 51.5,21.5 + pos: -4.5,-69.5 parent: 2 - - uid: 7615 + - uid: 29229 components: - type: Transform - pos: 51.5,20.5 + pos: 0.5,-67.5 parent: 2 - - uid: 7616 + - uid: 29230 components: - type: Transform - pos: 43.5,0.5 + pos: -3.5,-73.5 parent: 2 - - uid: 7617 + - uid: 29231 components: - type: Transform - pos: 43.5,1.5 + pos: -3.5,-72.5 parent: 2 - - uid: 7618 + - uid: 29239 components: - type: Transform - pos: 43.5,2.5 - parent: 2 - - uid: 7619 - components: - - type: Transform - pos: 43.5,3.5 - parent: 2 - - uid: 7620 - components: - - type: Transform - pos: 43.5,4.5 - parent: 2 - - uid: 7621 - components: - - type: Transform - pos: 43.5,5.5 - parent: 2 - - uid: 7622 - components: - - type: Transform - pos: 43.5,6.5 - parent: 2 - - uid: 7623 - components: - - type: Transform - pos: 43.5,7.5 - parent: 2 - - uid: 7624 - components: - - type: Transform - pos: 43.5,8.5 - parent: 2 - - uid: 7625 - components: - - type: Transform - pos: 43.5,9.5 - parent: 2 - - uid: 7626 - components: - - type: Transform - pos: 42.5,5.5 - parent: 2 - - uid: 7627 - components: - - type: Transform - pos: 41.5,5.5 - parent: 2 - - uid: 7628 - components: - - type: Transform - pos: 40.5,5.5 - parent: 2 - - uid: 7629 - components: - - type: Transform - pos: 42.5,2.5 - parent: 2 - - uid: 7630 - components: - - type: Transform - pos: 41.5,2.5 - parent: 2 - - uid: 7631 - components: - - type: Transform - pos: 40.5,2.5 - parent: 2 - - uid: 7632 - components: - - type: Transform - pos: 44.5,6.5 - parent: 2 - - uid: 7633 - components: - - type: Transform - pos: 45.5,6.5 - parent: 2 - - uid: 7634 - components: - - type: Transform - pos: 46.5,6.5 - parent: 2 - - uid: 7635 - components: - - type: Transform - pos: 47.5,6.5 - parent: 2 - - uid: 7636 - components: - - type: Transform - pos: 47.5,7.5 - parent: 2 - - uid: 7637 - components: - - type: Transform - pos: 47.5,8.5 - parent: 2 - - uid: 7638 - components: - - type: Transform - pos: 47.5,9.5 - parent: 2 - - uid: 7639 - components: - - type: Transform - pos: 44.5,4.5 - parent: 2 - - uid: 7640 - components: - - type: Transform - pos: 45.5,4.5 - parent: 2 - - uid: 7641 - components: - - type: Transform - pos: 46.5,4.5 - parent: 2 - - uid: 7642 - components: - - type: Transform - pos: 47.5,4.5 - parent: 2 - - uid: 7643 - components: - - type: Transform - pos: 48.5,4.5 - parent: 2 - - uid: 7644 - components: - - type: Transform - pos: 44.5,1.5 - parent: 2 - - uid: 7645 - components: - - type: Transform - pos: 45.5,1.5 - parent: 2 - - uid: 7646 - components: - - type: Transform - pos: 46.5,1.5 - parent: 2 - - uid: 7647 - components: - - type: Transform - pos: 47.5,1.5 - parent: 2 - - uid: 7648 - components: - - type: Transform - pos: 47.5,-2.5 - parent: 2 - - uid: 7649 - components: - - type: Transform - pos: 42.5,-4.5 - parent: 2 - - uid: 7650 - components: - - type: Transform - pos: 41.5,-4.5 - parent: 2 - - uid: 7651 - components: - - type: Transform - pos: 39.5,-22.5 - parent: 2 - - uid: 7652 - components: - - type: Transform - pos: 39.5,-23.5 - parent: 2 - - uid: 7653 - components: - - type: Transform - pos: 39.5,-24.5 - parent: 2 - - uid: 7654 - components: - - type: Transform - pos: 38.5,-24.5 - parent: 2 - - uid: 7655 - components: - - type: Transform - pos: 38.5,-25.5 - parent: 2 - - uid: 7656 - components: - - type: Transform - pos: 38.5,-26.5 - parent: 2 - - uid: 7657 - components: - - type: Transform - pos: 38.5,-27.5 - parent: 2 - - uid: 7658 - components: - - type: Transform - pos: 40.5,-24.5 - parent: 2 - - uid: 7659 - components: - - type: Transform - pos: 41.5,-24.5 - parent: 2 - - uid: 7660 - components: - - type: Transform - pos: 39.5,-27.5 - parent: 2 - - uid: 7661 - components: - - type: Transform - pos: 40.5,-27.5 - parent: 2 - - uid: 7662 - components: - - type: Transform - pos: 48.5,-20.5 - parent: 2 - - uid: 7663 - components: - - type: Transform - pos: 48.5,-21.5 - parent: 2 - - uid: 7664 - components: - - type: Transform - pos: 48.5,-22.5 - parent: 2 - - uid: 7665 - components: - - type: Transform - pos: 48.5,-23.5 - parent: 2 - - uid: 7666 - components: - - type: Transform - pos: 48.5,-24.5 - parent: 2 - - uid: 7667 - components: - - type: Transform - pos: 63.5,-14.5 - parent: 2 - - uid: 7668 - components: - - type: Transform - pos: 48.5,-25.5 - parent: 2 - - uid: 7669 - components: - - type: Transform - pos: 63.5,-16.5 - parent: 2 - - uid: 7670 - components: - - type: Transform - pos: 63.5,-15.5 - parent: 2 - - uid: 7671 - components: - - type: Transform - pos: 66.5,0.5 - parent: 2 - - uid: 7672 - components: - - type: Transform - pos: 66.5,1.5 - parent: 2 - - uid: 7673 - components: - - type: Transform - pos: 63.5,-1.5 - parent: 2 - - uid: 7674 - components: - - type: Transform - pos: 63.5,-0.5 - parent: 2 - - uid: 7675 - components: - - type: Transform - pos: 63.5,0.5 - parent: 2 - - uid: 7676 - components: - - type: Transform - pos: 63.5,-4.5 - parent: 2 - - uid: 7677 - components: - - type: Transform - pos: 65.5,-4.5 - parent: 2 - - uid: 7678 - components: - - type: Transform - pos: 47.5,22.5 - parent: 2 - - uid: 7679 - components: - - type: Transform - pos: 48.5,22.5 - parent: 2 - - uid: 7681 - components: - - type: Transform - pos: 80.5,-7.5 - parent: 2 - - uid: 7682 - components: - - type: Transform - pos: 79.5,-7.5 - parent: 2 - - uid: 7683 - components: - - type: Transform - pos: 78.5,-7.5 - parent: 2 - - uid: 7684 - components: - - type: Transform - pos: 77.5,-7.5 - parent: 2 - - uid: 7685 - components: - - type: Transform - pos: 76.5,-7.5 - parent: 2 - - uid: 7686 - components: - - type: Transform - pos: 75.5,-7.5 - parent: 2 - - uid: 7687 - components: - - type: Transform - pos: 74.5,-7.5 - parent: 2 - - uid: 7688 - components: - - type: Transform - pos: 73.5,-7.5 - parent: 2 - - uid: 7689 - components: - - type: Transform - pos: 72.5,-7.5 - parent: 2 - - uid: 7690 - components: - - type: Transform - pos: 71.5,-7.5 - parent: 2 - - uid: 7691 - components: - - type: Transform - pos: 74.5,1.5 - parent: 2 - - uid: 7692 - components: - - type: Transform - pos: 45.5,-9.5 - parent: 2 - - uid: 7693 - components: - - type: Transform - pos: 46.5,-9.5 - parent: 2 - - uid: 7694 - components: - - type: Transform - pos: 47.5,-9.5 - parent: 2 - - uid: 7695 - components: - - type: Transform - pos: 48.5,-9.5 - parent: 2 - - uid: 7696 - components: - - type: Transform - pos: 51.5,11.5 - parent: 2 - - uid: 7697 - components: - - type: Transform - pos: 51.5,13.5 - parent: 2 - - uid: 7698 - components: - - type: Transform - pos: 52.5,10.5 - parent: 2 - - uid: 7699 - components: - - type: Transform - pos: 53.5,10.5 - parent: 2 - - uid: 7700 - components: - - type: Transform - pos: 52.5,12.5 - parent: 2 - - uid: 7701 - components: - - type: Transform - pos: 51.5,14.5 - parent: 2 - - uid: 7702 - components: - - type: Transform - pos: 50.5,14.5 - parent: 2 - - uid: 7703 - components: - - type: Transform - pos: 49.5,14.5 - parent: 2 - - uid: 7704 - components: - - type: Transform - pos: 48.5,14.5 - parent: 2 - - uid: 7705 - components: - - type: Transform - pos: 48.5,15.5 - parent: 2 - - uid: 7706 - components: - - type: Transform - pos: 47.5,15.5 - parent: 2 - - uid: 7707 - components: - - type: Transform - pos: 48.5,13.5 - parent: 2 - - uid: 7708 - components: - - type: Transform - pos: 48.5,12.5 - parent: 2 - - uid: 7709 - components: - - type: Transform - pos: 47.5,12.5 - parent: 2 - - uid: 7710 - components: - - type: Transform - pos: 46.5,12.5 - parent: 2 - - uid: 7711 - components: - - type: Transform - pos: 45.5,12.5 - parent: 2 - - uid: 7712 - components: - - type: Transform - pos: 44.5,12.5 - parent: 2 - - uid: 7713 - components: - - type: Transform - pos: 43.5,12.5 - parent: 2 - - uid: 7714 - components: - - type: Transform - pos: 43.5,13.5 - parent: 2 - - uid: 7715 - components: - - type: Transform - pos: 43.5,14.5 - parent: 2 - - uid: 7716 - components: - - type: Transform - pos: 43.5,15.5 - parent: 2 - - uid: 7717 - components: - - type: Transform - pos: 51.5,15.5 - parent: 2 - - uid: 7718 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 7719 - components: - - type: Transform - pos: 52.5,13.5 - parent: 2 - - uid: 7720 - components: - - type: Transform - pos: 54.5,16.5 - parent: 2 - - uid: 7721 - components: - - type: Transform - pos: 54.5,15.5 - parent: 2 - - uid: 7722 - components: - - type: Transform - pos: 54.5,14.5 - parent: 2 - - uid: 7723 - components: - - type: Transform - pos: 52.5,-8.5 - parent: 2 - - uid: 7724 - components: - - type: Transform - pos: 52.5,-9.5 - parent: 2 - - uid: 7725 - components: - - type: Transform - pos: 52.5,-10.5 - parent: 2 - - uid: 7726 - components: - - type: Transform - pos: 52.5,-11.5 - parent: 2 - - uid: 7727 - components: - - type: Transform - pos: 52.5,-12.5 - parent: 2 - - uid: 7728 - components: - - type: Transform - pos: 52.5,-13.5 - parent: 2 - - uid: 7729 - components: - - type: Transform - pos: 52.5,-14.5 - parent: 2 - - uid: 7730 - components: - - type: Transform - pos: 37.5,-24.5 - parent: 2 - - uid: 7731 - components: - - type: Transform - pos: 36.5,-24.5 - parent: 2 - - uid: 7732 - components: - - type: Transform - pos: 111.5,-37.5 - parent: 2 - - uid: 7733 - components: - - type: Transform - pos: 111.5,-38.5 - parent: 2 - - uid: 7734 - components: - - type: Transform - pos: 112.5,-40.5 - parent: 2 - - uid: 7735 - components: - - type: Transform - pos: 113.5,-40.5 - parent: 2 - - uid: 7736 - components: - - type: Transform - pos: 114.5,-40.5 - parent: 2 - - uid: 7737 - components: - - type: Transform - pos: 115.5,-40.5 - parent: 2 - - uid: 7738 - components: - - type: Transform - pos: 116.5,-40.5 - parent: 2 - - uid: 7739 - components: - - type: Transform - pos: 117.5,-40.5 - parent: 2 - - uid: 7740 - components: - - type: Transform - pos: 118.5,-40.5 - parent: 2 - - uid: 7741 - components: - - type: Transform - pos: 119.5,-40.5 - parent: 2 - - uid: 7742 - components: - - type: Transform - pos: 120.5,-40.5 - parent: 2 - - uid: 7743 - components: - - type: Transform - pos: 121.5,-40.5 - parent: 2 - - uid: 7744 - components: - - type: Transform - pos: 122.5,-40.5 - parent: 2 - - uid: 7745 - components: - - type: Transform - pos: 123.5,-40.5 - parent: 2 - - uid: 7746 - components: - - type: Transform - pos: 124.5,-40.5 - parent: 2 - - uid: 7747 - components: - - type: Transform - pos: 125.5,-40.5 - parent: 2 - - uid: 7748 - components: - - type: Transform - pos: 126.5,-40.5 - parent: 2 - - uid: 7749 - components: - - type: Transform - pos: 127.5,-40.5 - parent: 2 - - uid: 7750 - components: - - type: Transform - pos: 128.5,-40.5 - parent: 2 - - uid: 7751 - components: - - type: Transform - pos: 129.5,-40.5 - parent: 2 - - uid: 7752 - components: - - type: Transform - pos: 130.5,-40.5 - parent: 2 - - uid: 7753 - components: - - type: Transform - pos: 131.5,-40.5 - parent: 2 - - uid: 7754 - components: - - type: Transform - pos: 132.5,-40.5 - parent: 2 - - uid: 7755 - components: - - type: Transform - pos: 110.5,-39.5 - parent: 2 - - uid: 7756 - components: - - type: Transform - pos: 110.5,-40.5 - parent: 2 - - uid: 7757 - components: - - type: Transform - pos: 110.5,-42.5 - parent: 2 - - uid: 7758 - components: - - type: Transform - pos: 110.5,-38.5 - parent: 2 - - uid: 7759 - components: - - type: Transform - pos: 110.5,-41.5 - parent: 2 - - uid: 7760 - components: - - type: Transform - pos: 112.5,-38.5 - parent: 2 - - uid: 7761 - components: - - type: Transform - pos: 112.5,-39.5 - parent: 2 - - uid: 7762 - components: - - type: Transform - pos: -17.5,8.5 - parent: 2 - - uid: 7763 - components: - - type: Transform - pos: -17.5,7.5 - parent: 2 - - uid: 7764 - components: - - type: Transform - pos: -16.5,6.5 - parent: 2 - - uid: 7765 - components: - - type: Transform - pos: -16.5,7.5 - parent: 2 - - uid: 7766 - components: - - type: Transform - pos: -16.5,5.5 - parent: 2 - - uid: 7767 - components: - - type: Transform - pos: -16.5,4.5 - parent: 2 - - uid: 7768 - components: - - type: Transform - pos: -16.5,3.5 - parent: 2 - - uid: 7769 - components: - - type: Transform - pos: -14.5,7.5 - parent: 2 - - uid: 7770 - components: - - type: Transform - pos: -15.5,7.5 - parent: 2 - - uid: 7771 - components: - - type: Transform - pos: -15.5,8.5 - parent: 2 - - uid: 7772 - components: - - type: Transform - pos: -15.5,9.5 - parent: 2 - - uid: 7773 - components: - - type: Transform - pos: -15.5,10.5 - parent: 2 - - uid: 7774 - components: - - type: Transform - pos: -16.5,10.5 - parent: 2 - - uid: 7775 - components: - - type: Transform - pos: -17.5,10.5 - parent: 2 - - uid: 7776 - components: - - type: Transform - pos: -13.5,7.5 - parent: 2 - - uid: 7777 - components: - - type: Transform - pos: -13.5,6.5 - parent: 2 - - uid: 7874 - components: - - type: Transform - pos: -64.5,3.5 - parent: 2 - - uid: 11480 - components: - - type: Transform - pos: -79.5,-4.5 - parent: 2 - - uid: 11651 - components: - - type: Transform - pos: 46.5,24.5 - parent: 2 - - uid: 11675 - components: - - type: Transform - pos: 85.5,-46.5 - parent: 2 - - uid: 11686 - components: - - type: Transform - pos: -82.5,-2.5 - parent: 2 - - uid: 12376 - components: - - type: Transform - pos: 85.5,-52.5 - parent: 2 - - uid: 13097 - components: - - type: Transform - pos: 81.5,5.5 - parent: 2 - - uid: 13350 - components: - - type: Transform - pos: 45.5,24.5 + pos: -1.5,-10.5 parent: 2 - - uid: 13357 + - uid: 29240 components: - type: Transform - pos: 26.5,17.5 + pos: -0.5,-10.5 parent: 2 - - uid: 13448 + - uid: 29241 components: - type: Transform - pos: 54.5,-48.5 + pos: 0.5,-10.5 parent: 2 - - uid: 14513 + - uid: 29242 components: - type: Transform - pos: 30.5,20.5 + pos: 0.5,-9.5 parent: 2 - - uid: 14922 + - uid: 29243 components: - type: Transform - pos: 46.5,25.5 + pos: 0.5,-8.5 parent: 2 - - uid: 15309 + - uid: 29244 components: - type: Transform - pos: 85.5,-50.5 + pos: 0.5,-7.5 parent: 2 - - uid: 15726 + - uid: 29245 components: - type: Transform - pos: 0.5,-0.5 + pos: 0.5,-6.5 parent: 2 - - uid: 16798 + - uid: 29246 components: - type: Transform - pos: 30.5,19.5 + pos: 0.5,-5.5 parent: 2 - - uid: 27718 + - uid: 29247 components: - type: Transform - pos: 0.5,0.5 + pos: 0.5,-4.5 parent: 2 - - uid: 27820 + - uid: 29248 components: - type: Transform - pos: 24.5,18.5 + pos: 1.5,-10.5 parent: 2 - - uid: 28780 + - uid: 29249 components: - type: Transform - pos: 28.5,-29.5 + pos: 2.5,-10.5 parent: 2 - - uid: 29115 + - uid: 29250 components: - type: Transform - pos: 85.5,-49.5 + pos: 3.5,-10.5 parent: 2 - uid: 32700 components: @@ -66302,11 +64601,6 @@ entities: - type: Transform pos: 101.5,-80.5 parent: 2 - - uid: 7799 - components: - - type: Transform - pos: -0.5112078,-70.54928 - parent: 2 - uid: 40950 components: - type: Transform @@ -66462,6 +64756,16 @@ entities: parent: 2 - proto: CableHV entities: + - uid: 1881 + components: + - type: Transform + pos: -8.5,-56.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 2 - uid: 6123 components: - type: Transform @@ -66482,6 +64786,16 @@ entities: - type: Transform pos: -27.5,-100.5 parent: 2 + - uid: 7463 + components: + - type: Transform + pos: -10.5,-58.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + pos: -8.5,-58.5 + parent: 2 - uid: 7823 components: - type: Transform @@ -67890,33 +66204,13 @@ entities: - uid: 8105 components: - type: Transform - pos: -4.5,-70.5 - parent: 2 - - uid: 8106 - components: - - type: Transform - pos: -3.5,-70.5 - parent: 2 - - uid: 8107 - components: - - type: Transform - pos: -2.5,-70.5 + pos: -9.5,-58.5 parent: 2 - uid: 8108 components: - type: Transform pos: 3.5,-70.5 parent: 2 - - uid: 8109 - components: - - type: Transform - pos: -2.5,-69.5 - parent: 2 - - uid: 8110 - components: - - type: Transform - pos: -1.5,-69.5 - parent: 2 - uid: 8111 components: - type: Transform @@ -76757,11 +75051,6 @@ entities: - type: Transform pos: 5.5,-6.5 parent: 2 - - uid: 9902 - components: - - type: Transform - pos: 1.5,-45.5 - parent: 2 - uid: 9903 components: - type: Transform @@ -76932,756 +75221,6 @@ entities: - type: Transform pos: 69.5,-14.5 parent: 2 - - uid: 9937 - components: - - type: Transform - pos: -8.5,-46.5 - parent: 2 - - uid: 9938 - components: - - type: Transform - pos: -7.5,-46.5 - parent: 2 - - uid: 9939 - components: - - type: Transform - pos: -6.5,-46.5 - parent: 2 - - uid: 9940 - components: - - type: Transform - pos: -3.5,-46.5 - parent: 2 - - uid: 9941 - components: - - type: Transform - pos: -1.5,-47.5 - parent: 2 - - uid: 9942 - components: - - type: Transform - pos: -1.5,-45.5 - parent: 2 - - uid: 9943 - components: - - type: Transform - pos: -9.5,-46.5 - parent: 2 - - uid: 9944 - components: - - type: Transform - pos: -9.5,-47.5 - parent: 2 - - uid: 9945 - components: - - type: Transform - pos: -9.5,-48.5 - parent: 2 - - uid: 9946 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 2 - - uid: 9947 - components: - - type: Transform - pos: -3.5,-45.5 - parent: 2 - - uid: 9948 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 2 - - uid: 9949 - components: - - type: Transform - pos: -1.5,-49.5 - parent: 2 - - uid: 9950 - components: - - type: Transform - pos: -2.5,-49.5 - parent: 2 - - uid: 9951 - components: - - type: Transform - pos: -4.5,-49.5 - parent: 2 - - uid: 9952 - components: - - type: Transform - pos: -5.5,-49.5 - parent: 2 - - uid: 9953 - components: - - type: Transform - pos: -6.5,-49.5 - parent: 2 - - uid: 9954 - components: - - type: Transform - pos: -7.5,-49.5 - parent: 2 - - uid: 9955 - components: - - type: Transform - pos: -8.5,-49.5 - parent: 2 - - uid: 9956 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 2 - - uid: 9957 - components: - - type: Transform - pos: 0.5,-45.5 - parent: 2 - - uid: 9958 - components: - - type: Transform - pos: -0.5,-45.5 - parent: 2 - - uid: 9959 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 2 - - uid: 9960 - components: - - type: Transform - pos: 5.5,-43.5 - parent: 2 - - uid: 9961 - components: - - type: Transform - pos: 5.5,-42.5 - parent: 2 - - uid: 9962 - components: - - type: Transform - pos: 5.5,-41.5 - parent: 2 - - uid: 9963 - components: - - type: Transform - pos: 5.5,-40.5 - parent: 2 - - uid: 9964 - components: - - type: Transform - pos: 6.5,-40.5 - parent: 2 - - uid: 9965 - components: - - type: Transform - pos: 7.5,-40.5 - parent: 2 - - uid: 9966 - components: - - type: Transform - pos: 8.5,-40.5 - parent: 2 - - uid: 9967 - components: - - type: Transform - pos: 9.5,-40.5 - parent: 2 - - uid: 9968 - components: - - type: Transform - pos: 9.5,-41.5 - parent: 2 - - uid: 9969 - components: - - type: Transform - pos: 10.5,-41.5 - parent: 2 - - uid: 9970 - components: - - type: Transform - pos: 11.5,-41.5 - parent: 2 - - uid: 9971 - components: - - type: Transform - pos: 12.5,-41.5 - parent: 2 - - uid: 9972 - components: - - type: Transform - pos: 13.5,-41.5 - parent: 2 - - uid: 9973 - components: - - type: Transform - pos: 14.5,-41.5 - parent: 2 - - uid: 9974 - components: - - type: Transform - pos: 15.5,-41.5 - parent: 2 - - uid: 9975 - components: - - type: Transform - pos: 16.5,-41.5 - parent: 2 - - uid: 9976 - components: - - type: Transform - pos: 17.5,-41.5 - parent: 2 - - uid: 9977 - components: - - type: Transform - pos: 18.5,-41.5 - parent: 2 - - uid: 9978 - components: - - type: Transform - pos: 18.5,-42.5 - parent: 2 - - uid: 9979 - components: - - type: Transform - pos: 18.5,-43.5 - parent: 2 - - uid: 9980 - components: - - type: Transform - pos: 18.5,-44.5 - parent: 2 - - uid: 9981 - components: - - type: Transform - pos: 18.5,-45.5 - parent: 2 - - uid: 9982 - components: - - type: Transform - pos: 18.5,-46.5 - parent: 2 - - uid: 9983 - components: - - type: Transform - pos: 17.5,-46.5 - parent: 2 - - uid: 9984 - components: - - type: Transform - pos: 16.5,-46.5 - parent: 2 - - uid: 9985 - components: - - type: Transform - pos: 15.5,-46.5 - parent: 2 - - uid: 9986 - components: - - type: Transform - pos: 14.5,-46.5 - parent: 2 - - uid: 9987 - components: - - type: Transform - pos: 14.5,-47.5 - parent: 2 - - uid: 9988 - components: - - type: Transform - pos: 13.5,-47.5 - parent: 2 - - uid: 9989 - components: - - type: Transform - pos: 12.5,-47.5 - parent: 2 - - uid: 9990 - components: - - type: Transform - pos: 11.5,-47.5 - parent: 2 - - uid: 9991 - components: - - type: Transform - pos: 10.5,-47.5 - parent: 2 - - uid: 9992 - components: - - type: Transform - pos: 9.5,-47.5 - parent: 2 - - uid: 9993 - components: - - type: Transform - pos: 8.5,-47.5 - parent: 2 - - uid: 9994 - components: - - type: Transform - pos: 7.5,-47.5 - parent: 2 - - uid: 9995 - components: - - type: Transform - pos: 6.5,-47.5 - parent: 2 - - uid: 9996 - components: - - type: Transform - pos: 6.5,-46.5 - parent: 2 - - uid: 9997 - components: - - type: Transform - pos: 5.5,-39.5 - parent: 2 - - uid: 9998 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 2 - - uid: 9999 - components: - - type: Transform - pos: 5.5,-37.5 - parent: 2 - - uid: 10000 - components: - - type: Transform - pos: 5.5,-36.5 - parent: 2 - - uid: 10001 - components: - - type: Transform - pos: 5.5,-35.5 - parent: 2 - - uid: 10002 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 2 - - uid: 10003 - components: - - type: Transform - pos: 5.5,-33.5 - parent: 2 - - uid: 10004 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 2 - - uid: 10005 - components: - - type: Transform - pos: 5.5,-31.5 - parent: 2 - - uid: 10006 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 2 - - uid: 10007 - components: - - type: Transform - pos: 5.5,-29.5 - parent: 2 - - uid: 10008 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 2 - - uid: 10009 - components: - - type: Transform - pos: 5.5,-27.5 - parent: 2 - - uid: 10010 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 2 - - uid: 10011 - components: - - type: Transform - pos: 5.5,-25.5 - parent: 2 - - uid: 10012 - components: - - type: Transform - pos: 5.5,-24.5 - parent: 2 - - uid: 10013 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 2 - - uid: 10014 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 2 - - uid: 10015 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 2 - - uid: 10016 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 2 - - uid: 10017 - components: - - type: Transform - pos: 5.5,-19.5 - parent: 2 - - uid: 10018 - components: - - type: Transform - pos: 4.5,-19.5 - parent: 2 - - uid: 10019 - components: - - type: Transform - pos: 3.5,-19.5 - parent: 2 - - uid: 10020 - components: - - type: Transform - pos: 2.5,-19.5 - parent: 2 - - uid: 10021 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 2 - - uid: 10022 - components: - - type: Transform - pos: 0.5,-19.5 - parent: 2 - - uid: 10023 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 2 - - uid: 10024 - components: - - type: Transform - pos: -1.5,-19.5 - parent: 2 - - uid: 10025 - components: - - type: Transform - pos: -2.5,-19.5 - parent: 2 - - uid: 10026 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 2 - - uid: 10027 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 2 - - uid: 10028 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 2 - - uid: 10029 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 2 - - uid: 10030 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 2 - - uid: 10031 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 2 - - uid: 10032 - components: - - type: Transform - pos: -7.5,-17.5 - parent: 2 - - uid: 10033 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 2 - - uid: 10034 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 2 - - uid: 10035 - components: - - type: Transform - pos: -10.5,-17.5 - parent: 2 - - uid: 10036 - components: - - type: Transform - pos: -11.5,-17.5 - parent: 2 - - uid: 10037 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 2 - - uid: 10038 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 2 - - uid: 10039 - components: - - type: Transform - pos: -14.5,-17.5 - parent: 2 - - uid: 10040 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 2 - - uid: 10041 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 2 - - uid: 10042 - components: - - type: Transform - pos: -15.5,-19.5 - parent: 2 - - uid: 10043 - components: - - type: Transform - pos: -15.5,-20.5 - parent: 2 - - uid: 10044 - components: - - type: Transform - pos: -15.5,-21.5 - parent: 2 - - uid: 10045 - components: - - type: Transform - pos: -15.5,-22.5 - parent: 2 - - uid: 10046 - components: - - type: Transform - pos: -15.5,-23.5 - parent: 2 - - uid: 10047 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 2 - - uid: 10048 - components: - - type: Transform - pos: -14.5,-24.5 - parent: 2 - - uid: 10049 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 2 - - uid: 10050 - components: - - type: Transform - pos: -12.5,-24.5 - parent: 2 - - uid: 10051 - components: - - type: Transform - pos: -11.5,-24.5 - parent: 2 - - uid: 10052 - components: - - type: Transform - pos: -11.5,-23.5 - parent: 2 - - uid: 10053 - components: - - type: Transform - pos: -11.5,-22.5 - parent: 2 - - uid: 10054 - components: - - type: Transform - pos: -11.5,-21.5 - parent: 2 - - uid: 10055 - components: - - type: Transform - pos: 6.5,-32.5 - parent: 2 - - uid: 10056 - components: - - type: Transform - pos: 7.5,-32.5 - parent: 2 - - uid: 10057 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 2 - - uid: 10058 - components: - - type: Transform - pos: 9.5,-32.5 - parent: 2 - - uid: 10059 - components: - - type: Transform - pos: 10.5,-32.5 - parent: 2 - - uid: 10060 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 2 - - uid: 10061 - components: - - type: Transform - pos: 12.5,-32.5 - parent: 2 - - uid: 10062 - components: - - type: Transform - pos: 13.5,-32.5 - parent: 2 - - uid: 10063 - components: - - type: Transform - pos: 14.5,-32.5 - parent: 2 - - uid: 10064 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 2 - - uid: 10065 - components: - - type: Transform - pos: 15.5,-31.5 - parent: 2 - - uid: 10066 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 2 - - uid: 10067 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 2 - - uid: 10068 - components: - - type: Transform - pos: 15.5,-28.5 - parent: 2 - - uid: 10069 - components: - - type: Transform - pos: 14.5,-28.5 - parent: 2 - - uid: 10070 - components: - - type: Transform - pos: 13.5,-28.5 - parent: 2 - - uid: 10071 - components: - - type: Transform - pos: 12.5,-28.5 - parent: 2 - - uid: 10072 - components: - - type: Transform - pos: 12.5,-29.5 - parent: 2 - - uid: 10073 - components: - - type: Transform - pos: -4.5,-47.5 - parent: 2 - - uid: 10074 - components: - - type: Transform - pos: -5.5,-47.5 - parent: 2 - - uid: 10075 - components: - - type: Transform - pos: -3.5,-47.5 - parent: 2 - - uid: 10076 - components: - - type: Transform - pos: -5.5,-46.5 - parent: 2 - - uid: 10077 - components: - - type: Transform - pos: -4.5,-50.5 - parent: 2 - - uid: 10078 - components: - - type: Transform - pos: -4.5,-51.5 - parent: 2 - - uid: 10079 - components: - - type: Transform - pos: -4.5,-52.5 - parent: 2 - - uid: 10080 - components: - - type: Transform - pos: -3.5,-52.5 - parent: 2 - - uid: 10081 - components: - - type: Transform - pos: -2.5,-52.5 - parent: 2 - - uid: 10082 - components: - - type: Transform - pos: -1.5,-52.5 - parent: 2 - - uid: 10083 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 2 - - uid: 10084 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 2 - - uid: 10085 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 2 - - uid: 10086 - components: - - type: Transform - pos: -0.5,-49.5 - parent: 2 - uid: 10087 components: - type: Transform @@ -77697,26 +75236,6 @@ entities: - type: Transform pos: 69.5,-12.5 parent: 2 - - uid: 10090 - components: - - type: Transform - pos: 2.5,-45.5 - parent: 2 - - uid: 10091 - components: - - type: Transform - pos: 3.5,-45.5 - parent: 2 - - uid: 10092 - components: - - type: Transform - pos: 4.5,-45.5 - parent: 2 - - uid: 10093 - components: - - type: Transform - pos: 5.5,-45.5 - parent: 2 - uid: 10094 components: - type: Transform @@ -77762,11 +75281,146 @@ entities: - type: Transform pos: 44.5,14.5 parent: 2 + - uid: 15604 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 16500 + components: + - type: Transform + pos: -11.5,-60.5 + parent: 2 - uid: 17871 components: - type: Transform pos: 29.5,24.5 parent: 2 + - uid: 18258 + components: + - type: Transform + pos: -7.5,-53.5 + parent: 2 + - uid: 18653 + components: + - type: Transform + pos: -9.5,-60.5 + parent: 2 + - uid: 18654 + components: + - type: Transform + pos: -8.5,-60.5 + parent: 2 + - uid: 18655 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 18656 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 2 + - uid: 18657 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 2 + - uid: 18697 + components: + - type: Transform + pos: -6.5,-58.5 + parent: 2 + - uid: 18698 + components: + - type: Transform + pos: -6.5,-57.5 + parent: 2 + - uid: 18699 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 2 + - uid: 18740 + components: + - type: Transform + pos: -7.5,-55.5 + parent: 2 + - uid: 19769 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 + - uid: 19789 + components: + - type: Transform + pos: -11.5,-55.5 + parent: 2 + - uid: 19790 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 2 + - uid: 19791 + components: + - type: Transform + pos: -11.5,-57.5 + parent: 2 + - uid: 19793 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 19795 + components: + - type: Transform + pos: -11.5,-59.5 + parent: 2 + - uid: 19809 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 19810 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 2 + - uid: 19812 + components: + - type: Transform + pos: -7.5,-57.5 + parent: 2 + - uid: 19813 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 2 + - uid: 19815 + components: + - type: Transform + pos: -12.5,-60.5 + parent: 2 + - uid: 19816 + components: + - type: Transform + pos: -12.5,-59.5 + parent: 2 + - uid: 19817 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 2 + - uid: 19818 + components: + - type: Transform + pos: -12.5,-57.5 + parent: 2 + - uid: 19819 + components: + - type: Transform + pos: -12.5,-56.5 + parent: 2 - uid: 19890 components: - type: Transform @@ -78693,6 +76347,26 @@ entities: - type: Transform pos: -7.5,-96.5 parent: 2 + - uid: 1420 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 - uid: 2387 components: - type: Transform @@ -78738,11 +76412,26 @@ entities: - type: Transform pos: -64.5,3.5 parent: 2 + - uid: 6276 + components: + - type: Transform + pos: 0.5,-74.5 + parent: 2 - uid: 6589 components: - type: Transform pos: 34.5,18.5 parent: 2 + - uid: 7588 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 - uid: 7788 components: - type: Transform @@ -86723,21 +84412,11 @@ entities: - type: Transform pos: -40.5,-26.5 parent: 2 - - uid: 11726 - components: - - type: Transform - pos: -0.5,-73.5 - parent: 2 - uid: 11727 components: - type: Transform pos: -0.5,-72.5 parent: 2 - - uid: 11728 - components: - - type: Transform - pos: -1.5,-72.5 - parent: 2 - uid: 11731 components: - type: Transform @@ -88963,555 +86642,10 @@ entities: - type: Transform pos: -53.5,-24.5 parent: 2 - - uid: 12188 - components: - - type: Transform - pos: -11.5,-21.5 - parent: 2 - uid: 12189 components: - type: Transform - pos: -11.5,-22.5 - parent: 2 - - uid: 12190 - components: - - type: Transform - pos: -11.5,-23.5 - parent: 2 - - uid: 12191 - components: - - type: Transform - pos: -11.5,-24.5 - parent: 2 - - uid: 12192 - components: - - type: Transform - pos: -10.5,-24.5 - parent: 2 - - uid: 12193 - components: - - type: Transform - pos: -9.5,-24.5 - parent: 2 - - uid: 12194 - components: - - type: Transform - pos: -12.5,-24.5 - parent: 2 - - uid: 12195 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 2 - - uid: 12196 - components: - - type: Transform - pos: -14.5,-24.5 - parent: 2 - - uid: 12197 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 2 - - uid: 12198 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 2 - - uid: 12199 - components: - - type: Transform - pos: -17.5,-24.5 - parent: 2 - - uid: 12200 - components: - - type: Transform - pos: -18.5,-24.5 - parent: 2 - - uid: 12201 - components: - - type: Transform - pos: -18.5,-23.5 - parent: 2 - - uid: 12202 - components: - - type: Transform - pos: -18.5,-22.5 - parent: 2 - - uid: 12203 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 2 - - uid: 12204 - components: - - type: Transform - pos: -18.5,-20.5 - parent: 2 - - uid: 12205 - components: - - type: Transform - pos: -15.5,-23.5 - parent: 2 - - uid: 12206 - components: - - type: Transform - pos: -15.5,-22.5 - parent: 2 - - uid: 12207 - components: - - type: Transform - pos: -15.5,-21.5 - parent: 2 - - uid: 12208 - components: - - type: Transform - pos: -15.5,-20.5 - parent: 2 - - uid: 12209 - components: - - type: Transform - pos: -15.5,-19.5 - parent: 2 - - uid: 12210 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 2 - - uid: 12211 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 2 - - uid: 12212 - components: - - type: Transform - pos: -14.5,-17.5 - parent: 2 - - uid: 12213 - components: - - type: Transform - pos: -13.5,-17.5 - parent: 2 - - uid: 12214 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 2 - - uid: 12215 - components: - - type: Transform - pos: -11.5,-17.5 - parent: 2 - - uid: 12216 - components: - - type: Transform - pos: -10.5,-17.5 - parent: 2 - - uid: 12217 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 2 - - uid: 12218 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 2 - - uid: 12219 - components: - - type: Transform - pos: -7.5,-17.5 - parent: 2 - - uid: 12220 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 2 - - uid: 12221 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 2 - - uid: 12222 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 2 - - uid: 12223 - components: - - type: Transform - pos: -4.5,-18.5 - parent: 2 - - uid: 12224 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 2 - - uid: 12225 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 2 - - uid: 12226 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 2 - - uid: 12227 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 2 - - uid: 12228 - components: - - type: Transform - pos: -11.5,-26.5 - parent: 2 - - uid: 12229 - components: - - type: Transform - pos: -11.5,-27.5 - parent: 2 - - uid: 12230 - components: - - type: Transform - pos: -11.5,-28.5 - parent: 2 - - uid: 12231 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 2 - - uid: 12232 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 2 - - uid: 12233 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 2 - - uid: 12234 - components: - - type: Transform - pos: -13.5,-30.5 - parent: 2 - - uid: 12235 - components: - - type: Transform - pos: -14.5,-30.5 - parent: 2 - - uid: 12236 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 2 - - uid: 12237 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 2 - - uid: 12238 - components: - - type: Transform - pos: -9.5,-30.5 - parent: 2 - - uid: 12239 - components: - - type: Transform - pos: -9.5,-31.5 - parent: 2 - - uid: 12240 - components: - - type: Transform - pos: 12.5,-29.5 - parent: 2 - - uid: 12241 - components: - - type: Transform - pos: 12.5,-28.5 - parent: 2 - - uid: 12242 - components: - - type: Transform - pos: 11.5,-28.5 - parent: 2 - - uid: 12243 - components: - - type: Transform - pos: 10.5,-28.5 - parent: 2 - - uid: 12244 - components: - - type: Transform - pos: 10.5,-27.5 - parent: 2 - - uid: 12245 - components: - - type: Transform - pos: 10.5,-26.5 - parent: 2 - - uid: 12246 - components: - - type: Transform - pos: 10.5,-25.5 - parent: 2 - - uid: 12247 - components: - - type: Transform - pos: 10.5,-24.5 - parent: 2 - - uid: 12248 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 2 - - uid: 12249 - components: - - type: Transform - pos: 10.5,-22.5 - parent: 2 - - uid: 12250 - components: - - type: Transform - pos: 10.5,-21.5 - parent: 2 - - uid: 12251 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 2 - - uid: 12252 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 2 - - uid: 12253 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 2 - - uid: 12254 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 2 - - uid: 12255 - components: - - type: Transform - pos: 10.5,-16.5 - parent: 2 - - uid: 12256 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 2 - - uid: 12257 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 2 - - uid: 12258 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 2 - - uid: 12259 - components: - - type: Transform - pos: 11.5,-13.5 - parent: 2 - - uid: 12260 - components: - - type: Transform - pos: 11.5,-12.5 - parent: 2 - - uid: 12261 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 2 - - uid: 12262 - components: - - type: Transform - pos: 13.5,-28.5 - parent: 2 - - uid: 12263 - components: - - type: Transform - pos: 14.5,-28.5 - parent: 2 - - uid: 12264 - components: - - type: Transform - pos: 15.5,-28.5 - parent: 2 - - uid: 12265 - components: - - type: Transform - pos: 16.5,-28.5 - parent: 2 - - uid: 12266 - components: - - type: Transform - pos: 17.5,-28.5 - parent: 2 - - uid: 12267 - components: - - type: Transform - pos: 18.5,-28.5 - parent: 2 - - uid: 12268 - components: - - type: Transform - pos: 19.5,-28.5 - parent: 2 - - uid: 12269 - components: - - type: Transform - pos: 19.5,-27.5 - parent: 2 - - uid: 12270 - components: - - type: Transform - pos: 19.5,-26.5 - parent: 2 - - uid: 12271 - components: - - type: Transform - pos: 19.5,-25.5 - parent: 2 - - uid: 12272 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 2 - - uid: 12273 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 2 - - uid: 12274 - components: - - type: Transform - pos: 17.5,-24.5 - parent: 2 - - uid: 12275 - components: - - type: Transform - pos: 17.5,-23.5 - parent: 2 - - uid: 12276 - components: - - type: Transform - pos: 17.5,-22.5 - parent: 2 - - uid: 12277 - components: - - type: Transform - pos: 17.5,-21.5 - parent: 2 - - uid: 12278 - components: - - type: Transform - pos: 18.5,-21.5 - parent: 2 - - uid: 12279 - components: - - type: Transform - pos: 6.5,-46.5 - parent: 2 - - uid: 12280 - components: - - type: Transform - pos: 6.5,-47.5 - parent: 2 - - uid: 12281 - components: - - type: Transform - pos: 5.5,-47.5 - parent: 2 - - uid: 12282 - components: - - type: Transform - pos: 4.5,-47.5 - parent: 2 - - uid: 12283 - components: - - type: Transform - pos: 4.5,-48.5 - parent: 2 - - uid: 12284 - components: - - type: Transform - pos: 4.5,-49.5 - parent: 2 - - uid: 12285 - components: - - type: Transform - pos: 7.5,-47.5 - parent: 2 - - uid: 12286 - components: - - type: Transform - pos: 8.5,-47.5 - parent: 2 - - uid: 12287 - components: - - type: Transform - pos: 9.5,-47.5 - parent: 2 - - uid: 12288 - components: - - type: Transform - pos: 10.5,-47.5 - parent: 2 - - uid: 12289 - components: - - type: Transform - pos: 11.5,-47.5 - parent: 2 - - uid: 12290 - components: - - type: Transform - pos: 12.5,-47.5 - parent: 2 - - uid: 12291 - components: - - type: Transform - pos: 13.5,-47.5 - parent: 2 - - uid: 12292 - components: - - type: Transform - pos: 14.5,-47.5 - parent: 2 - - uid: 12293 - components: - - type: Transform - pos: 14.5,-46.5 - parent: 2 - - uid: 12294 - components: - - type: Transform - pos: 15.5,-46.5 - parent: 2 - - uid: 12295 - components: - - type: Transform - pos: 16.5,-46.5 - parent: 2 - - uid: 12296 - components: - - type: Transform - pos: 18.5,-46.5 - parent: 2 - - uid: 12297 - components: - - type: Transform - pos: 18.5,-47.5 + pos: 14.5,-8.5 parent: 2 - uid: 12298 components: @@ -89783,21 +86917,6 @@ entities: - type: Transform pos: 57.5,5.5 parent: 2 - - uid: 12352 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 2 - - uid: 12353 - components: - - type: Transform - pos: -8.5,-49.5 - parent: 2 - - uid: 12354 - components: - - type: Transform - pos: -8.5,-50.5 - parent: 2 - uid: 12355 components: - type: Transform @@ -90273,6 +87392,21 @@ entities: - type: Transform pos: -17.5,8.5 parent: 2 + - uid: 12500 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 - uid: 13446 components: - type: Transform @@ -90288,6 +87422,91 @@ entities: - type: Transform pos: 45.5,21.5 parent: 2 + - uid: 14555 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 14556 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 14559 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 14560 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 14561 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 14562 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 14565 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 14586 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 14593 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 14596 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 14616 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 14712 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 15873 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 16494 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 2 + - uid: 16497 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 2 + - uid: 16498 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 16499 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 2 - uid: 16621 components: - type: Transform @@ -90298,11 +87517,91 @@ entities: - type: Transform pos: 34.5,19.5 parent: 2 + - uid: 18267 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 2 + - uid: 18273 + components: + - type: Transform + pos: -11.5,-59.5 + parent: 2 + - uid: 18274 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 2 + - uid: 18838 + components: + - type: Transform + pos: -7.5,-53.5 + parent: 2 + - uid: 18880 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - uid: 18972 + components: + - type: Transform + pos: -7.5,-55.5 + parent: 2 + - uid: 18973 + components: + - type: Transform + pos: -8.5,-55.5 + parent: 2 + - uid: 18974 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 + - uid: 18975 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 2 + - uid: 18976 + components: + - type: Transform + pos: -11.5,-55.5 + parent: 2 + - uid: 19233 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 - uid: 19612 components: - type: Transform pos: 46.5,24.5 parent: 2 + - uid: 19722 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 2 + - uid: 19725 + components: + - type: Transform + pos: -7.5,-57.5 + parent: 2 + - uid: 19743 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 + - uid: 19744 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 19763 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 - uid: 20330 components: - type: Transform @@ -90328,6 +87627,211 @@ entities: - type: Transform pos: 26.5,18.5 parent: 2 + - uid: 23440 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 23451 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - uid: 23633 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 23634 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 23635 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 23636 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 23637 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 2 + - uid: 23638 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 23639 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 2 + - uid: 23640 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - uid: 23641 + components: + - type: Transform + pos: -21.5,-45.5 + parent: 2 + - uid: 23642 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - uid: 23646 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 2 + - uid: 24537 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 2 + - uid: 24547 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 24548 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 24549 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - uid: 24550 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 2 + - uid: 24551 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 + - uid: 24552 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 + - uid: 24553 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 24554 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 2 + - uid: 24555 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 2 + - uid: 24556 + components: + - type: Transform + pos: 24.5,-40.5 + parent: 2 + - uid: 24802 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 24846 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 24852 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 26031 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 26032 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 26423 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 26430 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 26446 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 26450 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 26456 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 26464 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 26465 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 26466 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 26467 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 26468 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - uid: 26469 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 26501 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 - uid: 26555 components: - type: Transform @@ -90338,11 +87842,56 @@ entities: - type: Transform pos: 26.5,22.5 parent: 2 + - uid: 26577 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - uid: 26581 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 26584 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 26585 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 26597 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 - uid: 27991 components: - type: Transform pos: 24.5,18.5 parent: 2 + - uid: 29218 + components: + - type: Transform + pos: 0.5,-73.5 + parent: 2 + - uid: 29219 + components: + - type: Transform + pos: 0.5,-72.5 + parent: 2 + - uid: 29220 + components: + - type: Transform + pos: -0.5,-72.5 + parent: 2 + - uid: 29221 + components: + - type: Transform + pos: -1.5,-72.5 + parent: 2 - uid: 33084 components: - type: Transform @@ -91100,16 +88649,6 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-35.5 parent: 2 - - uid: 12500 - components: - - type: Transform - pos: -3.5,-46.5 - parent: 2 - - uid: 12501 - components: - - type: Transform - pos: -9.5,-47.5 - parent: 2 - uid: 12502 components: - type: Transform @@ -91222,11 +88761,6 @@ entities: - type: Transform pos: -73.43117,-8.485223 parent: 2 - - uid: 12524 - components: - - type: Transform - pos: -16.113176,-11.377243 - parent: 2 - uid: 12525 components: - type: Transform @@ -91240,47 +88774,6 @@ entities: - type: Transform pos: -16.804482,19.68696 parent: 2 -- proto: CannonBall - entities: - - uid: 12527 - components: - - type: Transform - pos: 12.494007,-14.450988 - parent: 2 -- proto: CannonBallGlassshot - entities: - - uid: 12528 - components: - - type: Transform - pos: 12.504614,-24.44699 - parent: 2 - - uid: 12529 - components: - - type: Transform - pos: 12.501594,-24.445663 - parent: 2 - - uid: 12530 - components: - - type: Transform - pos: 12.501594,-24.445663 - parent: 2 -- proto: CannonBallGrapeshot - entities: - - uid: 12531 - components: - - type: Transform - pos: 12.3415985,-22.364025 - parent: 2 - - uid: 12532 - components: - - type: Transform - pos: 12.613989,-22.280838 - parent: 2 - - uid: 12533 - components: - - type: Transform - pos: 12.5134735,-22.56715 - parent: 2 - proto: CapacitorStockPart entities: - uid: 12534 @@ -91334,6 +88827,26 @@ entities: bodyType: Static - proto: Carpet entities: + - uid: 10063 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 2 + - uid: 10064 + components: + - type: Transform + pos: 1.5,-47.5 + parent: 2 + - uid: 10065 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 2 + - uid: 10066 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 2 - uid: 12542 components: - type: Transform @@ -92663,20 +90176,6 @@ entities: - type: Transform pos: 16.5,13.5 parent: 2 -- proto: CarpStatue - entities: - - uid: 12785 - components: - - type: Transform - pos: 11.5,-35.5 - parent: 2 -- proto: CarpStatueEyes - entities: - - uid: 12786 - components: - - type: Transform - pos: 7.5,-42.5 - parent: 2 - proto: CartridgeMagnumPractice entities: - uid: 29099 @@ -92722,6 +90221,31 @@ entities: - type: Transform pos: -9.5,-94.5 parent: 2 + - uid: 1421 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 - uid: 4604 components: - type: Transform @@ -92758,6 +90282,26 @@ entities: rot: 3.141592653589793 rad pos: -80.5,-20.5 parent: 2 + - uid: 7476 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + pos: -8.5,-56.5 + parent: 2 - uid: 9702 components: - type: Transform @@ -92776,6 +90320,57 @@ entities: rot: 3.141592653589793 rad pos: -27.5,-102.5 parent: 2 + - uid: 9950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-45.5 + parent: 2 + - uid: 9989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-46.5 + parent: 2 + - uid: 9990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-47.5 + parent: 2 + - uid: 9993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-47.5 + parent: 2 + - uid: 9994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-46.5 + parent: 2 + - uid: 9995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-45.5 + parent: 2 + - uid: 10080 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 10081 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 10082 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 - uid: 10144 components: - type: Transform @@ -92791,12 +90386,53 @@ entities: - type: Transform pos: 62.5,-51.5 parent: 2 + - uid: 11726 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 - uid: 11862 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-20.5 parent: 2 + - uid: 12228 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 12257 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 12267 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 12527 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 12529 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 2 - uid: 12678 components: - type: Transform @@ -92809,6 +90445,11 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,42.5 parent: 2 + - uid: 12786 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 - uid: 12792 components: - type: Transform @@ -102175,1578 +99816,908 @@ entities: - uid: 14551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-17.5 + pos: 6.5,-10.5 parent: 2 - uid: 14552 components: - type: Transform - pos: 3.5,-19.5 + pos: 16.5,-9.5 parent: 2 - - uid: 14553 + - uid: 14554 components: - type: Transform - pos: -2.5,-19.5 + pos: 69.5,-14.5 parent: 2 - - uid: 14554 + - uid: 14557 components: - type: Transform - pos: 69.5,-14.5 + pos: 7.5,-10.5 parent: 2 - - uid: 14555 + - uid: 14574 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-17.5 + pos: 56.5,-23.5 parent: 2 - - uid: 14556 + - uid: 14575 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-17.5 + pos: 56.5,-24.5 parent: 2 - - uid: 14557 + - uid: 14576 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-16.5 + pos: 47.5,-18.5 parent: 2 - - uid: 14558 + - uid: 14587 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-15.5 + pos: 10.5,-10.5 parent: 2 - - uid: 14559 + - uid: 14618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-17.5 + pos: 13.5,-9.5 parent: 2 - - uid: 14560 + - uid: 14723 components: - type: Transform - pos: -3.5,-19.5 + pos: 48.5,18.5 parent: 2 - - uid: 14561 + - uid: 14724 components: - type: Transform - pos: -4.5,-19.5 + pos: 49.5,18.5 parent: 2 - - uid: 14562 + - uid: 14725 components: - type: Transform - pos: -4.5,-18.5 + pos: 50.5,18.5 parent: 2 - - uid: 14563 + - uid: 14726 components: - type: Transform - pos: -10.5,-17.5 + pos: 54.5,18.5 parent: 2 - - uid: 14564 + - uid: 14727 + components: + - type: Transform + pos: 54.5,18.5 + parent: 2 + - uid: 14728 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - uid: 14729 + components: + - type: Transform + pos: 54.5,14.5 + parent: 2 + - uid: 14732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 90.5,-81.5 + parent: 2 + - uid: 14736 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-16.5 + pos: 68.5,-12.5 parent: 2 - - uid: 14565 + - uid: 14737 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-16.5 + pos: 69.5,-11.5 parent: 2 - - uid: 14566 + - uid: 14738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-14.5 + rot: -1.5707963267948966 rad + pos: 69.5,-12.5 parent: 2 - - uid: 14567 + - uid: 14745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-14.5 + pos: 71.5,13.5 parent: 2 - - uid: 14568 + - uid: 14746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-17.5 + pos: 72.5,13.5 parent: 2 - - uid: 14569 + - uid: 14747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-14.5 + pos: 72.5,12.5 parent: 2 - - uid: 14570 + - uid: 14748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-15.5 + pos: 72.5,11.5 parent: 2 - - uid: 14571 + - uid: 14749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-14.5 + pos: 76.5,11.5 parent: 2 - - uid: 14572 + - uid: 14750 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-15.5 + pos: 76.5,10.5 parent: 2 - - uid: 14573 + - uid: 14751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-15.5 + pos: 82.5,8.5 parent: 2 - - uid: 14574 + - uid: 14755 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-23.5 + pos: 92.5,-8.5 parent: 2 - - uid: 14575 + - uid: 14756 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-24.5 + pos: 92.5,-9.5 parent: 2 - - uid: 14576 + - uid: 14757 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-18.5 + pos: 92.5,-6.5 parent: 2 - - uid: 14577 + - uid: 14758 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-17.5 + pos: 92.5,-4.5 parent: 2 - - uid: 14578 + - uid: 14759 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-15.5 + pos: 92.5,-3.5 parent: 2 - - uid: 14579 + - uid: 14760 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-15.5 + pos: 89.5,2.5 parent: 2 - - uid: 14580 + - uid: 14761 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-15.5 + pos: 89.5,1.5 parent: 2 - - uid: 14581 + - uid: 14762 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-15.5 + pos: 69.5,-15.5 parent: 2 - - uid: 14582 + - uid: 15199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-16.5 + rot: 1.5707963267948966 rad + pos: 83.5,-49.5 parent: 2 - - uid: 14583 + - uid: 15359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-17.5 + rot: 1.5707963267948966 rad + pos: 85.5,-51.5 parent: 2 - - uid: 14584 + - uid: 16152 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-17.5 + pos: 8.5,-10.5 parent: 2 - - uid: 14585 + - uid: 16169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-17.5 + pos: -7.5,-95.5 parent: 2 - - uid: 14586 + - uid: 16210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-17.5 + pos: -7.5,-96.5 parent: 2 - - uid: 14587 + - uid: 16639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-17.5 + pos: 5.5,-10.5 parent: 2 - - uid: 14588 + - uid: 17711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-17.5 + pos: 13.5,-10.5 parent: 2 - - uid: 14589 + - uid: 17733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 + pos: 12.5,-8.5 parent: 2 - - uid: 14590 + - uid: 19833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 + pos: -11.5,-56.5 parent: 2 - - uid: 14591 + - uid: 19835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-19.5 + pos: -11.5,-58.5 parent: 2 - - uid: 14592 + - uid: 19836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-19.5 + pos: -11.5,-59.5 parent: 2 - - uid: 14593 + - uid: 19837 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-18.5 + pos: -7.5,-59.5 parent: 2 - - uid: 14594 + - uid: 19838 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-19.5 + pos: -7.5,-58.5 parent: 2 - - uid: 14595 + - uid: 19839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-16.5 + rot: -1.5707963267948966 rad + pos: -11.5,-57.5 parent: 2 - - uid: 14596 + - uid: 19840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-16.5 + pos: -7.5,-56.5 parent: 2 - - uid: 14597 + - uid: 19841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-16.5 + pos: -7.5,-55.5 parent: 2 - - uid: 14598 + - uid: 19842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-17.5 + pos: -11.5,-55.5 parent: 2 - - uid: 14599 + - uid: 20424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-17.5 + rot: -1.5707963267948966 rad + pos: -7.5,-57.5 parent: 2 - - uid: 14600 + - uid: 22517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-14.5 + pos: -7.5,-93.5 parent: 2 - - uid: 14601 + - uid: 22527 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-13.5 + pos: 35.5,41.5 parent: 2 - - uid: 14602 + - uid: 24108 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-13.5 + pos: -20.5,-48.5 parent: 2 - - uid: 14603 + - uid: 24110 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-13.5 + pos: -20.5,-47.5 parent: 2 - - uid: 14604 + - uid: 24112 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-13.5 + pos: -20.5,-46.5 parent: 2 - - uid: 14605 + - uid: 24113 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-13.5 + pos: -20.5,-37.5 parent: 2 - - uid: 14606 + - uid: 24114 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-13.5 + pos: -20.5,-36.5 parent: 2 - - uid: 14607 + - uid: 24115 components: - type: Transform - pos: -3.5,-15.5 + rot: 1.5707963267948966 rad + pos: -20.5,-35.5 parent: 2 - - uid: 14608 + - uid: 24121 components: - type: Transform - pos: -10.5,-14.5 + rot: -1.5707963267948966 rad + pos: 23.5,-35.5 parent: 2 - - uid: 14609 + - uid: 24122 components: - type: Transform - pos: -17.5,-12.5 + rot: -1.5707963267948966 rad + pos: 23.5,-36.5 parent: 2 - - uid: 14610 + - uid: 24123 components: - type: Transform - pos: -16.5,-12.5 + rot: -1.5707963267948966 rad + pos: 23.5,-37.5 parent: 2 - - uid: 14611 + - uid: 24161 components: - type: Transform - pos: -15.5,-12.5 + rot: -1.5707963267948966 rad + pos: 23.5,-38.5 parent: 2 - - uid: 14612 + - uid: 24166 components: - type: Transform - pos: -13.5,-12.5 + rot: -1.5707963267948966 rad + pos: 23.5,-39.5 parent: 2 - - uid: 14613 + - uid: 24167 components: - type: Transform - pos: -12.5,-12.5 + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 parent: 2 - - uid: 14614 + - uid: 24168 components: - type: Transform - pos: -17.5,-13.5 + rot: -1.5707963267948966 rad + pos: 23.5,-41.5 parent: 2 - - uid: 14615 + - uid: 24169 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-14.5 + pos: 23.5,-42.5 parent: 2 - - uid: 14616 + - uid: 24170 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-14.5 + pos: 23.5,-43.5 parent: 2 - - uid: 14617 + - uid: 24171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-55.5 + rot: -1.5707963267948966 rad + pos: 23.5,-44.5 parent: 2 - - uid: 14618 + - uid: 24781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-56.5 + rot: -1.5707963267948966 rad + pos: 21.5,-45.5 parent: 2 - - uid: 14619 + - uid: 24782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-57.5 + rot: -1.5707963267948966 rad + pos: 21.5,-46.5 parent: 2 - - uid: 14620 + - uid: 24783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-58.5 + rot: -1.5707963267948966 rad + pos: 21.5,-47.5 parent: 2 - - uid: 14621 + - uid: 24796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-59.5 + rot: -1.5707963267948966 rad + pos: 21.5,-29.5 parent: 2 - - uid: 14622 + - uid: 24797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-60.5 + rot: -1.5707963267948966 rad + pos: 21.5,-28.5 parent: 2 - - uid: 14623 + - uid: 24798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-55.5 + rot: -1.5707963267948966 rad + pos: 21.5,-27.5 parent: 2 - - uid: 14624 + - uid: 24803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-56.5 + pos: -4.5,-10.5 parent: 2 - - uid: 14625 + - uid: 24804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-57.5 + pos: -5.5,-10.5 parent: 2 - - uid: 14626 + - uid: 24805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-58.5 + pos: -6.5,-10.5 parent: 2 - - uid: 14627 + - uid: 24806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-59.5 + pos: -7.5,-10.5 parent: 2 - - uid: 14628 + - uid: 24845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-60.5 + pos: -8.5,-10.5 parent: 2 - - uid: 14629 + - uid: 24854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-55.5 + pos: -12.5,-9.5 parent: 2 - - uid: 14630 + - uid: 24909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-56.5 + pos: -11.5,-8.5 parent: 2 - - uid: 14631 + - uid: 24911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-57.5 + pos: -12.5,-11.5 parent: 2 - - uid: 14632 + - uid: 24935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-58.5 + pos: -12.5,-8.5 parent: 2 - - uid: 14633 + - uid: 24949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-59.5 + pos: -13.5,-11.5 parent: 2 - - uid: 14634 + - uid: 24954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-60.5 + pos: -13.5,-8.5 parent: 2 - - uid: 14635 + - uid: 25179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-55.5 + pos: -14.5,-11.5 parent: 2 - - uid: 14636 + - uid: 25181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-56.5 + pos: -14.5,-10.5 parent: 2 - - uid: 14637 + - uid: 25242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-57.5 + pos: -14.5,-9.5 parent: 2 - - uid: 14638 + - uid: 25277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-58.5 + pos: -14.5,-8.5 parent: 2 - - uid: 14639 + - uid: 25604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-59.5 + pos: -10.5,-10.5 parent: 2 - - uid: 14640 + - uid: 25605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-60.5 + pos: -13.5,-10.5 parent: 2 - - uid: 14641 + - uid: 25693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-55.5 + pos: -13.5,-9.5 parent: 2 - - uid: 14642 + - uid: 25823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-56.5 + pos: -11.5,-11.5 parent: 2 - - uid: 14643 + - uid: 26333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-57.5 + pos: -11.5,-10.5 parent: 2 - - uid: 14644 + - uid: 26411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-55.5 + pos: -10.5,-8.5 parent: 2 - - uid: 14645 + - uid: 26475 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-56.5 + pos: -10.5,-11.5 parent: 2 - - uid: 14646 + - uid: 26493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-57.5 + pos: -11.5,-9.5 parent: 2 - - uid: 14647 + - uid: 26500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-55.5 + pos: -12.5,-10.5 parent: 2 - - uid: 14648 + - uid: 26510 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-56.5 + pos: 32.5,43.5 parent: 2 - - uid: 14649 + - uid: 26511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-57.5 + pos: -7.5,-94.5 parent: 2 - - uid: 14650 + - uid: 26578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-55.5 + pos: -10.5,-9.5 parent: 2 - - uid: 14651 + - uid: 26579 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-56.5 + pos: -9.5,-10.5 parent: 2 - - uid: 14652 + - uid: 26625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-57.5 + rot: -1.5707963267948966 rad + pos: 33.5,39.5 parent: 2 - - uid: 14653 + - uid: 26844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-55.5 + rot: -1.5707963267948966 rad + pos: -11.5,-108.5 parent: 2 - - uid: 14654 + - uid: 27366 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-56.5 + pos: 85.5,-49.5 parent: 2 - - uid: 14655 + - uid: 27459 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-57.5 + pos: 34.5,42.5 parent: 2 - - uid: 14656 + - uid: 29081 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-55.5 + pos: 34.5,43.5 parent: 2 - - uid: 14657 + - uid: 29237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-56.5 + rot: 3.141592653589793 rad + pos: 3.5,-10.5 parent: 2 - - uid: 14658 + - uid: 29238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-57.5 + rot: 3.141592653589793 rad + pos: -2.5,-10.5 parent: 2 - - uid: 14659 + - uid: 30056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-55.5 + rot: 3.141592653589793 rad + pos: -26.5,-100.5 parent: 2 - - uid: 14660 + - uid: 30141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-56.5 + rot: -1.5707963267948966 rad + pos: -9.5,-108.5 parent: 2 - - uid: 14661 + - uid: 30142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-57.5 + rot: -1.5707963267948966 rad + pos: -9.5,-110.5 parent: 2 - - uid: 14662 + - uid: 30154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-59.5 + rot: -1.5707963267948966 rad + pos: -8.5,-110.5 parent: 2 - - uid: 14663 + - uid: 30282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-60.5 + rot: -1.5707963267948966 rad + pos: -9.5,-109.5 parent: 2 - - uid: 14664 + - uid: 31160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-61.5 + rot: -1.5707963267948966 rad + pos: -7.5,-109.5 parent: 2 - - uid: 14665 + - uid: 31199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-62.5 + rot: -1.5707963267948966 rad + pos: -8.5,-108.5 parent: 2 - - uid: 14666 + - uid: 32361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-59.5 + rot: -1.5707963267948966 rad + pos: -7.5,-108.5 parent: 2 - - uid: 14667 + - uid: 32567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-60.5 + rot: -1.5707963267948966 rad + pos: 34.5,38.5 parent: 2 - - uid: 14668 + - uid: 32591 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-61.5 + pos: 83.5,-48.5 parent: 2 - - uid: 14669 + - uid: 32730 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-62.5 + pos: 85.5,-52.5 parent: 2 - - uid: 14670 + - uid: 35535 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-59.5 + pos: 32.5,41.5 parent: 2 - - uid: 14671 + - uid: 35536 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-60.5 + pos: 35.5,42.5 parent: 2 - - uid: 14672 + - uid: 38988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-61.5 + pos: 28.5,24.5 parent: 2 - - uid: 14673 + - uid: 38990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-62.5 + pos: 26.5,23.5 parent: 2 - - uid: 14674 + - uid: 38991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-62.5 + pos: 26.5,24.5 parent: 2 - - uid: 14675 + - uid: 38992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-61.5 + pos: 27.5,24.5 parent: 2 - - uid: 14676 + - uid: 38993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-60.5 + pos: 26.5,18.5 parent: 2 - - uid: 14677 + - uid: 38994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-62.5 + pos: 26.5,19.5 parent: 2 - - uid: 14678 + - uid: 41063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-61.5 - parent: 2 - - uid: 14679 + rot: 3.141592653589793 rad + pos: -11.5,-11.5 + parent: 40828 + - uid: 41064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-60.5 - parent: 2 - - uid: 14680 + rot: 3.141592653589793 rad + pos: -11.5,-12.5 + parent: 40828 + - uid: 41065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-62.5 - parent: 2 - - uid: 14681 + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 40828 + - uid: 41066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-61.5 - parent: 2 - - uid: 14682 + rot: 3.141592653589793 rad + pos: -9.5,-15.5 + parent: 40828 + - uid: 41067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-60.5 - parent: 2 - - uid: 14683 + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 40828 + - uid: 41068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-62.5 - parent: 2 - - uid: 14684 + rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 40828 + - uid: 41069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-61.5 - parent: 2 - - uid: 14685 + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 40828 + - uid: 41070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-60.5 - parent: 2 - - uid: 14686 + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 40828 + - uid: 41071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-62.5 - parent: 2 - - uid: 14687 + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 40828 + - uid: 41072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-61.5 - parent: 2 - - uid: 14688 + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 40828 + - uid: 41073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-60.5 - parent: 2 - - uid: 14689 + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 40828 + - uid: 41074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-62.5 - parent: 2 - - uid: 14690 + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 40828 + - uid: 41075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-61.5 - parent: 2 - - uid: 14691 + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 40828 + - uid: 41076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-60.5 - parent: 2 - - uid: 14692 + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 40828 + - uid: 41077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-62.5 - parent: 2 - - uid: 14693 + pos: -0.5,-15.5 + parent: 40828 + - uid: 41078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-61.5 - parent: 2 - - uid: 14694 + pos: 0.5,-15.5 + parent: 40828 + - uid: 41079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-60.5 - parent: 2 - - uid: 14695 + pos: 1.5,-15.5 + parent: 40828 + - uid: 41080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-55.5 - parent: 2 - - uid: 14696 + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 40828 + - uid: 41081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-56.5 - parent: 2 - - uid: 14697 + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 40828 + - uid: 41082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-57.5 - parent: 2 - - uid: 14698 + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 40828 + - uid: 41083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-55.5 - parent: 2 - - uid: 14699 + rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 40828 + - uid: 41084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-56.5 - parent: 2 - - uid: 14700 + rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 40828 + - uid: 41085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-57.5 - parent: 2 - - uid: 14701 + rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 40828 + - uid: 41086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-55.5 - parent: 2 - - uid: 14702 + pos: 5.5,-0.5 + parent: 40828 + - uid: 41087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-56.5 - parent: 2 - - uid: 14703 + pos: 5.5,-2.5 + parent: 40828 + - uid: 41088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-57.5 - parent: 2 - - uid: 14704 + pos: -4.5,-17.5 + parent: 40828 + - uid: 41089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-55.5 - parent: 2 - - uid: 14705 + pos: 5.5,-17.5 + parent: 40828 + - uid: 41761 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-56.5 - parent: 2 - - uid: 14706 + pos: 5.5,-12.5 + parent: 41669 + - uid: 41762 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-57.5 - parent: 2 - - uid: 14707 + pos: 3.5,-12.5 + parent: 41669 + - uid: 42390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-55.5 + pos: 25.5,24.5 parent: 2 - - uid: 14708 + - uid: 42392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-56.5 + rot: -1.5707963267948966 rad + pos: 45.5,22.5 parent: 2 - - uid: 14709 + - uid: 42393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-57.5 + rot: -1.5707963267948966 rad + pos: 45.5,23.5 parent: 2 - - uid: 14710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-48.5 - parent: 2 - - uid: 14711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-47.5 - parent: 2 - - uid: 14712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-46.5 - parent: 2 - - uid: 14713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-49.5 - parent: 2 - - uid: 14714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-50.5 - parent: 2 - - uid: 14715 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-51.5 - parent: 2 - - uid: 14716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-51.5 - parent: 2 - - uid: 14717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-51.5 - parent: 2 - - uid: 14718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-54.5 - parent: 2 - - uid: 14719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-54.5 - parent: 2 - - uid: 14720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-53.5 - parent: 2 - - uid: 14721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-53.5 - parent: 2 - - uid: 14722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-51.5 - parent: 2 - - uid: 14723 - components: - - type: Transform - pos: 48.5,18.5 - parent: 2 - - uid: 14724 - components: - - type: Transform - pos: 49.5,18.5 - parent: 2 - - uid: 14725 - components: - - type: Transform - pos: 50.5,18.5 - parent: 2 - - uid: 14726 - components: - - type: Transform - pos: 54.5,18.5 - parent: 2 - - uid: 14727 - components: - - type: Transform - pos: 54.5,18.5 - parent: 2 - - uid: 14728 - components: - - type: Transform - pos: 54.5,17.5 - parent: 2 - - uid: 14729 - components: - - type: Transform - pos: 54.5,14.5 - parent: 2 - - uid: 14730 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 2 - - uid: 14731 - components: - - type: Transform - pos: -10.5,-24.5 - parent: 2 - - uid: 14732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-81.5 - parent: 2 - - uid: 14733 - components: - - type: Transform - pos: 13.5,-47.5 - parent: 2 - - uid: 14734 - components: - - type: Transform - pos: 14.5,-47.5 - parent: 2 - - uid: 14735 - components: - - type: Transform - pos: 14.5,-46.5 - parent: 2 - - uid: 14736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-12.5 - parent: 2 - - uid: 14737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-11.5 - parent: 2 - - uid: 14738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-12.5 - parent: 2 - - uid: 14739 - components: - - type: Transform - pos: -10.5,-25.5 - parent: 2 - - uid: 14740 - components: - - type: Transform - pos: -10.5,-26.5 - parent: 2 - - uid: 14741 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 2 - - uid: 14742 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 2 - - uid: 14743 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 2 - - uid: 14745 - components: - - type: Transform - pos: 71.5,13.5 - parent: 2 - - uid: 14746 - components: - - type: Transform - pos: 72.5,13.5 - parent: 2 - - uid: 14747 - components: - - type: Transform - pos: 72.5,12.5 - parent: 2 - - uid: 14748 - components: - - type: Transform - pos: 72.5,11.5 - parent: 2 - - uid: 14749 - components: - - type: Transform - pos: 76.5,11.5 - parent: 2 - - uid: 14750 - components: - - type: Transform - pos: 76.5,10.5 - parent: 2 - - uid: 14751 - components: - - type: Transform - pos: 82.5,8.5 - parent: 2 - - uid: 14755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-8.5 - parent: 2 - - uid: 14756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-9.5 - parent: 2 - - uid: 14757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-6.5 - parent: 2 - - uid: 14758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-4.5 - parent: 2 - - uid: 14759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-3.5 - parent: 2 - - uid: 14760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,2.5 - parent: 2 - - uid: 14761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,1.5 - parent: 2 - - uid: 14762 - components: - - type: Transform - pos: 69.5,-15.5 - parent: 2 - - uid: 15199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-49.5 - parent: 2 - - uid: 15359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-51.5 - parent: 2 - - uid: 16169 - components: - - type: Transform - pos: -7.5,-95.5 - parent: 2 - - uid: 16210 - components: - - type: Transform - pos: -7.5,-96.5 - parent: 2 - - uid: 22517 - components: - - type: Transform - pos: -7.5,-93.5 - parent: 2 - - uid: 22527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,41.5 - parent: 2 - - uid: 26510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,43.5 - parent: 2 - - uid: 26511 - components: - - type: Transform - pos: -7.5,-94.5 - parent: 2 - - uid: 26625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,39.5 - parent: 2 - - uid: 26844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-108.5 - parent: 2 - - uid: 27366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-49.5 - parent: 2 - - uid: 27459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,42.5 - parent: 2 - - uid: 29081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,43.5 - parent: 2 - - uid: 30056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-100.5 - parent: 2 - - uid: 30141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-108.5 - parent: 2 - - uid: 30142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-110.5 - parent: 2 - - uid: 30154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-110.5 - parent: 2 - - uid: 30282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-109.5 - parent: 2 - - uid: 31160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-109.5 - parent: 2 - - uid: 31199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-108.5 - parent: 2 - - uid: 32361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-108.5 - parent: 2 - - uid: 32567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,38.5 - parent: 2 - - uid: 32591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-48.5 - parent: 2 - - uid: 32730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-52.5 - parent: 2 - - uid: 35535 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,41.5 - parent: 2 - - uid: 35536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,42.5 - parent: 2 - - uid: 38988 - components: - - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 38990 - components: - - type: Transform - pos: 26.5,23.5 - parent: 2 - - uid: 38991 - components: - - type: Transform - pos: 26.5,24.5 - parent: 2 - - uid: 38992 - components: - - type: Transform - pos: 27.5,24.5 - parent: 2 - - uid: 38993 - components: - - type: Transform - pos: 26.5,18.5 - parent: 2 - - uid: 38994 - components: - - type: Transform - pos: 26.5,19.5 - parent: 2 - - uid: 41063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-11.5 - parent: 40828 - - uid: 41064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-12.5 - parent: 40828 - - uid: 41065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-8.5 - parent: 40828 - - uid: 41066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-15.5 - parent: 40828 - - uid: 41067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-11.5 - parent: 40828 - - uid: 41068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 40828 - - uid: 41069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-15.5 - parent: 40828 - - uid: 41070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-8.5 - parent: 40828 - - uid: 41071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,7.5 - parent: 40828 - - uid: 41072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,7.5 - parent: 40828 - - uid: 41073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 40828 - - uid: 41074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 40828 - - uid: 41075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 40828 - - uid: 41076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 40828 - - uid: 41077 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 40828 - - uid: 41078 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 40828 - - uid: 41079 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 40828 - - uid: 41080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 40828 - - uid: 41081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 40828 - - uid: 41082 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-11.5 - parent: 40828 - - uid: 41083 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-12.5 - parent: 40828 - - uid: 41084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-11.5 - parent: 40828 - - uid: 41085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-12.5 - parent: 40828 - - uid: 41086 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 40828 - - uid: 41087 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 40828 - - uid: 41088 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 40828 - - uid: 41089 - components: - - type: Transform - pos: 5.5,-17.5 - parent: 40828 - - uid: 41761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 41669 - - uid: 41762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 41669 - - uid: 42390 - components: - - type: Transform - pos: 25.5,24.5 - parent: 2 - - uid: 42392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,22.5 - parent: 2 - - uid: 42393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,23.5 - parent: 2 - - uid: 43095 + - uid: 43095 components: - type: Transform rot: -1.5707963267948966 rad @@ -104596,17 +101567,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-11.5 parent: 2 - - uid: 14910 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 2 - - uid: 14911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-27.5 - parent: 2 - uid: 14912 components: - type: Transform @@ -104724,6 +101684,24 @@ entities: parent: 2 - proto: ChairBrass entities: + - uid: 12200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 2 + - uid: 12201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-19.5 + parent: 2 - uid: 14921 components: - type: Transform @@ -104732,6 +101710,78 @@ entities: parent: 2 - proto: ChairCarp entities: + - uid: 7569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-48.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-49.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-47.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-48.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-27.5 + parent: 2 + - uid: 14658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-28.5 + parent: 2 + - uid: 14659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 2 + - uid: 14660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 2 + - uid: 14661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-28.5 + parent: 2 + - uid: 14704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-44.5 + parent: 2 + - uid: 14705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-44.5 + parent: 2 + - uid: 14706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-44.5 + parent: 2 - uid: 14923 components: - type: Transform @@ -104742,6 +101792,72 @@ entities: bodyType: Dynamic - type: Pullable prevFixedRotation: True + - uid: 15192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-25.5 + parent: 2 + - uid: 15193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-25.5 + parent: 2 + - uid: 15194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-25.5 + parent: 2 + - uid: 15198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-27.5 + parent: 2 + - uid: 15269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 2 + - uid: 23453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 2 + - uid: 23454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 2 + - uid: 23455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 2 + - uid: 23456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 2 + - uid: 23457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 2 + - uid: 23458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 2 - proto: ChairCursed entities: - uid: 14924 @@ -104886,6 +102002,23 @@ entities: - type: Transform pos: -71.495224,-1.5147552 parent: 2 + - uid: 18255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.482578,-47.295265 + parent: 2 + - uid: 18264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.367828,-30.452507 + parent: 2 + - uid: 23255 + components: + - type: Transform + pos: 17.497364,-57.461502 + parent: 2 - uid: 25904 components: - type: Transform @@ -104973,6 +102106,32 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-4.5 parent: 2 + - uid: 18563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-36.5 + parent: 2 + - uid: 18743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-37.5 + parent: 2 + - uid: 18852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 +- proto: ChairMeat + entities: + - uid: 23395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5008883,-23.362421 + parent: 2 - proto: ChairOfficeDark entities: - uid: 13095 @@ -105192,11 +102351,6 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-5.5 parent: 2 - - uid: 14997 - components: - - type: Transform - pos: 15.011005,-28.435282 - parent: 2 - uid: 14998 components: - type: Transform @@ -105227,41 +102381,12 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,15.5 parent: 2 - - uid: 15003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.530378,-21.308607 - parent: 2 - - uid: 15004 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.530378,-23.324232 - parent: 2 - uid: 15005 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.348076,22.622547 parent: 2 - - uid: 15006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.6851845,-49.63274 - parent: 2 - - uid: 15007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.3570595,-49.63274 - parent: 2 - - uid: 15008 - components: - - type: Transform - pos: 9.9820595,-50.429615 - parent: 2 - uid: 15009 components: - type: Transform @@ -105569,12 +102694,6 @@ entities: - type: Transform pos: 51.5,-8.5 parent: 2 - - uid: 15068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.2836218,-38.887325 - parent: 2 - uid: 15069 components: - type: Transform @@ -105639,41 +102758,6 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-93.5 parent: 2 - - uid: 15073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-13.5 - parent: 2 - - uid: 15074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 2 - - uid: 15075 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-13.5 - parent: 2 - - uid: 15076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-18.5 - parent: 2 - - uid: 15077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-16.5 - parent: 2 - - uid: 15078 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 2 - uid: 40724 components: - type: Transform @@ -106146,6 +103230,13 @@ entities: - type: Transform pos: -4.5,-13.5 parent: 40828 +- proto: ChemDispenserMachineCircuitboard + entities: + - uid: 20518 + components: + - type: Transform + pos: -7.436639,-63.408432 + parent: 2 - proto: ChemicalMedipen entities: - uid: 36 @@ -106250,21 +103341,6 @@ entities: parent: 1980 - type: Physics canCollide: False - - uid: 15145 - components: - - type: Transform - pos: -6.8221693,-36.19664 - parent: 2 - - uid: 15146 - components: - - type: Transform - pos: -6.4002943,-36.25914 - parent: 2 - - uid: 15147 - components: - - type: Transform - pos: -6.2909193,-36.431015 - parent: 2 - proto: ChemistryEmptyBottle02 entities: - uid: 1984 @@ -106287,11 +103363,6 @@ entities: parent: 1980 - type: Physics canCollide: False - - uid: 15148 - components: - - type: Transform - pos: -6.7127943,-36.41539 - parent: 2 - proto: ChemistryEmptyBottle04 entities: - uid: 1987 @@ -106300,19 +103371,8 @@ entities: parent: 1980 - type: Physics canCollide: False - - uid: 15149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.0601406,-36.2156 - parent: 2 - proto: ChemistryHotplate entities: - - uid: 15150 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 2 - uid: 15151 components: - type: Transform @@ -106323,11 +103383,6 @@ entities: - type: Transform pos: -36.5,-31.5 parent: 2 - - uid: 15153 - components: - - type: Transform - pos: -20.5,-22.5 - parent: 2 - proto: ChemMaster entities: - uid: 1973 @@ -106345,11 +103400,6 @@ entities: - type: Transform pos: -34.5,-34.5 parent: 2 - - uid: 15156 - components: - - type: Transform - pos: -3.5,-34.5 - parent: 2 - uid: 41093 components: - type: Transform @@ -106372,13 +103422,6 @@ entities: - type: Transform pos: 53.5,6.5 parent: 2 -- proto: ChlorineChemistryVial - entities: - - uid: 15161 - components: - - type: Transform - pos: -19.551924,-33.235367 - parent: 2 - proto: ChurchBell entities: - uid: 15162 @@ -106486,13 +103529,6 @@ entities: - type: Transform pos: 57.99822,15.640291 parent: 2 -- proto: CigPackSyndicate - entities: - - uid: 15179 - components: - - type: Transform - pos: 14.530895,-19.33876 - parent: 2 - proto: CircuitImprinter entities: - uid: 15180 @@ -106510,19 +103546,22 @@ entities: parent: 2 - proto: CloningConsoleComputerCircuitboard entities: - - uid: 15182 + - uid: 29259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.549831,-40.40926 - parent: 2 -- proto: CloningPod + parent: 23276 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CloningPodMachineCircuitboard entities: - - uid: 15183 + - uid: 12246 components: - type: Transform - pos: -7.5,-41.5 - parent: 2 + parent: 16238 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClosetBombFilled entities: - uid: 15184 @@ -106585,111 +103624,6 @@ entities: - type: Transform pos: 24.5,11.5 parent: 2 -- proto: ClosetCursed - entities: - - uid: 15192 - components: - - type: Transform - pos: 8.5,-27.5 - parent: 2 - - type: EntityStorage - open: True - removedMasks: 20 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.48 - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - mask: - - Impassable - - TableLayer - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 75 - hard: True - restitution: 0 - friction: 0.4 - - type: PlaceableSurface - isPlaceable: True -- proto: ClosetEmergency - entities: - - uid: 15193 - components: - - type: Transform - pos: -6.5,-43.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 15195 - - 15194 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 15196 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 15197 - - 15198 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: ClosetEmergencyFilledRandom entities: - uid: 15200 @@ -107036,8 +103970,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -107058,11 +103992,6 @@ entities: - type: Transform pos: 41.5,14.5 parent: 2 - - uid: 15269 - components: - - type: Transform - pos: -9.5,-36.5 - parent: 2 - uid: 15270 components: - type: Transform @@ -107200,81 +104129,11 @@ entities: parent: 2 - proto: ClosetFire entities: - - uid: 115 - components: - - type: Transform - pos: -5.5,-43.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 118 - - 119 - - 116 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 15291 components: - type: Transform pos: -74.5,-29.5 parent: 2 - - uid: 15292 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 15293 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: ClosetFireFilled entities: - uid: 15294 @@ -107561,8 +104420,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -107579,10 +104438,10 @@ entities: showEnts: False occludes: True ents: - - 2556 - - 2553 - - 2555 - 2554 + - 2555 + - 2553 + - 2556 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -108431,19 +105290,14 @@ entities: - type: Transform pos: 33.5,35.5 parent: 2 - - uid: 15436 - components: - - type: Transform - pos: 31.5,34.5 - parent: 2 - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -108454,20 +105308,10 @@ entities: - 0 - 0 - 0 - - uid: 15437 - components: - - type: Transform - pos: 72.5,-17.5 - parent: 2 - - uid: 15438 - components: - - type: Transform - pos: -11.5,-32.5 - parent: 2 - - uid: 15439 + - uid: 15436 components: - type: Transform - pos: -10.5,-25.5 + pos: 31.5,34.5 parent: 2 - type: EntityStorage air: @@ -108475,8 +105319,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -108487,35 +105331,10 @@ entities: - 0 - 0 - 0 - - uid: 15440 - components: - - type: Transform - pos: -14.5,-44.5 - parent: 2 - - uid: 15441 - components: - - type: Transform - pos: -1.5,-47.5 - parent: 2 - - uid: 15442 - components: - - type: Transform - pos: 16.5,-53.5 - parent: 2 - - uid: 15443 - components: - - type: Transform - pos: 12.5,-31.5 - parent: 2 - - uid: 15444 - components: - - type: Transform - pos: 6.5,-17.5 - parent: 2 - - uid: 15445 + - uid: 15437 components: - type: Transform - pos: 5.5,-44.5 + pos: 72.5,-17.5 parent: 2 - uid: 35723 components: @@ -108659,10 +105478,10 @@ entities: - type: Transform pos: 39.5,-83.5 parent: 2 - - uid: 15468 + - uid: 23645 components: - type: Transform - pos: -10.5,-21.5 + pos: -19.5,-44.5 parent: 2 - uid: 43139 components: @@ -108835,12 +105654,12 @@ entities: priority: 0 component: ClothingSpeedModifier title: null -- proto: ClothingBackpackDuffelCaptain +- proto: ClothingBackpackDuffelSalvage entities: - - uid: 15480 + - uid: 24236 components: - type: Transform - parent: 15479 + parent: 29071 - type: Physics canCollide: False - type: InsideEntityStorage @@ -108870,6 +105689,15 @@ entities: priority: 0 component: ClothingSpeedModifier title: null +- proto: ClothingBackpackElectropack + entities: + - uid: 23422 + components: + - type: Transform + parent: 23421 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingBackpackERTClown entities: - uid: 1313 @@ -108895,6 +105723,15 @@ entities: component: Armor title: null - type: InsideEntityStorage +- proto: ClothingBackpackSalvage + entities: + - uid: 24235 + components: + - type: Transform + parent: 27646 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingBackpackSatchelBrigmedic entities: - uid: 2478 @@ -108929,6 +105766,15 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingBackpackSatchelSalvage + entities: + - uid: 24237 + components: + - type: Transform + parent: 32769 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingBackpackSatchelSecurity entities: - uid: 15485 @@ -108977,13 +105823,6 @@ entities: - type: Transform pos: 9.491198,-1.4308739 parent: 2 -- proto: ClothingBeltMercWebbing - entities: - - uid: 15497 - components: - - type: Transform - pos: 10.473449,-22.354832 - parent: 2 - proto: ClothingBeltPlant entities: - uid: 2561 @@ -109014,15 +105853,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingBeltStorageWaistbag +- proto: ClothingBeltSheath entities: - - uid: 15502 + - uid: 10038 components: - type: Transform - parent: 15501 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -2.5,-59.5 + parent: 2 - proto: ClothingBeltUtility entities: - uid: 15504 @@ -109081,13 +105918,6 @@ entities: - type: Transform pos: -49.469284,-13.295306 parent: 2 -- proto: ClothingEyesGlassesChemical - entities: - - uid: 15514 - components: - - type: Transform - pos: -7.467159,-36.469105 - parent: 2 - proto: ClothingEyesGlassesMeson entities: - uid: 15515 @@ -109110,20 +105940,15 @@ entities: - type: Transform pos: 51.618187,-46.85498 parent: 2 - - uid: 15519 - components: - - type: Transform - pos: -7.3818736,-49.410892 - parent: 2 - - uid: 15520 + - uid: 15521 components: - type: Transform - pos: -7.584999,-49.426517 + pos: 65.59738,13.374831 parent: 2 - - uid: 15521 + - uid: 29213 components: - type: Transform - pos: 65.59738,13.374831 + pos: 5.5,-27.5 parent: 2 - uid: 43141 components: @@ -109405,26 +106230,6 @@ entities: - type: Transform pos: 81.48181,-53.47641 parent: 2 - - uid: 15568 - components: - - type: Transform - pos: -42.50094,-109.462296 - parent: 2 - - uid: 15569 - components: - - type: Transform - pos: -5.47928,-46.337624 - parent: 2 - - uid: 15570 - components: - - type: Transform - pos: -5.47928,-46.493874 - parent: 2 - - uid: 18828 - components: - - type: Transform - pos: 66.506935,-29.518837 - parent: 2 - proto: ClothingHandsGlovesColorYellowBudget entities: - uid: 15572 @@ -109438,6 +106243,20 @@ entities: - type: Transform pos: -27.480715,-76.49438 parent: 2 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 14652 + components: + - type: Transform + pos: -4.4227633,-25.534296 + parent: 2 +- proto: ClothingHandsGlovesConducting + entities: + - uid: 18828 + components: + - type: Transform + pos: 66.5225,-29.539532 + parent: 2 - proto: ClothingHandsGlovesFingerless entities: - uid: 15574 @@ -109550,6 +106369,13 @@ entities: solution@food: !type:ContainerSlot ent: 15531 - type: InsideEntityStorage +- proto: ClothingHeadHatAnimalHeadslime + entities: + - uid: 19748 + components: + - type: Transform + pos: 5.4324846,-36.44259 + parent: 2 - proto: ClothingHeadHatBeretBrigmedic entities: - uid: 15585 @@ -109644,21 +106470,6 @@ entities: parent: 2 - proto: ClothingHeadHatCone entities: - - uid: 15602 - components: - - type: Transform - pos: 5.5286374,-30.201202 - parent: 2 - - uid: 15603 - components: - - type: Transform - pos: 6.4427,-30.857452 - parent: 2 - - uid: 15604 - components: - - type: Transform - pos: 7.4505124,-32.123077 - parent: 2 - uid: 15605 components: - type: Transform @@ -109689,21 +106500,6 @@ entities: - type: Transform pos: -25.55883,-44.39041 parent: 2 - - uid: 15611 - components: - - type: Transform - pos: -0.37868118,-7.5557117 - parent: 2 - - uid: 15612 - components: - - type: Transform - pos: 0.8166313,-7.5322742 - parent: 2 - - uid: 15613 - components: - - type: Transform - pos: 1.4627991,-9.452779 - parent: 2 - uid: 41693 components: - type: Transform @@ -109734,11 +106530,6 @@ entities: - type: InsideEntityStorage - proto: ClothingHeadHatERTLeaderBeret entities: - - uid: 15614 - components: - - type: Transform - pos: -18.721577,-27.817108 - parent: 2 - uid: 41097 components: - type: Transform @@ -109899,13 +106690,6 @@ entities: parent: 15635 - type: Physics canCollide: False -- proto: ClothingHeadHatRichard - entities: - - uid: 15638 - components: - - type: Transform - pos: -18.651264,-27.32492 - parent: 2 - proto: ClothingHeadHatSantahat entities: - uid: 15640 @@ -109914,6 +106698,13 @@ entities: parent: 15639 - type: Physics canCollide: False +- proto: ClothingHeadHatSquid + entities: + - uid: 16297 + components: + - type: Transform + pos: -10.444734,-32.596302 + parent: 2 - proto: ClothingHeadHatSurgcapBlue entities: - uid: 15528 @@ -109957,6 +106748,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingHeadHatSyndieMAA + entities: + - uid: 23426 + components: + - type: Transform + pos: 13.109917,-28.169062 + parent: 2 - proto: ClothingHeadHatTrucker entities: - uid: 15644 @@ -110011,12 +106809,6 @@ entities: - type: Transform pos: -42.485313,-109.493546 parent: 2 - - uid: 15656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.529953,-51.742363 - parent: 2 - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - uid: 42321 @@ -110052,29 +106844,6 @@ entities: parent: 15660 - type: Physics canCollide: False -- proto: ClothingHeadHelmetAtmosFire - entities: - - uid: 116 - components: - - type: Transform - parent: 115 - - type: HandheldLight - toggleActionEntity: 117 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 117 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: InsideEntityStorage - proto: ClothingHeadHelmetERTLeader entities: - uid: 41098 @@ -110114,20 +106883,6 @@ entities: - type: Transform pos: -22.636265,10.761809 parent: 2 -- proto: ClothingHeadHelmetHardsuitPirateEVA - entities: - - uid: 15684 - components: - - type: Transform - pos: -6.5624027,-43.425514 - parent: 2 -- proto: ClothingHeadHelmetMerc - entities: - - uid: 15685 - components: - - type: Transform - pos: 10.491604,-16.45615 - parent: 2 - proto: ClothingHeadHelmetPodWars entities: - uid: 15686 @@ -110152,6 +106907,31 @@ entities: - type: Transform pos: 60.313145,-11.209959 parent: 2 + - uid: 23402 + components: + - type: Transform + pos: -4.5790133,-25.378046 + parent: 2 + - uid: 23406 + components: + - type: Transform + pos: -1.4898427,-35.23943 + parent: 2 + - uid: 23407 + components: + - type: Transform + pos: -1.4898427,-35.567554 + parent: 2 + - uid: 23408 + components: + - type: Transform + pos: -1.4898427,-35.92693 + parent: 2 + - uid: 23409 + components: + - type: Transform + pos: -1.4898427,-36.286304 + parent: 2 - proto: ClothingHeadHelmetSecurityMedic entities: - uid: 2480 @@ -110329,13 +107109,12 @@ entities: - type: Transform pos: -53.5617,-54.725506 parent: 2 -- proto: ClothingMaskGasCaptain +- proto: ClothingMaskGasCentcom entities: - - uid: 15712 + - uid: 14648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.668036,-25.523985 + pos: 8.576899,-20.60669 parent: 2 - proto: ClothingMaskGasERT entities: @@ -110376,6 +107155,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingMaskGoldenCursed + entities: + - uid: 23462 + components: + - type: Transform + pos: 12.50069,-55.473427 + parent: 2 - proto: ClothingMaskMuzzle entities: - uid: 15713 @@ -110384,6 +107170,13 @@ entities: rot: 3.141592653589793 rad pos: 75.22865,1.6687617 parent: 2 +- proto: ClothingMaskNinja + entities: + - uid: 19770 + components: + - type: Transform + pos: 2.454078,-37.422176 + parent: 2 - proto: ClothingMaskRaven entities: - uid: 15715 @@ -110409,6 +107202,11 @@ entities: - type: InsideEntityStorage - proto: ClothingMaskSexyMime entities: + - uid: 14679 + components: + - type: Transform + pos: -13.391465,-58.42333 + parent: 2 - uid: 15627 components: - type: Transform @@ -110453,15 +107251,6 @@ entities: - type: Transform pos: 0.08470392,-95.41465 parent: 2 -- proto: ClothingNeckCloakEnby - entities: - - uid: 15503 - components: - - type: Transform - parent: 15501 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingNeckCloakNanotrasen entities: - uid: 1787 @@ -110480,13 +107269,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingNeckCloakPirateCap - entities: - - uid: 15724 - components: - - type: Transform - pos: 10.469885,-22.367643 - parent: 2 - proto: ClothingNeckClownmedal entities: - uid: 43664 @@ -110515,41 +107297,11 @@ entities: parent: 2 - proto: ClothingNeckEarthPin entities: - - uid: 15731 - components: - - type: Transform - pos: 5.5134435,-62.576916 - parent: 2 - - uid: 15732 - components: - - type: Transform - pos: 3.5034523,-62.5625 - parent: 2 - - uid: 15733 - components: - - type: Transform - pos: 5.5290685,-59.62379 - parent: 2 - - uid: 15734 - components: - - type: Transform - pos: 16.509111,-62.59952 - parent: 2 - - uid: 15735 - components: - - type: Transform - pos: -19.49529,-62.58093 - parent: 2 - uid: 15736 components: - type: Transform pos: -30.330353,-112.935104 parent: 2 - - uid: 15737 - components: - - type: Transform - pos: -20.480944,-62.60587 - parent: 2 - proto: ClothingNeckEngineermedal entities: - uid: 15738 @@ -110565,6 +107317,13 @@ entities: - type: Transform pos: -7.3385572,-6.0528207 parent: 2 +- proto: ClothingNeckHorrific + entities: + - uid: 8110 + components: + - type: Transform + pos: -2.5671535,-51.700417 + parent: 2 - proto: ClothingNeckLogistikaPin entities: - uid: 15742 @@ -110686,6 +107445,13 @@ entities: - type: Transform pos: -34.47571,-21.488892 parent: 2 +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 14688 + components: + - type: Transform + pos: -5.4746923,-20.557722 + parent: 2 - proto: ClothingNeckScarfStripedZebra entities: - uid: 15628 @@ -110737,6 +107503,11 @@ entities: - type: Transform pos: -35.538567,20.515968 parent: 2 + - uid: 16502 + components: + - type: Transform + pos: -5.2715673,-20.698347 + parent: 2 - proto: ClothingNeckTransPin entities: - uid: 15766 @@ -111030,13 +107801,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingOuterCoatDetective - entities: - - uid: 15784 - components: - - type: Transform - pos: -16.754519,-29.286444 - parent: 2 - proto: ClothingOuterCoatLabSecurityMedic entities: - uid: 15589 @@ -111045,13 +107809,6 @@ entities: parent: 15586 - type: Physics canCollide: False -- proto: ClothingOuterCoatTrench - entities: - - uid: 15787 - components: - - type: Transform - pos: -16.754519,-29.489569 - parent: 2 - proto: ClothingOuterGhostSheet entities: - uid: 15789 @@ -111103,6 +107860,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingOuterHardsuitCarp + entities: + - uid: 16295 + components: + - type: Transform + pos: -1.46626,-33.355556 + parent: 2 - proto: ClothingOuterHardsuitERTEngineer entities: - uid: 41133 @@ -111242,60 +108006,6 @@ entities: priority: 0 component: Armor title: null -- proto: ClothingOuterHardsuitPirateEVA - entities: - - uid: 15194 - components: - - type: Transform - parent: 15193 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSalvage - entities: - - uid: 15800 - components: - - type: Transform - parent: 15799 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15803 - components: - - type: Transform - parent: 15802 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: Понижает вашу скорость на [color=yellow]25%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]50%[/color]. - - - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]70%[/color]. - - - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]70%[/color]. - priority: 0 - component: Armor - title: null - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterHardsuitVoidParamed entities: - uid: 15697 @@ -111359,13 +108069,6 @@ entities: - type: Transform pos: 36.474102,-19.33836 parent: 2 -- proto: ClothingOuterSuitRad - entities: - - uid: 15812 - components: - - type: Transform - pos: -19.54189,-27.465546 - parent: 2 - proto: ClothingOuterSuitWitchRobes entities: - uid: 10 @@ -111410,13 +108113,6 @@ entities: parent: 15586 - type: Physics canCollide: False -- proto: ClothingOuterVestWebMerc - entities: - - uid: 15817 - components: - - type: Transform - pos: 10.522854,-18.440525 - parent: 2 - proto: ClothingOuterWinterChef entities: - uid: 10626 @@ -111643,14 +108339,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingShoesBootsMercFilled - entities: - - uid: 15824 - components: - - type: Transform - pos: 10.4807,-24.389404 - parent: 2 - - type: NoSlip - proto: ClothingShoesBootsPerformer entities: - uid: 15362 @@ -111851,13 +108539,6 @@ entities: parent: 15586 - type: Physics canCollide: False -- proto: ClothingUniformJumpskirtCasualBlue - entities: - - uid: 15839 - components: - - type: Transform - pos: -15.7545185,-29.239569 - parent: 2 - proto: ClothingUniformJumpskirtCasualRed entities: - uid: 15840 @@ -111876,48 +108557,6 @@ entities: - type: Transform pos: 71.67125,-48.381943 parent: 2 -- proto: ClothingUniformJumpskirtColorDarkBlue - entities: - - uid: 15842 - components: - - type: Transform - pos: -16.682514,-27.723358 - parent: 2 -- proto: ClothingUniformJumpskirtColorDarkGreen - entities: - - uid: 15843 - components: - - type: Transform - pos: -14.971577,-27.301483 - parent: 2 - - uid: 15844 - components: - - type: Transform - pos: -15.018452,-27.676483 - parent: 2 -- proto: ClothingUniformJumpskirtCurator - entities: - - uid: 15845 - components: - - type: Transform - pos: -18.035769,-27.723944 - parent: 2 -- proto: ClothingUniformJumpskirtElegantMaid - entities: - - uid: 15847 - components: - - type: Transform - parent: 15846 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtLawyerBlue - entities: - - uid: 15848 - components: - - type: Transform - pos: -16.223269,-29.239569 - parent: 2 - proto: ClothingUniformJumpskirtPerformer entities: - uid: 15363 @@ -111959,18 +108598,6 @@ entities: - type: Transform pos: 29.50898,32.55174 parent: 2 -- proto: ClothingUniformJumpsuitBartender - entities: - - uid: 15852 - components: - - type: Transform - pos: -15.229389,-29.246796 - parent: 2 - - uid: 15853 - components: - - type: Transform - pos: -15.276264,-29.598358 - parent: 2 - proto: ClothingUniformJumpsuitBrigmedic entities: - uid: 15592 @@ -111986,13 +108613,6 @@ entities: - type: Transform pos: 95.52006,-84.47528 parent: 2 -- proto: ClothingUniformJumpsuitClownBanana - entities: - - uid: 15855 - components: - - type: Transform - pos: -16.63564,-27.395233 - parent: 2 - proto: ClothingUniformJumpsuitColorBlack entities: - uid: 15535 @@ -112002,46 +108622,39 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitColorTeal +- proto: ClothingUniformJumpsuitColorBlue entities: - - uid: 15856 - components: - - type: Transform - pos: -15.651264,-27.371796 - parent: 2 - - uid: 15857 + - uid: 23410 components: - type: Transform - pos: -15.674702,-27.723358 + pos: -1.8258393,-35.31752 parent: 2 -- proto: ClothingUniformJumpsuitColorWhite - entities: - - uid: 1339 + - uid: 23411 components: - type: Transform - pos: -74.609436,1.4101474 + pos: -1.8570893,-35.75502 parent: 2 - - uid: 15048 + - uid: 23412 components: - type: Transform - pos: -74.31256,1.5663974 + pos: -1.8570893,-36.051895 parent: 2 - - uid: 15858 + - uid: 23413 components: - type: Transform - pos: -17.66689,-27.395233 + pos: -1.8727143,-36.395645 parent: 2 - - uid: 15859 +- proto: ClothingUniformJumpsuitColorWhite + entities: + - uid: 1339 components: - type: Transform - pos: -17.66689,-27.746796 + pos: -74.609436,1.4101474 parent: 2 -- proto: ClothingUniformJumpsuitCurator - entities: - - uid: 15860 + - uid: 15048 components: - type: Transform - pos: -18.067019,-27.395819 + pos: -74.31256,1.5663974 parent: 2 - proto: ClothingUniformJumpsuitERTLeader entities: @@ -112130,120 +108743,8 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: Coal1 - entities: - - uid: 15863 - components: - - type: Transform - pos: -8.516426,-60.03743 - parent: 2 - - uid: 15864 - components: - - type: Transform - pos: -8.375801,-59.78743 - parent: 2 - - uid: 15865 - components: - - type: Transform - pos: -8.235176,-59.66243 - parent: 2 - - uid: 15866 - components: - - type: Transform - pos: -8.219551,-59.928055 - parent: 2 - - uid: 15867 - components: - - type: Transform - pos: -8.250801,-59.896805 - parent: 2 - - uid: 15868 - components: - - type: Transform - pos: -9.110176,-58.615555 - parent: 2 - - uid: 15869 - components: - - type: Transform - pos: -9.782051,-58.63118 - parent: 2 - - uid: 15870 - components: - - type: Transform - pos: -10.578926,-58.459305 - parent: 2 - - uid: 15871 - components: - - type: Transform - pos: -8.922676,-58.44368 - parent: 2 - - uid: 15872 - components: - - type: Transform - pos: -9.016426,-58.928055 - parent: 2 - - uid: 15873 - components: - - type: Transform - pos: -8.735176,-60.03743 - parent: 2 - - uid: 15874 - components: - - type: Transform - pos: -7.328926,-60.56868 - parent: 2 - - uid: 15875 - components: - - type: Transform - pos: -8.500801,-60.896805 - parent: 2 - - uid: 15876 - components: - - type: Transform - pos: -8.500801,-61.834305 - parent: 2 - - uid: 15877 - components: - - type: Transform - pos: -8.610176,-62.521805 - parent: 2 - - uid: 15878 - components: - - type: Transform - pos: -10.032051,-63.396805 - parent: 2 - proto: Cobweb1 entities: - - uid: 15879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-54.5 - parent: 2 - - uid: 15880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-54.5 - parent: 2 - - uid: 15881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-48.5 - parent: 2 - - uid: 15882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-54.5 - parent: 2 - - uid: 15883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-45.5 - parent: 2 - uid: 43165 components: - type: Transform @@ -112252,28 +108753,6 @@ entities: parent: 2 - proto: Cobweb2 entities: - - uid: 15884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 2 - - uid: 15885 - components: - - type: Transform - pos: -2.5,-22.5 - parent: 2 - - uid: 15886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-45.5 - parent: 2 - - uid: 15887 - components: - - type: Transform - pos: -15.5,-46.5 - parent: 2 - uid: 15888 components: - type: Transform @@ -112291,41 +108770,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,19.5 parent: 2 - - uid: 42297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 2 - - uid: 42298 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-31.5 - parent: 2 - - uid: 42299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-39.5 - parent: 2 - - uid: 42300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-30.5 - parent: 2 - - uid: 42301 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 2 - - uid: 42302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-26.5 - parent: 2 - uid: 43164 components: - type: Transform @@ -112391,14 +108835,14 @@ entities: - type: Transform pos: -13.5,-95.5 parent: 2 -- proto: CognizineChemistryBottle +- proto: CombatKnife entities: - - uid: 15900 + - uid: 10035 components: - type: Transform - parent: 15899 - - type: Physics - canCollide: False + rot: -1.5707963267948966 rad + pos: -3.5,-59.5 + parent: 2 - proto: CombatMedipen entities: - uid: 2485 @@ -112408,12 +108852,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-48.5 - parent: 2 - uid: 42086 components: - type: Transform @@ -112684,6 +109122,20 @@ entities: - type: Transform pos: 37.553635,-42.480568 parent: 2 +- proto: ComplexXenoArtifact + entities: + - uid: 15875 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 +- proto: ComplexXenoArtifactItem + entities: + - uid: 12224 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 - proto: ComputerAlert entities: - uid: 15946 @@ -112755,6 +109207,12 @@ entities: linkedPorts: 27046: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + - uid: 23463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-55.5 + parent: 2 - proto: ComputerAtmosMonitoring entities: - uid: 12459 @@ -112799,46 +109257,56 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-40.5 parent: 2 - - uid: 15959 + - uid: 23464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-41.5 + rot: 3.141592653589793 rad + pos: 9.5,-59.5 parent: 2 - proto: ComputerBroken entities: - - uid: 15960 + - uid: 7444 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-21.5 + pos: -7.5,-26.5 parent: 2 - - uid: 15961 + - uid: 7455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 98.5,-55.5 + pos: -10.5,-24.5 parent: 2 - - uid: 15962 + - uid: 7458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-51.5 + pos: -9.5,-24.5 parent: 2 - - uid: 15963 + - uid: 12205 components: - type: Transform - pos: 18.5,-12.5 + pos: 2.5,-18.5 parent: 2 - - uid: 15964 + - uid: 12206 components: - type: Transform - pos: 18.5,-12.5 + pos: -2.5,-18.5 parent: 2 - - uid: 15965 + - uid: 12207 components: - type: Transform - pos: -18.5,-45.5 + pos: 1.5,-17.5 + parent: 2 + - uid: 15961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,-55.5 + parent: 2 + - uid: 15962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,-51.5 parent: 2 - uid: 15966 components: @@ -112850,6 +109318,11 @@ entities: - type: Transform pos: 51.5,23.5 parent: 2 + - uid: 23386 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 2 - proto: ComputerCargoBounty entities: - uid: 15968 @@ -113021,22 +109494,68 @@ entities: parent: 2 - proto: ComputerFrame entities: - - uid: 15500 + - uid: 653 components: - type: Transform rot: 3.141592653589793 rad - pos: 87.5,-55.5 + pos: 13.5,-36.5 parent: 2 - - uid: 15996 + - uid: 14653 components: - type: Transform - pos: -57.5,-19.5 + rot: -1.5707963267948966 rad + pos: 15.5,-27.5 parent: 2 - - uid: 15997 + - uid: 14654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-28.5 + parent: 2 + - uid: 14656 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-40.5 + pos: 13.5,-25.5 + parent: 2 + - uid: 14687 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - uid: 15153 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 2 + - uid: 15179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 2 + - uid: 15182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 2 + - uid: 15292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-27.5 + parent: 2 + - uid: 15500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 87.5,-55.5 + parent: 2 + - uid: 15996 + components: + - type: Transform + pos: -57.5,-19.5 parent: 2 - uid: 15998 components: @@ -113056,11 +109575,11 @@ entities: rot: 3.141592653589793 rad pos: 107.5,-59.5 parent: 2 - - uid: 16001 + - uid: 16227 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-51.5 + pos: 11.5,-32.5 parent: 2 - uid: 26563 components: @@ -113092,15 +109611,13 @@ entities: - type: Transform pos: 15.5,16.5 parent: 2 -- proto: ComputerIFF +- proto: ComputerIFFSyndicate entities: - - uid: 16005 + - uid: 12203 components: - type: Transform - pos: 17.5,-12.5 + pos: 3.5,-18.5 parent: 2 -- proto: ComputerIFFSyndicate - entities: - uid: 41144 components: - type: Transform @@ -113146,6 +109663,12 @@ entities: - type: Transform pos: -47.5,-38.5 parent: 2 + - uid: 23466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-59.5 + parent: 2 - proto: ComputerPowerMonitoring entities: - uid: 1778 @@ -113290,14 +109813,11 @@ entities: parent: 2 - proto: ComputerShuttle entities: - - uid: 16033 + - uid: 12208 components: - type: Transform - anchored: False - pos: 16.5,-12.5 + pos: 0.5,-17.5 parent: 2 - - type: Physics - bodyType: Dynamic - uid: 40729 components: - type: Transform @@ -113887,84 +110407,6 @@ entities: rot: 3.141592653589793 rad pos: 67.5,7.5 parent: 2 - - uid: 16123 - components: - - type: Transform - pos: -13.5,-21.5 - parent: 2 - - uid: 16124 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 2 - - uid: 16125 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 2 - - uid: 16126 - components: - - type: Transform - pos: -13.5,-22.5 - parent: 2 - - uid: 16127 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 2 - - uid: 16128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 2 - - uid: 16129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 2 - - uid: 16130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-25.5 - parent: 2 - - uid: 16131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 - parent: 2 - - uid: 16132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-25.5 - parent: 2 - - uid: 16133 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 2 - - uid: 16134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-19.5 - parent: 2 - - uid: 16135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-19.5 - parent: 2 - - uid: 16136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-19.5 - parent: 2 - uid: 16137 components: - type: Transform @@ -113994,6 +110436,12 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,-81.5 parent: 2 + - uid: 19903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-68.5 + parent: 2 - uid: 27149 components: - type: Transform @@ -114005,6 +110453,18 @@ entities: rot: 1.5707963267948966 rad pos: 84.5,-53.5 parent: 2 + - uid: 29166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-68.5 + parent: 2 + - uid: 29167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-68.5 + parent: 2 - uid: 32476 components: - type: Transform @@ -114056,6 +110516,13 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-104.5 parent: 2 +- proto: CoordinatesDisk + entities: + - uid: 23612 + components: + - type: Transform + pos: 1.4030746,-24.907402 + parent: 2 - proto: CorporateCircuitBoard entities: - uid: 1347 @@ -114075,12 +110542,6 @@ entities: - type: Transform pos: -59.5,-24.5 parent: 2 - - uid: 16150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-36.5 - parent: 2 - proto: CounterWoodFrame entities: - uid: 16151 @@ -114114,13 +110575,6 @@ entities: - type: Transform pos: -57.5,-18.5 parent: 2 -- proto: CrateChemistryD - entities: - - uid: 16157 - components: - - type: Transform - pos: -4.5,-34.5 - parent: 2 - proto: CrateCoffin entities: - uid: 16158 @@ -114381,6 +110835,16 @@ entities: - type: Transform pos: 68.5,-15.5 parent: 2 + - uid: 16288 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 + - uid: 16289 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 2 - uid: 33538 components: - type: Transform @@ -114403,11 +110867,6 @@ entities: parent: 2 - proto: CrateEngineering entities: - - uid: 16196 - components: - - type: Transform - pos: -6.5,-49.5 - parent: 2 - uid: 41690 components: - type: Transform @@ -114554,23 +111013,13 @@ entities: - type: Transform pos: -71.5,-20.5 parent: 2 - - uid: 16208 - components: - - type: Transform - pos: 19.5,-62.5 - parent: 2 - - uid: 16209 + - uid: 19821 components: - type: Transform - pos: -5.5,-65.5 + pos: 13.5,-41.5 parent: 2 - proto: CrateFoodMRE entities: - - uid: 16211 - components: - - type: Transform - pos: 19.5,-30.5 - parent: 2 - uid: 43153 components: - type: Transform @@ -114647,11 +111096,6 @@ entities: - 0 - 0 - 0 - - uid: 16221 - components: - - type: Transform - pos: -20.5,-23.5 - parent: 2 - uid: 16222 components: - type: Transform @@ -114749,43 +111193,13 @@ entities: - type: Transform pos: -37.5,-97.5 parent: 2 -- proto: CrateFunPirate +- proto: CrateFunWaterGuns entities: - - uid: 16226 + - uid: 23561 components: - type: Transform - pos: 8.5,-25.5 + pos: 5.5,-44.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 16228 - - 16227 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: CrateGenericBiosuit entities: - uid: 16229 @@ -114829,43 +111243,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 2515 - components: - - type: Transform - pos: -13.5,-27.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 2517 - - 2518 - - 2519 - - 2516 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 16230 components: - type: Transform @@ -114899,11 +111276,37 @@ entities: - 0 - 0 - 0 - - uid: 16233 + - uid: 29212 components: - type: Transform - pos: 19.5,-51.5 + pos: -4.5,-68.5 parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - proto: CrateHydroponics entities: - uid: 2559 @@ -114917,8 +111320,8 @@ entities: immutable: False temperature: 293.1465 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -114935,16 +111338,16 @@ entities: showEnts: False occludes: True ents: - - 2568 - - 2565 - - 2564 - - 2569 - - 2567 - - 2561 - - 2563 - - 2566 - - 2560 - 7785 + - 2560 + - 2566 + - 2563 + - 2561 + - 2567 + - 2569 + - 2564 + - 2565 + - 2568 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -114980,6 +111383,42 @@ entities: removedMasks: 20 - type: PlaceableSurface isPlaceable: True +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 23249 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 7477 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateHydroSecure entities: - uid: 3485 @@ -115058,6 +111497,39 @@ entities: showEnts: False occludes: True ent: null +- proto: CrateMedicalScrubs + entities: + - uid: 23566 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - proto: CrateMedicalSecure entities: - uid: 15673 @@ -115113,8 +111585,8 @@ entities: immutable: False temperature: 293.1478 moles: - - 1.8977377 - - 7.139109 + - 1.8978093 + - 7.139378 - 0 - 0 - 0 @@ -115131,9 +111603,10 @@ entities: showEnts: False occludes: True ents: - - 16240 - - 16239 - 16241 + - 16239 + - 16240 + - 12246 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -115225,74 +111698,31 @@ entities: - type: Transform pos: 4.5,26.5 parent: 2 -- proto: CratePermaEscapeEVA +- proto: CratePermaEscapeDigging entities: - - uid: 16246 + - uid: 14700 components: - type: Transform - pos: -13.5,-29.5 + pos: 15.5,-8.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CratePirate +- proto: CratePermaEscapeGun entities: - - uid: 15501 + - uid: 14716 components: - type: Transform - pos: -14.5,-29.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 15503 - - 15502 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CratePlastic - entities: - - uid: 2112 - components: - - type: Transform - pos: 36.5,6.5 + pos: 1.5,-33.5 + parent: 2 +- proto: CratePlastic + entities: + - uid: 812 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: 36.5,6.5 parent: 2 - type: EntityStorage air: @@ -115429,19 +111859,44 @@ entities: ent: null - type: Pullable prevFixedRotation: True - - uid: 15505 + - uid: 7565 components: - type: Transform - pos: 2.5,-93.5 + pos: 5.5,-46.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 2 + - uid: 9940 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 2 + - uid: 9970 + components: + - type: Transform + pos: 5.5,-53.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 93.465614 + temperature: 293.14673 moles: - - 0 - - 0 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -115458,36 +111913,44 @@ entities: showEnts: False occludes: True ents: - - 15506 + - 7494 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 16247 + - uid: 10016 components: - type: Transform - pos: -12.5,-96.5 + pos: 11.5,-45.5 parent: 2 -- proto: CratePrivateSecure - entities: - - uid: 16248 + - uid: 14707 components: - type: Transform - pos: 5.5,-59.5 + pos: -7.5,-43.5 + parent: 2 + - uid: 14708 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 2 + - uid: 14709 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 2 + - uid: 15505 + components: + - type: Transform + pos: 2.5,-93.5 parent: 2 - - type: Lock - locked: False - - type: AccessReader - access: - - - CentralCommand - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14673 + temperature: 93.465614 moles: - - 1.8856695 - - 7.0937095 + - 0 + - 0 - 0 - 0 - 0 @@ -115504,24 +111967,45 @@ entities: showEnts: False occludes: True ents: - - 16249 + - 15506 paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: 16250 - - type: Pullable - prevFixedRotation: True - - uid: 16251 + ent: null + - uid: 16247 components: - type: Transform - anchored: True - pos: 16.5,-62.5 + pos: -12.5,-96.5 + parent: 2 + - uid: 18744 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 2 + - uid: 18745 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 +- proto: CratePrivateSecure + entities: + - uid: 43149 + components: + - type: Transform + pos: -14.5,-102.5 + parent: 2 + - uid: 43150 + components: + - type: Transform + pos: -14.5,-101.5 + parent: 2 + - uid: 44266 + components: + - type: MetaData + name: ультра крайне нелегальный стафф + - type: Transform + pos: -70.5,-2.5 parent: 2 - - type: AccessReader - access: - - - CentralCommand - - type: Physics - bodyType: Static - type: EntityStorage air: volume: 200 @@ -115546,21 +112030,39 @@ entities: showEnts: False occludes: True ents: - - 16252 + - 44288 + - 44287 + - 44286 + - 44285 + - 44284 + - 44283 + - 44282 + - 44281 + - 44280 + - 44279 + - 44278 + - 44277 + - 44276 + - 44275 + - 44274 + - 44273 + - 44272 + - 44271 + - 44270 + - 44269 + - 44268 + - 44267 paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: 16253 - - type: Pullable - prevFixedRotation: True - - uid: 16254 + ent: null +- proto: CrateSalvageEquipment + entities: + - uid: 28855 components: - type: Transform - pos: -19.5,-62.5 + pos: -7.5,-27.5 parent: 2 - - type: AccessReader - access: - - - CentralCommand - type: EntityStorage air: volume: 200 @@ -115579,27 +112081,28 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 16255 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: 16256 - - type: Pullable - prevFixedRotation: True - - uid: 16257 + - uid: 28949 components: - type: Transform - pos: -20.5,-62.5 + pos: 9.5,-54.5 + parent: 2 +- proto: CrateScience + entities: + - uid: 7564 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - uid: 9966 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 10004 + components: + - type: Transform + pos: 6.5,-53.5 parent: 2 - - type: AccessReader - access: - - - CentralCommand - type: EntityStorage air: volume: 200 @@ -115618,35 +112121,38 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 16258 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: 16259 - - type: Pullable - prevFixedRotation: True - - uid: 43149 + - uid: 10007 components: - type: Transform - pos: -14.5,-102.5 + pos: 4.5,-53.5 parent: 2 - - uid: 43150 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10017 components: - type: Transform - pos: -14.5,-101.5 + pos: 12.5,-45.5 parent: 2 - - uid: 44266 + - uid: 15817 components: - - type: MetaData - name: ультра крайне нелегальный стафф - type: Transform - pos: -70.5,-2.5 + pos: 6.5,-42.5 parent: 2 - type: EntityStorage air: @@ -115672,28 +112178,7 @@ entities: showEnts: False occludes: True ents: - - 44288 - - 44287 - - 44286 - - 44285 - - 44284 - - 44283 - - 44282 - - 44281 - - 44280 - - 44279 - - 44278 - - 44277 - - 44276 - - 44275 - - 44274 - - 44273 - - 44272 - - 44271 - - 44270 - - 44269 - - 44268 - - 44267 + - 29258 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -115813,36 +112298,6 @@ entities: - 0 - 0 - 0 - - uid: 16264 - components: - - type: Transform - pos: 12.5,-62.5 - parent: 2 - - uid: 16265 - components: - - type: Transform - pos: 5.5,-60.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Pullable - prevFixedRotation: True - proto: CrateServiceBureaucracy entities: - uid: 32573 @@ -116094,196 +112549,15 @@ entities: - type: Transform pos: 5.5,1.5 parent: 2 -- proto: CrateWeaponSecure +- proto: CrateVendingMachineRestockHappyHonkFilled entities: - - uid: 16287 - components: - - type: Transform - pos: 3.5,-62.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 16289 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: 16288 - - type: Pullable - prevFixedRotation: True - - uid: 16290 - components: - - type: Transform - pos: 5.5,-62.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 16292 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: 16291 - - type: Pullable - prevFixedRotation: True - - uid: 16293 - components: - - type: Transform - pos: 10.5,-59.5 - parent: 2 - - type: Lock - locked: False - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1462 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - uid: 16294 - components: - - type: Transform - pos: 14.5,-62.5 - parent: 2 - - type: Lock - locked: False - - uid: 16295 - components: - - type: Transform - pos: 19.5,-53.5 - parent: 2 - - type: Lock - locked: False - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - uid: 16296 - components: - - type: Transform - pos: 15.5,-56.5 - parent: 2 - - type: Lock - locked: False - - uid: 16297 - components: - - type: Transform - pos: 14.5,-56.5 - parent: 2 - - type: Lock - locked: False - - uid: 16298 - components: - - type: Transform - pos: 12.5,-55.5 - parent: 2 - - uid: 16299 + - uid: 9960 components: - type: Transform - pos: 6.5,-55.5 + pos: 16.5,-46.5 parent: 2 - - type: Pullable - prevFixedRotation: True +- proto: CrateWeaponSecure + entities: - uid: 16300 components: - type: Transform @@ -116295,8 +112569,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -116367,6 +112641,23 @@ entities: showEnts: False occludes: True ent: null +- proto: CrateWeb + entities: + - uid: 19808 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 2 + - uid: 19811 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 19820 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 2 - proto: CrayonBox entities: - uid: 1316 @@ -116490,13 +112781,6 @@ entities: parent: 2 - proto: Crowbar entities: - - uid: 16227 - components: - - type: Transform - parent: 16226 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 16320 components: - type: Transform @@ -116561,6 +112845,18 @@ entities: parent: 2 - proto: CryogenicSleepUnit entities: + - uid: 7351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-29.5 + parent: 2 + - uid: 15183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-27.5 + parent: 2 - uid: 16333 components: - type: Transform @@ -116629,23 +112925,35 @@ entities: - type: Transform pos: 87.5,1.5 parent: 2 - - uid: 16345 + - uid: 16664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-39.5 + rot: 1.5707963267948966 rad + pos: 4.5,-31.5 parent: 2 - - uid: 16346 + - uid: 20010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-31.5 + parent: 2 + - uid: 20011 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-37.5 + pos: 9.5,-29.5 parent: 2 - - uid: 16347 + - uid: 20012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-29.5 + parent: 2 + - uid: 20015 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-38.5 + pos: 9.5,-31.5 parent: 2 - uid: 41145 components: @@ -116723,17 +113031,20 @@ entities: - type: Transform pos: -35.5,-19.5 parent: 2 - - uid: 16354 + - uid: 23214 components: - type: Transform - pos: -13.5,-35.5 + pos: 5.5,-23.5 parent: 2 -- proto: CryostasisBeaker - entities: - - uid: 16355 + - uid: 23215 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 23216 components: - type: Transform - pos: -7.493344,-36.36821 + pos: 8.5,-23.5 parent: 2 - proto: CryoxadoneBeakerSmall entities: @@ -116747,52 +113058,74 @@ entities: - type: Transform pos: -34.292515,-22.123524 parent: 2 - - uid: 16358 +- proto: CrystalGreen + entities: + - uid: 16364 components: - type: Transform - pos: -15.295433,-38.47415 + pos: -73.5,-10.5 parent: 2 - - uid: 16359 + - uid: 16365 components: - type: Transform - pos: -15.326683,-32.283276 + pos: -75.5,-7.5 parent: 2 - - uid: 16360 + - uid: 16366 components: - type: Transform - pos: -17.243673,-37.550144 + pos: -75.5,-11.5 parent: 2 - - uid: 16361 +- proto: CrystalSpawner + entities: + - uid: 2106 components: - type: Transform - pos: -19.594576,-36.307743 + pos: 15.5,-49.5 parent: 2 - - uid: 16362 + - uid: 23593 components: - type: Transform - pos: -17.290548,-38.62827 + pos: -8.5,-42.5 parent: 2 - - uid: 16363 + - uid: 23594 components: - type: Transform - pos: -17.649923,-32.944572 + pos: -7.5,-38.5 parent: 2 -- proto: CrystalGreen - entities: - - uid: 16364 + - uid: 23595 components: - type: Transform - pos: -73.5,-10.5 + pos: -11.5,-32.5 parent: 2 - - uid: 16365 + - uid: 23596 components: - type: Transform - pos: -75.5,-7.5 + pos: 12.5,-43.5 parent: 2 - - uid: 16366 + - uid: 23597 components: - type: Transform - pos: -75.5,-11.5 + pos: 7.5,-43.5 + parent: 2 + - uid: 23598 + components: + - type: Transform + pos: -16.5,-49.5 + parent: 2 + - uid: 23599 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - uid: 23600 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 23601 + components: + - type: Transform + pos: -14.5,-43.5 parent: 2 - proto: CultAltarSpawner entities: @@ -116857,13 +113190,6 @@ entities: - type: Transform pos: 17.5,11.5 parent: 2 -- proto: Cutlass - entities: - - uid: 16376 - components: - - type: Transform - pos: 8.524349,-21.538694 - parent: 2 - proto: CutterMachine entities: - uid: 16377 @@ -116884,14 +113210,15 @@ entities: rot: 3.141592653589793 rad pos: 104.5,-20.5 parent: 2 -- proto: CyborgEndoskeleton +- proto: CyberPen entities: - - uid: 16378 + - uid: 23425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-47.5 - parent: 2 + parent: 23424 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: d10Dice entities: - uid: 16379 @@ -116959,26 +113286,6 @@ entities: parent: 35 - type: Physics canCollide: False -- proto: DefaultStationBeacon - entities: - - uid: 16384 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 2 - - type: NavMapBeacon - text: Зоопарк - - type: WarpPoint - location: Зоопарк - - uid: 16385 - components: - - type: Transform - pos: 13.5,-40.5 - parent: 2 - - type: NavMapBeacon - text: Музей искусств - - type: WarpPoint - location: Музей искусств - proto: DefaultStationBeaconAICore entities: - uid: 16386 @@ -117074,15 +113381,6 @@ entities: - type: Transform pos: 35.5,10.5 parent: 2 - - uid: 16396 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 2 - - type: NavMapBeacon - text: Оранжерея - - type: WarpPoint - location: Оранжерея - proto: DefaultStationBeaconBridge entities: - uid: 16397 @@ -117198,15 +113496,6 @@ entities: text: Мастерская - type: WarpPoint location: Мастерская - - uid: 16408 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 2 - - type: NavMapBeacon - text: Навигационная - - type: WarpPoint - location: Навигационная - proto: DefaultStationBeaconCourtroom entities: - uid: 16409 @@ -117345,13 +113634,6 @@ entities: text: EVA 2 - type: WarpPoint location: доп хранилище EVA -- proto: DefaultStationBeaconGateway - entities: - - uid: 16421 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 2 - proto: DefaultStationBeaconGravGen entities: - uid: 16422 @@ -117391,15 +113673,6 @@ entities: - type: Transform pos: 28.5,13.5 parent: 2 - - uid: 16427 - components: - - type: Transform - pos: -18.5,-23.5 - parent: 2 - - type: NavMapBeacon - text: Пищеблок - - type: WarpPoint - location: Пищеблок - proto: DefaultStationBeaconLawOffice entities: - uid: 16428 @@ -117445,15 +113718,6 @@ entities: text: Медотсек - type: WarpPoint location: Медотсек - - uid: 16432 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 2 - - type: NavMapBeacon - text: Генохранилище - - type: WarpPoint - location: Генохранилище - proto: DefaultStationBeaconMorgue entities: - uid: 42440 @@ -117526,28 +113790,8 @@ entities: - type: Transform pos: -10.5,-101.5 parent: 2 -- proto: DefaultStationBeaconScience - entities: - - uid: 16439 - components: - - type: Transform - pos: -16.5,-50.5 - parent: 2 - - type: NavMapBeacon - text: Лаборатория робототехники - - type: WarpPoint - location: Лаборатория робототехники - proto: DefaultStationBeaconSecurity entities: - - uid: 16440 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 2 - - type: NavMapBeacon - text: Арсенал - - type: WarpPoint - location: Арсенал - uid: 16441 components: - type: Transform @@ -117652,15 +113896,6 @@ entities: text: Карго - type: WarpPoint location: Карго - - uid: 16451 - components: - - type: Transform - pos: -0.5,-60.5 - parent: 2 - - type: NavMapBeacon - text: Трюм - - type: WarpPoint - location: Трюм - proto: DefaultStationBeaconSurgery entities: - uid: 16452 @@ -117795,6 +114030,13 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 41669 +- proto: DehydratedSpaceCarp + entities: + - uid: 23618 + components: + - type: Transform + pos: -0.4104433,-49.344315 + parent: 2 - proto: DeployableBarrier entities: - uid: 16466 @@ -117934,231 +114176,207 @@ entities: - type: Transform pos: -55.5,-2.5 parent: 2 -- proto: DiseaseSwab +- proto: DiskCase entities: - - uid: 16492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.521042,-34.364605 - parent: 2 - - uid: 16493 + - uid: 23606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.536667,-33.47398 + pos: 1.4655746,-25.548027 parent: 2 - - uid: 16494 + - uid: 23607 components: - type: Transform - pos: -17.5102,-32.51191 + pos: 1.5436996,-25.329277 parent: 2 - - uid: 16495 +- proto: DisposalBend + entities: + - uid: 2069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.552292,-32.645855 + rot: 3.141592653589793 rad + pos: -3.5,-99.5 parent: 2 - - uid: 16496 + - uid: 2187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.489792,-33.239605 + rot: 3.141592653589793 rad + pos: 17.5,-10.5 parent: 2 - - uid: 16497 + - uid: 5926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.614792,-33.708355 + rot: -1.5707963267948966 rad + pos: -1.5,-99.5 parent: 2 - - uid: 16498 + - uid: 6087 components: - type: Transform - pos: -15.6352005,-34.22205 + rot: -1.5707963267948966 rad + pos: 30.5,24.5 parent: 2 - - uid: 16499 + - uid: 12524 components: - type: Transform - pos: -15.630417,-34.44273 + rot: -1.5707963267948966 rad + pos: -15.5,-4.5 parent: 2 - - uid: 16500 + - uid: 13355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.317917,-37.44273 + rot: 1.5707963267948966 rad + pos: 26.5,24.5 parent: 2 - - uid: 16501 + - uid: 13358 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.489792,-38.22398 + pos: 26.5,16.5 parent: 2 - - uid: 16502 + - uid: 14514 components: - type: Transform - pos: -15.607422,-38.530865 + pos: 33.5,11.5 parent: 2 - - uid: 16503 + - uid: 14589 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.489792,-39.47398 + pos: -16.5,-5.5 parent: 2 - - uid: 16504 + - uid: 14591 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.567917,-37.489605 + rot: 1.5707963267948966 rad + pos: -15.5,-3.5 parent: 2 - - uid: 16505 + - uid: 14592 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.521042,-38.13023 + rot: -1.5707963267948966 rad + pos: -23.5,-38.5 parent: 2 - - uid: 16506 + - uid: 14603 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.396042,-38.489605 + rot: 1.5707963267948966 rad + pos: -24.5,-32.5 parent: 2 - - uid: 16507 + - uid: 14617 components: - type: Transform - pos: -17.450016,-39.243828 + rot: -1.5707963267948966 rad + pos: -15.5,-6.5 parent: 2 - - uid: 16508 + - uid: 14696 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.536667,-39.53648 + pos: -23.5,-33.5 parent: 2 - - uid: 16509 + - uid: 14740 components: - type: Transform - pos: -19.376984,-36.60867 + rot: 1.5707963267948966 rad + pos: -18.5,-5.5 parent: 2 - - uid: 16510 + - uid: 14744 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.397564,-37.19273 - parent: 2 - - uid: 16511 - components: - - type: Transform - pos: -19.363094,-37.571632 + pos: 52.5,-4.5 parent: 2 - - uid: 16512 + - uid: 14752 components: - type: Transform - pos: -19.576057,-38.173485 + rot: 1.5707963267948966 rad + pos: 50.5,-3.5 parent: 2 - - uid: 16513 + - uid: 14907 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.678814,-38.50523 + pos: 51.5,-3.5 parent: 2 - - uid: 16514 + - uid: 14909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.644965,-41.284153 + pos: 51.5,-3.5 parent: 2 - - uid: 16515 + - uid: 15243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.551215,-41.331028 + rot: 1.5707963267948966 rad + pos: 30.5,25.5 parent: 2 -- proto: DisposalBend - entities: - - uid: 2069 + - uid: 15483 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-99.5 + pos: 52.5,-3.5 parent: 2 - - uid: 5926 + - uid: 15496 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-99.5 + pos: 6.5,-0.5 parent: 2 - - uid: 6087 + - uid: 15880 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,24.5 + pos: -24.5,-37.5 parent: 2 - - uid: 13355 + - uid: 15899 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,24.5 + pos: -15.5,-5.5 parent: 2 - - uid: 13358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,16.5 - parent: 2 - - uid: 14514 + - uid: 15941 components: - type: Transform - pos: 33.5,11.5 + rot: 1.5707963267948966 rad + pos: 1.5,1.5 parent: 2 - - uid: 14744 + - uid: 15959 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-4.5 + pos: -14.5,-5.5 parent: 2 - - uid: 14752 + - uid: 15960 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-3.5 + pos: -14.5,-4.5 parent: 2 - - uid: 14907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-3.5 - parent: 2 - - uid: 14909 + - uid: 15964 components: - type: Transform - pos: 51.5,-3.5 + rot: -1.5707963267948966 rad + pos: -17.5,-7.5 parent: 2 - - uid: 15243 + - uid: 15965 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,25.5 - parent: 2 - - uid: 15483 - components: - - type: Transform - pos: 52.5,-3.5 + pos: -17.5,-6.5 parent: 2 - - uid: 15496 + - uid: 16001 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + pos: -11.5,-4.5 parent: 2 - - uid: 15941 + - uid: 16024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,1.5 + pos: 49.5,-47.5 parent: 2 - - uid: 16024 + - uid: 16127 components: - type: Transform - pos: 49.5,-47.5 + rot: -1.5707963267948966 rad + pos: -18.5,-8.5 parent: 2 - uid: 16517 components: @@ -118199,8 +114417,8 @@ entities: - uid: 16525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-10.5 + rot: -1.5707963267948966 rad + pos: -18.5,-6.5 parent: 2 - uid: 16526 components: @@ -118772,12 +114990,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-29.5 parent: 2 - - uid: 16639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-38.5 - parent: 2 - uid: 16640 components: - type: Transform @@ -118789,12 +115001,6 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,-65.5 parent: 2 - - uid: 16642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-33.5 - parent: 2 - uid: 16643 components: - type: Transform @@ -118819,18 +115025,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-6.5 parent: 2 - - uid: 16647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-6.5 - parent: 2 - - uid: 16648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-3.5 - parent: 2 - uid: 16649 components: - type: Transform @@ -118914,12 +115108,6 @@ entities: - type: Transform pos: -58.5,-42.5 parent: 2 - - uid: 16664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-81.5 - parent: 2 - uid: 16665 components: - type: Transform @@ -119357,34 +115545,6 @@ entities: - type: Transform pos: 20.5,-76.5 parent: 2 - - uid: 16744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-50.5 - parent: 2 - - uid: 16745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-33.5 - parent: 2 - - uid: 16746 - components: - - type: Transform - pos: -0.5,-33.5 - parent: 2 - - uid: 16747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-42.5 - parent: 2 - - uid: 16748 - components: - - type: Transform - pos: 0.5,-42.5 - parent: 2 - uid: 16749 components: - type: Transform @@ -119640,6 +115800,12 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-38.5 parent: 2 + - uid: 17735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-7.5 + parent: 2 - uid: 17762 components: - type: Transform @@ -119692,12 +115858,48 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,22.5 parent: 2 + - uid: 24186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-72.5 + parent: 2 + - uid: 24189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-76.5 + parent: 2 + - uid: 24199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-76.5 + parent: 2 + - uid: 24238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 2 - uid: 29097 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-7.5 parent: 2 + - uid: 29176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-117.5 + parent: 2 + - uid: 29197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-112.5 + parent: 2 - uid: 40602 components: - type: Transform @@ -119795,18 +115997,6 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-37.5 parent: 2 - - uid: 42950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-37.5 - parent: 2 - - uid: 42951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-32.5 - parent: 2 - uid: 42957 components: - type: Transform @@ -119837,12 +116027,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-16.5 parent: 2 - - uid: 42993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 2 - uid: 43000 components: - type: Transform @@ -120354,6 +116538,11 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: + - uid: 7555 + components: + - type: Transform + pos: 1.5,-81.5 + parent: 2 - uid: 15705 components: - type: Transform @@ -120610,6 +116799,11 @@ entities: parent: 2 - proto: DisposalMachineFrame entities: + - uid: 9902 + components: + - type: Transform + pos: -13.5,-41.5 + parent: 2 - uid: 13708 components: - type: Transform @@ -120671,6 +116865,18 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-92.5 parent: 2 + - uid: 7075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-9.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-74.5 + parent: 2 - uid: 8469 components: - type: Transform @@ -120707,6 +116913,29 @@ entities: rot: 3.141592653589793 rad pos: 26.5,20.5 parent: 2 + - uid: 14594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-33.5 + parent: 2 + - uid: 14599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 2 + - uid: 14615 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 14644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-37.5 + parent: 2 - uid: 14764 components: - type: Transform @@ -120717,6 +116946,12 @@ entities: - type: Transform pos: 50.5,-5.5 parent: 2 + - uid: 15004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-5.5 + parent: 2 - uid: 15369 components: - type: Transform @@ -120729,6 +116964,51 @@ entities: rot: -1.5707963267948966 rad pos: -57.5,-43.5 parent: 2 + - uid: 15869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 2 + - uid: 15878 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 15879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 2 + - uid: 15884 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - uid: 15885 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 2 + - uid: 15997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 2 + - uid: 16131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-4.5 + parent: 2 + - uid: 16133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 2 - uid: 16313 components: - type: Transform @@ -120966,11 +117246,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-10.5 parent: 2 - - uid: 16878 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 2 - uid: 16879 components: - type: Transform @@ -125485,41 +121760,11 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,-65.5 parent: 2 - - uid: 17709 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-38.5 - parent: 2 - uid: 17710 components: - type: Transform pos: -22.5,-24.5 parent: 2 - - uid: 17711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-37.5 - parent: 2 - - uid: 17712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-36.5 - parent: 2 - - uid: 17713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-35.5 - parent: 2 - - uid: 17714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-34.5 - parent: 2 - uid: 17715 components: - type: Transform @@ -125598,46 +121843,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-3.5 parent: 2 - - uid: 17729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-6.5 - parent: 2 - - uid: 17730 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-6.5 - parent: 2 - - uid: 17731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-6.5 - parent: 2 - - uid: 17732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-6.5 - parent: 2 - - uid: 17733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-6.5 - parent: 2 - - uid: 17734 - components: - - type: Transform - pos: -13.5,-5.5 - parent: 2 - - uid: 17735 - components: - - type: Transform - pos: -13.5,-4.5 - parent: 2 - uid: 17736 components: - type: Transform @@ -126063,11 +122268,6 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-26.5 parent: 2 - - uid: 17816 - components: - - type: Transform - pos: -29.5,-116.5 - parent: 2 - uid: 17817 components: - type: Transform @@ -127049,12 +123249,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-74.5 parent: 2 - - uid: 17993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-74.5 - parent: 2 - uid: 17994 components: - type: Transform @@ -128482,153 +124676,12 @@ entities: rot: 3.141592653589793 rad pos: 51.5,-20.5 parent: 2 - - uid: 18248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-45.5 - parent: 2 - uid: 18249 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-28.5 parent: 2 - - uid: 18250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-50.5 - parent: 2 - - uid: 18251 - components: - - type: Transform - pos: 0.5,-49.5 - parent: 2 - - uid: 18252 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 2 - - uid: 18253 - components: - - type: Transform - pos: 0.5,-47.5 - parent: 2 - - uid: 18254 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 2 - - uid: 18255 - components: - - type: Transform - pos: 0.5,-45.5 - parent: 2 - - uid: 18256 - components: - - type: Transform - pos: 0.5,-44.5 - parent: 2 - - uid: 18257 - components: - - type: Transform - pos: 0.5,-43.5 - parent: 2 - - uid: 18258 - components: - - type: Transform - pos: -0.5,-41.5 - parent: 2 - - uid: 18259 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 2 - - uid: 18260 - components: - - type: Transform - pos: -0.5,-39.5 - parent: 2 - - uid: 18261 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 2 - - uid: 18262 - components: - - type: Transform - pos: -0.5,-37.5 - parent: 2 - - uid: 18263 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 2 - - uid: 18264 - components: - - type: Transform - pos: -0.5,-35.5 - parent: 2 - - uid: 18265 - components: - - type: Transform - pos: -0.5,-34.5 - parent: 2 - - uid: 18266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-33.5 - parent: 2 - - uid: 18267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-33.5 - parent: 2 - - uid: 18268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-33.5 - parent: 2 - - uid: 18269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-33.5 - parent: 2 - - uid: 18270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-33.5 - parent: 2 - - uid: 18271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-33.5 - parent: 2 - - uid: 18272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-32.5 - parent: 2 - - uid: 18273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-31.5 - parent: 2 - - uid: 18274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-30.5 - parent: 2 - uid: 18275 components: - type: Transform @@ -129704,6 +125757,91 @@ entities: rot: 3.141592653589793 rad pos: 19.5,15.5 parent: 2 + - uid: 24185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-73.5 + parent: 2 + - uid: 24187 + components: + - type: Transform + pos: 7.5,-74.5 + parent: 2 + - uid: 24188 + components: + - type: Transform + pos: 7.5,-75.5 + parent: 2 + - uid: 24190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-76.5 + parent: 2 + - uid: 24191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-76.5 + parent: 2 + - uid: 24192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-76.5 + parent: 2 + - uid: 24193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-76.5 + parent: 2 + - uid: 24194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-76.5 + parent: 2 + - uid: 24195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-77.5 + parent: 2 + - uid: 24196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-78.5 + parent: 2 + - uid: 24197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-79.5 + parent: 2 + - uid: 24198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-80.5 + parent: 2 + - uid: 24912 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 2 + - uid: 25876 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 2 + - uid: 26036 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 2 - uid: 28177 components: - type: Transform @@ -129722,6 +125860,39 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-78.5 parent: 2 + - uid: 29174 + components: + - type: Transform + pos: -29.5,-116.5 + parent: 2 + - uid: 29175 + components: + - type: Transform + pos: -29.5,-115.5 + parent: 2 + - uid: 29184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-117.5 + parent: 2 + - uid: 29185 + components: + - type: Transform + pos: -29.5,-114.5 + parent: 2 + - uid: 29186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-112.5 + parent: 2 + - uid: 29193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-112.5 + parent: 2 - uid: 30655 components: - type: Transform @@ -130185,32 +126356,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-38.5 parent: 2 - - uid: 42952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-37.5 - parent: 2 - - uid: 42953 - components: - - type: Transform - pos: -23.5,-36.5 - parent: 2 - - uid: 42954 - components: - - type: Transform - pos: -23.5,-35.5 - parent: 2 - - uid: 42955 - components: - - type: Transform - pos: -23.5,-34.5 - parent: 2 - - uid: 42956 - components: - - type: Transform - pos: -23.5,-33.5 - parent: 2 - uid: 42958 components: - type: Transform @@ -130346,72 +126491,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-8.5 parent: 2 - - uid: 42986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-8.5 - parent: 2 - - uid: 42987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 2 - - uid: 42988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 2 - - uid: 42989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-8.5 - parent: 2 - - uid: 42990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 2 - - uid: 42991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-8.5 - parent: 2 - - uid: 42992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-8.5 - parent: 2 - - uid: 42994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-7.5 - parent: 2 - - uid: 42995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-6.5 - parent: 2 - - uid: 42996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-5.5 - parent: 2 - - uid: 42997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-4.5 - parent: 2 - uid: 42998 components: - type: Transform @@ -131512,13 +127591,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-51.5 parent: 2 -- proto: DisposalPipeBroken - entities: - - uid: 18464 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 2 - proto: DisposalRouter entities: - uid: 16314 @@ -132211,29 +128283,12 @@ entities: - type: Transform pos: 43.5,28.5 parent: 2 - - uid: 18560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-46.5 - parent: 2 - uid: 18561 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-28.5 parent: 2 - - uid: 18562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-50.5 - parent: 2 - - uid: 18563 - components: - - type: Transform - pos: -7.5,-29.5 - parent: 2 - uid: 18564 components: - type: Transform @@ -132310,11 +128365,23 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-84.5 parent: 2 + - uid: 24184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-72.5 + parent: 2 - uid: 27887 components: - type: Transform pos: 4.5,-71.5 parent: 2 + - uid: 29177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-117.5 + parent: 2 - uid: 32794 components: - type: Transform @@ -132434,6 +128501,11 @@ entities: - type: Transform pos: 37.5,9.5 parent: 2 + - uid: 15870 + components: + - type: Transform + pos: -31.5,-117.5 + parent: 2 - uid: 15935 components: - type: MetaData @@ -132486,22 +128558,6 @@ entities: - type: Transform pos: 25.5,-29.5 parent: 2 - - uid: 18580 - components: - - type: MetaData - desc: Теперь и лифт для сверхбыстрого перемещения. Вау. - name: пневматический лифт - - type: Transform - pos: -7.5,-29.5 - parent: 2 - - uid: 18581 - components: - - type: MetaData - desc: Теперь и лифт для сверхбыстрого перемещения. Вау. - name: пневматический лифт - - type: Transform - pos: 5.5,-50.5 - parent: 2 - uid: 18582 components: - type: Transform @@ -132840,37 +128896,6 @@ entities: - type: Transform pos: 56.5,-10.5 parent: 2 - - uid: 18653 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 2 - - uid: 18654 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 2 - - uid: 18655 - components: - - type: MetaData - desc: Теперь и лифт для сверхбыстрого перемещения. Вау. - name: пневматический лифт - - type: Transform - pos: 2.5,-50.5 - parent: 2 - - uid: 18656 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 2 - - uid: 18657 - components: - - type: MetaData - desc: Теперь и лифт для сверхбыстрого перемещения. Вау. - name: пневматический лифт - - type: Transform - pos: 2.5,-46.5 - parent: 2 - uid: 18658 components: - type: MetaData @@ -133246,28 +129271,6 @@ entities: - type: Transform pos: -13.5,10.5 parent: 2 - - uid: 18697 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 2 - - uid: 18698 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 2 - - type: Storage - storedItems: - 18699: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 18699 - proto: DresserCaptainFilled entities: - uid: 43353 @@ -133373,12 +129376,6 @@ entities: parent: 2 - proto: DrinkBeerBottleFull entities: - - uid: 15540 - components: - - type: Transform - parent: 33672 - - type: Physics - canCollide: False - uid: 18717 components: - type: Transform @@ -133494,17 +129491,10 @@ entities: - type: Transform pos: -1.5820045,0.62638855 parent: 2 -- proto: DrinkChangelingStingCan - entities: - - uid: 18739 - components: - - type: Transform - pos: -11.683014,-36.325157 - parent: 2 - - uid: 18740 + - uid: 29291 components: - type: Transform - pos: -11.388683,-36.450157 + pos: -56.47804,-131.48271 parent: 2 - proto: DrinkCognacBottleFull entities: @@ -133524,13 +129514,6 @@ entities: - type: Transform pos: -57.604233,-48.34345 parent: 2 - - uid: 18744 - components: - - type: Transform - parent: 18743 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: DrinkColaCan entities: - uid: 18748 @@ -133547,6 +129530,14 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: DrinkCosmopolitan + entities: + - uid: 29207 + components: + - type: Transform + parent: 29203 + - type: Physics + canCollide: False - proto: DrinkDetFlask entities: - uid: 18751 @@ -133569,13 +129560,24 @@ entities: parent: 2 - proto: DrinkGlass entities: - - uid: 18745 + - uid: 29204 components: - type: Transform - parent: 18743 + parent: 29203 + - type: Physics + canCollide: False + - uid: 29205 + components: + - type: Transform + parent: 29203 + - type: Physics + canCollide: False + - uid: 29206 + components: + - type: Transform + parent: 29203 - type: Physics canCollide: False - - type: InsideEntityStorage - proto: DrinkGlassCoupeShaped entities: - uid: 18727 @@ -133590,6 +129592,16 @@ entities: parent: 18721 - type: Physics canCollide: False + - uid: 20016 + components: + - type: Transform + pos: -15.106409,-55.647816 + parent: 2 + - uid: 20017 + components: + - type: Transform + pos: -14.653284,-55.63219 + parent: 2 - proto: DrinkGoldenCup entities: - uid: 18754 @@ -133865,13 +129877,6 @@ entities: - type: Transform pos: 36.771786,-63.324944 parent: 2 -- proto: DrinkPatronBottleFull - entities: - - uid: 18838 - components: - - type: Transform - pos: 13.506333,-44.40823 - parent: 2 - proto: DrinkPwrGameCan entities: - uid: 18839 @@ -133908,13 +129913,6 @@ entities: parent: 2 - proto: DrinkShaker entities: - - uid: 18746 - components: - - type: Transform - parent: 18743 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 18845 components: - type: Transform @@ -133964,15 +129962,6 @@ entities: - type: Transform pos: -57.291733,-48.7497 parent: 2 -- proto: DrinkSingulo - entities: - - uid: 18853 - components: - - type: Transform - parent: 18852 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: DrinkTeacup entities: - uid: 18854 @@ -134079,6 +130068,11 @@ entities: - type: Transform pos: 36.443604,-63.328476 parent: 2 + - uid: 20019 + components: + - type: Transform + pos: -15.809534,-55.13219 + parent: 2 - proto: Dropper entities: - uid: 18872 @@ -134092,45 +130086,23 @@ entities: rot: 3.141592653589793 rad pos: 33.528248,22.992973 parent: 2 -- proto: Ectoplasm - entities: - - uid: 18874 + - uid: 20429 components: - type: Transform - pos: 33.513348,-71.052895 + pos: -8.260692,-63.45456 parent: 2 -- proto: EggSpider +- proto: Ectoplasm entities: - - uid: 18876 + - uid: 13085 components: - type: Transform - pos: -1.7250237,-22.335646 + pos: 11.496411,-31.037231 parent: 2 - - uid: 18877 - components: - - type: Transform - pos: -1.8500237,-22.523146 - parent: 2 - - uid: 18878 - components: - - type: Transform - pos: -1.7093987,-22.63252 - parent: 2 - - uid: 18879 - components: - - type: Transform - pos: -1.5218987,-22.491896 - parent: 2 - - uid: 18880 + - uid: 18874 components: - - type: MetaData - name: яйцо ёжика с планеты синего кефира - type: Transform - rot: 3.141592653589793 rad - pos: 0.4938854,-32.51847 + pos: 33.513348,-71.052895 parent: 2 - - type: StaticPrice - price: 8000 - proto: EmergencyLight entities: - uid: 18881 @@ -134714,6 +130686,13 @@ entities: rot: 3.141592653589793 rad pos: 78.5,-64.5 parent: 2 +- proto: EncryptionKeyBinary + entities: + - uid: 19806 + components: + - type: Transform + pos: -16.538025,-46.528683 + parent: 2 - proto: EncryptionKeyCentCom entities: - uid: 41782 @@ -134730,6 +130709,18 @@ entities: parent: 18963 - type: Physics canCollide: False +- proto: EnergySword + entities: + - uid: 7350 + components: + - type: Transform + pos: 2.9329998,-34.69089 + parent: 2 + - uid: 7358 + components: + - type: Transform + pos: 2.9329998,-34.97214 + parent: 2 - proto: Envelope entities: - uid: 18966 @@ -134772,22 +130763,28 @@ entities: - type: Transform pos: -45.64116,-10.314175 parent: 2 - - uid: 18972 +- proto: Error + entities: + - uid: 7479 components: - type: Transform - pos: -7.5288906,-35.512474 + pos: 6.5,-59.5 parent: 2 -- proto: ERTSpawnerCBURN - entities: - - uid: 18973 + - uid: 7541 components: - - type: MetaData - name: (DISABLE) одноразовый маркер спавна шкелета-пилата калибского моля - type: Transform - pos: 10.5,-20.5 + pos: 6.5,-55.5 + parent: 2 + - uid: 12239 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 + - uid: 20022 + components: + - type: Transform + pos: -5.5,-55.5 parent: 2 - - type: SpawnOnTrigger - proto: MobSkeletonPirate - proto: ERTSpawnerEngineering entities: - uid: 41164 @@ -134799,42 +130796,6 @@ entities: invokeCounter: 1 - proto: ERTSpawnerJanitor entities: - - uid: 18974 - components: - - type: MetaData - name: одноразовый маркер спавна ОВЕРЛУТА - - type: Transform - pos: -9.5,-54.5 - parent: 2 - - type: SpawnOnTrigger - proto: ClothingOuterHardsuitMaxim - - uid: 18975 - components: - - type: MetaData - name: не слишком ли много спавнеров обр? хммммммммммм? - - type: Transform - pos: 4.5,-48.5 - parent: 2 - - type: SpawnOnTrigger - proto: SpaceMedipen - - uid: 27103 - components: - - type: MetaData - name: одноразовый маркер спавна лута по сигналу - - type: Transform - pos: 6.5,-63.5 - parent: 2 - - type: SpawnOnTrigger - proto: LootSpawnerContrabandHigh - - uid: 38568 - components: - - type: MetaData - name: одноразовый маркер спавна РПГ-7 по сигналу - - type: Transform - pos: 10.5,-13.5 - parent: 2 - - type: SpawnOnTrigger - proto: WeaponLauncherRocket - uid: 42202 components: - type: Transform @@ -134900,13 +130861,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ExosuitFabricator - entities: - - uid: 18976 - components: - - type: Transform - pos: -16.5,-54.5 - parent: 2 - proto: ExplosionRune entities: - uid: 24905 @@ -134924,13 +130878,6 @@ entities: parent: 2 - proto: ExtendedEmergencyOxygenTankFilled entities: - - uid: 15195 - components: - - type: Transform - parent: 15193 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 18978 components: - type: Transform @@ -135255,13 +131202,6 @@ entities: - type: Transform pos: -40.5,17.5 parent: 2 -- proto: ExtradimensionalOrangeSeeds - entities: - - uid: 19040 - components: - - type: Transform - pos: -15.111454,-11.458054 - parent: 2 - proto: EZNutrientChemistryBottle entities: - uid: 2566 @@ -135475,16 +131415,6 @@ entities: - type: Transform pos: 50.5,9.5 parent: 2 - - uid: 19070 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 2 - - uid: 19071 - components: - - type: Transform - pos: 17.5,-30.5 - parent: 2 - uid: 19072 components: - type: Transform @@ -135507,11 +131437,6 @@ entities: - type: Transform pos: 72.5,-36.5 parent: 2 - - uid: 19077 - components: - - type: Transform - pos: 20.5,-30.5 - parent: 2 - uid: 19078 components: - type: Transform @@ -135524,11 +131449,6 @@ entities: - type: Transform pos: 49.5,-23.5 parent: 2 - - uid: 19080 - components: - - type: Transform - pos: 17.5,-27.5 - parent: 2 - proto: FireAlarm entities: - uid: 19081 @@ -136499,17 +132419,6 @@ entities: - 24759 - 19147 - 19155 - - uid: 19138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-35.5 - parent: 2 - - type: DeviceList - devices: - - 1083 - - 19233 - - 19232 - uid: 19139 components: - type: Transform @@ -136571,14 +132480,6 @@ entities: - type: Transform pos: -12.5,20.5 parent: 2 -- proto: FireAxeCabinetOpen - entities: - - uid: 19143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 2 - proto: FireBombEmpty entities: - uid: 19144 @@ -137127,15 +133028,6 @@ entities: - type: DeviceNetwork deviceLists: - 275 - - uid: 19219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 278 - uid: 19220 components: - type: Transform @@ -137175,23 +133067,6 @@ entities: - type: DeviceNetwork deviceLists: - 275 - - uid: 19224 - components: - - type: Transform - pos: 10.5,-25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 278 - - uid: 19225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-27.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 278 - uid: 19226 components: - type: Transform @@ -137219,51 +133094,6 @@ entities: deviceLists: - 19127 - 277 - - uid: 19229 - components: - - type: Transform - pos: 17.5,-19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 278 - - uid: 19230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 279 - - uid: 19231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 279 - - uid: 19232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 280 - - 19138 - - uid: 19233 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 280 - - 19138 - uid: 19234 components: - type: Transform @@ -137396,6 +133226,15 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,2.5 parent: 2 + - uid: 10069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24105 - uid: 15990 components: - type: Transform @@ -137484,6 +133323,9 @@ entities: - type: Transform pos: 26.5,-32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 24535 - uid: 19252 components: - type: Transform @@ -140205,6 +136047,9 @@ entities: - type: Transform pos: 26.5,-31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 24535 - uid: 19660 components: - type: Transform @@ -140350,6 +136195,9 @@ entities: - type: Transform pos: 26.5,-33.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 24535 - uid: 19676 components: - type: Transform @@ -140666,6 +136514,51 @@ entities: - type: DeviceNetwork deviceLists: - 300 + - uid: 23557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24105 + - uid: 24766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24535 + - uid: 24767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24535 + - uid: 24768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24535 + - uid: 24769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24535 - uid: 26906 components: - type: Transform @@ -140682,6 +136575,33 @@ entities: - type: DeviceNetwork deviceLists: - 20495 + - uid: 29255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24105 + - uid: 29256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24105 + - uid: 29257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24105 - uid: 41171 components: - type: Transform @@ -140910,15 +136830,6 @@ entities: - type: Transform pos: 68.54567,2.5029752 parent: 2 -- proto: FlippoEngravedLighter - entities: - - uid: 19722 - components: - - type: Transform - parent: 19721 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: FlippoLighter entities: - uid: 19723 @@ -140926,13 +136837,27 @@ entities: - type: Transform pos: 56.097004,-2.334701 parent: 2 - - uid: 19725 +- proto: Floodlight + entities: + - uid: 23560 components: - type: Transform - parent: 19724 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 14.533041,-49.542076 + parent: 2 + - type: HandheldLight + toggleActionEntity: 19768 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 19768 + - type: ActionsContainer - proto: FloodlightBroken entities: - uid: 19726 @@ -140942,22 +136867,6 @@ entities: parent: 2 - proto: FloorDrain entities: - - uid: 19727 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-18.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 19728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-16.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 19729 components: - type: Transform @@ -141011,14 +136920,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 19736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-18.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 19737 components: - type: Transform @@ -141079,56 +136980,6 @@ entities: - type: Transform pos: 30.63586,27.717701 parent: 2 - - uid: 19741 - components: - - type: Transform - pos: -16.612171,-33.363903 - parent: 2 - - uid: 19742 - components: - - type: Transform - pos: -16.489063,-33.65736 - parent: 2 - - uid: 19743 - components: - - type: Transform - pos: -18.629688,-40.68861 - parent: 2 - - uid: 19744 - components: - - type: Transform - pos: -18.535938,-40.235485 - parent: 2 - - uid: 19745 - components: - - type: Transform - pos: -14.207813,-40.797985 - parent: 2 - - uid: 19746 - components: - - type: Transform - pos: -14.551563,-40.75111 - parent: 2 - - uid: 19747 - components: - - type: Transform - pos: -18.586708,-31.39135 - parent: 2 - - uid: 19748 - components: - - type: Transform - pos: -14.492958,-31.344475 - parent: 2 - - uid: 19749 - components: - - type: Transform - pos: -14.399208,-31.406975 - parent: 2 - - uid: 19750 - components: - - type: Transform - pos: -14.242958,-31.5476 - parent: 2 - uid: 28815 components: - type: Transform @@ -141164,61 +137015,55 @@ entities: rot: 3.141592653589793 rad pos: -54.18401,-69.873634 parent: 2 -- proto: FloorTileItemWoodLargeLight +- proto: FloorWaterEntity entities: - - uid: 19763 - components: - - type: Transform - pos: 11.27867,-39.371506 - parent: 2 - - uid: 19764 - components: - - type: Transform - pos: 13.77867,-38.23088 - parent: 2 - - uid: 19765 + - uid: 7399 components: - type: Transform - pos: 16.653671,-39.54338 + rot: 1.5707963267948966 rad + pos: -0.5,-56.5 parent: 2 - - uid: 19766 + - uid: 7400 components: - type: Transform - pos: 8.27867,-43.40281 + rot: 1.5707963267948966 rad + pos: -0.5,-55.5 parent: 2 -- proto: FloorWaterEntity - entities: - - uid: 19767 + - uid: 7401 components: - type: Transform - pos: -2.5,-27.5 + rot: 1.5707963267948966 rad + pos: -0.5,-54.5 parent: 2 - - uid: 19768 + - uid: 7402 components: - type: Transform - pos: -3.5,-27.5 + rot: 1.5707963267948966 rad + pos: 0.5,-54.5 parent: 2 - - uid: 19769 + - uid: 7403 components: - type: Transform - pos: -3.5,-28.5 + rot: 1.5707963267948966 rad + pos: 1.5,-54.5 parent: 2 - - uid: 19770 + - uid: 7404 components: - type: Transform - pos: -2.5,-28.5 + rot: 1.5707963267948966 rad + pos: 1.5,-55.5 parent: 2 - - uid: 19771 + - uid: 7405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-26.5 + rot: 1.5707963267948966 rad + pos: 1.5,-56.5 parent: 2 - - uid: 19772 + - uid: 7406 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-26.5 + rot: 1.5707963267948966 rad + pos: 0.5,-56.5 parent: 2 - proto: FloraTreeConifer entities: @@ -141359,36 +137204,6 @@ entities: parent: 2 - proto: FoamedAluminiumMetal entities: - - uid: 19789 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 2 - - uid: 19790 - components: - - type: Transform - pos: 2.5,-67.5 - parent: 2 - - uid: 19791 - components: - - type: Transform - pos: -1.5,-67.5 - parent: 2 - - uid: 19793 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - uid: 19794 - components: - - type: Transform - pos: 22.5,-34.5 - parent: 2 - - uid: 19795 - components: - - type: Transform - pos: 21.5,-31.5 - parent: 2 - uid: 19796 components: - type: Transform @@ -141429,226 +137244,72 @@ entities: - type: Transform pos: -52.5,-0.5 parent: 2 - - uid: 19804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-41.5 - parent: 2 - - uid: 19805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-45.5 - parent: 2 - - uid: 19806 - components: - - type: Transform - pos: 5.5,-33.5 - parent: 2 - - uid: 19807 - components: - - type: Transform - pos: 5.5,-32.5 - parent: 2 - - uid: 19808 - components: - - type: Transform - pos: 4.5,-33.5 - parent: 2 - - uid: 19809 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 2 - - uid: 19810 - components: - - type: Transform - pos: 4.5,-32.5 - parent: 2 - - uid: 19811 - components: - - type: Transform - pos: 4.5,-31.5 - parent: 2 - - uid: 19812 - components: - - type: Transform - pos: 21.5,-30.5 - parent: 2 - - uid: 19813 - components: - - type: Transform - pos: 21.5,-34.5 - parent: 2 - - uid: 19815 - components: - - type: Transform - pos: -23.5,-45.5 - parent: 2 - - uid: 19816 - components: - - type: Transform - pos: -24.5,-46.5 - parent: 2 - - uid: 19817 - components: - - type: Transform - pos: -23.5,-40.5 - parent: 2 - - uid: 19818 - components: - - type: Transform - pos: -2.5,-10.5 - parent: 2 - - uid: 19819 - components: - - type: Transform - pos: -2.5,-66.5 - parent: 2 - - uid: 19820 - components: - - type: Transform - pos: -2.5,-67.5 - parent: 2 - - uid: 19821 - components: - - type: Transform - pos: 3.5,-67.5 - parent: 2 - - uid: 19822 - components: - - type: Transform - pos: 3.5,-68.5 - parent: 2 - - uid: 19823 - components: - - type: Transform - pos: 0.5,-12.5 - parent: 2 - - uid: 19824 - components: - - type: Transform - pos: 1.5,-12.5 - parent: 2 - - uid: 19825 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 2 - - uid: 19826 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 2 - - uid: 19827 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 2 - - uid: 19828 - components: - - type: Transform - pos: 2.5,-12.5 - parent: 2 - - uid: 37100 + - uid: 27602 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-40.5 + pos: 21.5,-35.5 parent: 2 - - uid: 40222 + - uid: 27603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-30.5 + pos: 20.5,-34.5 parent: 2 - proto: FoamedIronMetal entities: - - uid: 19829 - components: - - type: Transform - pos: -21.5,-42.5 - parent: 2 - - uid: 19830 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 2 - - uid: 19831 - components: - - type: Transform - pos: 5.5,-37.5 - parent: 2 - - uid: 19832 - components: - - type: Transform - pos: 4.5,-37.5 - parent: 2 - - uid: 19833 - components: - - type: Transform - pos: 16.5,-33.5 - parent: 2 - - uid: 19834 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 2 - - uid: 19835 + - uid: 27608 components: - type: Transform - pos: -20.5,-43.5 + pos: 20.5,-36.5 parent: 2 - - uid: 19836 + - uid: 27627 components: - type: Transform - pos: 18.5,-33.5 + pos: 21.5,-36.5 parent: 2 - - uid: 19837 + - uid: 27628 components: - type: Transform - pos: 18.5,-32.5 + pos: 20.5,-37.5 parent: 2 - - uid: 19838 + - uid: 27629 components: - type: Transform - pos: 19.5,-32.5 + pos: 22.5,-37.5 parent: 2 - - uid: 19839 + - uid: 27660 components: - type: Transform - pos: 4.5,-38.5 + pos: 21.5,-38.5 parent: 2 - - uid: 19840 + - uid: 27670 components: - type: Transform - pos: 5.5,-36.5 + pos: 22.5,-38.5 parent: 2 - - uid: 19841 + - uid: 27677 components: - type: Transform - pos: 16.5,-32.5 + pos: 22.5,-39.5 parent: 2 - - uid: 19842 + - uid: 27683 components: - type: Transform - pos: 14.5,-32.5 + pos: 20.5,-44.5 parent: 2 - - uid: 19843 + - uid: 27684 components: - type: Transform - pos: 19.5,-33.5 + pos: 20.5,-43.5 parent: 2 - - uid: 19844 + - uid: 27685 components: - type: Transform - pos: 17.5,-33.5 + pos: 22.5,-44.5 parent: 2 - - uid: 19845 + - uid: 27686 components: - type: Transform - pos: -21.5,-43.5 + pos: 22.5,-43.5 parent: 2 - proto: FoodBakedBunHotX entities: @@ -141682,6 +137343,13 @@ entities: - type: Transform pos: 67.492195,-48.33586 parent: 2 +- proto: FoodBakedWaffleSoylent + entities: + - uid: 3301 + components: + - type: Transform + pos: -6.522968,-35.46325 + parent: 2 - proto: FoodBanana entities: - uid: 19849 @@ -141821,6 +137489,25 @@ entities: - type: Transform pos: -9.435904,15.6597595 parent: 2 +- proto: FoodBreadJellySlice + entities: + - uid: 3334 + components: + - type: Transform + pos: 11.4497,-30.264137 + parent: 2 +- proto: FoodBreadMeatXenoSlice + entities: + - uid: 10061 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + pos: 1.5,-47.5 + parent: 2 - proto: FoodBreadMimanaSlice entities: - uid: 19873 @@ -141852,32 +137539,43 @@ entities: - type: Transform pos: 51.434517,-54.369267 parent: 2 -- proto: FoodBurgerRobot +- proto: FoodCakeClown entities: - - uid: 19877 + - uid: 19880 components: - type: Transform - pos: -17.988283,-54.400684 + pos: 38.48872,-17.325846 parent: 2 - - uid: 19878 +- proto: FoodCakeSlime + entities: + - uid: 15846 components: - type: Transform - pos: -18.519533,-54.463184 + pos: -6.417416,-43.473713 parent: 2 -- proto: FoodCakeBrain +- proto: FoodCakeSpaceman entities: - - uid: 19879 + - uid: 19076 components: - type: Transform - pos: -1.4665136,-39.22168 + pos: 14.453117,-26.362411 parent: 2 -- proto: FoodCakeClown +- proto: FoodCakeSuppermatter entities: - - uid: 19880 + - uid: 14632 components: + - type: MetaData + desc: Чрезвычайно плотное и мощное топливо. + name: настоящая суперматерия - type: Transform - pos: 38.48872,-17.325846 + pos: -9.5,-57.5 parent: 2 + - type: RadiationSource + intensity: 6 + - type: LightningArcShooter + missingComponents: + - SliceableFood + - Food - proto: FoodCartCold entities: - uid: 18760 @@ -141974,12 +137672,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,7.5 parent: 2 - - uid: 19883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-27.5 - parent: 2 - proto: FoodCheeseSlice entities: - uid: 19884 @@ -142206,6 +137898,20 @@ entities: - type: Transform pos: -8.4720955,18.668385 parent: 2 +- proto: FoodDonutSpaceman + entities: + - uid: 18876 + components: + - type: Transform + pos: 12.600197,-36.311012 + parent: 2 +- proto: FoodDoughPastryBase + entities: + - uid: 17993 + components: + - type: Transform + pos: -11.510474,-34.45794 + parent: 2 - proto: FoodFrozenCornuto entities: - uid: 18765 @@ -142375,6 +138081,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodGoldenApple + entities: + - uid: 18877 + components: + - type: Transform + pos: 17.112736,-36.284092 + parent: 2 - proto: FoodMealFriesCarrot entities: - uid: 18750 @@ -142384,33 +138097,88 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodMealSashimi +- proto: FoodMeat entities: - - uid: 19904 + - uid: 18782 components: - type: Transform - parent: 19903 + parent: 18779 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodMeat - entities: - - uid: 18782 + - uid: 18783 components: - type: Transform parent: 18779 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18783 +- proto: FoodMeatCrabCooked + entities: + - uid: 19805 components: + - type: MetaData + desc: Больше похоже на какаху. - type: Transform - parent: 18779 + pos: 5.4290776,-42.57161 + parent: 2 +- proto: FoodMeatSnake + entities: + - uid: 11728 + components: + - type: Transform + parent: 16134 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatSpider + entities: + - uid: 19807 + components: + - type: Transform + pos: -11.380496,-34.34405 + parent: 2 +- proto: FoodMeatSpiderLeg + entities: + - uid: 10093 + components: + - type: Transform + parent: 16134 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodMeatXeno entities: + - uid: 7558 + components: + - type: Transform + pos: 14.5,-50.5 + parent: 2 + - uid: 10046 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 2 + - uid: 15856 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 2 + - uid: 19749 + components: + - type: Transform + pos: -11.74744,-36.2503 + parent: 2 - uid: 19905 components: - type: Transform @@ -142431,6 +138199,40 @@ entities: - type: Transform pos: -48.334778,-74.324524 parent: 2 + - uid: 23298 + components: + - type: Transform + pos: -11.862775,-35.642693 + parent: 2 + - uid: 23299 + components: + - type: Transform + pos: -10.670309,-36.153328 + parent: 2 +- proto: FoodMeatXenoCutlet + entities: + - uid: 7559 + components: + - type: Transform + pos: 15.5,-49.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 2 + - uid: 15864 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 +- proto: FoodMeatXenoCutletCooked + entities: + - uid: 20516 + components: + - type: Transform + pos: -1.5330908,-39.61705 + parent: 2 - proto: FoodMimana entities: - uid: 15630 @@ -142525,6 +138327,13 @@ entities: - type: Transform pos: -50.54967,-112.41468 parent: 2 +- proto: FoodPieXenoSlice + entities: + - uid: 10058 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 2 - proto: FoodPizzaDonkpocketSlice entities: - uid: 19924 @@ -142599,29 +138408,6 @@ entities: - type: Transform pos: -2.5581987,-4.645202 parent: 2 -- proto: FoodSnackChocolate - entities: - - uid: 2517 - components: - - type: Transform - parent: 2515 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2518 - components: - - type: Transform - parent: 2515 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2519 - components: - - type: Transform - parent: 2515 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: FoodSnackChocolateBar entities: - uid: 19936 @@ -142634,6 +138420,20 @@ entities: - type: Transform pos: -17.36111,-1.3529868 parent: 2 +- proto: FoodSnackCookieFortune + entities: + - uid: 23271 + components: + - type: Transform + pos: 18.408545,-51.490307 + parent: 2 +- proto: FoodSnackEnergyBar + entities: + - uid: 23617 + components: + - type: Transform + pos: 1.4786122,-25.89919 + parent: 2 - proto: FoodSnackSyndi entities: - uid: 19938 @@ -142660,6 +138460,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: FoodSpacemansTrumpet + entities: + - uid: 7799 + components: + - type: Transform + pos: 0.6529422,-47.60851 + parent: 2 - proto: FoodTartMime entities: - uid: 15631 @@ -142730,16 +138537,6 @@ entities: - type: Transform pos: 88.58296,-10.599283 parent: 2 -- proto: ForensicScanner - entities: - - uid: 19952 - components: - - type: MetaData - desc: Для экспресс тестов днк. - name: генетический сканер - - type: Transform - pos: -11.5533695,-38.40106 - parent: 2 - proto: FuelDispenser entities: - uid: 19953 @@ -142748,20 +138545,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-32.5 parent: 2 -- proto: Fulton1 - entities: - - uid: 19954 - components: - - type: Transform - pos: 4.5980988,-46.26865 - parent: 2 -- proto: FultonBeacon - entities: - - uid: 19955 - components: - - type: Transform - pos: 6.5824738,-48.315525 - parent: 2 - proto: GameMasterCircuitBoard entities: - uid: 2265 @@ -142803,6 +138586,21 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-96.5 parent: 2 + - uid: 15503 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 2 + - uid: 15684 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - uid: 15685 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 2 - uid: 19960 components: - type: Transform @@ -142852,11 +138650,6 @@ entities: parent: 2 - type: GasMiner spawnAmount: 800 - - uid: 19969 - components: - - type: Transform - pos: -9.5,-53.5 - parent: 2 - proto: GasMinerOxygenStationLarge entities: - uid: 19970 @@ -142866,11 +138659,6 @@ entities: parent: 2 - type: GasMiner spawnAmount: 800 - - uid: 19971 - components: - - type: Transform - pos: -2.5,-54.5 - parent: 2 - proto: GasMinerWaterVapor entities: - uid: 19973 @@ -142911,14 +138699,6 @@ entities: - type: GasMixer inletTwoConcentration: 0.20999998 inletOneConcentration: 0.79 - - uid: 19978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - proto: GasMixerFlipped entities: - uid: 19979 @@ -142932,11 +138712,6 @@ entities: inletOneConcentration: 0.79 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19980 - components: - - type: Transform - pos: -5.5,-51.5 - parent: 2 - proto: GasOutletInjector entities: - uid: 10105 @@ -142947,320 +138722,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19981 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19982 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19983 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19984 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19985 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19986 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19987 - components: - - type: Transform - pos: -6.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19988 - components: - - type: Transform - pos: -1.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19989 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19990 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19991 - components: - - type: Transform - pos: -4.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19992 - components: - - type: Transform - pos: -4.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19993 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19994 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19995 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19996 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 19997 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 19998 components: - type: Transform pos: -72.5,-77.5 parent: 2 - - uid: 19999 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20000 - components: - - type: Transform - pos: 0.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20001 - components: - - type: Transform - pos: -9.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20002 - components: - - type: Transform - pos: -8.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20003 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20004 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20005 - components: - - type: Transform - pos: -15.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20006 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20007 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20008 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20009 - components: - - type: Transform - pos: -16.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20010 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20011 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20012 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20014 - components: - - type: Transform - pos: -12.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20015 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20016 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20017 - components: - - type: Transform - pos: -6.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20018 - components: - - type: Transform - pos: -7.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20019 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20020 - components: - - type: Transform - pos: -9.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20021 - components: - - type: Transform - pos: -12.5,-11.5 - parent: 2 - - uid: 20022 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 2 - - uid: 20023 - components: - - type: Transform - pos: -14.5,-11.5 - parent: 2 - - uid: 20024 - components: - - type: Transform - pos: -15.5,-11.5 - parent: 2 - - uid: 20025 - components: - - type: Transform - pos: -16.5,-11.5 - parent: 2 - proto: GasPassiveGate entities: - - uid: 20027 - components: - - type: Transform - pos: -17.5,-15.5 - parent: 2 - - uid: 20028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-53.5 - parent: 2 - - uid: 20029 + - uid: 20454 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-53.5 + pos: -10.5,-54.5 parent: 2 - uid: 20814 components: @@ -143404,30 +138877,6 @@ entities: rot: 3.141592653589793 rad pos: -82.5,-15.5 parent: 2 - - uid: 20049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-53.5 - parent: 2 - - uid: 20050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-53.5 - parent: 2 - - uid: 20051 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-54.5 - parent: 2 - - uid: 20052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-54.5 - parent: 2 - uid: 20053 components: - type: Transform @@ -143436,6 +138885,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 20415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-57.5 + parent: 2 - uid: 40146 components: - type: Transform @@ -143482,6 +138937,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 15443 + components: + - type: Transform + pos: -8.5,-53.5 + parent: 2 - uid: 20054 components: - type: Transform @@ -143581,14 +139041,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 20070 components: - type: Transform @@ -143911,22 +139363,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 20116 components: - type: Transform @@ -145570,76 +141006,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20338 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20341 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20343 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 20346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 20347 components: - type: Transform @@ -145819,50 +141185,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-54.5 - parent: 2 - - uid: 20377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-54.5 - parent: 2 - - uid: 20378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-51.5 - parent: 2 - - uid: 20379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-51.5 - parent: 2 - - uid: 20380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-51.5 - parent: 2 - - uid: 20381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-48.5 - parent: 2 - - uid: 20382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - uid: 20383 components: - type: Transform @@ -145879,17 +141201,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20386 - components: - - type: Transform - pos: -5.5,-55.5 - parent: 2 - - uid: 20387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-55.5 - parent: 2 - uid: 20388 components: - type: Transform @@ -145991,51 +141302,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20402 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20403 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20404 - components: - - type: Transform - pos: -16.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - uid: 20407 components: - type: Transform @@ -146083,338 +141349,23 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20413 - components: - - type: Transform - pos: 18.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20414 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20420 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - uid: 20421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20424 - components: - - type: Transform - pos: -7.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-39.5 + pos: -7.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - uid: 20426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20427 - components: - - type: Transform - pos: -14.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20430 - components: - - type: Transform - pos: -10.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20432 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20433 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20434 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-13.5 + pos: -7.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - uid: 20435 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20437 - components: - - type: Transform - pos: -1.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20438 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20445 - components: - - type: Transform - pos: -3.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20455 - components: - - type: Transform - pos: -10.5,-39.5 + pos: -11.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - uid: 20456 components: - type: Transform @@ -146572,6 +141523,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 20520 + components: + - type: Transform + pos: -11.5,-52.5 + parent: 2 - uid: 20764 components: - type: Transform @@ -146690,6 +141646,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 24104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 26541 components: - type: Transform @@ -147045,16 +142041,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' -- proto: GasPipeBroken +- proto: GasPipeFourway entities: - - uid: 20476 + - uid: 10084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-43.5 + pos: -30.5,-42.5 parent: 2 -- proto: GasPipeFourway - entities: + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 16829 components: - type: Transform @@ -147132,13 +142127,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20487 - components: - - type: Transform - pos: -16.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 20488 components: - type: Transform @@ -147277,13 +142265,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20509 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 20510 components: - type: Transform @@ -147326,13 +142307,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20516 - components: - - type: Transform - pos: -13.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - uid: 20517 components: - type: Transform @@ -147340,27 +142314,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20518 - components: - - type: Transform - pos: -11.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20519 - components: - - type: Transform - pos: -10.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 20520 + - uid: 23977 components: - type: Transform - pos: -3.5,-39.5 + pos: -32.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' + color: '#0000FFFF' - uid: 26537 components: - type: Transform @@ -147389,24 +142349,6 @@ entities: parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' -- proto: GasPipeHalf - entities: - - uid: 20521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 20522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - proto: GasPipeSensorDistribution entities: - uid: 20829 @@ -147420,16 +142362,6 @@ entities: - 297 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 44146 - components: - - type: Transform - pos: -2.5,-46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 279 - - type: AtmosPipeColor - color: '#2A6478FF' - proto: GasPipeSensorMixedAir entities: - uid: 23111 @@ -147456,16 +142388,6 @@ entities: color: '#FEF101FF' - proto: GasPipeSensorWaste entities: - - uid: 23115 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 279 - - type: AtmosPipeColor - color: '#B7410EFF' - uid: 44202 components: - type: Transform @@ -147479,6 +142401,14 @@ entities: color: '#FF0000FF' - proto: GasPipeStraight entities: + - uid: 10085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 12457 components: - type: Transform @@ -147584,6 +142514,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 20049 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 20345 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 - uid: 20366 components: - type: Transform @@ -147600,6 +142540,33 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 20404 + components: + - type: Transform + pos: -9.5,-54.5 + parent: 2 + - uid: 20422 + components: + - type: Transform + pos: -7.5,-55.5 + parent: 2 + - uid: 20423 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 2 + - uid: 20437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-56.5 + parent: 2 + - uid: 20438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-55.5 + parent: 2 - uid: 20523 components: - type: Transform @@ -147986,14 +142953,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 20573 components: - type: Transform @@ -148804,13 +143763,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20679 - components: - - type: Transform - pos: -2.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 20680 components: - type: Transform @@ -149309,13 +144261,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20749 - components: - - type: Transform - pos: -17.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 20750 components: - type: Transform @@ -149446,6 +144391,8 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-49.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 20772 components: - type: Transform @@ -149457,6 +144404,8 @@ entities: - type: Transform pos: 40.5,-50.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 20774 components: - type: Transform @@ -165488,54 +160437,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22914 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 22918 components: - type: Transform @@ -165544,21 +160445,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 22920 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - uid: 22921 components: - type: Transform @@ -166866,73 +161752,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-54.5 - parent: 2 - - uid: 23106 - components: - - type: Transform - pos: -6.5,-55.5 - parent: 2 - - uid: 23107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-50.5 - parent: 2 - - uid: 23108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-50.5 - parent: 2 - - uid: 23109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-49.5 - parent: 2 - - uid: 23110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-48.5 - parent: 2 - - uid: 23112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - uid: 23117 components: - type: Transform @@ -167217,19 +162036,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23157 - components: - - type: Transform - pos: -4.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-55.5 - parent: 2 - uid: 23159 components: - type: Transform @@ -167608,30193 +162414,26169 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23207 + - uid: 23302 components: - type: Transform - pos: 0.5,-47.5 + rot: 1.5707963267948966 rad + pos: 46.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23208 + color: '#FF0000FF' + - uid: 23303 components: - type: Transform - pos: 0.5,-46.5 + rot: 1.5707963267948966 rad + pos: 55.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23209 + color: '#FF0000FF' + - uid: 23304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-32.5 + rot: 1.5707963267948966 rad + pos: 54.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23210 + color: '#FF0000FF' + - uid: 23305 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-32.5 + pos: 60.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23211 + color: '#FF0000FF' + - uid: 23306 components: - type: Transform - pos: -16.5,-42.5 + rot: -1.5707963267948966 rad + pos: 61.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23212 + color: '#FF0000FF' + - uid: 23307 components: - type: Transform - pos: -16.5,-43.5 + rot: -1.5707963267948966 rad + pos: 60.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23213 + color: '#0000FFFF' + - uid: 23308 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-14.5 + rot: -1.5707963267948966 rad + pos: 61.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23214 + color: '#0000FFFF' + - uid: 23309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-16.5 + pos: 79.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23215 + color: '#FF0000FF' + - uid: 23310 components: - type: Transform - pos: 5.5,-18.5 + pos: 83.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23216 + color: '#FF0000FF' + - uid: 23311 components: - type: Transform - pos: 6.5,-22.5 + pos: 87.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23217 + color: '#FF0000FF' + - uid: 23312 components: - type: Transform - pos: 6.5,-23.5 + rot: 1.5707963267948966 rad + pos: 111.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23218 + color: '#FF0000FF' + - uid: 23313 components: - type: Transform - pos: 6.5,-25.5 + rot: -1.5707963267948966 rad + pos: 113.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23219 + color: '#FF0000FF' + - uid: 23314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-29.5 + rot: -1.5707963267948966 rad + pos: 114.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23220 + color: '#FF0000FF' + - uid: 23315 components: - type: Transform - pos: 6.5,-27.5 + rot: -1.5707963267948966 rad + pos: 115.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23221 + color: '#FF0000FF' + - uid: 23316 components: - type: Transform - pos: 6.5,-28.5 + rot: -1.5707963267948966 rad + pos: 116.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23222 + color: '#FF0000FF' + - uid: 23317 components: - type: Transform - pos: 6.5,-29.5 + rot: -1.5707963267948966 rad + pos: 121.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23223 + color: '#FF0000FF' + - uid: 23318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-32.5 + rot: -1.5707963267948966 rad + pos: 118.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23224 + color: '#FF0000FF' + - uid: 23319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-32.5 + rot: -1.5707963267948966 rad + pos: 119.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23225 + color: '#FF0000FF' + - uid: 23320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-44.5 + rot: -1.5707963267948966 rad + pos: 120.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23226 + color: '#FF0000FF' + - uid: 23321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-44.5 + rot: -1.5707963267948966 rad + pos: 124.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23227 + color: '#FF0000FF' + - uid: 23322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-44.5 + rot: -1.5707963267948966 rad + pos: 122.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23228 + color: '#FF0000FF' + - uid: 23323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-44.5 + rot: -1.5707963267948966 rad + pos: 123.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23229 + color: '#FF0000FF' + - uid: 23324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-44.5 + rot: -1.5707963267948966 rad + pos: 123.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23230 + color: '#0000FFFF' + - uid: 23325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-44.5 + rot: -1.5707963267948966 rad + pos: 125.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23231 + color: '#FF0000FF' + - uid: 23326 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-43.5 + pos: 126.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23232 + color: '#FF0000FF' + - uid: 23327 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-43.5 + pos: 127.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23233 + color: '#FF0000FF' + - uid: 23328 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-43.5 + pos: 120.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23234 + color: '#0000FFFF' + - uid: 23329 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-43.5 + pos: 115.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23235 + color: '#0000FFFF' + - uid: 23330 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-43.5 + pos: 126.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23236 + color: '#0000FFFF' + - uid: 23331 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-43.5 + pos: 125.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23237 + color: '#0000FFFF' + - uid: 23332 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-43.5 + pos: 124.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23238 + color: '#0000FFFF' + - uid: 23333 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-43.5 + pos: 121.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23239 + color: '#0000FFFF' + - uid: 23334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-38.5 + rot: -1.5707963267948966 rad + pos: 122.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23240 + color: '#0000FFFF' + - uid: 23335 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-39.5 + rot: -1.5707963267948966 rad + pos: 119.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23241 + color: '#0000FFFF' + - uid: 23336 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-41.5 + rot: -1.5707963267948966 rad + pos: 118.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23242 + color: '#0000FFFF' + - uid: 23337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-42.5 + rot: -1.5707963267948966 rad + pos: 117.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23243 + color: '#0000FFFF' + - uid: 23338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-43.5 + rot: -1.5707963267948966 rad + pos: 114.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23244 + color: '#0000FFFF' + - uid: 23339 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-54.5 + pos: 113.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23245 + color: '#0000FFFF' + - uid: 23340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-43.5 + rot: -1.5707963267948966 rad + pos: 112.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23246 + color: '#0000FFFF' + - uid: 23341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-43.5 + rot: -1.5707963267948966 rad + pos: 111.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23247 + color: '#0000FFFF' + - uid: 23342 components: - type: Transform - pos: 0.5,-45.5 + rot: -1.5707963267948966 rad + pos: 110.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23248 + color: '#FF0000FF' + - uid: 23343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-43.5 + rot: -1.5707963267948966 rad + pos: 109.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23249 + color: '#FF0000FF' + - uid: 23344 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-42.5 + rot: -1.5707963267948966 rad + pos: 108.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23250 + color: '#FF0000FF' + - uid: 23346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-41.5 + rot: -1.5707963267948966 rad + pos: 105.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23251 + color: '#FF0000FF' + - uid: 23347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-35.5 + rot: -1.5707963267948966 rad + pos: 104.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23252 + color: '#FF0000FF' + - uid: 23348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-44.5 + rot: -1.5707963267948966 rad + pos: 103.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23253 + color: '#FF0000FF' + - uid: 23349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-44.5 + rot: -1.5707963267948966 rad + pos: 103.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23254 + color: '#0000FFFF' + - uid: 23350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-44.5 + rot: -1.5707963267948966 rad + pos: 104.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23255 + color: '#0000FFFF' + - uid: 23351 components: - type: Transform - pos: 5.5,-43.5 + rot: -1.5707963267948966 rad + pos: 106.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23256 + color: '#0000FFFF' + - uid: 23352 components: - type: Transform - pos: 5.5,-42.5 + rot: -1.5707963267948966 rad + pos: 107.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23257 + color: '#0000FFFF' + - uid: 23353 components: - type: Transform - pos: 5.5,-41.5 + rot: -1.5707963267948966 rad + pos: 108.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23258 + color: '#0000FFFF' + - uid: 23354 components: - type: Transform - pos: 0.5,-48.5 + rot: -1.5707963267948966 rad + pos: 109.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23259 + color: '#0000FFFF' + - uid: 23355 components: - type: Transform - pos: 0.5,-49.5 + rot: 1.5707963267948966 rad + pos: -7.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23260 + color: '#0000FFFF' + - uid: 23356 components: - type: Transform - pos: 0.5,-50.5 + rot: -1.5707963267948966 rad + pos: -46.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23261 + color: '#0000FFFF' + - uid: 23658 components: - type: Transform - pos: 0.5,-51.5 + pos: -8.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23262 + color: '#0000FFFF' + - uid: 23659 components: - type: Transform - pos: 0.5,-52.5 + pos: -8.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23263 + color: '#0000FFFF' + - uid: 23660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-27.5 + rot: 1.5707963267948966 rad + pos: 98.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23264 + color: '#FF0000FF' + - uid: 23661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-27.5 + rot: 1.5707963267948966 rad + pos: 99.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23265 + color: '#FF0000FF' + - uid: 23662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-29.5 + rot: 1.5707963267948966 rad + pos: 100.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23266 + color: '#FF0000FF' + - uid: 23663 components: - type: Transform - pos: 18.5,-42.5 + rot: 1.5707963267948966 rad + pos: 101.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23267 + color: '#FF0000FF' + - uid: 23664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-29.5 + rot: 1.5707963267948966 rad + pos: 31.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23268 + color: '#FF0000FF' + - uid: 23669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-24.5 + pos: 23.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23269 + color: '#FF0000FF' + - uid: 23670 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-22.5 + pos: 23.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23270 + color: '#FF0000FF' + - uid: 23671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-54.5 + pos: 23.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23271 + color: '#FF0000FF' + - uid: 23672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-20.5 + pos: 23.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23272 + color: '#FF0000FF' + - uid: 23673 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-19.5 + pos: 23.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23273 + color: '#FF0000FF' + - uid: 23674 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-52.5 + rot: -1.5707963267948966 rad + pos: 24.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23274 + color: '#FF0000FF' + - uid: 23675 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-17.5 + rot: -1.5707963267948966 rad + pos: 25.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23275 + color: '#FF0000FF' + - uid: 23676 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-16.5 + pos: 30.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23276 + color: '#FF0000FF' + - uid: 23677 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-15.5 + pos: 30.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23277 + color: '#FF0000FF' + - uid: 23678 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-15.5 + pos: 35.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23278 + color: '#FF0000FF' + - uid: 23679 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-16.5 + pos: 35.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23279 + color: '#FF0000FF' + - uid: 23680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-17.5 + rot: 1.5707963267948966 rad + pos: 36.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23280 + color: '#FF0000FF' + - uid: 23681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-18.5 + rot: -1.5707963267948966 rad + pos: 34.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23281 + color: '#FF0000FF' + - uid: 23682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-19.5 + rot: -1.5707963267948966 rad + pos: 33.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23282 + color: '#FF0000FF' + - uid: 23683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-20.5 + rot: 1.5707963267948966 rad + pos: 11.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23283 + color: '#FF0000FF' + - uid: 23684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-21.5 + rot: 1.5707963267948966 rad + pos: 12.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23284 + color: '#FF0000FF' + - uid: 23685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-22.5 + rot: 1.5707963267948966 rad + pos: 13.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23285 + color: '#FF0000FF' + - uid: 23686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-44.5 + rot: 3.141592653589793 rad + pos: 15.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23286 + color: '#0000FFFF' + - uid: 23687 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-25.5 + pos: 15.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23287 + color: '#0000FFFF' + - uid: 23688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-26.5 + rot: 1.5707963267948966 rad + pos: 14.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23288 + color: '#0000FFFF' + - uid: 23689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-31.5 + rot: 1.5707963267948966 rad + pos: 13.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23289 + color: '#0000FFFF' + - uid: 23690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-31.5 + pos: 12.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23290 + color: '#0000FFFF' + - uid: 23691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-32.5 + rot: -1.5707963267948966 rad + pos: 13.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23291 + color: '#0000FFFF' + - uid: 23692 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-33.5 + pos: 15.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23292 + color: '#0000FFFF' + - uid: 23693 components: - type: Transform - pos: -16.5,-41.5 + pos: 16.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23293 + color: '#0000FFFF' + - uid: 23694 components: - type: Transform - pos: -13.5,-44.5 + pos: 16.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23294 + color: '#0000FFFF' + - uid: 23695 components: - type: Transform - pos: -13.5,-45.5 + pos: 16.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23295 + color: '#0000FFFF' + - uid: 23696 components: - type: Transform - pos: -13.5,-46.5 + rot: -1.5707963267948966 rad + pos: 17.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23296 + color: '#FF0000FF' + - uid: 23697 components: - type: Transform - pos: -13.5,-47.5 + rot: -1.5707963267948966 rad + pos: 16.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23297 + color: '#FF0000FF' + - uid: 23698 components: - type: Transform - pos: -14.5,-33.5 + rot: -1.5707963267948966 rad + pos: 15.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23298 + color: '#FF0000FF' + - uid: 23699 components: - type: Transform - pos: -12.5,-45.5 + rot: -1.5707963267948966 rad + pos: 14.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23299 + color: '#FF0000FF' + - uid: 23700 components: - type: Transform - pos: -12.5,-46.5 + rot: -1.5707963267948966 rad + pos: 13.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23300 + color: '#FF0000FF' + - uid: 23701 components: - type: Transform - pos: -12.5,-47.5 + rot: -1.5707963267948966 rad + pos: 12.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23301 + color: '#FF0000FF' + - uid: 23702 components: - type: Transform - pos: -12.5,-48.5 + rot: -1.5707963267948966 rad + pos: 11.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23302 + color: '#FF0000FF' + - uid: 23703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,6.5 + rot: -1.5707963267948966 rad + pos: 10.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23303 + - uid: 23704 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,5.5 + pos: 9.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23304 + color: '#0000FFFF' + - uid: 23705 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,5.5 + pos: 10.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23305 + color: '#0000FFFF' + - uid: 23706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-7.5 + rot: 1.5707963267948966 rad + pos: 11.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23306 + color: '#0000FFFF' + - uid: 23707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-7.5 + rot: 1.5707963267948966 rad + pos: 12.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23307 + color: '#0000FFFF' + - uid: 23708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-9.5 + rot: 1.5707963267948966 rad + pos: 13.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23308 + - uid: 23709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-9.5 + rot: 3.141592653589793 rad + pos: -2.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23309 + - uid: 23710 components: - type: Transform - pos: 79.5,-0.5 + rot: 3.141592653589793 rad + pos: -2.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23310 + color: '#0000FFFF' + - uid: 23711 components: - type: Transform - pos: 83.5,-0.5 + rot: 3.141592653589793 rad + pos: -2.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23311 + color: '#0000FFFF' + - uid: 23712 components: - type: Transform - pos: 87.5,-0.5 + rot: 3.141592653589793 rad + pos: -2.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23312 + color: '#0000FFFF' + - uid: 23713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 111.5,-42.5 + rot: 3.141592653589793 rad + pos: 3.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23313 + color: '#0000FFFF' + - uid: 23714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 113.5,-40.5 + rot: 3.141592653589793 rad + pos: 3.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23314 + color: '#0000FFFF' + - uid: 23715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 114.5,-40.5 + rot: 3.141592653589793 rad + pos: 3.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23315 + color: '#0000FFFF' + - uid: 23716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 115.5,-40.5 + rot: 3.141592653589793 rad + pos: -1.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23316 + - uid: 23717 components: - type: Transform rot: -1.5707963267948966 rad - pos: 116.5,-40.5 + pos: -9.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23317 + - uid: 23718 components: - type: Transform rot: -1.5707963267948966 rad - pos: 121.5,-40.5 + pos: -10.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23318 + - uid: 23719 components: - type: Transform rot: -1.5707963267948966 rad - pos: 118.5,-40.5 + pos: -11.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23319 + - uid: 23720 components: - type: Transform rot: -1.5707963267948966 rad - pos: 119.5,-40.5 + pos: -12.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23320 + - uid: 23721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 120.5,-40.5 + pos: -8.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23321 + - uid: 23722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 124.5,-40.5 + pos: -8.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23322 + - uid: 23723 components: - type: Transform rot: -1.5707963267948966 rad - pos: 122.5,-40.5 + pos: -7.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23323 + - uid: 23724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 123.5,-40.5 + rot: 1.5707963267948966 rad + pos: -47.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23324 + - uid: 23725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 123.5,-38.5 + rot: 1.5707963267948966 rad + pos: -46.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23325 + color: '#FF0000FF' + - uid: 23726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 125.5,-40.5 + pos: -48.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23326 + - uid: 23727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 126.5,-40.5 + pos: -48.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23327 + - uid: 23728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 127.5,-40.5 + pos: -48.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23328 + - uid: 23729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 120.5,-38.5 + pos: -48.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23329 + color: '#FF0000FF' + - uid: 23730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 115.5,-38.5 + pos: -48.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23330 + color: '#FF0000FF' + - uid: 23731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 126.5,-38.5 + rot: 1.5707963267948966 rad + pos: -39.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23331 + color: '#FF0000FF' + - uid: 23732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 125.5,-38.5 + rot: 3.141592653589793 rad + pos: -65.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23332 + - uid: 23733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 124.5,-38.5 + rot: 3.141592653589793 rad + pos: -65.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23333 + - uid: 23734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 121.5,-38.5 + rot: 3.141592653589793 rad + pos: -65.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23334 + - uid: 23735 components: - type: Transform rot: -1.5707963267948966 rad - pos: 122.5,-38.5 + pos: -65.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23335 + color: '#FF0000FF' + - uid: 23736 components: - type: Transform rot: -1.5707963267948966 rad - pos: 119.5,-38.5 + pos: -64.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23336 + color: '#FF0000FF' + - uid: 23737 components: - type: Transform rot: -1.5707963267948966 rad - pos: 118.5,-38.5 + pos: -63.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23337 + color: '#FF0000FF' + - uid: 23738 components: - type: Transform rot: -1.5707963267948966 rad - pos: 117.5,-38.5 + pos: -62.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23338 + color: '#FF0000FF' + - uid: 23739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 114.5,-38.5 + rot: 3.141592653589793 rad + pos: -61.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23339 + color: '#FF0000FF' + - uid: 23740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 113.5,-38.5 + rot: 3.141592653589793 rad + pos: -61.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23340 + color: '#FF0000FF' + - uid: 23741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 112.5,-38.5 + rot: 3.141592653589793 rad + pos: -61.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23341 + color: '#FF0000FF' + - uid: 23742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 111.5,-38.5 + rot: 3.141592653589793 rad + pos: -61.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23342 + color: '#FF0000FF' + - uid: 23743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 110.5,-42.5 + rot: 3.141592653589793 rad + pos: -61.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23343 + - uid: 23744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 109.5,-42.5 + rot: 3.141592653589793 rad + pos: -61.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23344 + - uid: 23745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 108.5,-42.5 + rot: 1.5707963267948966 rad + pos: -29.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23346 + - uid: 23746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 105.5,-42.5 + rot: 1.5707963267948966 rad + pos: -28.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23347 + - uid: 23747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-42.5 + rot: 3.141592653589793 rad + pos: -16.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23348 + - uid: 23748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-42.5 + rot: 3.141592653589793 rad + pos: -16.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23349 + - uid: 23749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-40.5 + rot: 3.141592653589793 rad + pos: -15.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23350 + - uid: 23750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-40.5 + rot: 3.141592653589793 rad + pos: -15.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23351 + - uid: 23751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 106.5,-40.5 + rot: 3.141592653589793 rad + pos: -15.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23352 + - uid: 23752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 107.5,-40.5 + rot: 3.141592653589793 rad + pos: -16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23353 + color: '#FF0000FF' + - uid: 23753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 108.5,-40.5 + pos: -17.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23354 + color: '#FF0000FF' + - uid: 23754 components: - type: Transform rot: -1.5707963267948966 rad - pos: 109.5,-40.5 + pos: -16.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23355 + color: '#FF0000FF' + - uid: 23755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,10.5 + rot: 3.141592653589793 rad + pos: -15.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23356 + color: '#FF0000FF' + - uid: 23756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-20.5 + rot: 3.141592653589793 rad + pos: -15.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23357 + color: '#FF0000FF' + - uid: 23757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-27.5 + rot: 3.141592653589793 rad + pos: -20.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23358 + color: '#FF0000FF' + - uid: 23758 components: - type: Transform - pos: 6.5,-21.5 + rot: 3.141592653589793 rad + pos: -20.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23359 + color: '#FF0000FF' + - uid: 23759 components: - type: Transform - pos: 9.5,-37.5 + rot: 3.141592653589793 rad + pos: -20.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23360 + color: '#FF0000FF' + - uid: 23760 components: - type: Transform - pos: 9.5,-38.5 + rot: 3.141592653589793 rad + pos: -20.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23361 + color: '#FF0000FF' + - uid: 23761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-39.5 + rot: 3.141592653589793 rad + pos: -20.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23362 + color: '#FF0000FF' + - uid: 23762 components: - type: Transform - pos: 10.5,-40.5 + rot: 3.141592653589793 rad + pos: -20.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23363 + color: '#FF0000FF' + - uid: 23763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-41.5 + rot: 3.141592653589793 rad + pos: -20.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23364 + color: '#FF0000FF' + - uid: 23764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-41.5 + rot: 3.141592653589793 rad + pos: -20.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23365 + color: '#FF0000FF' + - uid: 23765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-41.5 + pos: -21.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23366 + color: '#0000FFFF' + - uid: 23766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-41.5 + pos: -21.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23367 + color: '#0000FFFF' + - uid: 23767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-41.5 + rot: -1.5707963267948966 rad + pos: -22.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23368 + color: '#0000FFFF' + - uid: 23807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-41.5 + rot: -1.5707963267948966 rad + pos: -22.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23369 + color: '#0000FFFF' + - uid: 23808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-41.5 + rot: -1.5707963267948966 rad + pos: -23.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23370 + color: '#0000FFFF' + - uid: 23809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-40.5 + rot: -1.5707963267948966 rad + pos: -24.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23371 + color: '#0000FFFF' + - uid: 23810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-40.5 + rot: -1.5707963267948966 rad + pos: -25.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23372 + color: '#0000FFFF' + - uid: 23811 components: - type: Transform - pos: 9.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23373 - components: - - type: Transform - pos: 9.5,-42.5 + rot: -1.5707963267948966 rad + pos: -26.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23374 + color: '#0000FFFF' + - uid: 23816 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-40.5 + pos: -27.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23375 + color: '#0000FFFF' + - uid: 23817 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-40.5 + pos: -28.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23376 + color: '#0000FFFF' + - uid: 23831 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-40.5 + pos: 34.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23377 + color: '#FF0000FF' + - uid: 23843 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-40.5 + pos: -29.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23378 + color: '#0000FFFF' + - uid: 23844 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-40.5 + pos: -30.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23379 + color: '#0000FFFF' + - uid: 23872 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-40.5 + pos: -31.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23380 + color: '#0000FFFF' + - uid: 23963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-40.5 + rot: 1.5707963267948966 rad + pos: 12.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23381 + color: '#FF0000FF' + - uid: 23978 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-40.5 + pos: -29.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23382 + color: '#FF0000FF' + - uid: 24052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-39.5 + rot: 1.5707963267948966 rad + pos: 8.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23383 + color: '#FF0000FF' + - uid: 24053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-38.5 + pos: 6.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23384 + color: '#FF0000FF' + - uid: 24054 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-37.5 + pos: 16.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23385 + color: '#FF0000FF' + - uid: 24055 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-39.5 + pos: 4.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23386 + color: '#FF0000FF' + - uid: 24056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-39.5 + rot: 3.141592653589793 rad + pos: 8.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23387 + color: '#0000FFFF' + - uid: 24057 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-18.5 + pos: 37.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23388 + color: '#FF0000FF' + - uid: 24094 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-25.5 + pos: -28.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23390 + color: '#FF0000FF' + - uid: 24095 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-21.5 + pos: -27.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23391 + color: '#FF0000FF' + - uid: 24096 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-28.5 + pos: -26.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23393 + color: '#FF0000FF' + - uid: 24097 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-29.5 + rot: -1.5707963267948966 rad + pos: -25.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23394 + color: '#FF0000FF' + - uid: 24098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-29.5 + rot: -1.5707963267948966 rad + pos: -24.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23395 + color: '#FF0000FF' + - uid: 24099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-29.5 + rot: -1.5707963267948966 rad + pos: -23.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23396 + color: '#FF0000FF' + - uid: 24100 components: - type: Transform - pos: 19.5,-28.5 + rot: -1.5707963267948966 rad + pos: -22.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23397 + color: '#FF0000FF' + - uid: 24101 components: - type: Transform - pos: 19.5,-27.5 + rot: -1.5707963267948966 rad + pos: -21.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23398 + color: '#FF0000FF' + - uid: 24102 components: - type: Transform - pos: 14.5,-30.5 + rot: 3.141592653589793 rad + pos: -20.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23399 + color: '#FF0000FF' + - uid: 24103 components: - type: Transform - pos: 14.5,-32.5 + rot: 3.141592653589793 rad + pos: -20.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23400 + color: '#FF0000FF' + - uid: 24244 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-32.5 + pos: 25.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23401 + color: '#0000FFFF' + - uid: 24245 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-32.5 + pos: 24.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23402 + color: '#0000FFFF' + - uid: 24246 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-32.5 + pos: 23.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23403 + color: '#0000FFFF' + - uid: 24253 components: - type: Transform - pos: 11.5,-17.5 + rot: -1.5707963267948966 rad + pos: 22.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23404 + color: '#0000FFFF' + - uid: 24289 components: - type: Transform - pos: 11.5,-18.5 + rot: -1.5707963267948966 rad + pos: 21.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23405 + color: '#0000FFFF' + - uid: 24292 components: - type: Transform - pos: 11.5,-21.5 + rot: 3.141592653589793 rad + pos: 20.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23406 + color: '#0000FFFF' + - uid: 24293 components: - type: Transform - pos: 11.5,-22.5 + rot: 3.141592653589793 rad + pos: 20.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23407 + color: '#0000FFFF' + - uid: 24321 components: - type: Transform - pos: 11.5,-20.5 + rot: 3.141592653589793 rad + pos: 20.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23408 + color: '#0000FFFF' + - uid: 24322 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-16.5 + pos: 20.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23409 + color: '#0000FFFF' + - uid: 24327 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-24.5 + pos: 20.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23410 + color: '#0000FFFF' + - uid: 24328 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-25.5 + pos: 20.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23411 + color: '#0000FFFF' + - uid: 24338 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-26.5 + pos: 20.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23412 + color: '#0000FFFF' + - uid: 24340 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-27.5 + pos: 36.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23413 + color: '#FF0000FF' + - uid: 24343 components: - type: Transform - pos: -4.5,-25.5 + rot: 3.141592653589793 rad + pos: 22.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23414 + color: '#FF0000FF' + - uid: 24395 components: - type: Transform - pos: -4.5,-26.5 + pos: 12.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23415 + color: '#0000FFFF' + - uid: 24418 components: - type: Transform - pos: -4.5,-27.5 + pos: 6.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23416 + color: '#FF0000FF' + - uid: 24420 components: - type: Transform - pos: -4.5,-28.5 + pos: 6.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23417 + color: '#FF0000FF' + - uid: 24506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-29.5 + rot: 3.141592653589793 rad + pos: 82.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23418 + color: '#0000FFFF' + - uid: 24523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-29.5 + rot: 3.141592653589793 rad + pos: 22.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23419 + color: '#FF0000FF' + - uid: 24524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-29.5 + rot: 3.141592653589793 rad + pos: 22.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23420 + color: '#FF0000FF' + - uid: 24525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-29.5 + rot: 3.141592653589793 rad + pos: 22.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23421 + color: '#FF0000FF' + - uid: 24526 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-30.5 + pos: 22.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23422 + color: '#FF0000FF' + - uid: 24527 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-31.5 + pos: 22.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23423 + color: '#FF0000FF' + - uid: 24528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-32.5 + rot: 3.141592653589793 rad + pos: 22.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23424 + color: '#FF0000FF' + - uid: 24531 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-32.5 + pos: 23.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23425 + color: '#FF0000FF' + - uid: 24532 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-32.5 + pos: 24.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23426 + color: '#FF0000FF' + - uid: 24533 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-32.5 + pos: 25.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23427 + color: '#FF0000FF' + - uid: 24534 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-33.5 + pos: 26.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23428 + color: '#FF0000FF' + - uid: 24662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-33.5 + pos: 12.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23429 + color: '#0000FFFF' + - uid: 24706 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-33.5 + pos: 11.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23430 + color: '#FF0000FF' + - uid: 24707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-33.5 + pos: 6.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23431 + color: '#FF0000FF' + - uid: 24809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-33.5 + rot: -1.5707963267948966 rad + pos: 35.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23432 + color: '#FF0000FF' + - uid: 24810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-33.5 + rot: -1.5707963267948966 rad + pos: 35.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23433 + color: '#FF0000FF' + - uid: 24953 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-32.5 + pos: 84.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23434 + color: '#0000FFFF' + - uid: 25194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-32.5 + pos: -8.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23435 + color: '#0000FFFF' + - uid: 25551 components: - type: Transform - pos: -2.5,-44.5 + pos: 12.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23436 + color: '#0000FFFF' + - uid: 25552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-44.5 + rot: 3.141592653589793 rad + pos: 16.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23437 + color: '#FF0000FF' + - uid: 25581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-44.5 + pos: -7.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23438 + color: '#FF0000FF' + - uid: 25584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-44.5 + pos: -7.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23439 + color: '#FF0000FF' + - uid: 26477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-44.5 + rot: 1.5707963267948966 rad + pos: 10.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23440 + color: '#FF0000FF' + - uid: 26539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-44.5 + rot: 3.141592653589793 rad + pos: 36.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23441 + color: '#FF0000FF' + - uid: 27810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-44.5 + rot: 3.141592653589793 rad + pos: 29.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23442 + color: '#0000FFFF' + - uid: 30139 components: - type: Transform - pos: -16.5,-40.5 + pos: -8.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23443 + color: '#0000FFFF' + - uid: 32332 components: - type: Transform - pos: -16.5,-39.5 + rot: 1.5707963267948966 rad + pos: 103.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23444 + color: '#FF0000FF' + - uid: 34685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-50.5 + pos: 104.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23445 + color: '#0000FFFF' + - uid: 35574 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-51.5 + pos: 109.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23446 + color: '#FF0000FF' + - uid: 36212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-49.5 + pos: 33.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23447 + color: '#0000FFFF' + - uid: 36215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-49.5 + pos: 108.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23448 + color: '#FF0000FF' + - uid: 36217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-49.5 + pos: 28.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23449 + color: '#FF0000FF' + - uid: 36219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-49.5 + rot: 1.5707963267948966 rad + pos: 107.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23450 + color: '#FF0000FF' + - uid: 37911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-49.5 + pos: -7.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23451 + color: '#FF0000FF' + - uid: 40736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-49.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 40666 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23452 + color: '#FF0000FF' + - uid: 40737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-49.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 40666 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23453 + color: '#FF0000FF' + - uid: 40738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-53.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 40666 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23454 + color: '#FF0000FF' + - uid: 40739 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-53.5 - parent: 2 + pos: -0.5,0.5 + parent: 40666 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23455 + color: '#FF0000FF' + - uid: 40740 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-52.5 - parent: 2 + pos: -1.5,-0.5 + parent: 40666 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23456 + color: '#FF0000FF' + - uid: 40741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-51.5 - parent: 2 + pos: -1.5,-1.5 + parent: 40666 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23457 + color: '#FF0000FF' + - uid: 40827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-50.5 + pos: 28.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23458 + color: '#FF0000FF' + - uid: 41188 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23459 + pos: 0.5,-14.5 + parent: 40828 + - uid: 41189 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-47.5 - parent: 2 + pos: 0.5,-13.5 + parent: 40828 + - uid: 41190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 40828 + - uid: 41191 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23460 + color: '#0000FFFF' + - uid: 41192 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41193 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 40828 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41194 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-48.5 - parent: 2 + pos: 2.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23461 + color: '#0000FFFF' + - uid: 41195 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-48.5 - parent: 2 + pos: 3.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23462 + color: '#0000FFFF' + - uid: 41196 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-49.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23463 + color: '#0000FFFF' + - uid: 41197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-50.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23464 + color: '#0000FFFF' + - uid: 41198 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-33.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23465 + color: '#0000FFFF' + - uid: 41199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-34.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23466 + color: '#0000FFFF' + - uid: 41200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-35.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23467 + color: '#0000FFFF' + - uid: 41201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-37.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23468 + color: '#0000FFFF' + - uid: 41202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41203 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-38.5 - parent: 2 + pos: 1.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23469 + color: '#FF0000FF' + - uid: 41204 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-38.5 - parent: 2 + pos: 2.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23470 + color: '#FF0000FF' + - uid: 41205 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-31.5 - parent: 2 + pos: 3.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23471 + color: '#FF0000FF' + - uid: 41206 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-31.5 - parent: 2 + pos: -0.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23472 + color: '#FF0000FF' + - uid: 41207 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-31.5 - parent: 2 + pos: -1.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23473 + color: '#FF0000FF' + - uid: 41208 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-32.5 - parent: 2 + pos: -2.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23474 + color: '#FF0000FF' + - uid: 41209 components: - type: Transform - pos: -14.5,-34.5 - parent: 2 + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23475 + color: '#FF0000FF' + - uid: 41210 components: - type: Transform - pos: -14.5,-35.5 - parent: 2 + rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23476 + color: '#FF0000FF' + - uid: 41211 components: - type: Transform - pos: -14.5,-37.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23477 + color: '#FF0000FF' + - uid: 41212 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-40.5 - parent: 2 + pos: 2.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23478 + color: '#0000FFFF' + - uid: 41213 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-40.5 - parent: 2 + pos: 3.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23479 + color: '#0000FFFF' + - uid: 41214 components: - type: Transform - pos: -10.5,-31.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23480 + color: '#0000FFFF' + - uid: 41215 components: - type: Transform - pos: -10.5,-30.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23481 + color: '#0000FFFF' + - uid: 41216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41219 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-29.5 - parent: 2 + pos: 1.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23482 + color: '#FF0000FF' + - uid: 41220 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-29.5 - parent: 2 + pos: 2.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23483 + color: '#FF0000FF' + - uid: 41221 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-29.5 - parent: 2 + pos: 3.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23484 + color: '#FF0000FF' + - uid: 41222 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-29.5 - parent: 2 + pos: 4.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23485 + color: '#FF0000FF' + - uid: 41223 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-29.5 - parent: 2 + pos: -1.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23486 + color: '#FF0000FF' + - uid: 41224 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-29.5 - parent: 2 + pos: -2.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23487 + color: '#FF0000FF' + - uid: 41225 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-29.5 - parent: 2 + pos: -0.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23488 + color: '#FF0000FF' + - uid: 41226 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-28.5 - parent: 2 + pos: 1.5,-5.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23489 + color: '#0000FFFF' + - uid: 41227 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-27.5 - parent: 2 + pos: 1.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23490 + color: '#0000FFFF' + - uid: 41228 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41229 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41230 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-26.5 - parent: 2 + pos: 0.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23491 + color: '#FF0000FF' + - uid: 41231 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-25.5 - parent: 2 + pos: 0.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23492 + color: '#FF0000FF' + - uid: 41232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23493 + color: '#FF0000FF' + - uid: 41790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23494 + color: '#FF0000FF' + - uid: 41791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23495 + color: '#FF0000FF' + - uid: 41792 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 2 + pos: 7.5,-7.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23496 + color: '#FF0000FF' + - uid: 41793 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-21.5 - parent: 2 + pos: 4.5,-4.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23497 + color: '#FF0000FF' + - uid: 41794 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-20.5 - parent: 2 + pos: 3.5,-10.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23498 + color: '#0000FFFF' + - uid: 41795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-22.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23499 + color: '#0000FFFF' + - uid: 41796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 2 + pos: 3.5,-0.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23500 + color: '#0000FFFF' + - uid: 41797 + components: + - type: Transform + pos: 3.5,0.5 + parent: 41669 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41798 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-23.5 - parent: 2 + pos: 4.5,-10.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23501 + color: '#FF0000FF' + - uid: 41799 components: - type: Transform - pos: -5.5,-33.5 - parent: 2 + pos: 2.5,-7.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23502 + color: '#0000FFFF' + - uid: 41800 components: - type: Transform - pos: -5.5,-34.5 - parent: 2 + pos: 2.5,-6.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23503 + color: '#0000FFFF' + - uid: 41801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 2 + pos: 3.5,-3.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23504 + color: '#0000FFFF' + - uid: 41802 components: - type: Transform - pos: -2.5,-36.5 - parent: 2 + pos: 3.5,-1.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23505 + color: '#0000FFFF' + - uid: 41803 components: - type: Transform - pos: -2.5,-37.5 - parent: 2 + pos: 4.5,-6.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23506 + color: '#FF0000FF' + - uid: 41804 components: - type: Transform - pos: -2.5,-38.5 - parent: 2 + pos: 4.5,-1.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23507 + color: '#FF0000FF' + - uid: 41805 components: - type: Transform - pos: -2.5,-39.5 - parent: 2 + pos: 4.5,-9.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23508 + color: '#FF0000FF' + - uid: 41806 components: - type: Transform - pos: -2.5,-40.5 - parent: 2 + pos: 4.5,-3.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23509 + color: '#FF0000FF' + - uid: 41807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-14.5 - parent: 2 + pos: 4.5,-8.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23510 + color: '#FF0000FF' + - uid: 41808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 2 + pos: 4.5,-0.5 + parent: 41669 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23511 + color: '#FF0000FF' + - uid: 42054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-14.5 + rot: 3.141592653589793 rad + pos: 8.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23512 + color: '#0000FFFF' + - uid: 42056 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-13.5 + pos: 7.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23513 + color: '#FF0000FF' + - uid: 42057 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-12.5 + pos: 7.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23514 + color: '#FF0000FF' + - uid: 42061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 + pos: 9.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23515 + color: '#0000FFFF' + - uid: 42376 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-11.5 + pos: 31.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23516 + color: '#FF0000FF' + - uid: 42377 components: - type: Transform - pos: -3.5,-12.5 + pos: 30.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23517 + color: '#FF0000FF' + - uid: 42378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-11.5 + rot: 3.141592653589793 rad + pos: 29.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23518 + color: '#0000FFFF' + - uid: 42403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-11.5 + pos: 108.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23519 + color: '#FF0000FF' + - uid: 43028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-11.5 + rot: 1.5707963267948966 rad + pos: 80.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23520 + color: '#FF0000FF' + - uid: 43029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-11.5 + rot: 1.5707963267948966 rad + pos: 80.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23521 + color: '#0000FFFF' + - uid: 43030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-11.5 + rot: 1.5707963267948966 rad + pos: 79.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23522 + color: '#0000FFFF' + - uid: 43031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-10.5 + rot: 1.5707963267948966 rad + pos: 78.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23525 + color: '#0000FFFF' + - uid: 43032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-10.5 + rot: 1.5707963267948966 rad + pos: 77.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23526 + color: '#0000FFFF' + - uid: 43260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-10.5 + rot: 3.141592653589793 rad + pos: -6.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23527 + color: '#FF0000FF' + - uid: 43261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-10.5 + rot: 3.141592653589793 rad + pos: -6.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23528 + color: '#FF0000FF' + - uid: 43262 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-12.5 + pos: -6.5,-101.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23529 + color: '#FF0000FF' + - uid: 43263 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-13.5 + pos: -6.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23530 + color: '#FF0000FF' + - uid: 43265 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-14.5 + pos: -7.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23531 + color: '#0000FFFF' + - uid: 43266 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-15.5 + rot: 1.5707963267948966 rad + pos: -8.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23532 + color: '#0000FFFF' + - uid: 43267 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-16.5 + rot: 1.5707963267948966 rad + pos: -9.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23533 + color: '#0000FFFF' + - uid: 43268 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-17.5 + rot: 1.5707963267948966 rad + pos: -10.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23534 + color: '#0000FFFF' + - uid: 43269 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-18.5 + rot: 1.5707963267948966 rad + pos: -11.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23535 + color: '#0000FFFF' + - uid: 43271 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-19.5 + pos: -12.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23536 + color: '#0000FFFF' + - uid: 43272 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-20.5 + pos: -12.5,-101.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23537 + color: '#0000FFFF' + - uid: 43273 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-21.5 + pos: -12.5,-102.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23538 + color: '#0000FFFF' + - uid: 43274 components: - type: Transform - pos: -10.5,-12.5 + rot: -1.5707963267948966 rad + pos: -11.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23539 + color: '#0000FFFF' + - uid: 43276 components: - type: Transform - pos: 9.5,-20.5 + pos: -10.5,-104.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23540 + color: '#0000FFFF' + - uid: 43277 components: - type: Transform - pos: 9.5,-19.5 + rot: -1.5707963267948966 rad + pos: -9.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23541 + color: '#0000FFFF' + - uid: 43278 components: - type: Transform - pos: 9.5,-18.5 + rot: -1.5707963267948966 rad + pos: -8.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23542 + color: '#0000FFFF' + - uid: 43280 components: - type: Transform - pos: 9.5,-17.5 + rot: 1.5707963267948966 rad + pos: -6.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23543 + color: '#0000FFFF' + - uid: 43281 components: - type: Transform - pos: 9.5,-16.5 + rot: 1.5707963267948966 rad + pos: -5.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23544 + color: '#0000FFFF' + - uid: 43282 components: - type: Transform - pos: 9.5,-15.5 + rot: 1.5707963267948966 rad + pos: -4.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23545 + color: '#0000FFFF' + - uid: 43283 components: - type: Transform - pos: 9.5,-14.5 + rot: 1.5707963267948966 rad + pos: -3.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23546 + color: '#0000FFFF' + - uid: 43284 components: - type: Transform - pos: 9.5,-13.5 + rot: 1.5707963267948966 rad + pos: -2.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23547 + color: '#0000FFFF' + - uid: 43285 components: - type: Transform - pos: 9.5,-22.5 + rot: -1.5707963267948966 rad + pos: -4.5,-104.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23548 + color: '#FF0000FF' + - uid: 43286 components: - type: Transform - pos: 9.5,-23.5 + rot: -1.5707963267948966 rad + pos: -5.5,-104.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23549 + color: '#FF0000FF' + - uid: 43289 components: - type: Transform - pos: 9.5,-24.5 + rot: 1.5707963267948966 rad + pos: -7.5,-102.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23550 + color: '#FF0000FF' + - uid: 43290 components: - type: Transform - pos: 9.5,-25.5 + rot: 1.5707963267948966 rad + pos: -8.5,-102.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23551 + color: '#FF0000FF' + - uid: 43291 components: - type: Transform - pos: 9.5,-26.5 + pos: -9.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23552 + color: '#FF0000FF' + - uid: 43292 components: - type: Transform - pos: 9.5,-27.5 + pos: -9.5,-104.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23553 + color: '#FF0000FF' + - uid: 43293 components: - type: Transform - pos: 9.5,-28.5 + pos: -9.5,-105.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23554 + color: '#FF0000FF' + - uid: 43331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-29.5 + pos: -8.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23555 + color: '#0000FFFF' + - uid: 43673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-29.5 + pos: 33.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23556 + color: '#0000FFFF' + - uid: 43677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-29.5 + rot: 1.5707963267948966 rad + pos: 104.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23557 + color: '#FF0000FF' + - uid: 43678 components: - type: Transform - pos: -5.5,-27.5 + rot: 1.5707963267948966 rad + pos: 105.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23558 + color: '#FF0000FF' + - uid: 43679 components: - type: Transform - pos: -5.5,-26.5 + rot: 1.5707963267948966 rad + pos: 106.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23559 + color: '#FF0000FF' + - uid: 43681 components: - type: Transform - pos: -5.5,-25.5 + pos: 33.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23560 + color: '#0000FFFF' + - uid: 43682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-24.5 + pos: 33.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23561 + color: '#0000FFFF' + - uid: 43684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 + rot: 3.141592653589793 rad + pos: 36.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23562 + color: '#FF0000FF' + - uid: 43685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-24.5 + rot: 3.141592653589793 rad + pos: 36.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23563 + color: '#FF0000FF' + - uid: 43686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-24.5 + rot: 3.141592653589793 rad + pos: 36.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23564 + color: '#FF0000FF' + - uid: 43692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-24.5 + pos: 37.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23565 + color: '#FF0000FF' + - uid: 43693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-24.5 + pos: 37.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23566 + color: '#FF0000FF' + - uid: 43694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-24.5 + pos: 37.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23567 + color: '#FF0000FF' + - uid: 43695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-24.5 + pos: 34.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23568 + color: '#0000FFFF' + - uid: 43696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-24.5 + pos: 34.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23569 + color: '#0000FFFF' + - uid: 43697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-24.5 + pos: 34.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23570 + color: '#0000FFFF' + - uid: 43698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-35.5 + pos: 34.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23571 + color: '#0000FFFF' + - uid: 43699 components: - type: Transform - pos: -3.5,-37.5 + pos: 34.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23572 + color: '#0000FFFF' + - uid: 43706 components: - type: Transform - pos: -3.5,-38.5 + rot: 3.141592653589793 rad + pos: 36.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23573 + color: '#FF0000FF' + - uid: 43707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-39.5 + rot: 3.141592653589793 rad + pos: 36.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23574 + color: '#FF0000FF' + - uid: 43708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 + pos: 34.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23575 + color: '#0000FFFF' + - uid: 43713 components: - type: Transform - pos: 0.5,-44.5 + rot: 3.141592653589793 rad + pos: 28.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23576 + color: '#FF0000FF' + - uid: 43714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-54.5 + rot: 3.141592653589793 rad + pos: 28.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23577 + color: '#FF0000FF' + - uid: 43715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-54.5 + rot: 3.141592653589793 rad + pos: 28.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23578 + color: '#FF0000FF' + - uid: 43716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-54.5 + rot: 3.141592653589793 rad + pos: 28.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23579 + color: '#FF0000FF' + - uid: 43718 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-54.5 + pos: 9.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23580 + color: '#0000FFFF' + - uid: 43719 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-54.5 + pos: 11.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23581 + color: '#0000FFFF' + - uid: 43720 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-54.5 + pos: 10.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23582 + color: '#0000FFFF' + - uid: 43721 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-54.5 + pos: 13.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23583 + color: '#0000FFFF' + - uid: 43723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-54.5 + pos: 12.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23584 + color: '#0000FFFF' + - uid: 43724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-54.5 + rot: 3.141592653589793 rad + pos: 8.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23585 + color: '#0000FFFF' + - uid: 43725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-54.5 + rot: 3.141592653589793 rad + pos: 8.5,-96.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23586 + color: '#0000FFFF' + - uid: 43726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-54.5 + rot: 3.141592653589793 rad + pos: 8.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23587 + color: '#0000FFFF' + - uid: 43727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-54.5 + rot: 3.141592653589793 rad + pos: 8.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23588 + color: '#0000FFFF' + - uid: 43728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-54.5 + rot: 3.141592653589793 rad + pos: 8.5,-91.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23589 + color: '#0000FFFF' + - uid: 43729 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-55.5 + pos: 8.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23590 + color: '#0000FFFF' + - uid: 43735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-56.5 + rot: -1.5707963267948966 rad + pos: 7.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23591 + color: '#0000FFFF' + - uid: 43736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-57.5 + rot: -1.5707963267948966 rad + pos: 6.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23592 + color: '#0000FFFF' + - uid: 43737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-58.5 + rot: -1.5707963267948966 rad + pos: 5.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23593 + color: '#0000FFFF' + - uid: 43738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-59.5 + rot: -1.5707963267948966 rad + pos: 4.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23594 + color: '#0000FFFF' + - uid: 43739 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-55.5 + rot: -1.5707963267948966 rad + pos: 3.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23595 + color: '#0000FFFF' + - uid: 43740 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-56.5 + pos: 8.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23596 + color: '#0000FFFF' + - uid: 44118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-57.5 + rot: -1.5707963267948966 rad + pos: 85.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23597 + color: '#0000FFFF' + - uid: 44120 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-58.5 + rot: 1.5707963267948966 rad + pos: 87.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23598 + color: '#0000FFFF' + - uid: 44121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-59.5 + rot: 1.5707963267948966 rad + pos: 88.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23599 + color: '#0000FFFF' + - uid: 44122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-60.5 + rot: 1.5707963267948966 rad + pos: 88.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 23600 + color: '#FF0000FF' + - uid: 44125 components: - type: Transform - pos: -3.5,-17.5 + rot: 3.141592653589793 rad + pos: 86.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23601 + color: '#0000FFFF' + - uid: 44126 components: - type: Transform - pos: -3.5,-18.5 + rot: 1.5707963267948966 rad + pos: 87.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23602 + color: '#0000FFFF' + - uid: 44129 components: - type: Transform - pos: -3.5,-19.5 + rot: -1.5707963267948966 rad + pos: 76.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23603 + color: '#FF0000FF' + - uid: 44130 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-21.5 + pos: 75.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23604 + color: '#FF0000FF' + - uid: 44131 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-21.5 + pos: 74.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23605 + color: '#FF0000FF' + - uid: 44132 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-21.5 + pos: 73.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23606 + color: '#FF0000FF' + - uid: 44133 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-21.5 + pos: 72.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23607 + color: '#FF0000FF' + - uid: 44135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-21.5 + pos: 71.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23608 + color: '#FF0000FF' + - uid: 44137 components: - type: Transform - pos: -10.5,-17.5 + rot: 3.141592653589793 rad + pos: 84.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23609 + color: '#0000FFFF' + - uid: 44192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-23.5 + rot: 3.141592653589793 rad + pos: 109.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23610 + color: '#FF0000FF' + - uid: 44193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 + rot: 3.141592653589793 rad + pos: 109.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23611 + color: '#FF0000FF' + - uid: 44194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-23.5 + rot: 3.141592653589793 rad + pos: 109.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23612 + color: '#FF0000FF' + - uid: 44197 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-23.5 + pos: 107.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23613 + color: '#FF0000FF' + - uid: 44198 components: - type: Transform - pos: -11.5,-21.5 + rot: 1.5707963267948966 rad + pos: 108.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23614 + color: '#FF0000FF' + - uid: 44199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-25.5 + pos: 106.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23615 + color: '#FF0000FF' + - uid: 44252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-26.5 + anchored: False + pos: -70.13806,-1.5685258 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23616 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 44261 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-27.5 + anchored: False + pos: -70.48613,-1.4237876 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23617 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 44262 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-29.5 + anchored: False + pos: -70.32556,-1.6622758 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23618 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 44379 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-30.5 + pos: 55.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23619 + color: '#FEF101FF' + - uid: 44380 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-31.5 + pos: 55.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23620 + color: '#FEF101FF' + - uid: 44381 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-32.5 + pos: 55.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23621 + color: '#FEF101FF' + - uid: 44383 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-28.5 + pos: 54.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23622 + color: '#FEF101FF' + - uid: 44384 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-28.5 + pos: 53.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23623 + color: '#FEF101FF' +- proto: GasPipeTJunction + entities: + - uid: 14754 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-24.5 + pos: 79.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23624 + color: '#FF0000FF' + - uid: 15511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-33.5 + rot: 3.141592653589793 rad + pos: 76.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23625 + color: '#0000FFFF' + - uid: 16150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-38.5 + pos: 27.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23626 + color: '#FF0000FF' + - uid: 16196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 + pos: 26.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23627 + color: '#0000FFFF' + - uid: 16888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 + rot: -1.5707963267948966 rad + pos: 7.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23628 + color: '#FF0000FF' + - uid: 16894 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-33.5 + pos: 8.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23629 + color: '#0000FFFF' + - uid: 16911 components: - type: Transform - pos: -16.5,-37.5 + rot: 3.141592653589793 rad + pos: 29.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23630 + color: '#0000FFFF' + - uid: 18700 components: - type: Transform - pos: -16.5,-36.5 + pos: -7.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23631 + color: '#FF0000FF' + - uid: 18714 components: - type: Transform - pos: -16.5,-35.5 + pos: -8.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23632 + color: '#0000FFFF' + - uid: 18829 components: - type: Transform - pos: -16.5,-34.5 + pos: 38.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23633 + color: '#FF0000FF' + - uid: 19834 components: - type: Transform - pos: -10.5,-18.5 + rot: 3.141592653589793 rad + pos: -8.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23634 + - uid: 19972 components: - type: Transform - pos: -10.5,-19.5 + rot: 1.5707963267948966 rad + pos: -7.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23635 + color: '#FF0000FF' + - uid: 20024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-20.5 + rot: -1.5707963267948966 rad + pos: -7.5,-57.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23636 + - uid: 20180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-20.5 + rot: -1.5707963267948966 rad + pos: 102.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23637 + color: '#FF0000FF' + - uid: 20264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-20.5 + rot: -1.5707963267948966 rad + pos: 33.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23638 + color: '#0000FFFF' + - uid: 20265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-20.5 + rot: -1.5707963267948966 rad + pos: 36.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23639 + color: '#FF0000FF' + - uid: 20418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-20.5 + pos: -9.5,-53.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23640 + - uid: 20419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-20.5 + rot: 3.141592653589793 rad + pos: -8.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23641 + - uid: 20431 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-34.5 + pos: -10.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23642 + - uid: 20436 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-35.5 + rot: 1.5707963267948966 rad + pos: -11.5,-57.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23643 + - uid: 20439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-54.5 + parent: 2 + - uid: 20575 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-36.5 + pos: 81.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23644 + color: '#0000FFFF' + - uid: 20748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-37.5 + pos: 40.5,-85.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23645 + color: '#FF0000FF' + - uid: 20827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-38.5 + pos: 106.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23646 + color: '#FF0000FF' + - uid: 21561 components: - type: Transform - pos: -0.5,-45.5 + rot: 1.5707963267948966 rad + pos: 6.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23647 + color: '#FF0000FF' + - uid: 21696 components: - type: Transform - pos: -0.5,-46.5 + pos: 28.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23648 + color: '#FF0000FF' + - uid: 21722 components: - type: Transform - pos: -0.5,-47.5 + pos: -9.5,-102.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23649 + color: '#FF0000FF' + - uid: 21725 components: - type: Transform - pos: -0.5,-48.5 + rot: 1.5707963267948966 rad + pos: 33.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23650 + color: '#0000FFFF' + - uid: 21730 components: - type: Transform - pos: -0.5,-49.5 + rot: 1.5707963267948966 rad + pos: 36.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23651 + color: '#FF0000FF' + - uid: 22414 components: - type: Transform - pos: -0.5,-50.5 + pos: 0.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23652 + color: '#FF0000FF' + - uid: 22476 components: - type: Transform - pos: -0.5,-51.5 + rot: 3.141592653589793 rad + pos: 0.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23653 + color: '#0000FFFF' + - uid: 22478 components: - type: Transform - pos: -0.5,-52.5 + pos: 104.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23654 + color: '#0000FFFF' + - uid: 22488 components: - type: Transform - pos: -0.5,-53.5 + rot: 3.141592653589793 rad + pos: 12.5,-100.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23655 + color: '#0000FFFF' + - uid: 22495 components: - type: Transform - pos: -0.5,-54.5 + rot: 1.5707963267948966 rad + pos: 12.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23656 + color: '#0000FFFF' + - uid: 22500 components: - type: Transform - pos: -0.5,-55.5 + rot: 1.5707963267948966 rad + pos: 6.5,-93.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23657 + color: '#FF0000FF' + - uid: 22509 components: - type: Transform - pos: -0.5,-56.5 + rot: 1.5707963267948966 rad + pos: 13.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 23658 + color: '#FF0000FF' + - uid: 23015 components: - type: Transform - pos: -8.5,12.5 + rot: -1.5707963267948966 rad + pos: 87.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23659 + color: '#FF0000FF' + - uid: 23024 components: - type: Transform - pos: -8.5,13.5 + pos: 80.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23660 + - uid: 23049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 98.5,-74.5 + rot: -1.5707963267948966 rad + pos: 77.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23661 + - uid: 23052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 99.5,-74.5 + pos: 80.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23662 + - uid: 23078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 100.5,-74.5 + rot: -1.5707963267948966 rad + pos: 79.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23663 + - uid: 23087 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-74.5 + pos: 87.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23664 + - uid: 23768 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,10.5 + pos: 44.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23669 + - uid: 23769 components: - type: Transform - pos: 23.5,7.5 + pos: 59.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23670 + - uid: 23770 components: - type: Transform - pos: 23.5,6.5 + rot: 1.5707963267948966 rad + pos: 43.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23671 + color: '#0000FFFF' + - uid: 23771 components: - type: Transform - pos: 23.5,5.5 + pos: 58.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23672 + color: '#0000FFFF' + - uid: 23773 components: - type: Transform - pos: 23.5,4.5 + rot: 3.141592653589793 rad + pos: 75.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23673 + - uid: 23774 components: - type: Transform - pos: 23.5,3.5 + rot: -1.5707963267948966 rad + pos: 43.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23674 + color: '#0000FFFF' + - uid: 23775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,2.5 + rot: 1.5707963267948966 rad + pos: 45.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23675 + color: '#0000FFFF' + - uid: 23776 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,2.5 + pos: 43.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23676 + color: '#0000FFFF' + - uid: 23777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,4.5 + rot: -1.5707963267948966 rad + pos: 68.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23677 + - uid: 23778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,5.5 + rot: 1.5707963267948966 rad + pos: 52.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23678 + color: '#0000FFFF' + - uid: 23779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,4.5 + rot: 1.5707963267948966 rad + pos: 56.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23679 + color: '#0000FFFF' + - uid: 23780 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,5.5 + pos: 61.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23680 + color: '#0000FFFF' + - uid: 23781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,6.5 + rot: -1.5707963267948966 rad + pos: 57.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23681 + - uid: 23782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-7.5 + rot: 1.5707963267948966 rad + pos: 57.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23682 + - uid: 23783 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-7.5 + pos: 56.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23683 + color: '#0000FFFF' + - uid: 23784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,13.5 + rot: 3.141592653589793 rad + pos: 69.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23684 + color: '#0000FFFF' + - uid: 23785 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,13.5 + pos: 43.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23685 + - uid: 23786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,13.5 + pos: 57.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23686 + - uid: 23787 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,12.5 + pos: 63.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23687 + - uid: 23788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,13.5 + rot: -1.5707963267948966 rad + pos: 45.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23688 + - uid: 23789 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,11.5 + pos: 43.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23689 + - uid: 23790 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,11.5 + pos: 43.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23690 + color: '#FF0000FF' + - uid: 23791 components: - type: Transform - pos: 12.5,10.5 + rot: 3.141592653589793 rad + pos: 59.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23691 + color: '#FF0000FF' + - uid: 23792 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,9.5 + pos: 31.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23692 + - uid: 23793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,8.5 + rot: -1.5707963267948966 rad + pos: 43.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23693 + - uid: 23794 components: - type: Transform - pos: 16.5,7.5 + rot: 1.5707963267948966 rad + pos: 42.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23694 + color: '#FF0000FF' + - uid: 23795 components: - type: Transform - pos: 16.5,6.5 + rot: 1.5707963267948966 rad + pos: 45.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23695 + - uid: 23796 components: - type: Transform - pos: 16.5,5.5 + rot: 1.5707963267948966 rad + pos: 56.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23696 + - uid: 23797 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,19.5 + pos: 42.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23697 + - uid: 23812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,19.5 + rot: 1.5707963267948966 rad + pos: 43.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23698 + color: '#0000FFFF' + - uid: 23813 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,19.5 + pos: 43.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23699 + color: '#0000FFFF' + - uid: 23814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,19.5 + rot: 1.5707963267948966 rad + pos: 44.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23700 + - uid: 23815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,19.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 87.5,-41.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23701 + - uid: 23818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,19.5 + rot: 1.5707963267948966 rad + pos: 44.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23702 + - uid: 23819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,19.5 + rot: 1.5707963267948966 rad + pos: 26.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23703 + - uid: 23820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,19.5 + rot: 3.141592653589793 rad + pos: -6.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23704 + - uid: 23821 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,20.5 + pos: -28.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23705 + color: '#FF0000FF' + - uid: 23822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,20.5 + pos: -24.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23706 + color: '#FF0000FF' + - uid: 23823 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,20.5 + pos: -21.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23707 + - uid: 23824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,20.5 + rot: 3.141592653589793 rad + pos: -21.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23708 + - uid: 23825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,20.5 + rot: 3.141592653589793 rad + pos: -12.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23709 + color: '#FF0000FF' + - uid: 23826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,22.5 + rot: -1.5707963267948966 rad + pos: 35.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23710 + color: '#FF0000FF' + - uid: 23827 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,23.5 + pos: 43.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23711 + - uid: 23828 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,24.5 + rot: 1.5707963267948966 rad + pos: 43.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23712 + color: '#FF0000FF' + - uid: 23829 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,25.5 + pos: -50.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23713 + color: '#FF0000FF' + - uid: 23832 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,22.5 + rot: 1.5707963267948966 rad + pos: 31.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23714 + - uid: 23833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,23.5 + rot: -1.5707963267948966 rad + pos: 26.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23715 + color: '#FF0000FF' + - uid: 23834 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,25.5 + rot: -1.5707963267948966 rad + pos: 17.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23716 + - uid: 23835 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,23.5 + pos: 13.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23717 + - uid: 23836 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,19.5 + pos: 13.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23718 + color: '#0000FFFF' + - uid: 23837 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,19.5 + pos: -6.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23719 + color: '#0000FFFF' + - uid: 23838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,19.5 + rot: 3.141592653589793 rad + pos: 3.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23720 + color: '#0000FFFF' + - uid: 23839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,19.5 + rot: 3.141592653589793 rad + pos: -2.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23721 + color: '#0000FFFF' + - uid: 23840 components: - type: Transform - pos: -8.5,20.5 + pos: 0.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23722 + - uid: 23841 components: - type: Transform - pos: -8.5,21.5 + rot: 3.141592653589793 rad + pos: -1.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23723 + - uid: 23842 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,22.5 + pos: 57.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23724 + - uid: 23845 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-25.5 + pos: 9.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23725 + - uid: 23846 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-25.5 + pos: 8.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23726 + color: '#0000FFFF' + - uid: 23847 components: - type: Transform - pos: -48.5,-24.5 + pos: 10.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23727 + - uid: 23848 components: - type: Transform - pos: -48.5,-23.5 + rot: 3.141592653589793 rad + pos: -15.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23728 + - uid: 23849 components: - type: Transform - pos: -48.5,-22.5 + pos: -17.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23729 + color: '#0000FFFF' + - uid: 23850 components: - type: Transform - pos: -48.5,-21.5 + pos: 36.5,-98.5 + parent: 2 + - uid: 23851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23730 + - uid: 23852 components: - type: Transform - pos: -48.5,-20.5 + rot: -1.5707963267948966 rad + pos: 27.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23731 + - uid: 23853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-21.5 + rot: -1.5707963267948966 rad + pos: -40.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23732 + - uid: 23854 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,-47.5 + pos: -43.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23733 + - uid: 23855 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-46.5 + rot: -1.5707963267948966 rad + pos: 31.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23734 + - uid: 23856 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-45.5 + rot: 1.5707963267948966 rad + pos: 31.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23735 + - uid: 23857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-49.5 + pos: 36.5,-101.5 + parent: 2 + - uid: 23858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23736 + - uid: 23859 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,-49.5 + pos: 45.5,-95.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23737 + - uid: 23860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-49.5 + rot: 1.5707963267948966 rad + pos: 46.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23738 + color: '#0000FFFF' + - uid: 23861 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,-49.5 + pos: 31.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23739 + color: '#0000FFFF' + - uid: 23862 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-48.5 + rot: -1.5707963267948966 rad + pos: -35.5,-20.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23740 + - uid: 23863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-47.5 + rot: 1.5707963267948966 rad + pos: -37.5,-21.5 + parent: 2 + - uid: 23864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23741 + color: '#0000FFFF' + - uid: 23865 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-46.5 + rot: 1.5707963267948966 rad + pos: 45.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23742 + color: '#0000FFFF' + - uid: 23866 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-45.5 + pos: 102.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23743 + color: '#0000FFFF' + - uid: 23867 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-44.5 + rot: -1.5707963267948966 rad + pos: 43.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23744 + - uid: 23868 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-43.5 + pos: 72.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23745 + - uid: 23869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-54.5 + pos: 70.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23746 + color: '#0000FFFF' + - uid: 23870 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-54.5 + pos: 26.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23747 + - uid: 23871 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,2.5 + pos: 65.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23748 + color: '#0000FFFF' + - uid: 23873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,3.5 + pos: 27.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23749 + color: '#0000FFFF' + - uid: 23874 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,4.5 + rot: 1.5707963267948966 rad + pos: -27.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23750 + - uid: 23875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-47.5 + parent: 2 + - uid: 23876 + components: + - type: Transform + pos: 40.5,-47.5 + parent: 2 + - uid: 23877 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,3.5 + pos: 35.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23751 + - uid: 23878 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,2.5 + pos: 35.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23752 + - uid: 23879 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,1.5 + pos: 42.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23753 + color: '#947507FF' + - uid: 23880 components: - type: Transform - pos: -17.5,5.5 + pos: 41.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23754 + - uid: 23881 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,6.5 + pos: 45.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23755 + - uid: 23882 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,7.5 + pos: 34.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23756 + - uid: 23883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,8.5 + pos: 42.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23757 + color: '#0000FFFF' + - uid: 23884 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-0.5 + rot: 1.5707963267948966 rad + pos: -8.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23758 + color: '#0000FFFF' + - uid: 23886 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,0.5 + rot: 1.5707963267948966 rad + pos: 45.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23759 + - uid: 23887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,1.5 + rot: 1.5707963267948966 rad + pos: 46.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23760 + color: '#0000FFFF' + - uid: 23888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,2.5 + rot: -1.5707963267948966 rad + pos: 50.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23761 + color: '#0000FFFF' + - uid: 23889 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,3.5 + rot: 1.5707963267948966 rad + pos: 48.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23762 + - uid: 23890 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,4.5 + pos: 48.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23763 + - uid: 23891 + components: + - type: Transform + pos: 50.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23892 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,5.5 + pos: 51.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23764 + color: '#0000FFFF' + - uid: 23893 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,6.5 + pos: 50.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23765 + - uid: 23894 components: - type: Transform - pos: -21.5,2.5 + rot: 1.5707963267948966 rad + pos: 51.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23766 + - uid: 23895 components: - type: Transform - pos: -21.5,3.5 + rot: 1.5707963267948966 rad + pos: 45.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23767 + - uid: 23896 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,4.5 + pos: 45.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23831 + - uid: 23897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,9.5 + rot: 1.5707963267948966 rad + pos: 43.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23963 + - uid: 23898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-99.5 + rot: 3.141592653589793 rad + pos: 50.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24052 + - uid: 23899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-99.5 + rot: 3.141592653589793 rad + pos: 39.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24053 + - uid: 23900 components: - type: Transform - pos: 6.5,-95.5 + pos: 33.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24054 + - uid: 23901 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-91.5 + rot: 1.5707963267948966 rad + pos: 43.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24055 + - uid: 23902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-88.5 + pos: 37.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24056 + color: '#0000FFFF' + - uid: 23903 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-99.5 + pos: 56.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24057 + - uid: 23904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-85.5 + rot: 3.141592653589793 rad + pos: 68.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24340 + color: '#0000FFFF' + - uid: 23905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-85.5 + pos: 78.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24395 + color: '#0000FFFF' + - uid: 23906 components: - type: Transform - pos: 12.5,-99.5 + rot: 3.141592653589793 rad + pos: 77.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24418 + - uid: 23907 components: - type: Transform - pos: 6.5,-97.5 + rot: 3.141592653589793 rad + pos: 73.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24420 + - uid: 23908 components: - type: Transform - pos: 6.5,-89.5 + rot: 1.5707963267948966 rad + pos: 81.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24506 + - uid: 23909 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-2.5 + pos: 86.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24662 + - uid: 23910 components: - type: Transform - pos: 12.5,-91.5 + rot: -1.5707963267948966 rad + pos: 83.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24706 + - uid: 23911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-99.5 + rot: -1.5707963267948966 rad + pos: 83.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24707 + color: '#0000FFFF' + - uid: 23912 components: - type: Transform - pos: 6.5,-94.5 + rot: 3.141592653589793 rad + pos: 88.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24809 + - uid: 23913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,9.5 + rot: 3.141592653589793 rad + pos: 86.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24810 + color: '#0000FFFF' + - uid: 23914 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,10.5 + pos: 81.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24953 + - uid: 23915 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-6.5 + pos: 31.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 25194 + - uid: 23916 components: - type: Transform - pos: -8.5,-77.5 + rot: 3.141592653589793 rad + pos: 28.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25551 + color: '#FF0000FF' + - uid: 23917 components: - type: Transform - pos: 12.5,-90.5 + rot: 3.141592653589793 rad + pos: 30.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 25552 + - uid: 23918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-92.5 + rot: 1.5707963267948966 rad + pos: 28.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 25581 + - uid: 23919 components: - type: Transform - pos: -7.5,-77.5 + rot: -1.5707963267948966 rad + pos: 30.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25584 + color: '#0000FFFF' + - uid: 23920 components: - type: Transform - pos: -7.5,-78.5 + rot: 1.5707963267948966 rad + pos: 30.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26477 + color: '#0000FFFF' + - uid: 23921 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-99.5 + pos: 28.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 26539 + - uid: 23922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,11.5 + rot: -1.5707963267948966 rad + pos: 26.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 27810 + - uid: 23923 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,16.5 + pos: 27.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30139 + - uid: 23924 components: - type: Transform - pos: -8.5,-76.5 + pos: 19.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 103.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 34685 + - uid: 23925 components: - type: Transform - pos: 104.5,-22.5 + rot: 3.141592653589793 rad + pos: 17.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 35574 + - uid: 23926 components: - type: Transform rot: 3.141592653589793 rad - pos: 109.5,-48.5 + pos: 15.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 36212 + - uid: 23927 components: - type: Transform - pos: 33.5,-61.5 + pos: 8.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 36215 + - uid: 23928 components: - type: Transform - pos: 108.5,-20.5 + pos: -25.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 36217 + color: '#0000FFFF' + - uid: 23929 components: - type: Transform - pos: 28.5,-40.5 + rot: 1.5707963267948966 rad + pos: 1.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 36219 + color: '#0000FFFF' + - uid: 23930 components: - type: Transform rot: 1.5707963267948966 rad - pos: 107.5,-22.5 + pos: -0.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37911 + - uid: 23931 components: - type: Transform - pos: -7.5,-93.5 + rot: 3.141592653589793 rad + pos: -2.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40736 + - uid: 23932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 40666 + pos: -5.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40737 + color: '#0000FFFF' + - uid: 23933 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 40666 + pos: -6.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40738 + color: '#0000FFFF' + - uid: 23934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 40666 + pos: -4.5,3.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40739 + - uid: 23935 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 40666 + pos: 1.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40740 + color: '#0000FFFF' + - uid: 23936 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 40666 + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40741 + - uid: 23937 components: - type: Transform - pos: -1.5,-1.5 - parent: 40666 + pos: -0.5,22.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40827 + - uid: 23938 components: - type: Transform - pos: 28.5,-39.5 + pos: 1.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41188 + color: '#0000FFFF' + - uid: 23939 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 40828 - - uid: 41189 + pos: 7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23940 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 40828 - - uid: 41190 + pos: 7.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23941 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 40828 - - uid: 41191 + rot: -1.5707963267948966 rad + pos: 33.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23942 components: - type: Transform - pos: 1.5,-10.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: 31.5,-42.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41192 + - uid: 23943 components: - type: Transform - pos: 1.5,-9.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: 28.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41193 + - uid: 23944 components: - type: Transform - pos: 0.5,-10.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: 28.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-71.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41194 + - uid: 23946 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 40828 + pos: 21.5,-71.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41195 + - uid: 23947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 40828 + rot: 3.141592653589793 rad + pos: 8.5,-76.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41196 + color: '#FF0000FF' + - uid: 23948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 40828 + pos: 1.5,-76.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41197 + color: '#FF0000FF' + - uid: 23949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 40828 + pos: -7.5,-74.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41198 + - uid: 23950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 40828 + pos: -0.5,-74.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41199 + - uid: 23951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: 1.5,-80.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41200 + color: '#FF0000FF' + - uid: 23952 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 40828 + pos: 1.5,-81.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41201 + color: '#FF0000FF' + - uid: 23953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: -0.5,-82.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41202 + - uid: 23954 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 40828 + pos: -0.5,-79.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41203 + - uid: 23955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 40828 + rot: 3.141592653589793 rad + pos: 5.5,-80.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41204 + - uid: 23956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 40828 + pos: 5.5,-82.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41205 + color: '#0000FFFF' + - uid: 23957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: -0.5,-86.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41206 + color: '#0000FFFF' + - uid: 23958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-9.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: 1.5,-87.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41207 + - uid: 23959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 40828 + pos: -6.5,-87.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41208 + - uid: 23960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 40828 + pos: -8.5,-86.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41209 + color: '#0000FFFF' + - uid: 23961 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-10.5 - parent: 40828 + pos: -0.5,-90.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41210 + color: '#0000FFFF' + - uid: 23962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-11.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: 13.5,-99.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41211 + - uid: 23964 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 40828 + pos: -25.5,-73.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41212 + - uid: 23965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 40828 + pos: -23.5,-69.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41213 + - uid: 23966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 40828 + pos: -29.5,-53.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41214 + - uid: 23967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: -23.5,-76.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41215 + - uid: 23968 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 40828 + pos: -25.5,-77.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41216 + color: '#FF0000FF' + - uid: 23969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: -25.5,-80.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41217 + color: '#FF0000FF' + - uid: 23970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: -23.5,-81.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41218 + - uid: 23971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: -31.5,-86.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41219 + - uid: 23972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: -32.5,-87.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41220 + - uid: 23973 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 40828 + pos: -27.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41221 + color: '#0000FFFF' + - uid: 23974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: -29.5,-61.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41222 + - uid: 23975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: -32.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41223 + color: '#0000FFFF' + - uid: 23976 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 40828 + pos: -30.5,-49.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41224 + - uid: 23979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: -32.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-42.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41225 + - uid: 23981 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 40828 + pos: -27.5,-19.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41226 + - uid: 23982 components: - type: Transform - pos: 1.5,-5.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41227 + - uid: 23983 components: - type: Transform - pos: 1.5,-4.5 - parent: 40828 + rot: -1.5707963267948966 rad + pos: -29.5,-31.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41228 + - uid: 23984 components: - type: Transform - pos: 1.5,-3.5 - parent: 40828 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41229 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 40828 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 40828 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-6.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: -30.5,-33.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41232 + - uid: 23985 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 40828 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 41669 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 41669 + pos: -40.5,-42.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41792 + - uid: 23986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 41669 + pos: -44.5,-42.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41793 + - uid: 23987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 41669 + rot: 1.5707963267948966 rad + pos: -25.5,-6.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41794 + - uid: 23988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-10.5 - parent: 41669 + rot: 1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41795 + - uid: 23989 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-9.5 - parent: 41669 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41796 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 41669 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41797 - components: - - type: Transform - pos: 3.5,0.5 - parent: 41669 + pos: -27.5,-7.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41798 + - uid: 23990 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 41669 + pos: -18.5,-1.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41799 + - uid: 23991 components: - type: Transform - pos: 2.5,-7.5 - parent: 41669 + rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41800 + color: '#FF0000FF' + - uid: 23992 components: - type: Transform - pos: 2.5,-6.5 - parent: 41669 + rot: 1.5707963267948966 rad + pos: -30.5,4.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41801 + - uid: 23993 components: - type: Transform - pos: 3.5,-3.5 - parent: 41669 + rot: -1.5707963267948966 rad + pos: -42.5,-43.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41802 + - uid: 23994 components: - type: Transform - pos: 3.5,-1.5 - parent: 41669 + rot: 1.5707963267948966 rad + pos: -42.5,-48.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41803 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 41669 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41804 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 41669 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41805 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 41669 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41806 + - uid: 23995 components: - type: Transform - pos: 4.5,-3.5 - parent: 41669 + rot: -1.5707963267948966 rad + pos: -44.5,-48.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41807 + - uid: 23996 components: - type: Transform - pos: 4.5,-8.5 - parent: 41669 + rot: 1.5707963267948966 rad + pos: -44.5,-47.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41808 + - uid: 23997 components: - type: Transform - pos: 4.5,-0.5 - parent: 41669 + rot: 1.5707963267948966 rad + pos: -44.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 42054 + - uid: 23998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-1.5 + rot: 1.5707963267948966 rad + pos: -42.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 42056 + - uid: 23999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-0.5 + rot: -1.5707963267948966 rad + pos: -42.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 42057 + color: '#0000FFFF' + - uid: 24000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-1.5 + rot: -1.5707963267948966 rad + pos: -42.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 42061 + color: '#0000FFFF' + - uid: 24001 components: - type: Transform - pos: 9.5,0.5 + pos: -43.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 42376 + color: '#FF0000FF' + - uid: 24002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,17.5 + rot: 3.141592653589793 rad + pos: -39.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 42377 + - uid: 24003 components: - type: Transform - pos: 30.5,16.5 + pos: -36.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 42378 + - uid: 24004 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,17.5 + pos: -37.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 42403 + - uid: 24005 components: - type: Transform - pos: 108.5,-21.5 + rot: -1.5707963267948966 rad + pos: -44.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43028 + - uid: 24006 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,3.5 + pos: -44.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43029 + - uid: 24007 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,5.5 + pos: -42.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43030 + - uid: 24008 components: - type: Transform rot: 1.5707963267948966 rad - pos: 79.5,5.5 + pos: -42.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43031 + - uid: 24009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,5.5 + rot: -1.5707963267948966 rad + pos: -42.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43032 + - uid: 24010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,5.5 + pos: -50.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43260 + - uid: 24011 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-99.5 + pos: -48.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43261 + - uid: 24012 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-100.5 + rot: -1.5707963267948966 rad + pos: -42.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43262 + color: '#0000FFFF' + - uid: 24013 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-101.5 + rot: 1.5707963267948966 rad + pos: -44.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43263 + - uid: 24014 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-103.5 + rot: 1.5707963267948966 rad + pos: -44.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43265 + - uid: 24015 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-98.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-99.5 + pos: -52.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43267 + color: '#FF0000FF' + - uid: 24016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-99.5 + rot: 3.141592653589793 rad + pos: -51.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43268 + - uid: 24017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-99.5 + rot: -1.5707963267948966 rad + pos: -52.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43269 + color: '#FF0000FF' + - uid: 24018 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-99.5 + pos: -50.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43271 + - uid: 24019 components: - type: Transform - pos: -12.5,-100.5 + rot: 3.141592653589793 rad + pos: -64.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43272 + color: '#FF0000FF' + - uid: 24020 components: - type: Transform - pos: -12.5,-101.5 + pos: -61.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43273 + - uid: 24021 components: - type: Transform - pos: -12.5,-102.5 + rot: -1.5707963267948966 rad + pos: -44.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43274 + color: '#FF0000FF' + - uid: 24022 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-103.5 + pos: -42.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43276 + - uid: 24023 components: - type: Transform - pos: -10.5,-104.5 + rot: 1.5707963267948966 rad + pos: -40.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43277 + color: '#FF0000FF' + - uid: 24024 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-103.5 + pos: -40.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43278 + color: '#FF0000FF' + - uid: 24025 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-103.5 + pos: -42.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43280 + - uid: 24026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-103.5 + pos: -44.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43281 + color: '#FF0000FF' + - uid: 24027 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-103.5 + pos: -42.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43282 + - uid: 24028 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-103.5 + pos: -42.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43283 + - uid: 24029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-103.5 + pos: -45.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43284 + - uid: 24030 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-103.5 + pos: -42.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43285 + - uid: 24031 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-104.5 + pos: -40.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43286 + - uid: 24032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-104.5 + pos: -41.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43289 + color: '#0000FFFF' + - uid: 24033 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-102.5 + pos: -43.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43290 + color: '#0000FFFF' + - uid: 24034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-102.5 + pos: -50.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43291 + color: '#0000FFFF' + - uid: 24035 components: - type: Transform - pos: -9.5,-103.5 + rot: 3.141592653589793 rad + pos: -51.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43292 + color: '#0000FFFF' + - uid: 24036 components: - type: Transform - pos: -9.5,-104.5 + rot: 3.141592653589793 rad + pos: -47.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43293 + color: '#0000FFFF' + - uid: 24037 components: - type: Transform - pos: -9.5,-105.5 + rot: 3.141592653589793 rad + pos: -46.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43331 + - uid: 24038 components: - type: Transform - pos: -8.5,-79.5 + rot: 3.141592653589793 rad + pos: -47.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43673 + - uid: 24039 components: - type: Transform - pos: 33.5,-60.5 + rot: -1.5707963267948966 rad + pos: -53.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43677 + - uid: 24040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 104.5,-22.5 + rot: -1.5707963267948966 rad + pos: -41.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43678 + - uid: 24041 components: - type: Transform rot: 1.5707963267948966 rad - pos: 105.5,-22.5 + pos: -43.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43679 + color: '#0000FFFF' + - uid: 24042 components: - type: Transform rot: 1.5707963267948966 rad - pos: 106.5,-22.5 + pos: -41.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43681 + - uid: 24043 components: - type: Transform - pos: 33.5,-59.5 + rot: 3.141592653589793 rad + pos: -57.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43682 + - uid: 24044 components: - type: Transform - pos: 33.5,-58.5 + rot: 3.141592653589793 rad + pos: -64.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43684 + - uid: 24045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-60.5 + pos: -66.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43685 + - uid: 24046 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-59.5 + pos: -67.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43686 + - uid: 24047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-58.5 + rot: 1.5707963267948966 rad + pos: -30.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43692 + - uid: 24048 components: - type: Transform - pos: 37.5,-67.5 + pos: -55.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43693 + - uid: 24049 components: - type: Transform - pos: 37.5,-66.5 + rot: -1.5707963267948966 rad + pos: -27.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43694 + - uid: 24050 components: - type: Transform - pos: 37.5,-65.5 + rot: 1.5707963267948966 rad + pos: -72.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43695 + - uid: 24051 components: - type: Transform - pos: 34.5,-70.5 + pos: 28.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43696 + color: '#FF0000FF' + - uid: 24058 components: - type: Transform - pos: 34.5,-65.5 + pos: -48.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43697 + color: '#FF0000FF' + - uid: 24059 components: - type: Transform - pos: 34.5,-66.5 + rot: -1.5707963267948966 rad + pos: -27.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43698 + color: '#FF0000FF' + - uid: 24060 components: - type: Transform - pos: 34.5,-67.5 + rot: 1.5707963267948966 rad + pos: 33.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43699 + - uid: 24061 components: - type: Transform - pos: 34.5,-68.5 + pos: -63.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43706 + color: '#FF0000FF' + - uid: 24062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-69.5 + pos: -62.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43707 + color: '#0000FFFF' + - uid: 24063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-70.5 + rot: 1.5707963267948966 rad + pos: -41.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43708 + - uid: 24064 components: - type: Transform - pos: 34.5,-71.5 + rot: 1.5707963267948966 rad + pos: -43.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43713 + - uid: 24065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-75.5 + rot: 1.5707963267948966 rad + pos: -54.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43714 + - uid: 24066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-74.5 + rot: -1.5707963267948966 rad + pos: 35.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43715 + - uid: 24067 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-73.5 + pos: 31.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43716 + color: '#0000FFFF' + - uid: 24068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24069 + components: + - type: Transform + pos: -72.5,-26.5 + parent: 2 + - uid: 24070 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-72.5 + pos: -49.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43718 + - uid: 24071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-100.5 + pos: -82.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43719 + - uid: 24072 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-100.5 + pos: 101.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43720 + - uid: 24073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-100.5 + rot: 3.141592653589793 rad + pos: 98.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43721 + - uid: 24074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-100.5 + rot: 1.5707963267948966 rad + pos: 97.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43723 + color: '#FF0000FF' + - uid: 24075 components: - type: Transform - pos: 12.5,-98.5 + rot: 1.5707963267948966 rad + pos: 97.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43724 + color: '#FF0000FF' + - uid: 24076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-97.5 + pos: 98.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43725 + - uid: 24077 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-96.5 + pos: 99.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43726 + - uid: 24078 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-95.5 + rot: -1.5707963267948966 rad + pos: 97.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43727 + color: '#FF0000FF' + - uid: 24079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-93.5 + rot: 1.5707963267948966 rad + pos: 99.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43728 + - uid: 24080 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-91.5 + pos: 98.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43729 + color: '#FF0000FF' + - uid: 24081 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-92.5 + pos: 98.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43735 + - uid: 24082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-90.5 + rot: 3.141592653589793 rad + pos: -48.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43736 + - uid: 24083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-90.5 + rot: 3.141592653589793 rad + pos: -46.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43737 + color: '#FF0000FF' + - uid: 24084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-90.5 + pos: 34.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 43738 + - uid: 24085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-90.5 + pos: 36.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43739 + color: '#FF0000FF' + - uid: 24086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-90.5 + pos: -32.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43740 + color: '#FF0000FF' + - uid: 24087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-89.5 + pos: -31.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 44118 + - uid: 24088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-7.5 + rot: 3.141592653589793 rad + pos: -44.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 44120 + color: '#FF0000FF' + - uid: 24089 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-6.5 + pos: -29.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 44121 + - uid: 24090 components: - type: Transform rot: 1.5707963267948966 rad - pos: 88.5,-6.5 + pos: -29.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 44122 + - uid: 24091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-4.5 + pos: -37.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 44125 + - uid: 24092 components: - type: Transform rot: 3.141592653589793 rad - pos: 86.5,-8.5 + pos: -35.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 44126 + - uid: 24093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-9.5 + rot: 3.141592653589793 rad + pos: 102.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 44129 + color: '#FF0000FF' + - uid: 24111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-10.5 + rot: 3.141592653589793 rad + pos: -16.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 44130 + - uid: 24117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-10.5 + rot: 3.141592653589793 rad + pos: -20.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 44131 + - uid: 24118 components: - type: Transform rot: -1.5707963267948966 rad - pos: 74.5,-10.5 + pos: -11.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 44132 + color: '#0000FFFF' + - uid: 24119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-10.5 + rot: 3.141592653589793 rad + pos: 44.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 44133 + color: '#0000FFFF' + - uid: 24124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-10.5 + rot: 1.5707963267948966 rad + pos: -40.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 44135 + - uid: 24125 components: - type: Transform - pos: 71.5,-11.5 + rot: 3.141592653589793 rad + pos: 48.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 44137 + - uid: 24126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-5.5 + rot: -1.5707963267948966 rad + pos: -47.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 44192 + - uid: 24127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-47.5 + rot: -1.5707963267948966 rad + pos: -46.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 44193 + - uid: 24128 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-46.5 + pos: -61.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 44194 + - uid: 24129 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-45.5 + rot: -1.5707963267948966 rad + pos: -74.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 44197 + color: '#0000FFFF' + - uid: 24130 components: - type: Transform rot: 1.5707963267948966 rad - pos: 107.5,-44.5 + pos: -72.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 44198 + - uid: 24131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 108.5,-44.5 + rot: -1.5707963267948966 rad + pos: 63.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 44199 + - uid: 24132 components: - type: Transform - pos: 106.5,-43.5 + rot: 3.141592653589793 rad + pos: 30.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 44252 + - uid: 24133 components: - type: Transform - anchored: False - pos: -70.13806,-1.5685258 + rot: -1.5707963267948966 rad + pos: 35.5,-7.5 parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 44261 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24134 components: - type: Transform - anchored: False - pos: -70.48613,-1.4237876 + pos: 2.5,4.5 parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 44262 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24135 components: - type: Transform - anchored: False - pos: -70.32556,-1.6622758 + pos: -1.5,3.5 parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 44379 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24136 components: - type: Transform - pos: 55.5,-93.5 + rot: 1.5707963267948966 rad + pos: 97.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 44380 + color: '#FF0000FF' + - uid: 24137 components: - type: Transform - pos: 55.5,-92.5 + rot: 1.5707963267948966 rad + pos: 43.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 44381 + color: '#FF0000FF' + - uid: 24138 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-97.5 + pos: 29.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 44383 + color: '#0000FFFF' + - uid: 24139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-98.5 + pos: -28.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 44384 + color: '#FF0000FF' + - uid: 24140 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-98.5 + pos: 56.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FEF101FF' -- proto: GasPipeTJunction - entities: - - uid: 14754 + color: '#0000FFFF' + - uid: 24141 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,3.5 + rot: 1.5707963267948966 rad + pos: 56.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15511 + color: '#0000FFFF' + - uid: 24142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,4.5 + rot: -1.5707963267948966 rad + pos: 58.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16888 + color: '#FF0000FF' + - uid: 24143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 + rot: 1.5707963267948966 rad + pos: 58.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16894 + - uid: 24144 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,1.5 + pos: -74.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16911 + - uid: 24145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,14.5 + rot: -1.5707963267948966 rad + pos: 58.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18700 + color: '#FF0000FF' + - uid: 24146 components: - type: Transform - pos: -7.5,-76.5 + rot: -1.5707963267948966 rad + pos: 56.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18714 + color: '#0000FFFF' + - uid: 24147 components: - type: Transform - pos: -8.5,-74.5 + rot: 3.141592653589793 rad + pos: 64.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18829 + - uid: 24148 components: - type: Transform - pos: 38.5,-85.5 + rot: 3.141592653589793 rad + pos: 82.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19972 + color: '#0000FFFF' + - uid: 24149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-95.5 + pos: 78.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20180 + color: '#0000FFFF' + - uid: 24150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-23.5 + pos: 82.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20264 + color: '#0000FFFF' + - uid: 24151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-62.5 + rot: 3.141592653589793 rad + pos: 81.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20265 + - uid: 24152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-61.5 + pos: 81.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20575 + color: '#0000FFFF' + - uid: 24153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-10.5 + pos: 75.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20748 + - uid: 24154 components: - type: Transform - pos: 40.5,-85.5 + rot: 1.5707963267948966 rad + pos: 77.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20827 + - uid: 24155 components: - type: Transform - pos: 106.5,-42.5 + rot: -1.5707963267948966 rad + pos: 77.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21561 + - uid: 24156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-99.5 + pos: 77.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21696 + - uid: 24157 components: - type: Transform - pos: 28.5,-71.5 + rot: 3.141592653589793 rad + pos: 83.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21722 + - uid: 24158 components: - type: Transform - pos: -9.5,-102.5 + rot: 3.141592653589793 rad + pos: 79.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21725 + - uid: 24159 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-64.5 + pos: 70.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21730 + - uid: 24160 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-64.5 + pos: 68.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22414 + - uid: 24162 components: - type: Transform - pos: 0.5,-87.5 + rot: 3.141592653589793 rad + pos: 52.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22476 + color: '#0000FFFF' + - uid: 24163 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-90.5 + pos: 51.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22478 + color: '#FF0000FF' + - uid: 24164 components: - type: Transform - pos: 104.5,-21.5 + rot: -1.5707963267948966 rad + pos: 70.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22488 + - uid: 24173 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-100.5 + pos: 70.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22495 + - uid: 24174 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-94.5 + pos: 68.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22500 + color: '#FF0000FF' + - uid: 24175 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-93.5 + pos: 68.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22509 + - uid: 24177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-95.5 + rot: 3.141592653589793 rad + pos: -1.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23015 + - uid: 24178 components: - type: Transform rot: -1.5707963267948966 rad - pos: 87.5,-3.5 + pos: -0.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23024 + - uid: 24179 components: - type: Transform - pos: 80.5,-1.5 + rot: 3.141592653589793 rad + pos: 0.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23049 + - uid: 24180 components: - type: Transform rot: -1.5707963267948966 rad - pos: 77.5,-10.5 + pos: 1.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23052 + color: '#0000FFFF' + - uid: 24181 components: - type: Transform - pos: 80.5,-8.5 + rot: -1.5707963267948966 rad + pos: 33.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23078 + - uid: 24207 components: - type: Transform rot: -1.5707963267948966 rad - pos: 79.5,-2.5 + pos: 112.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23087 + - uid: 24208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-1.5 + rot: 3.141592653589793 rad + pos: 117.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23768 + - uid: 24209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,0.5 + pos: 116.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23769 + color: '#0000FFFF' + - uid: 24210 components: - type: Transform - pos: 59.5,15.5 + rot: 3.141592653589793 rad + pos: 107.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23770 + - uid: 24211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,1.5 + pos: 105.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23771 + - uid: 24212 components: - type: Transform - pos: 58.5,14.5 + rot: 1.5707963267948966 rad + pos: 110.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23772 + - uid: 24213 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-14.5 + pos: 102.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23773 + color: '#0000FFFF' + - uid: 24214 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,3.5 + pos: -7.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23775 + - uid: 24242 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-11.5 + pos: 20.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23776 + - uid: 24247 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,5.5 + pos: 3.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23777 + - uid: 24248 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,-7.5 + pos: -8.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23778 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23780 + - uid: 24249 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,6.5 + pos: -48.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23782 + - uid: 24250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,10.5 + rot: -1.5707963267948966 rad + pos: -61.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23783 + - uid: 24251 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,9.5 + pos: -16.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23784 + color: '#FF0000FF' + - uid: 24252 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-9.5 + pos: -15.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23785 + - uid: 24368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-15.5 + pos: 76.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23786 + - uid: 24529 components: - type: Transform - pos: 57.5,-19.5 + rot: -1.5707963267948966 rad + pos: 22.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23788 + - uid: 24663 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-18.5 + pos: 6.5,-88.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23789 + color: '#FF0000FF' + - uid: 40147 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-4.5 + pos: 82.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23790 + - uid: 40280 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-22.5 + pos: 84.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23791 + - uid: 40742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-58.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 40666 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23792 + - uid: 41233 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-36.5 - parent: 2 + pos: 1.5,-7.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23793 + - uid: 41234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-3.5 - parent: 2 + pos: 0.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23794 + color: '#FF0000FF' + - uid: 41235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-7.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23795 + - uid: 41809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-13.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 41669 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23796 + - uid: 41810 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,8.5 - parent: 2 + pos: 2.5,-5.5 + parent: 41669 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23798 + - uid: 41811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-18.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 41669 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23799 + color: '#0000FFFF' + - uid: 41812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-16.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 41669 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23800 + color: '#FF0000FF' + - uid: 41813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-15.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 41669 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23801 + color: '#FF0000FF' + - uid: 41814 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-15.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 41669 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23802 + color: '#FF0000FF' + - uid: 42375 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-15.5 + rot: 1.5707963267948966 rad + pos: 30.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23803 + color: '#FF0000FF' + - uid: 43259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-15.5 + rot: -1.5707963267948966 rad + pos: -6.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23804 + color: '#FF0000FF' + - uid: 43264 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-15.5 + pos: -7.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23805 + color: '#0000FFFF' + - uid: 43270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-17.5 + pos: -12.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23806 + color: '#0000FFFF' + - uid: 43275 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-17.5 + pos: -10.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23807 + color: '#0000FFFF' + - uid: 43279 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-17.5 + pos: -7.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23808 + color: '#0000FFFF' + - uid: 43288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-17.5 + rot: -1.5707963267948966 rad + pos: -6.5,-102.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23809 + color: '#FF0000FF' + - uid: 43690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-17.5 + rot: -1.5707963267948966 rad + pos: 37.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23810 + color: '#FF0000FF' + - uid: 43710 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-14.5 + pos: 34.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23811 + color: '#0000FFFF' + - uid: 43730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-13.5 + rot: -1.5707963267948966 rad + pos: 8.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23812 + color: '#0000FFFF' + - uid: 43731 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,4.5 + pos: 8.5,-100.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23813 + - uid: 43734 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,2.5 + pos: 8.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23814 + - uid: 44117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,3.5 + rot: -1.5707963267948966 rad + pos: 86.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23815 + color: '#0000FFFF' + - uid: 44119 components: - type: Transform rot: 3.141592653589793 rad - pos: 87.5,-41.5 + pos: 84.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23816 + color: '#0000FFFF' +- proto: GasPort + entities: + - uid: 24254 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-15.5 + pos: -34.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23817 + - uid: 24255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-15.5 + pos: -60.5,-74.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23818 + - uid: 24256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,6.5 + rot: 3.141592653589793 rad + pos: -37.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23819 + - uid: 24257 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,22.5 + pos: -49.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23821 + color: '#00FF00FF' + - uid: 24258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-71.5 + rot: -1.5707963267948966 rad + pos: -46.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23822 + color: '#00FF00FF' + - uid: 24259 components: - type: Transform - pos: -24.5,-5.5 + rot: -1.5707963267948966 rad + pos: -46.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23823 + - uid: 24260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,1.5 + rot: -1.5707963267948966 rad + pos: -53.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23824 + - uid: 24261 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-1.5 + rot: -1.5707963267948966 rad + pos: -53.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23825 + - uid: 24262 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-0.5 + rot: 1.5707963267948966 rad + pos: 34.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23826 + - uid: 24263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,3.5 + pos: 42.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23827 + - uid: 24264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-8.5 + rot: 1.5707963267948966 rad + pos: 34.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23828 + - uid: 24265 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-11.5 + pos: 34.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23829 + - uid: 24266 components: - type: Transform - pos: -50.5,-38.5 + rot: 1.5707963267948966 rad + pos: 34.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23832 + - uid: 24267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,7.5 + rot: 3.141592653589793 rad + pos: 42.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23833 + - uid: 24268 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,2.5 + pos: 43.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23834 + color: '#947507FF' + - uid: 24269 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,4.5 + pos: 43.5,-87.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23835 + color: '#947507FF' + - uid: 24270 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-0.5 + pos: -36.5,-23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23836 + - uid: 24271 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,2.5 + pos: -46.5,-89.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23837 + - uid: 24272 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,10.5 + pos: -46.5,-88.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23838 + - uid: 24273 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,21.5 + pos: -62.5,-74.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23839 + - uid: 24274 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,21.5 + rot: -1.5707963267948966 rad + pos: -68.5,-78.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23840 + - uid: 24275 components: - type: Transform - pos: 0.5,22.5 + pos: -72.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23841 + - uid: 24276 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,22.5 + pos: -72.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23842 + - uid: 24277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,11.5 + pos: -71.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23843 + - uid: 24278 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-14.5 + pos: -71.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23844 + - uid: 24279 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-14.5 + rot: 1.5707963267948966 rad + pos: -83.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23845 + - uid: 24280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,19.5 + pos: 95.5,-82.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23846 + - uid: 24281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,20.5 + pos: 96.5,-82.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23847 + - uid: 24282 components: - type: Transform - pos: 10.5,14.5 + rot: 3.141592653589793 rad + pos: 100.5,-84.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23848 + - uid: 24283 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-73.5 + rot: 1.5707963267948966 rad + pos: -49.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23849 + color: '#FFAA00FF' + - uid: 24284 components: - type: Transform - pos: -17.5,-71.5 + rot: -1.5707963267948966 rad + pos: -53.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23850 + - uid: 24285 components: - type: Transform - pos: 36.5,-98.5 + rot: -1.5707963267948966 rad + pos: -53.5,-60.5 parent: 2 - - uid: 23851 + - uid: 24286 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,10.5 + pos: -49.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23852 + - uid: 24287 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,12.5 + pos: -46.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23853 + color: '#FFAA00FF' + - uid: 24288 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-15.5 + pos: -53.5,-62.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23854 + - uid: 40283 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-16.5 + rot: -1.5707963267948966 rad + pos: 85.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23855 + - uid: 41236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,13.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23856 + - uid: 41815 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,11.5 - parent: 2 + pos: 1.5,-8.5 + parent: 41669 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23857 +- proto: GasPressurePump + entities: + - uid: 20453 components: - type: Transform - pos: 36.5,-101.5 + rot: -1.5707963267948966 rad + pos: -10.5,-53.5 parent: 2 - - uid: 23858 + - uid: 20770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-87.5 + pos: 40.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23859 + - uid: 24294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-95.5 + rot: 1.5707963267948966 rad + pos: 36.5,-92.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23860 + color: '#B3A234FF' + - uid: 24295 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-86.5 + pos: 37.5,-98.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23861 + color: '#B3A234FF' + - uid: 24296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 + pos: 36.5,-99.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23862 + color: '#17E8E2FF' + - uid: 24297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-20.5 + rot: 1.5707963267948966 rad + pos: 37.5,-101.5 parent: 2 - - uid: 23863 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 24298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-103.5 + parent: 2 + - uid: 24299 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-21.5 + pos: 36.5,-86.5 parent: 2 - - uid: 23864 + - type: AtmosPipeColor + color: '#B3A234FF' + - uid: 24300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-92.5 + rot: 1.5707963267948966 rad + pos: 36.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23865 + color: '#B3A234FF' + - uid: 24301 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-57.5 + pos: 36.5,-95.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23866 + color: '#B3A234FF' + - uid: 24302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 102.5,-21.5 + rot: 1.5707963267948966 rad + pos: 39.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23867 + - uid: 24303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-51.5 + pos: 36.5,-102.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23868 + color: '#17E8E2FF' + - uid: 24304 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-33.5 + pos: 41.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23869 + - uid: 24305 components: - type: Transform - pos: 70.5,-31.5 + rot: 3.141592653589793 rad + pos: -37.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23870 + - uid: 24306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-7.5 + pos: -36.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23871 + - uid: 24307 components: - type: Transform - pos: 65.5,-31.5 + rot: 1.5707963267948966 rad + pos: -55.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23872 + - uid: 24308 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-14.5 + rot: -1.5707963267948966 rad + pos: -55.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 23873 + - uid: 24310 components: - type: Transform - pos: 27.5,-69.5 + rot: 3.141592653589793 rad + pos: 39.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23874 + - uid: 24312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-69.5 + pos: 41.5,-103.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23875 + color: '#B3A234FF' + - uid: 24313 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-47.5 + pos: -48.5,-89.5 parent: 2 - - uid: 23876 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24314 components: - type: Transform - pos: 40.5,-47.5 + pos: -60.5,-75.5 parent: 2 - - uid: 23877 + - uid: 24315 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-47.5 + pos: -62.5,-75.5 parent: 2 - - uid: 23878 + - uid: 24316 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-49.5 + rot: -1.5707963267948966 rad + pos: -70.5,-78.5 parent: 2 - - uid: 23879 + - uid: 24317 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-87.5 + rot: -1.5707963267948966 rad + pos: -73.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 23880 + color: '#0000FFFF' + - uid: 24318 components: - type: Transform - pos: 41.5,-85.5 + rot: 1.5707963267948966 rad + pos: -73.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23881 + - uid: 40154 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-85.5 + pos: 83.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23882 + - type: GasPressurePump + targetPressure: 4500 + - uid: 40155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-33.5 + rot: 1.5707963267948966 rad + pos: 83.5,6.5 parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - uid: 41237 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23883 +- proto: GasRecycler + entities: + - uid: 20679 components: - type: Transform - pos: 42.5,-31.5 + pos: -15.5,-51.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23884 +- proto: GasThermoMachineFreezer + entities: + - uid: 23234 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-94.5 + pos: 5.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23886 + - uid: 24323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-83.5 + pos: -38.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23887 + - uid: 24324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-82.5 + pos: 42.5,-89.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23888 + - uid: 24325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-74.5 + pos: 42.5,-90.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23889 + - uid: 24326 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-72.5 + pos: -54.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23890 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 24329 components: - type: Transform - pos: 48.5,-68.5 + pos: 24.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23891 + - uid: 24330 components: - type: Transform - pos: 50.5,-69.5 + rot: 3.141592653589793 rad + pos: -38.5,-74.5 + parent: 2 + - uid: 24331 + components: + - type: Transform + pos: 101.5,-82.5 parent: 2 + - type: GasThermoMachine + targetTemperature: 73.15 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23892 + - uid: 24332 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-69.5 + pos: 101.5,-84.5 parent: 2 + - type: GasThermoMachine + targetTemperature: 73.15 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23893 +- proto: GasThermoMachineHeater + entities: + - uid: 24333 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-68.5 + pos: 42.5,-91.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23894 + - uid: 24334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-60.5 + pos: 53.5,-86.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23895 + - uid: 24335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-48.5 + pos: -74.5,-24.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23896 + - uid: 24336 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-41.5 + pos: -81.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23897 + - uid: 24337 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-42.5 + pos: -54.5,-60.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23898 +- proto: GasValve + entities: + - uid: 20509 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-33.5 + rot: -1.5707963267948966 rad + pos: -9.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23899 + - uid: 24341 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23900 - components: - - type: Transform - pos: 33.5,-33.5 + pos: -82.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23901 + - uid: 44201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-27.5 + rot: -1.5707963267948966 rad + pos: 39.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 23902 +- proto: GasVentPump + entities: + - uid: 2427 components: - type: Transform - pos: 37.5,-31.5 + rot: -1.5707963267948966 rad + pos: -6.5,-94.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 213 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23903 + - uid: 16449 components: - type: Transform - pos: 56.5,-31.5 + rot: -1.5707963267948966 rad + pos: -1.5,-103.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 213 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23904 + - uid: 17034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-31.5 + rot: -1.5707963267948966 rad + pos: -6.5,-99.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 213 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23905 + - uid: 17731 components: - type: Transform - pos: 78.5,-31.5 + rot: -1.5707963267948966 rad + pos: 21.5,-32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 24535 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23906 + - uid: 19765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-31.5 + rot: -1.5707963267948966 rad + pos: -20.5,-44.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 24105 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23907 + - uid: 21731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-33.5 + pos: 0.5,-89.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23908 + color: '#0000FFFF' + - uid: 21734 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-36.5 + pos: 7.5,-101.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23909 + color: '#0000FFFF' + - uid: 21735 components: - type: Transform - pos: 86.5,-39.5 + rot: 3.141592653589793 rad + pos: 14.5,-101.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23910 + - uid: 22479 components: - type: Transform rot: -1.5707963267948966 rad - pos: 83.5,-31.5 + pos: 13.5,-87.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23911 + - uid: 22483 components: - type: Transform rot: -1.5707963267948966 rad - pos: 83.5,-28.5 + pos: 13.5,-94.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23913 + - uid: 22502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-21.5 + rot: 1.5707963267948966 rad + pos: 7.5,-88.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23914 + - uid: 22503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-33.5 + rot: 1.5707963267948966 rad + pos: 7.5,-94.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23915 + color: '#0000FFFF' + - uid: 23023 components: - type: Transform - pos: 31.5,-31.5 + pos: 61.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 266 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23916 + - uid: 23029 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-33.5 + pos: 80.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 275 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23917 + color: '#0000FFFF' + - uid: 23031 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-31.5 + pos: 78.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 275 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23918 + - uid: 23885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-21.5 + rot: 3.141592653589793 rad + pos: -8.5,-80.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43332 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23919 + color: '#0000FFFF' + - uid: 24241 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-19.5 + pos: 21.5,-40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 24535 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23920 + - uid: 24344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-14.5 + rot: -1.5707963267948966 rad + pos: 60.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 263 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23922 + - uid: 24345 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-6.5 + pos: 60.5,8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 269 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23923 + color: '#0000FFFF' + - uid: 24346 components: - type: Transform - pos: 27.5,-2.5 + pos: 44.5,-22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 264 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23924 + - uid: 24347 components: - type: Transform - pos: 19.5,0.5 + pos: 49.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 284 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23925 + - uid: 24348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,1.5 + rot: -1.5707963267948966 rad + pos: 61.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 258 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23926 + - uid: 24349 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-0.5 + pos: 58.5,13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 258 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23927 + color: '#0000FFFF' + - uid: 24350 components: - type: Transform - pos: 8.5,4.5 + rot: 1.5707963267948966 rad + pos: 41.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 282 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23928 + - uid: 24351 components: - type: Transform - pos: -25.5,-69.5 + rot: -1.5707963267948966 rad + pos: 47.5,-11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 150 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23929 + - uid: 24352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,8.5 + rot: 3.141592653589793 rad + pos: 52.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23930 + - uid: 24353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,9.5 + rot: -1.5707963267948966 rad + pos: 53.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 44112 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23931 + color: '#0000FFFF' + - uid: 24354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,3.5 + rot: 1.5707963267948966 rad + pos: 41.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23932 + color: '#0000FFFF' + - uid: 24355 components: - type: Transform - pos: -5.5,4.5 + pos: 56.5,-17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 265 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23933 + - uid: 24356 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,4.5 + pos: 56.5,-22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 265 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23934 - components: - - type: Transform - pos: -4.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23935 + - uid: 24357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,12.5 + pos: 43.5,10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23936 + - uid: 24358 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23937 - components: - - type: Transform - pos: -0.5,22.5 + pos: 40.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23938 + color: '#0000FFFF' + - uid: 24359 components: - type: Transform - pos: 1.5,21.5 + rot: 1.5707963267948966 rad + pos: 40.5,5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23939 + - uid: 24360 components: - type: Transform - pos: 7.5,21.5 + rot: -1.5707963267948966 rad + pos: -45.5,-20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 173 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23940 + - uid: 24361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,22.5 + rot: -1.5707963267948966 rad + pos: 46.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23941 + color: '#0000FFFF' + - uid: 24362 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-48.5 + pos: 46.5,1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23942 + color: '#0000FFFF' + - uid: 24363 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-42.5 + pos: 101.5,-40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 148 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23943 + - uid: 24364 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-59.5 + pos: -48.5,-24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 173 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23944 + - uid: 24365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-62.5 + rot: -1.5707963267948966 rad + pos: 47.5,7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23945 + - uid: 24366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-71.5 + rot: 3.141592653589793 rad + pos: 48.5,-25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 264 + - 260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23946 + color: '#0000FFFF' + - uid: 24367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-71.5 + pos: 49.5,-17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23947 + - uid: 24369 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-76.5 + pos: -25.5,-70.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 197 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23948 + color: '#0000FFFF' + - uid: 24370 components: - type: Transform - pos: 1.5,-76.5 + rot: 1.5707963267948966 rad + pos: 30.5,-5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 247 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23949 + color: '#0000FFFF' + - uid: 24371 components: - type: Transform - pos: -7.5,-74.5 + rot: 3.141592653589793 rad + pos: -62.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23950 + - uid: 24372 components: - type: Transform - pos: -0.5,-74.5 + rot: -1.5707963267948966 rad + pos: 50.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23951 + - uid: 24373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-80.5 + rot: 3.141592653589793 rad + pos: -50.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23952 + color: '#0000FFFF' + - uid: 24374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-81.5 + rot: 1.5707963267948966 rad + pos: 30.5,13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 249 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23953 + color: '#0000FFFF' + - uid: 24375 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-82.5 + pos: -49.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 254 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23954 + - uid: 24376 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-79.5 + pos: 66.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23955 + - uid: 24377 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-80.5 + pos: 70.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23956 + color: '#0000FFFF' + - uid: 24378 components: - type: Transform - pos: 5.5,-82.5 + rot: 3.141592653589793 rad + pos: -29.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23957 + - uid: 24379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-86.5 + rot: 3.141592653589793 rad + pos: 42.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23958 + - uid: 24380 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-87.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23959 - components: - - type: Transform - pos: -6.5,-87.5 + pos: 52.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23960 + color: '#0000FFFF' + - uid: 24381 components: - type: Transform - pos: -8.5,-86.5 + rot: 1.5707963267948966 rad + pos: 49.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23961 + - uid: 24382 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-90.5 + pos: 53.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23962 + - uid: 24383 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-99.5 + pos: 52.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23964 + color: '#0000FFFF' + - uid: 24384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-73.5 + rot: 3.141592653589793 rad + pos: 62.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23965 + color: '#0000FFFF' + - uid: 24385 components: - type: Transform - pos: -23.5,-69.5 + rot: -1.5707963267948966 rad + pos: 49.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23966 + - uid: 24386 components: - type: Transform - pos: -29.5,-53.5 + rot: 1.5707963267948966 rad + pos: 44.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23967 + - uid: 24387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-76.5 + rot: 3.141592653589793 rad + pos: 56.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23968 + - uid: 24388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-77.5 + pos: 68.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23969 + color: '#0000FFFF' + - uid: 24389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-80.5 + pos: 77.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23970 + color: '#0000FFFF' + - uid: 24390 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-81.5 + pos: 79.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23971 + - uid: 24391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-86.5 + rot: 3.141592653589793 rad + pos: 86.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23972 + - uid: 24392 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-87.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-59.5 + pos: 82.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23974 + - uid: 24393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-61.5 + pos: 86.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23975 + color: '#0000FFFF' + - uid: 24394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-47.5 + pos: 102.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23976 + - uid: 24396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-49.5 + rot: 3.141592653589793 rad + pos: 37.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23977 + color: '#0000FFFF' + - uid: 24397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-42.5 + rot: 1.5707963267948966 rad + pos: 29.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23978 + color: '#0000FFFF' + - uid: 24398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-44.5 + rot: 3.141592653589793 rad + pos: 19.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23979 + - uid: 24399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-45.5 + pos: 17.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23980 + - uid: 24400 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,-42.5 + pos: 8.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23981 + color: '#0000FFFF' + - uid: 24401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-19.5 + rot: 3.141592653589793 rad + pos: 1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23982 + color: '#0000FFFF' + - uid: 24402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-21.5 + rot: 3.141592653589793 rad + pos: 4.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23983 + - uid: 24403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-31.5 + pos: -6.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23984 + - uid: 24404 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-33.5 + pos: -8.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23985 + color: '#0000FFFF' + - uid: 24405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-42.5 + rot: 1.5707963267948966 rad + pos: 0.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23986 + color: '#0000FFFF' + - uid: 24406 components: - type: Transform - pos: -44.5,-42.5 + rot: -1.5707963267948966 rad + pos: 4.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23987 + color: '#0000FFFF' + - uid: 24407 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-6.5 + pos: -4.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23988 + color: '#0000FFFF' + - uid: 24408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-2.5 + rot: 3.141592653589793 rad + pos: 7.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23989 + - uid: 24409 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-7.5 + pos: -6.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23990 + - uid: 24410 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-1.5 + pos: 8.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23991 + color: '#0000FFFF' + - uid: 24411 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,6.5 + pos: 32.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23992 + color: '#0000FFFF' + - uid: 24412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,4.5 + rot: -1.5707963267948966 rad + pos: 29.5,-59.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 206 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23993 + - uid: 24413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-43.5 + rot: 3.141592653589793 rad + pos: 33.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23994 + - uid: 24414 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-48.5 + pos: 26.5,-73.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 205 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23995 + - uid: 24415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-48.5 + rot: 3.141592653589793 rad + pos: 21.5,-72.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 205 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23996 + color: '#0000FFFF' + - uid: 24416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-47.5 + rot: 3.141592653589793 rad + pos: 5.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23997 + color: '#0000FFFF' + - uid: 24417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-59.5 + rot: -1.5707963267948966 rad + pos: 11.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23998 + color: '#0000FFFF' + - uid: 24419 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-57.5 + pos: -9.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23999 + - uid: 24421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-56.5 + rot: 3.141592653589793 rad + pos: -1.5,-95.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24000 + - uid: 24422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-52.5 + rot: 3.141592653589793 rad + pos: -7.5,-75.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 238 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24001 + - uid: 24423 components: - type: Transform - pos: -43.5,-59.5 + rot: 1.5707963267948966 rad + pos: -24.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24002 + color: '#0000FFFF' + - uid: 24424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-59.5 + rot: -1.5707963267948966 rad + pos: -17.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24003 + color: '#0000FFFF' + - uid: 24425 components: - type: Transform - pos: -36.5,-59.5 + rot: 1.5707963267948966 rad + pos: -32.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24004 + color: '#0000FFFF' + - uid: 24426 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-57.5 + pos: -31.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24005 + - uid: 24427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-66.5 + rot: 3.141592653589793 rad + pos: -27.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24006 + color: '#0000FFFF' + - uid: 24428 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-67.5 + pos: -28.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24007 + color: '#0000FFFF' + - uid: 24429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-74.5 + rot: -1.5707963267948966 rad + pos: -31.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24008 + - uid: 24430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-69.5 + rot: -1.5707963267948966 rad + pos: -28.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24009 + - uid: 24431 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-64.5 + pos: -26.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24010 + - uid: 24432 components: - type: Transform - pos: -50.5,-64.5 + rot: -1.5707963267948966 rad + pos: -31.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24011 + - uid: 24433 components: - type: Transform - pos: -48.5,-66.5 + rot: 1.5707963267948966 rad + pos: -31.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24012 + color: '#0000FFFF' + - uid: 24434 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-73.5 + pos: -29.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24013 + - uid: 24435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-75.5 + rot: 3.141592653589793 rad + pos: -40.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24014 + color: '#0000FFFF' + - uid: 24436 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-72.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-66.5 + pos: -47.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24016 + color: '#0000FFFF' + - uid: 24437 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-64.5 + pos: -37.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24017 + - uid: 24438 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-65.5 + pos: -34.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24018 + color: '#0000FFFF' + - uid: 24439 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-65.5 + pos: -43.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24019 + - uid: 24440 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,-66.5 + pos: -38.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24020 + color: '#0000FFFF' + - uid: 24441 components: - type: Transform - pos: -61.5,-64.5 + rot: 1.5707963267948966 rad + pos: -43.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24021 + - uid: 24442 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,-43.5 + pos: -39.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24022 + color: '#0000FFFF' + - uid: 24443 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-38.5 + pos: -37.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24024 + - uid: 24444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-33.5 + pos: -51.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24025 + color: '#0000FFFF' + - uid: 24445 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-29.5 + pos: -49.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24026 - components: - - type: Transform - pos: -44.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24027 + - uid: 24446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-25.5 + rot: 3.141592653589793 rad + pos: -61.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24028 + - uid: 24447 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-34.5 + pos: -68.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24029 + - uid: 24448 components: - type: Transform - pos: -45.5,-29.5 + rot: 1.5707963267948966 rad + pos: -43.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24030 + - uid: 24449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-22.5 + rot: -1.5707963267948966 rad + pos: -41.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24031 + - uid: 24450 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-20.5 + pos: -38.5,-22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 171 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24032 + color: '#0000FFFF' + - uid: 24451 components: - type: Transform - pos: -41.5,-22.5 + pos: -51.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24033 + - uid: 24452 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-9.5 + pos: -51.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24034 + - uid: 24453 components: - type: Transform - pos: -50.5,-29.5 + pos: -53.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24035 + - uid: 24454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-29.5 + rot: 1.5707963267948966 rad + pos: -54.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24036 + - uid: 24455 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-44.5 + pos: -35.5,-31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 243 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24037 + - uid: 24456 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-42.5 + pos: -41.5,-23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 171 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24038 + color: '#0000FFFF' + - uid: 24457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-29.5 + rot: -1.5707963267948966 rad + pos: -42.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24039 + - uid: 24458 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,-24.5 + pos: -37.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24040 + - uid: 24459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-6.5 + rot: 1.5707963267948966 rad + pos: -43.5,-43.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 236 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24041 + color: '#0000FFFF' + - uid: 24460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-7.5 + pos: -57.5,-43.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 130 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24042 + - uid: 24461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-8.5 + pos: -65.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24043 + color: '#0000FFFF' + - uid: 24462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-44.5 + rot: 1.5707963267948966 rad + pos: -75.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24044 + - uid: 24463 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,-44.5 + pos: -74.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24045 + - uid: 24464 components: - type: Transform - pos: -66.5,-42.5 + rot: -1.5707963267948966 rad + pos: -63.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24046 + color: '#0000FFFF' + - uid: 24465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-42.5 + rot: -1.5707963267948966 rad + pos: 106.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24047 + color: '#0000FFFF' + - uid: 24466 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-54.5 + pos: -50.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24048 + color: '#0000FFFF' + - uid: 24468 components: - type: Transform - pos: -55.5,-42.5 + rot: 1.5707963267948966 rad + pos: -4.5,-79.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 20495 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24049 + color: '#0000FFFF' + - uid: 24470 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-25.5 + pos: 50.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24050 + color: '#0000FFFF' + - uid: 24471 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,-42.5 + pos: 45.5,-97.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24051 + color: '#0000FFFF' + - uid: 24474 components: - type: Transform - pos: 28.5,-38.5 + rot: 1.5707963267948966 rad + pos: 43.5,-75.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 234 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24058 + color: '#0000FFFF' + - uid: 24475 components: - type: Transform - pos: -48.5,-33.5 + rot: 3.141592653589793 rad + pos: 23.5,13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 250 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24059 + color: '#0000FFFF' + - uid: 24476 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,12.5 + pos: 35.5,1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 247 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24061 - components: - - type: Transform - pos: -63.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24062 + - uid: 24477 components: - type: Transform - pos: -62.5,-64.5 + pos: 33.5,13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 248 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24063 + - uid: 24478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-4.5 + rot: 3.141592653589793 rad + pos: 33.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 252 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24064 + color: '#0000FFFF' + - uid: 24479 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-2.5 + pos: 25.5,1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 251 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24065 + - uid: 24480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-38.5 + rot: 3.141592653589793 rad + pos: -45.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24066 + color: '#0000FFFF' + - uid: 24481 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-1.5 + pos: -38.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 178 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24067 + color: '#0000FFFF' + - uid: 24482 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-5.5 + pos: 96.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24068 + - uid: 24483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-38.5 + rot: 3.141592653589793 rad + pos: 100.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24069 - components: - - type: Transform - pos: -72.5,-26.5 - parent: 2 - - uid: 24070 + - uid: 24484 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,4.5 + pos: 101.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24071 + color: '#0000FFFF' + - uid: 24485 components: - type: Transform - pos: -82.5,-13.5 + rot: 3.141592653589793 rad + pos: 95.5,-80.5 parent: 2 - - uid: 24072 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24486 components: - type: Transform rot: -1.5707963267948966 rad - pos: 101.5,-83.5 + pos: 100.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24073 + - uid: 24487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 98.5,-87.5 + pos: 99.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24074 + - uid: 24488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 97.5,-86.5 + rot: 3.141592653589793 rad + pos: 98.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24075 + color: '#0000FFFF' + - uid: 24489 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,-82.5 + pos: 93.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24076 + color: '#0000FFFF' + - uid: 24490 components: - type: Transform - pos: 98.5,-79.5 + rot: -1.5707963267948966 rad + pos: 103.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24077 + - uid: 24491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-79.5 + pos: -54.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 253 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24078 + - uid: 24492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-75.5 + pos: -56.5,-38.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 255 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24079 + color: '#0000FFFF' + - uid: 24493 components: - type: Transform rot: 1.5707963267948966 rad - pos: 99.5,-75.5 + pos: 33.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 256 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24080 + - uid: 24494 components: - type: Transform rot: 3.141592653589793 rad - pos: 98.5,-71.5 + pos: 37.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 256 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24081 + color: '#0000FFFF' + - uid: 24495 components: - type: Transform - pos: 98.5,-67.5 + rot: 1.5707963267948966 rad + pos: -35.5,-81.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 199 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24082 + - uid: 24496 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-16.5 + pos: -42.5,-86.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 184 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24083 + - uid: 24497 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24084 - components: - - type: Transform - pos: 34.5,21.5 + pos: 40.5,-24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 271 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24085 - components: - - type: Transform - pos: 36.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24086 - components: - - type: Transform - pos: -32.5,-80.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24087 + - uid: 24498 components: - type: Transform - pos: -31.5,-81.5 + rot: -1.5707963267948966 rad + pos: 62.5,-18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 267 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24088 + - uid: 24499 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-81.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-15.5 + pos: 105.5,-41.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 292 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24090 + - uid: 24500 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-27.5 + pos: 44.5,-18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 281 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24091 + - uid: 24501 components: - type: Transform - pos: -37.5,-42.5 + rot: -1.5707963267948966 rad + pos: 57.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 272 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24092 + color: '#0000FFFF' + - uid: 24502 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-44.5 + rot: 1.5707963267948966 rad + pos: 54.5,-0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 285 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24093 + - uid: 24503 components: - type: Transform - rot: 3.141592653589793 rad - pos: 102.5,-42.5 + pos: 64.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 287 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24094 + color: '#0000FFFF' + - uid: 24504 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-19.5 + pos: 72.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 275 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24095 + color: '#0000FFFF' + - uid: 24505 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-19.5 + pos: 75.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 275 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24096 + color: '#0000FFFF' + - uid: 24507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-19.5 + pos: 81.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 274 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24097 + color: '#0000FFFF' + - uid: 24508 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-19.5 + pos: 85.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 259 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24098 + color: '#0000FFFF' + - uid: 24509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-19.5 + pos: 77.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 262 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24099 + color: '#0000FFFF' + - uid: 24510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-17.5 + pos: 74.5,-1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 290 + - 275 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24100 + color: '#0000FFFF' + - uid: 24511 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-17.5 + pos: 53.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 286 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24101 + color: '#0000FFFF' + - uid: 24512 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-17.5 + rot: 1.5707963267948966 rad + pos: 50.5,9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 270 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24102 + color: '#0000FFFF' + - uid: 24513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-17.5 + pos: 74.5,5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 276 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24103 + color: '#0000FFFF' + - uid: 24514 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-17.5 + pos: 74.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24104 + color: '#0000FFFF' + - uid: 24515 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-16.5 + rot: -1.5707963267948966 rad + pos: 77.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 276 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24105 + color: '#0000FFFF' + - uid: 24516 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-16.5 + rot: -1.5707963267948966 rad + pos: 53.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 272 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24106 + color: '#0000FFFF' + - uid: 24517 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-16.5 + rot: 1.5707963267948966 rad + pos: 69.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 276 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24107 + color: '#0000FFFF' + - uid: 24518 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-14.5 + pos: 1.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 273 + - 19136 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24108 + color: '#0000FFFF' + - uid: 24519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-17.5 + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 273 + - 19136 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24110 + color: '#0000FFFF' + - uid: 24520 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-14.5 + pos: 6.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 273 + - 19136 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24111 + color: '#0000FFFF' + - uid: 24521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-0.5 + rot: 1.5707963267948966 rad + pos: 26.5,-36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 277 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24112 + color: '#0000FFFF' + - uid: 24522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-13.5 + pos: 56.5,-55.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 139 + - 19137 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24113 + color: '#0000FFFF' + - uid: 24538 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-13.5 + rot: -1.5707963267948966 rad + pos: 57.5,7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 286 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24114 + color: '#0000FFFF' + - uid: 24539 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-13.5 + rot: 1.5707963267948966 rad + pos: 48.5,15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 270 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24115 + color: '#0000FFFF' + - uid: 24540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-13.5 + pos: 63.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 288 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24116 + color: '#0000FFFF' + - uid: 24541 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-13.5 + pos: 69.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 289 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24117 + color: '#0000FFFF' + - uid: 24542 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-2.5 + rot: 1.5707963267948966 rad + pos: 69.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 289 + - 290 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24118 + color: '#0000FFFF' + - uid: 24543 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,3.5 + pos: 111.5,-39.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 291 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24119 + - uid: 24544 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-23.5 + pos: 116.5,-39.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 291 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24120 + - uid: 24545 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-12.5 + pos: 127.5,-39.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 291 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24121 + color: '#0000FFFF' + - uid: 24546 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-12.5 + pos: -8.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 293 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24122 + color: '#0000FFFF' + - uid: 24573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 + rot: -1.5707963267948966 rad + pos: 32.5,7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 247 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24123 + color: '#0000FFFF' + - uid: 24574 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-12.5 + pos: 29.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24124 + color: '#0000FFFF' + - uid: 24575 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-21.5 + pos: 42.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 150 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24125 + color: '#0000FFFF' + - uid: 24576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-15.5 + rot: 1.5707963267948966 rad + pos: 42.5,7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24126 + color: '#0000FFFF' + - uid: 24577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-24.5 + pos: 15.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 165 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24127 + - uid: 24578 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-40.5 + pos: 14.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 298 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24128 + color: '#0000FFFF' + - uid: 24579 components: - type: Transform - pos: -61.5,-42.5 + pos: -2.5,26.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 164 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24129 + color: '#0000FFFF' + - uid: 24580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-43.5 + pos: 3.5,26.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 164 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24130 + - uid: 24581 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,-43.5 + pos: 2.5,24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 164 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24131 + color: '#0000FFFF' + - uid: 24582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-16.5 + pos: -35.5,-43.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 236 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24132 + color: '#0000FFFF' + - uid: 24583 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-7.5 + pos: -65.5,-48.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 299 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24134 + color: '#0000FFFF' + - uid: 24584 components: - type: Transform - pos: 2.5,4.5 + rot: 1.5707963267948966 rad + pos: -75.5,-43.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 215 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24135 + - uid: 24585 components: - type: Transform - pos: -1.5,3.5 + rot: 3.141592653589793 rad + pos: -29.5,-54.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 195 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24136 + color: '#0000FFFF' + - uid: 24586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 97.5,-74.5 + rot: 3.141592653589793 rad + pos: -17.5,-72.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 197 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24137 + color: '#0000FFFF' + - uid: 24587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-19.5 + rot: -1.5707963267948966 rad + pos: -28.5,-15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 168 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24138 + color: '#0000FFFF' + - uid: 24588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-2.5 + rot: -1.5707963267948966 rad + pos: -28.5,-27.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 168 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24139 + - uid: 24589 components: - type: Transform - pos: -28.5,-70.5 + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 166 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24140 + color: '#0000FFFF' + - uid: 24590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-9.5 + rot: 3.141592653589793 rad + pos: -11.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 157 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24141 + - uid: 24591 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-12.5 + pos: 12.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 157 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24143 + - uid: 24592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-7.5 + pos: -15.5,5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 300 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24144 + color: '#0000FFFF' + - uid: 24593 components: - type: Transform rot: 1.5707963267948966 rad - pos: -74.5,-44.5 + pos: -23.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 301 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24145 + - uid: 28716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-2.5 + rot: 3.141592653589793 rad + pos: 8.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 156 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24146 + color: '#0000FFFF' + - uid: 36214 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-0.5 + pos: 34.5,-57.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 207 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24147 + - uid: 41238 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,-9.5 - parent: 2 + pos: -4.5,-9.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40832 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24148 + - uid: 41239 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-7.5 - parent: 2 + pos: 6.5,-9.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40833 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24149 + - uid: 41240 components: - type: Transform - pos: 78.5,-7.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40830 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24150 + - uid: 41241 components: - type: Transform - pos: 82.5,-1.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40831 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24151 + - uid: 41242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-1.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40829 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24152 + - uid: 41243 components: - type: Transform - pos: 81.5,-7.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40829 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24153 + - uid: 41816 components: - type: Transform - pos: 75.5,-11.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24154 + - uid: 41817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-8.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24155 + color: '#0000FFFF' + - uid: 41818 components: - type: Transform rot: -1.5707963267948966 rad - pos: 77.5,-6.5 - parent: 2 + pos: 4.5,-2.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24156 + color: '#0000FFFF' + - uid: 41819 components: - type: Transform - pos: 77.5,-3.5 - parent: 2 + pos: 3.5,1.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24157 + color: '#0000FFFF' + - uid: 42373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,-3.5 + pos: 29.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 42374 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24158 + color: '#0000FFFF' + - uid: 43026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-3.5 + rot: -1.5707963267948966 rad + pos: 81.5,5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 276 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24159 + color: '#0000FFFF' + - uid: 43133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-7.5 + rot: 3.141592653589793 rad + pos: -10.5,-105.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 213 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24160 + - uid: 43226 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-6.5 + pos: -13.5,-99.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 213 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24161 + color: '#0000FFFF' + - uid: 43234 components: - type: Transform - pos: -7.5,-54.5 + pos: -7.5,-102.5 parent: 2 - - uid: 24162 + - type: DeviceNetwork + deviceLists: + - 213 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 43687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,9.5 + rot: -1.5707963267948966 rad + pos: 35.5,-69.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 207 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24163 + - uid: 43702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,11.5 + rot: 1.5707963267948966 rad + pos: 33.5,-72.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 207 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24164 + color: '#0000FFFF' + - uid: 44115 components: - type: Transform rot: -1.5707963267948966 rad - pos: 70.5,-2.5 + pos: 89.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 275 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24166 + - uid: 44123 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-53.5 - parent: 2 - - uid: 24167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-53.5 - parent: 2 - - uid: 24168 - components: - - type: Transform - pos: -6.5,-51.5 - parent: 2 - - uid: 24169 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-54.5 + pos: 88.5,-9.5 parent: 2 - - uid: 24170 + - type: DeviceNetwork + deviceLists: + - 275 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 44127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-51.5 + rot: -1.5707963267948966 rad + pos: 82.5,-10.5 parent: 2 - - uid: 24171 + - type: DeviceNetwork + deviceLists: + - 275 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 44139 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-49.5 + pos: 83.5,-4.5 parent: 2 - - uid: 24172 + - type: DeviceNetwork + deviceLists: + - 275 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 208 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-47.5 + pos: 29.5,-76.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 205 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24173 + color: '#FF0000FF' + - uid: 210 components: - type: Transform - pos: 70.5,4.5 + rot: -1.5707963267948966 rad + pos: 7.5,-93.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24174 + color: '#FF0000FF' + - uid: 15837 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,2.5 + pos: 104.5,-49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 44200 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24175 + - uid: 20387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-1.5 + pos: -20.5,-39.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 24105 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24176 + - uid: 20763 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-26.5 + pos: 7.5,-100.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24177 + color: '#FF0000FF' + - uid: 21732 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-6.5 + pos: 0.5,-88.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24178 + - uid: 21733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 + rot: 3.141592653589793 rad + pos: 13.5,-101.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24179 + - uid: 22481 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-7.5 + pos: 14.5,-94.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24180 + color: '#FF0000FF' + - uid: 22482 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-5.5 + pos: 7.5,-87.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24181 + color: '#FF0000FF' + - uid: 22520 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-38.5 + pos: -3.5,-104.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 213 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24182 + - uid: 23030 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-29.5 + pos: 78.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 275 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24183 + color: '#FF0000FF' + - uid: 23037 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-40.5 + pos: 88.5,-1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 275 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24184 + color: '#FF0000FF' + - uid: 24239 components: - type: Transform - pos: -2.5,-43.5 + rot: 1.5707963267948966 rad + pos: 21.5,-42.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 24535 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24185 + color: '#FF0000FF' + - uid: 24240 components: - type: Transform - pos: 0.5,-43.5 + rot: 1.5707963267948966 rad + pos: 21.5,-34.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 24535 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24186 + color: '#FF0000FF' + - uid: 24467 components: - type: Transform - pos: -1.5,-44.5 + rot: 3.141592653589793 rad + pos: 102.5,-24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 147 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24187 + color: '#FF0000FF' + - uid: 24469 components: - type: Transform - pos: -0.5,-44.5 + rot: 1.5707963267948966 rad + pos: 14.5,-87.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 43741 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24188 + color: '#FF0000FF' + - uid: 24594 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-53.5 + pos: 50.5,11.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 270 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24189 + color: '#FF0000FF' + - uid: 24595 components: - type: Transform - pos: 14.5,-29.5 + pos: 51.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 44112 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24190 + color: '#FF0000FF' + - uid: 24596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-29.5 + rot: -1.5707963267948966 rad + pos: 60.5,10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 269 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24191 + color: '#FF0000FF' + - uid: 24597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 + rot: 3.141592653589793 rad + pos: 63.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 258 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24192 + color: '#FF0000FF' + - uid: 24598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-21.5 + rot: 1.5707963267948966 rad + pos: 41.5,-5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 282 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24193 + color: '#FF0000FF' + - uid: 24599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-18.5 + rot: 3.141592653589793 rad + pos: 57.5,-20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 265 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24194 + color: '#FF0000FF' + - uid: 24600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-23.5 + rot: 3.141592653589793 rad + pos: 59.5,13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 258 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24195 + color: '#FF0000FF' + - uid: 24601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-24.5 + rot: -1.5707963267948966 rad + pos: 47.5,-7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 150 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24196 + color: '#FF0000FF' + - uid: 24602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-48.5 + rot: 3.141592653589793 rad + pos: 51.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 260 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24197 + color: '#FF0000FF' + - uid: 24603 components: - type: Transform - pos: -12.5,-44.5 + rot: 3.141592653589793 rad + pos: 57.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24198 + - type: DeviceNetwork + deviceLists: + - 265 + - uid: 24604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-15.5 + rot: 3.141592653589793 rad + pos: 62.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 263 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24199 + color: '#FF0000FF' + - uid: 24605 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-32.5 + pos: 48.5,-23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 264 + - 260 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24201 + color: '#FF0000FF' + - uid: 24606 components: - type: Transform - pos: 3.5,-24.5 + rot: 1.5707963267948966 rad + pos: 41.5,-1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24202 + color: '#FF0000FF' + - uid: 24607 components: - type: Transform - pos: -4.5,-43.5 + rot: -1.5707963267948966 rad + pos: 47.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24203 + color: '#FF0000FF' + - uid: 24608 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-36.5 + pos: 40.5,1.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24204 + color: '#FF0000FF' + - uid: 24609 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-43.5 + rot: 1.5707963267948966 rad + pos: 49.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 260 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24205 + color: '#FF0000FF' + - uid: 24610 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-27.5 + pos: 46.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24206 + color: '#FF0000FF' + - uid: 24611 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-54.5 + pos: 40.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24207 + color: '#FF0000FF' + - uid: 24612 components: - type: Transform rot: -1.5707963267948966 rad - pos: 112.5,-41.5 + pos: 46.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24208 + - uid: 24613 components: - type: Transform - rot: 3.141592653589793 rad - pos: 117.5,-40.5 + rot: 1.5707963267948966 rad + pos: 62.5,-16.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 267 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24209 + - uid: 24614 components: - type: Transform - pos: 116.5,-38.5 + pos: 63.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 266 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24210 + color: '#FF0000FF' + - uid: 24615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 107.5,-42.5 + rot: 1.5707963267948966 rad + pos: 25.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 251 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24211 + - uid: 24616 components: - type: Transform - pos: 105.5,-40.5 + rot: 1.5707963267948966 rad + pos: 24.5,12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 250 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24212 + color: '#FF0000FF' + - uid: 24617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 110.5,-39.5 + rot: 3.141592653589793 rad + pos: -63.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24213 + color: '#FF0000FF' + - uid: 24618 components: - type: Transform rot: 3.141592653589793 rad - pos: 102.5,-40.5 + pos: -54.5,-39.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 255 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24214 + color: '#FF0000FF' + - uid: 24619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,3.5 + rot: 1.5707963267948966 rad + pos: -56.5,-32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 255 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24215 + - uid: 24620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-22.5 + pos: -35.5,-79.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 199 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24216 + color: '#FF0000FF' + - uid: 24621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-39.5 + pos: 40.5,-94.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24217 + color: '#FF0000FF' + - uid: 24623 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-39.5 + rot: -1.5707963267948966 rad + pos: 66.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24218 + color: '#FF0000FF' + - uid: 24624 components: - type: Transform - pos: 9.5,-40.5 + pos: 72.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24219 + color: '#FF0000FF' + - uid: 24625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-26.5 + pos: -30.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24220 + color: '#FF0000FF' + - uid: 24626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-30.5 + pos: 34.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24221 + color: '#FF0000FF' + - uid: 24627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 + pos: 55.5,-82.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24222 + color: '#FF0000FF' + - uid: 24628 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-23.5 + pos: 49.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24223 + color: '#FF0000FF' + - uid: 24629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-27.5 + rot: 3.141592653589793 rad + pos: 56.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24224 + color: '#FF0000FF' + - uid: 24630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-33.5 + rot: 1.5707963267948966 rad + pos: 49.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24225 + color: '#FF0000FF' + - uid: 24631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-49.5 + pos: 62.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24226 + color: '#FF0000FF' + - uid: 24632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-48.5 + rot: -1.5707963267948966 rad + pos: 44.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24227 + color: '#FF0000FF' + - uid: 24633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-36.5 + pos: 50.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24228 + color: '#FF0000FF' + - uid: 24634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-32.5 + pos: 64.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24229 + color: '#FF0000FF' + - uid: 24635 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-29.5 + pos: 44.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24230 + color: '#FF0000FF' + - uid: 24636 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-22.5 + rot: -1.5707963267948966 rad + pos: 74.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24231 + color: '#FF0000FF' + - uid: 24637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-35.5 + pos: 107.5,-41.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 292 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24232 + color: '#FF0000FF' + - uid: 24638 components: - type: Transform - pos: -3.5,-11.5 + rot: -1.5707963267948966 rad + pos: 82.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24233 + color: '#FF0000FF' + - uid: 24639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-11.5 + pos: 88.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24234 + color: '#FF0000FF' + - uid: 24640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-21.5 + pos: 39.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24235 + color: '#FF0000FF' + - uid: 24641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-29.5 + rot: -1.5707963267948966 rad + pos: 29.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24236 + color: '#FF0000FF' + - uid: 24642 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-24.5 + pos: 27.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24237 + color: '#FF0000FF' + - uid: 24643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-34.5 + pos: 15.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24238 + color: '#FF0000FF' + - uid: 24644 components: - type: Transform - pos: 14.5,-54.5 + rot: 1.5707963267948966 rad + pos: 6.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24239 + color: '#FF0000FF' + - uid: 24645 components: - type: Transform - pos: 6.5,-54.5 + rot: 3.141592653589793 rad + pos: -0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24240 + color: '#FF0000FF' + - uid: 24646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-22.5 + pos: 4.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24241 + color: '#FF0000FF' + - uid: 24647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-23.5 + pos: -2.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24242 + color: '#FF0000FF' + - uid: 24648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-28.5 + rot: 3.141592653589793 rad + pos: -4.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24243 + color: '#FF0000FF' + - uid: 24649 components: - type: Transform - pos: -16.5,-33.5 + rot: -1.5707963267948966 rad + pos: 0.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24244 + color: '#FF0000FF' + - uid: 24650 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-38.5 + pos: -4.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24245 + color: '#FF0000FF' + - uid: 24651 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-20.5 + rot: -1.5707963267948966 rad + pos: 4.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24246 + color: '#FF0000FF' + - uid: 24652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-20.5 + pos: -6.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24247 + color: '#FF0000FF' + - uid: 24653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,24.5 + pos: 7.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24248 + color: '#FF0000FF' + - uid: 24654 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,19.5 + pos: 11.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24249 + - uid: 24655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-25.5 + rot: 1.5707963267948966 rad + pos: 32.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24250 + - uid: 24656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-49.5 + rot: 1.5707963267948966 rad + pos: 29.5,-61.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 206 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24251 + - uid: 24657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,4.5 + rot: 3.141592653589793 rad + pos: 36.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24252 + - uid: 24658 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,1.5 + pos: 23.5,-70.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 205 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24368 + color: '#FF0000FF' + - uid: 24659 components: - type: Transform - pos: 76.5,-6.5 + pos: 5.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24663 + - uid: 24660 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-88.5 + pos: 11.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40147 + - uid: 24661 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,5.5 + pos: -9.5,-87.5 parent: 2 - - uid: 40280 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,5.5 + pos: 8.5,-75.5 parent: 2 - - uid: 40742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 40666 + - type: DeviceNetwork + deviceLists: + - 238 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41233 + - uid: 24665 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 40828 + pos: -24.5,-77.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41234 + color: '#FF0000FF' + - uid: 24666 components: - type: Transform - pos: 0.5,-4.5 - parent: 40828 + rot: 3.141592653589793 rad + pos: -25.5,-82.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41235 + - uid: 24667 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 40828 + pos: -31.5,-87.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41809 + - uid: 24668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-8.5 - parent: 41669 + rot: 1.5707963267948966 rad + pos: -33.5,-93.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41810 + color: '#FF0000FF' + - uid: 24669 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 41669 + pos: -30.5,-74.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41811 + color: '#FF0000FF' + - uid: 24670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 41669 + rot: -1.5707963267948966 rad + pos: -28.5,-61.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41812 + color: '#FF0000FF' + - uid: 24671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 41669 + pos: -31.5,-41.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41813 + - uid: 24672 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 41669 + pos: -28.5,-19.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41814 + - uid: 24673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 41669 + pos: -18.5,-0.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 42375 + - uid: 24674 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,17.5 + pos: -31.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43259 + - uid: 24675 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-98.5 + pos: -27.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43264 + - uid: 24676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-99.5 + rot: 1.5707963267948966 rad + pos: -30.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43270 + color: '#FF0000FF' + - uid: 24677 components: - type: Transform - pos: -12.5,-99.5 + pos: -37.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43275 + color: '#FF0000FF' + - uid: 24678 components: - type: Transform - pos: -10.5,-103.5 + rot: 1.5707963267948966 rad + pos: -49.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43279 + color: '#FF0000FF' + - uid: 24679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-103.5 + rot: 1.5707963267948966 rad + pos: -40.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43288 + color: '#FF0000FF' + - uid: 24680 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-102.5 + pos: -34.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43690 + - uid: 24681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-68.5 + rot: 3.141592653589793 rad + pos: -43.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43710 + - uid: 24682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-69.5 + rot: 3.141592653589793 rad + pos: -36.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43730 + color: '#FF0000FF' + - uid: 24683 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-94.5 + pos: -43.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43731 + color: '#FF0000FF' + - uid: 24684 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-100.5 + pos: -47.5,-81.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43734 + color: '#FF0000FF' + - uid: 24685 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-90.5 + pos: -39.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 44117 + color: '#FF0000FF' + - uid: 24686 components: - type: Transform rot: -1.5707963267948966 rad - pos: 86.5,-7.5 + pos: -37.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 44119 + color: '#FF0000FF' + - uid: 24687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-7.5 + pos: -52.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPort - entities: - - uid: 24253 + color: '#FF0000FF' + - uid: 24688 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-19.5 + pos: -53.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-32.5 - parent: 2 - - uid: 24255 - components: - - type: Transform - pos: -60.5,-74.5 - parent: 2 - - uid: 24256 + color: '#FF0000FF' + - uid: 24689 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-23.5 + pos: -64.5,-65.5 parent: 2 - - uid: 24257 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24690 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-56.5 + pos: -68.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#00FF00FF' - - uid: 24258 + color: '#FF0000FF' + - uid: 24691 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-55.5 + pos: -35.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#00FF00FF' - - uid: 24259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-56.5 - parent: 2 - - uid: 24260 + color: '#FF0000FF' + - uid: 24692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-56.5 + rot: 1.5707963267948966 rad + pos: -41.5,-33.5 parent: 2 - - uid: 24261 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-58.5 + rot: 3.141592653589793 rad + pos: -44.5,-28.5 parent: 2 - - uid: 24262 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24694 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-49.5 + pos: -52.5,-19.5 parent: 2 - - uid: 24263 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24695 components: - type: Transform - pos: 42.5,-46.5 + rot: 3.141592653589793 rad + pos: -37.5,-31.5 parent: 2 - - uid: 24264 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24696 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-46.5 + pos: -41.5,-20.5 parent: 2 - - uid: 24265 + - type: DeviceNetwork + deviceLists: + - 171 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24697 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-48.5 + pos: -42.5,-6.5 parent: 2 - - uid: 24266 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-47.5 + rot: 3.141592653589793 rad + pos: -35.5,-11.5 parent: 2 - - uid: 24267 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-49.5 + rot: 1.5707963267948966 rad + pos: -45.5,-43.5 parent: 2 - - uid: 24268 + - type: DeviceNetwork + deviceLists: + - 236 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-86.5 + rot: 3.141592653589793 rad + pos: -55.5,-43.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 130 - type: AtmosPipeColor - color: '#947507FF' - - uid: 24269 + color: '#FF0000FF' + - uid: 24701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-87.5 + rot: 3.141592653589793 rad + pos: -66.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 24270 + color: '#FF0000FF' + - uid: 24702 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-23.5 + pos: -72.5,-50.5 parent: 2 - - uid: 24271 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24703 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-89.5 + pos: -71.5,-38.5 parent: 2 - - uid: 24272 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-88.5 + rot: 1.5707963267948966 rad + pos: -68.5,-37.5 parent: 2 - - uid: 24273 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24705 components: - type: Transform - pos: -62.5,-74.5 + rot: 3.141592653589793 rad + pos: -54.5,-1.5 parent: 2 - - uid: 24274 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24711 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,-78.5 + pos: 50.5,-87.5 parent: 2 - - uid: 24275 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24712 components: - type: Transform - pos: -72.5,-24.5 + rot: -1.5707963267948966 rad + pos: 51.5,-96.5 parent: 2 - - uid: 24276 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24713 components: - type: Transform rot: 3.141592653589793 rad - pos: -72.5,-27.5 - parent: 2 - - uid: 24277 - components: - - type: Transform - pos: -71.5,-24.5 + pos: 43.5,-74.5 parent: 2 - - uid: 24278 + - type: DeviceNetwork + deviceLists: + - 234 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24714 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,-27.5 + pos: 35.5,-12.5 parent: 2 - - uid: 24279 + - type: DeviceNetwork + deviceLists: + - 252 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24715 components: - type: Transform rot: 1.5707963267948966 rad - pos: -83.5,-13.5 - parent: 2 - - uid: 24280 - components: - - type: Transform - pos: 95.5,-82.5 + pos: 34.5,-1.5 parent: 2 - - uid: 24281 + - type: DeviceNetwork + deviceLists: + - 247 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24716 components: - type: Transform - pos: 96.5,-82.5 + rot: 3.141592653589793 rad + pos: -48.5,-69.5 parent: 2 - - uid: 24282 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24717 components: - type: Transform rot: 3.141592653589793 rad - pos: 100.5,-84.5 + pos: -48.5,-34.5 parent: 2 - - uid: 24283 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-55.5 + pos: -46.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 254 - type: AtmosPipeColor - color: '#FFAA00FF' - - uid: 24284 + color: '#FF0000FF' + - uid: 24719 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,-61.5 + pos: 98.5,-90.5 parent: 2 - - uid: 24285 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24720 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,-60.5 + pos: 98.5,-86.5 parent: 2 - - uid: 24286 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24721 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-54.5 + pos: 95.5,-78.5 parent: 2 - - uid: 24287 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24722 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-54.5 + pos: 101.5,-78.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 294 - type: AtmosPipeColor - color: '#FFAA00FF' - - uid: 24288 + color: '#FF0000FF' + - uid: 24723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-62.5 + rot: 1.5707963267948966 rad + pos: 96.5,-75.5 parent: 2 - - uid: 24289 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-18.5 + pos: 98.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 24292 + color: '#FF0000FF' + - uid: 24725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-56.5 + pos: 97.5,-63.5 parent: 2 - - uid: 24293 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24726 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-56.5 + rot: 1.5707963267948966 rad + pos: 93.5,-71.5 parent: 2 - - uid: 40283 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24727 components: - type: Transform rot: -1.5707963267948966 rad - pos: 85.5,5.5 + pos: 103.5,-71.5 parent: 2 - - uid: 41236 + - type: DeviceNetwork + deviceLists: + - 294 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-11.5 - parent: 40828 + rot: 1.5707963267948966 rad + pos: -52.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 253 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41815 + color: '#FF0000FF' + - uid: 24729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-8.5 - parent: 41669 + rot: -1.5707963267948966 rad + pos: -46.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPressurePump - entities: - - uid: 20770 + color: '#FF0000FF' + - uid: 24730 components: - type: Transform - pos: 40.5,-48.5 + rot: 3.141592653589793 rad + pos: 39.5,20.5 parent: 2 - - uid: 24294 + - type: DeviceNetwork + deviceLists: + - 256 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-92.5 + rot: 3.141592653589793 rad + pos: 36.5,22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 256 - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24295 + color: '#FF0000FF' + - uid: 24732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-98.5 + rot: 3.141592653589793 rad + pos: -43.5,-86.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 184 - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24296 + color: '#FF0000FF' + - uid: 24733 components: - type: Transform - pos: 36.5,-99.5 + pos: -7.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 157 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24297 + color: '#FF0000FF' + - uid: 24734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-101.5 + rot: -1.5707963267948966 rad + pos: 44.5,-24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 264 - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24298 + color: '#FF0000FF' + - uid: 24735 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-103.5 + pos: 30.5,9.5 parent: 2 - - uid: 24299 + - type: DeviceNetwork + deviceLists: + - 249 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-86.5 + pos: 48.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 272 - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24300 + color: '#FF0000FF' + - uid: 24737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-89.5 + rot: -1.5707963267948966 rad + pos: 44.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 281 - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24301 + color: '#FF0000FF' + - uid: 24738 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-95.5 + pos: 57.5,-10.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 272 - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24302 + color: '#FF0000FF' + - uid: 24739 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-103.5 + pos: -28.5,-13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 168 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24303 + color: '#FF0000FF' + - uid: 24740 components: - type: Transform - pos: 36.5,-102.5 + rot: 1.5707963267948966 rad + pos: 54.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 285 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24304 + color: '#FF0000FF' + - uid: 24741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-86.5 + rot: -1.5707963267948966 rad + pos: -27.5,-70.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 197 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-22.5 - parent: 2 - - uid: 24306 + - uid: 24742 components: - type: Transform - pos: -36.5,-22.5 + pos: 50.5,-3.5 parent: 2 - - uid: 24307 + - type: DeviceNetwork + deviceLists: + - 284 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-58.5 + rot: -1.5707963267948966 rad + pos: -38.5,-21.5 parent: 2 - - uid: 24308 + - type: DeviceNetwork + deviceLists: + - 171 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24744 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,-56.5 + pos: 64.5,-1.5 parent: 2 - - uid: 24310 + - type: DeviceNetwork + deviceLists: + - 287 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24745 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-50.5 + pos: 77.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 275 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24312 + color: '#FF0000FF' + - uid: 24746 components: - type: Transform - pos: 41.5,-103.5 + rot: 3.141592653589793 rad + pos: 84.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 275 - type: AtmosPipeColor - color: '#B3A234FF' - - uid: 24313 + color: '#FF0000FF' + - uid: 24747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-89.5 + pos: 79.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 262 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24314 - components: - - type: Transform - pos: -60.5,-75.5 - parent: 2 - - uid: 24315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-75.5 - parent: 2 - - uid: 24316 + color: '#FF0000FF' + - uid: 24748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-78.5 + pos: 83.5,0.5 parent: 2 - - uid: 24317 + - type: DeviceNetwork + deviceLists: + - 274 + - 259 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-25.5 + pos: 87.5,0.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 259 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24318 + color: '#FF0000FF' + - uid: 24750 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,-26.5 + pos: 74.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 290 + - 275 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24321 + - uid: 24751 components: - type: Transform - pos: -1.5,-49.5 + pos: 38.5,-24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 271 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 40154 + color: '#FF0000FF' + - uid: 24752 components: - type: Transform rot: -1.5707963267948966 rad - pos: 83.5,4.5 + pos: 69.5,2.5 parent: 2 - - type: GasPressurePump - targetPressure: 4500 - - uid: 40155 + - type: DeviceNetwork + deviceLists: + - 276 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,6.5 + pos: 75.5,5.5 parent: 2 - - type: GasPressurePump - targetPressure: 4500 - - uid: 41237 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 40828 + - type: DeviceNetwork + deviceLists: + - 276 - type: AtmosPipeColor color: '#FF0000FF' -- proto: GasRecycler - entities: - - uid: 24322 + - uid: 24754 components: - type: Transform - pos: -1.5,-50.5 + pos: 79.5,4.5 parent: 2 -- proto: GasThermoMachineFreezer - entities: - - uid: 24323 + - type: DeviceNetwork + deviceLists: + - 276 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24755 components: - type: Transform - pos: -38.5,-19.5 + rot: 3.141592653589793 rad + pos: -0.5,-6.5 parent: 2 - - uid: 24324 + - type: DeviceNetwork + deviceLists: + - 273 + - 19136 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24756 components: - type: Transform - pos: 42.5,-89.5 + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 parent: 2 - - uid: 24325 + - type: DeviceNetwork + deviceLists: + - 273 + - 19136 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24757 components: - type: Transform - pos: 42.5,-90.5 + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 parent: 2 - - uid: 24326 + - type: DeviceNetwork + deviceLists: + - 273 + - 19136 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24758 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,-61.5 - parent: 2 - - uid: 24327 - components: - - type: Transform - pos: -13.5,-32.5 + pos: 26.5,-38.5 parent: 2 - - uid: 24328 + - type: DeviceNetwork + deviceLists: + - 277 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24759 components: - type: Transform - pos: -2.5,-50.5 + pos: 59.5,-55.5 parent: 2 -- proto: GasThermoMachineFreezerEnabled - entities: - - uid: 24329 + - type: DeviceNetwork + deviceLists: + - 139 + - 19137 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24784 components: - type: Transform - pos: 24.5,14.5 + rot: 1.5707963267948966 rad + pos: 56.5,6.5 parent: 2 - - uid: 24330 + - type: DeviceNetwork + deviceLists: + - 286 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24785 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-74.5 + rot: 1.5707963267948966 rad + pos: 53.5,5.5 parent: 2 - - uid: 24331 + - type: DeviceNetwork + deviceLists: + - 286 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24786 components: - type: Transform - pos: 101.5,-82.5 + rot: 1.5707963267948966 rad + pos: 48.5,14.5 parent: 2 - - type: GasThermoMachine - targetTemperature: 73.15 + - type: DeviceNetwork + deviceLists: + - 270 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24332 + color: '#FF0000FF' + - uid: 24787 components: - type: Transform rot: 3.141592653589793 rad - pos: 101.5,-84.5 + pos: 62.5,-8.5 parent: 2 - - type: GasThermoMachine - targetTemperature: 73.15 + - type: DeviceNetwork + deviceLists: + - 288 - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasThermoMachineHeater - entities: - - uid: 24333 - components: - - type: Transform - pos: 42.5,-91.5 - parent: 2 - - uid: 24334 - components: - - type: Transform - pos: 53.5,-86.5 - parent: 2 - - uid: 24335 + color: '#FF0000FF' + - uid: 24788 components: - type: Transform - pos: -74.5,-24.5 + rot: 3.141592653589793 rad + pos: 68.5,-8.5 parent: 2 - - uid: 24336 + - type: DeviceNetwork + deviceLists: + - 289 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24789 components: - type: Transform rot: -1.5707963267948966 rad - pos: -81.5,-13.5 + pos: 69.5,-1.5 parent: 2 - - uid: 24337 + - type: DeviceNetwork + deviceLists: + - 289 + - 290 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-60.5 + pos: 117.5,-39.5 parent: 2 -- proto: GasThermoMachineHeaterEnabled - entities: - - uid: 24338 + - type: DeviceNetwork + deviceLists: + - 291 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-49.5 + rot: 1.5707963267948966 rad + pos: 101.5,-42.5 parent: 2 -- proto: GasValve - entities: - - uid: 24339 + - type: DeviceNetwork + deviceLists: + - 148 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24792 components: - type: Transform - pos: -16.5,-17.5 + pos: 87.5,-40.5 parent: 2 - - uid: 24341 + - type: DeviceNetwork + deviceLists: + - 148 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24793 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-14.5 + rot: 1.5707963267948966 rad + pos: 111.5,-41.5 parent: 2 - - uid: 24342 + - type: DeviceNetwork + deviceLists: + - 291 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24794 components: - type: Transform - pos: -6.5,-52.5 + pos: 128.5,-39.5 parent: 2 - - uid: 24343 + - type: DeviceNetwork + deviceLists: + - 291 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24795 components: - type: Transform - pos: -5.5,-52.5 + pos: 7.5,4.5 parent: 2 - - uid: 44201 + - type: DeviceNetwork + deviceLists: + - 157 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-85.5 + pos: 30.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 247 - type: AtmosPipeColor color: '#FF0000FF' -- proto: GasVentPump - entities: - - uid: 2427 + - uid: 24808 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-94.5 + pos: 37.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 213 + - 247 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16449 + color: '#FF0000FF' + - uid: 24811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-103.5 + pos: 23.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 213 + - 251 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17034 + color: '#FF0000FF' + - uid: 24812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-99.5 + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 213 + - 247 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21731 + color: '#FF0000FF' + - uid: 24813 components: - type: Transform - pos: 0.5,-89.5 + rot: -1.5707963267948966 rad + pos: 37.5,10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 43741 + - 248 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21734 + color: '#FF0000FF' + - uid: 24814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-101.5 + pos: 28.5,14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 43741 + - 249 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21735 + color: '#FF0000FF' + - uid: 24815 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-101.5 + pos: 26.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 43741 + - 249 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22479 + color: '#FF0000FF' + - uid: 24816 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-87.5 + pos: 44.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 43741 + - 150 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22483 + color: '#FF0000FF' + - uid: 24817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-94.5 + pos: 44.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 43741 + - 283 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22502 + color: '#FF0000FF' + - uid: 24818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-88.5 + pos: 14.5,14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 43741 + - 165 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22503 + color: '#FF0000FF' + - uid: 24819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-94.5 + pos: 18.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 43741 + - 298 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23023 + color: '#FF0000FF' + - uid: 24820 components: - type: Transform - pos: 61.5,-12.5 + rot: 3.141592653589793 rad + pos: 0.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 266 + - 164 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23029 + color: '#FF0000FF' + - uid: 24821 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-2.5 + pos: -1.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 275 + - 164 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23031 + color: '#FF0000FF' + - uid: 24822 components: - type: Transform rot: 3.141592653589793 rad - pos: 78.5,-8.5 + pos: -13.5,18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 275 + - 164 + - 293 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 23885 + color: '#FF0000FF' + - uid: 24823 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-80.5 + pos: -8.5,18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 43332 + - 164 + - 293 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24344 + color: '#FF0000FF' + - uid: 24824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,4.5 + pos: -48.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 263 + - 173 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24345 + color: '#FF0000FF' + - uid: 24825 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,8.5 + pos: -45.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 269 + - 173 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24346 + color: '#FF0000FF' + - uid: 24826 components: - type: Transform - pos: 44.5,-22.5 + rot: 3.141592653589793 rad + pos: -37.5,-43.5 parent: 2 - type: DeviceNetwork deviceLists: - - 264 + - 236 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24347 + color: '#FF0000FF' + - uid: 24827 components: - type: Transform - pos: 49.5,-3.5 + rot: 1.5707963267948966 rad + pos: -66.5,-49.5 parent: 2 - type: DeviceNetwork deviceLists: - - 284 + - 299 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24348 + color: '#FF0000FF' + - uid: 24828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,14.5 + rot: 3.141592653589793 rad + pos: -61.5,-50.5 parent: 2 - type: DeviceNetwork deviceLists: - - 258 + - 299 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24349 + color: '#FF0000FF' + - uid: 24829 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,13.5 + pos: -50.5,-39.5 parent: 2 - type: DeviceNetwork deviceLists: - - 258 + - 175 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24350 + color: '#FF0000FF' + - uid: 24830 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-3.5 + pos: -47.5,-40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 282 + - 175 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24351 + color: '#FF0000FF' + - uid: 24831 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-11.5 + pos: -71.5,-43.5 parent: 2 - type: DeviceNetwork deviceLists: - - 150 + - 215 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24352 + color: '#FF0000FF' + - uid: 24832 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-21.5 + rot: -1.5707963267948966 rad + pos: -27.5,-54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 260 + - 195 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24353 + color: '#FF0000FF' + - uid: 24833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-9.5 + pos: -15.5,-72.5 parent: 2 - type: DeviceNetwork deviceLists: - - 44112 + - 197 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24354 + color: '#FF0000FF' + - uid: 24834 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-0.5 + pos: -28.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 283 + - 168 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24355 + color: '#FF0000FF' + - uid: 24835 components: - type: Transform - pos: 56.5,-17.5 + pos: -12.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 265 + - 157 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24356 + color: '#FF0000FF' + - uid: 24836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-22.5 + rot: 1.5707963267948966 rad + pos: -25.5,-5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 265 + - 166 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24357 + color: '#FF0000FF' + - uid: 24837 components: - type: Transform - pos: 43.5,10.5 + pos: 13.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 283 + - 157 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24358 + color: '#FF0000FF' + - uid: 24838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,2.5 + pos: -16.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 283 + - 300 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24359 + color: '#FF0000FF' + - uid: 24839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,5.5 + rot: -1.5707963267948966 rad + pos: -14.5,9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 283 + - 300 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24360 + color: '#FF0000FF' + - uid: 24840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-20.5 + pos: -20.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 173 + - 301 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24361 + color: '#FF0000FF' + - uid: 25562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,4.5 + rot: 3.141592653589793 rad + pos: -7.5,-79.5 parent: 2 - type: DeviceNetwork deviceLists: - - 283 + - 43332 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24362 + color: '#FF0000FF' + - uid: 26342 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,1.5 + pos: -6.5,-95.5 parent: 2 - type: DeviceNetwork deviceLists: - - 283 + - 213 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24363 + color: '#FF0000FF' + - uid: 26538 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-40.5 + pos: 34.5,10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 148 + - 248 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24364 + color: '#FF0000FF' + - uid: 26540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-24.5 + pos: 36.5,15.5 parent: 2 - type: DeviceNetwork deviceLists: - - 173 + - 248 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24365 + color: '#FF0000FF' + - uid: 31144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,7.5 + pos: 30.5,18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 283 + - 42374 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24366 + color: '#FF0000FF' + - uid: 36216 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-25.5 + pos: 108.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 264 - - 260 + - 147 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24367 + color: '#FF0000FF' + - uid: 39470 components: - type: Transform - pos: 49.5,-17.5 + rot: 3.141592653589793 rad + pos: 28.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 260 + - 277 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24369 + color: '#FF0000FF' + - uid: 40743 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-70.5 - parent: 2 + pos: 0.5,-0.5 + parent: 40666 - type: DeviceNetwork deviceLists: - - 197 + - 40667 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24370 + color: '#FF0000FF' + - uid: 40744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-5.5 - parent: 2 + pos: 0.5,4.5 + parent: 40666 - type: DeviceNetwork deviceLists: - - 247 + - 40667 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24371 + color: '#FF0000FF' + - uid: 41244 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-70.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40832 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24372 + color: '#FF0000FF' + - uid: 41245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-86.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40833 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24373 + color: '#FF0000FF' + - uid: 41246 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-69.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40831 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24374 + color: '#FF0000FF' + - uid: 41247 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,13.5 - parent: 2 + pos: -3.5,-4.5 + parent: 40828 - type: DeviceNetwork deviceLists: - - 249 + - 40830 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24375 + color: '#FF0000FF' + - uid: 41248 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-12.5 - parent: 2 + pos: -0.5,-7.5 + parent: 40828 - type: DeviceNetwork deviceLists: - - 254 + - 40829 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24376 + color: '#FF0000FF' + - uid: 41820 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-32.5 - parent: 2 + pos: 5.5,-5.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24378 + color: '#FF0000FF' + - uid: 41821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-32.5 - parent: 2 + pos: 5.5,1.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24379 + color: '#FF0000FF' + - uid: 41822 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-32.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24380 + color: '#FF0000FF' + - uid: 41823 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-82.5 - parent: 2 + pos: 5.5,-11.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24381 + color: '#FF0000FF' + - uid: 42053 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-74.5 + pos: 6.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 156 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24382 + color: '#FF0000FF' + - uid: 43027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-71.5 + rot: -1.5707963267948966 rad + pos: 81.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 276 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24383 + color: '#FF0000FF' + - uid: 43152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-56.5 + rot: 1.5707963267948966 rad + pos: -10.5,-102.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 213 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24384 + color: '#FF0000FF' + - uid: 43258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-61.5 + rot: 1.5707963267948966 rad + pos: -7.5,-98.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 213 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24385 + color: '#FF0000FF' + - uid: 43295 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-48.5 + pos: -8.5,-106.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 213 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24386 + color: '#FF0000FF' + - uid: 43683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-41.5 + pos: 36.5,-57.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 207 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24387 + color: '#FF0000FF' + - uid: 43688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-32.5 + rot: 1.5707963267948966 rad + pos: 36.5,-69.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 207 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24388 + color: '#FF0000FF' + - uid: 43701 components: - type: Transform - pos: 68.5,-27.5 + rot: 3.141592653589793 rad + pos: 37.5,-72.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 207 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24389 + color: '#FF0000FF' + - uid: 43717 components: - type: Transform - pos: 77.5,-28.5 + rot: 3.141592653589793 rad + pos: -3.5,-82.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 20495 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24390 + color: '#FF0000FF' + - uid: 44114 components: - type: Transform rot: -1.5707963267948966 rad - pos: 79.5,-40.5 + pos: 89.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 275 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24391 + color: '#FF0000FF' + - uid: 44128 components: - type: Transform rot: 3.141592653589793 rad - pos: 86.5,-42.5 + pos: 76.5,-7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 275 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24392 + color: '#FF0000FF' + - uid: 44136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-28.5 + rot: 3.141592653589793 rad + pos: 71.5,-12.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 275 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24393 + color: '#FF0000FF' + - uid: 44140 components: - type: Transform - pos: 86.5,-20.5 + rot: 3.141592653589793 rad + pos: 80.5,-9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 275 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24394 + color: '#FF0000FF' +- proto: GasVolumePump + entities: + - uid: 18965 components: - type: Transform - pos: 102.5,-20.5 + rot: -1.5707963267948966 rad + pos: 39.5,-86.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24396 + color: '#FF0000FF' + - uid: 20521 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-32.5 + rot: -1.5707963267948966 rad + pos: -12.5,-52.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24397 + - uid: 24841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-19.5 + rot: -1.5707963267948966 rad + pos: 55.5,-89.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24398 + color: '#FEF101FF' + - uid: 24842 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-0.5 + pos: 57.5,-90.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24399 + color: '#FEF101FF' + - uid: 24843 components: - type: Transform - pos: 17.5,6.5 + pos: 98.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24400 + - uid: 24844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,0.5 + pos: 100.5,-83.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24401 + color: '#FF0000FF' +- proto: Gauze + entities: + - uid: 2523 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24402 + parent: 2520 + - type: Physics + canCollide: False + - uid: 2530 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24403 + parent: 2527 + - type: Physics + canCollide: False + - uid: 2537 components: - type: Transform - pos: -6.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24404 + parent: 2534 + - type: Physics + canCollide: False + - uid: 16226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,0.5 + pos: -3.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24405 + - uid: 29170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,12.5 + pos: 8.5,-51.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24406 + - uid: 29171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,16.5 + pos: -9.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24407 + - uid: 29172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,16.5 + pos: -6.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24408 +- proto: GeigerCounter + entities: + - uid: 24847 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,20.5 + pos: 78.38674,-49.55499 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24409 +- proto: GeneratorBasic + entities: + - uid: 24848 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,20.5 + pos: 98.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24410 +- proto: GeneratorRTG + entities: + - uid: 24849 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,13.5 + pos: 99.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24411 + - uid: 24850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-42.5 + pos: 97.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24412 + - uid: 24851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-59.5 + pos: -48.5,-74.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 206 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24413 +- proto: GeneratorWallmountAPU + entities: + - uid: 40745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-65.5 + pos: -2.5,-0.5 + parent: 40666 + - type: PowerSupplier + supplyRampRate: 1000 + supplyRampTolerance: 1000 + supplyRate: 12000 + - uid: 41249 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 40828 + - uid: 41250 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 40828 + - uid: 41251 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 40828 + - uid: 41824 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 41669 + - uid: 41825 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 41669 + - uid: 41826 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 41669 +- proto: GenericTank + entities: + - uid: 24855 + components: + - type: Transform + pos: 17.5,-83.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24414 + - uid: 24856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-73.5 + pos: -11.5,-96.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 205 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24415 + - uid: 24857 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-72.5 + pos: -42.5,-107.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 205 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24416 +- proto: Girder + entities: + - uid: 10018 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-83.5 + pos: 9.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24417 + - uid: 10019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-82.5 + rot: 3.141592653589793 rad + pos: 8.5,-50.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24419 + - uid: 19614 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-86.5 + pos: 46.5,21.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24421 + - uid: 24859 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-95.5 + pos: -59.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24422 + - uid: 24861 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-75.5 + pos: -67.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 238 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24423 + - uid: 24862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-76.5 + rot: -1.5707963267948966 rad + pos: 99.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24424 + - uid: 24863 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-82.5 + pos: -51.5,-91.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24425 + - uid: 24864 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-86.5 + pos: -57.5,-51.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24426 + - uid: 24865 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,-93.5 + pos: 60.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24427 + - uid: 24866 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-74.5 + pos: 31.5,-77.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24428 + - uid: 24868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-59.5 + rot: -1.5707963267948966 rad + pos: -59.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24429 + - uid: 24869 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-45.5 + pos: -52.5,-81.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24430 + - uid: 24870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-21.5 + pos: -43.5,-95.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24431 + - uid: 24871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-7.5 + rot: 3.141592653589793 rad + pos: -60.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24432 + - uid: 24872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-47.5 + rot: 3.141592653589793 rad + pos: -68.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24433 + - uid: 24873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,10.5 + rot: 3.141592653589793 rad + pos: -69.5,-25.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24434 + - uid: 24874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,4.5 + rot: 3.141592653589793 rad + pos: -52.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24435 + - uid: 24875 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-49.5 + pos: -40.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24436 + - uid: 24876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-52.5 + rot: 3.141592653589793 rad + pos: -48.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24437 + - uid: 24877 components: - type: Transform - pos: -37.5,-54.5 + rot: 3.141592653589793 rad + pos: -33.5,15.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24438 + - uid: 24878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-57.5 + pos: -65.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24439 + - uid: 24879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-56.5 + pos: -22.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24440 + - uid: 24880 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-65.5 + pos: -18.5,14.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24441 + - uid: 24881 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-73.5 + pos: -34.5,-118.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24442 + - uid: 24882 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-74.5 + pos: -38.5,-122.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24443 + - uid: 24883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-69.5 + pos: -42.5,-120.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24444 + - uid: 24884 components: - type: Transform - pos: -51.5,-59.5 + pos: -57.5,-76.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24445 + - uid: 24885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-65.5 + pos: 108.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24446 + - uid: 24886 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-65.5 + pos: 92.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24447 + - uid: 24887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-64.5 + pos: 75.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24448 + - uid: 24888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-38.5 + pos: -45.5,-106.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24449 + - uid: 24889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-34.5 + pos: -39.5,-107.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24450 + - uid: 24890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-22.5 + pos: -28.5,-109.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 171 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24451 + - uid: 24891 components: - type: Transform - pos: -51.5,-28.5 + pos: -49.5,-119.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24452 + - uid: 24892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-33.5 + rot: 3.141592653589793 rad + pos: -70.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24453 + - uid: 24893 components: - type: Transform - pos: -53.5,-21.5 + rot: 3.141592653589793 rad + pos: -78.5,-21.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24454 + - uid: 24894 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,-24.5 + pos: 36.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24455 + - uid: 24895 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,-31.5 + pos: -55.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 243 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24456 + - uid: 24896 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-23.5 + pos: -47.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 171 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24457 + - uid: 38989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-9.5 + pos: 26.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24458 + - uid: 44234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-7.5 + rot: 1.5707963267948966 rad + pos: -70.5,-57.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24459 + - uid: 44235 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-43.5 + pos: -72.5,-57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 236 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24460 +- proto: GlassBoxLaserFilled + entities: + - uid: 29820 components: - type: Transform - pos: -57.5,-43.5 + pos: 17.5,16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 130 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24461 +- proto: GlowstickBase + entities: + - uid: 24898 components: - type: Transform - pos: -65.5,-43.5 + pos: -46.635826,-97.712006 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24462 + - uid: 24899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-38.5 + rot: 3.141592653589793 rad + pos: -51.455772,-103.54919 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24463 + - uid: 24900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-50.5 + pos: -76.321335,-9.98569 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24464 + - uid: 24901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-37.5 + pos: -74.14946,-7.76694 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24465 +- proto: GlowstickBlue + entities: + - uid: 24902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 106.5,-21.5 + pos: -47.2452,-100.72763 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24466 +- proto: GlowstickPurple + entities: + - uid: 24903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-1.5 + pos: -45.542076,-103.274506 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24468 +- proto: GlowstickRed + entities: + - uid: 24904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-79.5 + pos: -49.667076,-97.555756 parent: 2 - - type: DeviceNetwork - deviceLists: - - 20495 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24470 +- proto: GoldRingDiamond + entities: + - uid: 24906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-97.5 + pos: -6.2808795,-8.315094 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24471 +- proto: GoldRingGem + entities: + - uid: 24907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-97.5 + pos: -6.3746295,-8.471344 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24474 +- proto: GravityGenerator + entities: + - uid: 24908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-75.5 + pos: 27.5,-42.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 234 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24475 +- proto: GravityGeneratorMini + entities: + - uid: 40746 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 250 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24476 + pos: -0.5,-0.5 + parent: 40666 + - uid: 41252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 247 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24477 + pos: 1.5,-12.5 + parent: 40828 + - uid: 41827 components: - type: Transform - pos: 33.5,13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 248 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24478 + pos: 1.5,-9.5 + parent: 41669 +- proto: GrenadeIncendiary + entities: + - uid: 16302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 252 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24479 + parent: 16300 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,1.5 + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40868 + components: + - type: Transform + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40869 + components: + - type: Transform + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeShrapnel + entities: + - uid: 16303 + components: + - type: Transform + parent: 16300 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40870 + components: + - type: Transform + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40871 + components: + - type: Transform + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40872 + components: + - type: Transform + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeStinger + entities: + - uid: 16304 + components: + - type: Transform + parent: 16300 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40873 + components: + - type: Transform + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40874 + components: + - type: Transform + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40875 + components: + - type: Transform + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40876 + components: + - type: Transform + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40877 + components: + - type: Transform + parent: 40864 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Grille + entities: + - uid: 1357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 251 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24480 + - uid: 2002 components: - type: Transform rot: 3.141592653589793 rad - pos: -45.5,-34.5 + pos: -7.5,-77.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24481 + - uid: 7078 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-2.5 + pos: 10.5,-55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 178 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24482 + - uid: 7375 components: - type: Transform rot: 3.141592653589793 rad - pos: 96.5,-89.5 + pos: -1.5,-62.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24483 + - uid: 7376 components: - type: Transform rot: 3.141592653589793 rad - pos: 100.5,-89.5 + pos: -1.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24484 + - uid: 7377 components: - type: Transform rot: 3.141592653589793 rad - pos: 101.5,-80.5 + pos: 3.5,-60.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24485 + - uid: 7378 components: - type: Transform rot: 3.141592653589793 rad - pos: 95.5,-80.5 + pos: -2.5,-60.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24486 + - uid: 7379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-75.5 + rot: 3.141592653589793 rad + pos: 2.5,-62.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24487 + - uid: 7380 components: - type: Transform - pos: 99.5,-63.5 + rot: 3.141592653589793 rad + pos: 2.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24488 + - uid: 7488 components: - type: Transform rot: 3.141592653589793 rad - pos: 98.5,-68.5 + pos: -8.5,-52.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24489 + - uid: 7489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-67.5 + rot: 3.141592653589793 rad + pos: -7.5,-52.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24490 + - uid: 7534 components: - type: Transform rot: -1.5707963267948966 rad - pos: 103.5,-67.5 + pos: 13.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24491 + - uid: 7551 components: - type: Transform - pos: -54.5,-14.5 + rot: 3.141592653589793 rad + pos: -15.5,-50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 253 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24492 + - uid: 7553 components: - type: Transform - pos: -56.5,-38.5 + rot: 3.141592653589793 rad + pos: -13.5,-50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 255 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24493 + - uid: 7582 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,21.5 + pos: 2.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 256 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24494 + - uid: 7583 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,20.5 + rot: 1.5707963267948966 rad + pos: 2.5,-47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 256 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24495 + - uid: 7584 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-81.5 + pos: -1.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 199 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24496 + - uid: 7585 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-86.5 + rot: 1.5707963267948966 rad + pos: -1.5,-47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 184 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24497 + - uid: 10014 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,-24.5 + pos: -11.5,-50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 271 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24498 + - uid: 10015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-18.5 + rot: 3.141592653589793 rad + pos: -10.5,-50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 267 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24499 + - uid: 10040 components: - type: Transform rot: 3.141592653589793 rad - pos: 105.5,-41.5 + pos: 0.5,-50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 292 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24500 + - uid: 12261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-18.5 + pos: -7.5,-42.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 281 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24501 + - uid: 12287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-12.5 + rot: 3.141592653589793 rad + pos: 0.5,-43.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 272 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24502 + - uid: 13959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-0.5 + pos: -58.5,-79.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 285 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24503 + - uid: 14558 components: - type: Transform - pos: 64.5,-4.5 + pos: 10.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 287 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24504 + - uid: 14735 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-12.5 + pos: -6.5,-32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24505 + - uid: 15872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-12.5 + pos: 10.5,-30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24507 + - uid: 16345 components: - type: Transform - pos: 81.5,0.5 + pos: 73.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 274 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24508 + - uid: 16346 components: - type: Transform - pos: 85.5,0.5 + pos: 75.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 259 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24509 + - uid: 16347 components: - type: Transform - pos: 77.5,0.5 + pos: 77.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 262 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24510 + - uid: 16354 components: - type: Transform - pos: 74.5,-1.5 + pos: 79.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 290 - - 275 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24511 + - uid: 16355 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,3.5 + pos: 74.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 286 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24512 + - uid: 16385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,9.5 + pos: 78.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 270 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24513 + - uid: 16408 components: - type: Transform - pos: 74.5,5.5 + pos: 74.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24514 + - uid: 16515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,1.5 + pos: -10.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24515 + - uid: 16744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,4.5 + pos: -8.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24516 + - uid: 18265 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-14.5 + pos: 4.5,-25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 272 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24517 + - uid: 18270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,4.5 + rot: -1.5707963267948966 rad + pos: 4.5,-23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24518 + - uid: 18272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-6.5 + rot: -1.5707963267948966 rad + pos: -3.5,-23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 273 - - 19136 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24519 + - uid: 18464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 + rot: -1.5707963267948966 rad + pos: -3.5,-25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 273 - - 19136 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24520 + - uid: 18968 + components: + - type: Transform + pos: -5.5,-79.5 + parent: 2 + - uid: 23450 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-8.5 + pos: 0.5,-24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 273 - - 19136 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24521 + - uid: 23452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-36.5 + rot: -1.5707963267948966 rad + pos: 0.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 277 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24522 + - uid: 23513 components: - type: Transform - pos: 56.5,-55.5 + pos: 1.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 139 - - 19137 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24523 + - uid: 23514 components: - type: Transform - pos: -13.5,-42.5 + pos: 0.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24524 + - uid: 23515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-13.5 + pos: -0.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24525 + - uid: 23551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-19.5 + pos: -14.5,-29.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24526 + - uid: 23628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-26.5 + pos: -22.5,-42.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24527 + - uid: 23629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-43.5 + pos: -22.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24528 + - uid: 24914 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-44.5 + pos: 51.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24529 + - uid: 24915 components: - type: Transform - pos: 15.5,-28.5 + rot: 1.5707963267948966 rad + pos: 58.5,9.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24530 + - uid: 24916 components: - type: Transform - pos: 19.5,-25.5 + pos: 45.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24531 + - uid: 24917 components: - type: Transform - pos: 18.5,-14.5 + pos: 41.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24532 + - uid: 24918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-21.5 + pos: 45.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24533 + - uid: 24919 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-36.5 + pos: 45.5,3.5 parent: 2 - - uid: 24534 + - uid: 24920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-39.5 + pos: 56.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24535 + - uid: 24921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-22.5 + pos: 58.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24536 + - uid: 24922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-21.5 + pos: 56.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24537 + - uid: 24923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-46.5 + rot: -1.5707963267948966 rad + pos: 46.5,-19.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24538 + - uid: 24924 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,7.5 + pos: 48.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 286 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24539 + - uid: 24925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,15.5 + pos: 41.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 270 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24540 + - uid: 24926 components: - type: Transform - pos: 63.5,-8.5 + pos: 45.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 288 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24541 + - uid: 24927 components: - type: Transform - pos: 69.5,-8.5 + rot: -1.5707963267948966 rad + pos: 46.5,-18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 289 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24542 + - uid: 24928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-2.5 + rot: -1.5707963267948966 rad + pos: 54.5,21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 289 - - 290 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24543 + - uid: 24929 components: - type: Transform rot: -1.5707963267948966 rad - pos: 111.5,-39.5 + pos: 46.5,-24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 291 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24544 + - uid: 24930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 116.5,-39.5 + rot: -1.5707963267948966 rad + pos: 46.5,-22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 291 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24545 + - uid: 24931 components: - type: Transform - rot: 3.141592653589793 rad - pos: 127.5,-39.5 + rot: -1.5707963267948966 rad + pos: 58.5,16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 291 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24546 + - uid: 24932 components: - type: Transform - pos: -8.5,14.5 + pos: 42.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 293 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24547 + - uid: 24933 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-43.5 + rot: -1.5707963267948966 rad + pos: 50.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24548 + - uid: 24934 components: - type: Transform - pos: 18.5,-36.5 + pos: 11.5,-112.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24549 + - uid: 24936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-39.5 + rot: -1.5707963267948966 rad + pos: 46.5,-17.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24550 + - uid: 24937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-35.5 + rot: -1.5707963267948966 rad + pos: 46.5,-8.5 parent: 2 - - uid: 24551 + - uid: 24938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-18.5 + rot: -1.5707963267948966 rad + pos: 46.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24552 + - uid: 24939 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-23.5 + pos: 57.5,16.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24553 + - uid: 24940 + components: + - type: Transform + pos: 74.5,-8.5 + parent: 2 + - uid: 24941 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-51.5 + pos: 26.5,37.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24554 + - uid: 24942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-53.5 + rot: 3.141592653589793 rad + pos: 26.5,34.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24555 + - uid: 24943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-36.5 + rot: 3.141592653589793 rad + pos: 88.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24556 + - uid: 24944 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-32.5 + pos: -35.5,-71.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24557 + - uid: 24945 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-36.5 + pos: 64.5,-92.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24558 + - uid: 24946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-40.5 + rot: 3.141592653589793 rad + pos: 49.5,-62.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24559 + - uid: 24947 components: - type: Transform - pos: -18.5,-28.5 + rot: 3.141592653589793 rad + pos: -46.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24560 + - uid: 24948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-41.5 + pos: -69.5,-72.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24561 + - uid: 24950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-35.5 + pos: 66.5,-67.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24562 + - uid: 24951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-13.5 + pos: 66.5,-69.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24563 + - uid: 24952 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-15.5 + pos: 28.5,39.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24564 + - uid: 24955 components: - type: Transform - pos: -15.5,-19.5 + rot: 3.141592653589793 rad + pos: -63.5,-47.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24565 + - uid: 24956 components: - type: Transform - pos: 9.5,-12.5 + rot: 3.141592653589793 rad + pos: 88.5,-60.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24566 + - uid: 24957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-29.5 + rot: 3.141592653589793 rad + pos: -63.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24567 + - uid: 24958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 + rot: 3.141592653589793 rad + pos: -65.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24568 + - uid: 24959 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-25.5 + pos: -46.5,-75.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24569 + - uid: 24960 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-61.5 + pos: -64.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24570 + - uid: 24961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-61.5 + rot: 3.141592653589793 rad + pos: 68.5,-62.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24571 + - uid: 24962 components: - type: Transform - pos: 18.5,-53.5 + rot: 3.141592653589793 rad + pos: 68.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24572 + - uid: 24963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-53.5 + rot: 3.141592653589793 rad + pos: 44.5,-79.5 parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 24573 + - uid: 24964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,7.5 + rot: 3.141592653589793 rad + pos: 38.5,-81.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 247 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24574 + - uid: 24965 components: - type: Transform - pos: 29.5,-1.5 + rot: 3.141592653589793 rad + pos: 40.5,-81.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24575 + - uid: 24966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-8.5 + rot: 3.141592653589793 rad + pos: -63.5,-78.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 150 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24576 + - uid: 24967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,7.5 + rot: 3.141592653589793 rad + pos: 35.5,-103.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24577 + - uid: 24968 components: - type: Transform - pos: 15.5,14.5 + rot: 3.141592653589793 rad + pos: 39.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 165 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24578 + - uid: 24969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,20.5 + rot: 3.141592653589793 rad + pos: 109.5,-58.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 298 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24579 + - uid: 24970 components: - type: Transform - pos: -2.5,26.5 + pos: 12.5,27.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24580 + - uid: 24971 components: - type: Transform - pos: 3.5,26.5 + rot: 3.141592653589793 rad + pos: -63.5,-77.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24581 + - uid: 24972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,24.5 + rot: 3.141592653589793 rad + pos: 88.5,-59.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24582 + - uid: 24973 components: - type: Transform - pos: -35.5,-43.5 + rot: 3.141592653589793 rad + pos: 39.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 236 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24583 + - uid: 24974 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-48.5 + pos: -33.5,-81.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 299 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24584 + - uid: 24975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-43.5 + pos: -69.5,-74.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 215 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24585 + - uid: 24976 + components: + - type: Transform + pos: -50.5,-70.5 + parent: 2 + - uid: 24977 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-54.5 + pos: 111.5,-58.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 195 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24586 + - uid: 24978 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-72.5 + pos: 39.5,39.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 197 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24587 + - uid: 24979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-15.5 + rot: 3.141592653589793 rad + pos: 35.5,39.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 168 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24588 + - uid: 24980 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-27.5 + pos: 58.5,-88.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 168 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24589 + - uid: 24981 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-1.5 + pos: 59.5,-100.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 166 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24590 + - uid: 24982 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,2.5 + rot: -1.5707963267948966 rad + pos: 59.5,-98.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24591 + - uid: 24983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,2.5 + pos: -49.5,-70.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24592 + - uid: 24984 components: - type: Transform - pos: -15.5,5.5 + rot: 1.5707963267948966 rad + pos: 58.5,-87.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 300 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24593 + - uid: 24985 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,4.5 + pos: 60.5,-87.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 301 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 28716 + - uid: 24986 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-2.5 + rot: 1.5707963267948966 rad + pos: 60.5,-88.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 156 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 36214 + - uid: 24987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-57.5 + pos: -2.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 207 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41238 + - uid: 24988 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-9.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40832 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41239 + pos: -5.5,7.5 + parent: 2 + - uid: 24989 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-9.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40833 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41240 + pos: -4.5,7.5 + parent: 2 + - uid: 24990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40830 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41241 + rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 2 + - uid: 24991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40831 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41242 + rot: 3.141592653589793 rad + pos: 0.5,18.5 + parent: 2 + - uid: 24992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40829 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41243 + rot: 3.141592653589793 rad + pos: 9.5,26.5 + parent: 2 + - uid: 24993 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40829 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41816 + pos: 33.5,-90.5 + parent: 2 + - uid: 24994 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41817 + pos: 35.5,-86.5 + parent: 2 + - uid: 24995 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-11.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41818 + pos: 62.5,-63.5 + parent: 2 + - uid: 24996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41819 + rot: 3.141592653589793 rad + pos: 63.5,-63.5 + parent: 2 + - uid: 24997 components: - type: Transform - pos: 3.5,1.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 42373 + pos: 86.5,-37.5 + parent: 2 + - uid: 24998 components: - type: Transform - pos: 29.5,18.5 + pos: 65.5,-30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42374 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43026 + - uid: 24999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,5.5 + pos: 66.5,-30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43133 + - uid: 25000 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-105.5 + pos: 67.5,-30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 213 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43226 + - uid: 25001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-99.5 + pos: -12.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 213 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43234 + - uid: 25002 components: - type: Transform - pos: -7.5,-102.5 + pos: -17.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 213 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43687 + - uid: 25003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-69.5 + rot: 3.141592653589793 rad + pos: 64.5,-87.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 207 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 43702 + - uid: 25004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-72.5 + pos: -15.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 207 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 44115 + - uid: 25005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-6.5 + pos: -21.5,-67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 44123 + - uid: 25006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-9.5 + pos: -25.5,-57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 44127 + - uid: 25007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-10.5 + pos: -19.5,-67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 44139 + - uid: 25008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-4.5 + pos: -18.5,-68.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasVentScrubber - entities: - - uid: 208 + - uid: 25009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-76.5 + pos: 12.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 205 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 210 + - uid: 25010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-93.5 + rot: 3.141592653589793 rad + pos: 79.5,-68.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43741 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15837 + - uid: 25011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 104.5,-49.5 + rot: 3.141592653589793 rad + pos: 83.5,-68.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44200 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20763 + - uid: 25012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-100.5 + rot: 3.141592653589793 rad + pos: 47.5,-82.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43741 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21732 + - uid: 25013 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-88.5 + pos: 47.5,-81.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43741 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21733 + - uid: 25014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-101.5 + pos: 9.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43741 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22481 + - uid: 25015 components: - type: Transform - pos: 14.5,-94.5 + pos: 44.5,-70.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43741 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22482 + - uid: 25016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-87.5 + pos: 43.5,-70.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43741 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22520 + - uid: 25017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-104.5 + pos: -16.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 213 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23030 + - uid: 25018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-2.5 + pos: -18.5,-67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 23037 + - uid: 25019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-1.5 + rot: 3.141592653589793 rad + pos: 88.5,-63.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24467 + - uid: 25020 components: - type: Transform rot: 3.141592653589793 rad - pos: 102.5,-24.5 + pos: 64.5,-83.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 147 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24469 + - uid: 25021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-87.5 + rot: 3.141592653589793 rad + pos: 64.5,-84.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43741 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24594 + - uid: 25022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,11.5 + pos: -6.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 270 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24595 + - uid: 25023 components: - type: Transform - pos: 51.5,-9.5 + pos: 32.5,-68.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44112 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24596 + - uid: 25024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,10.5 + pos: -41.5,-74.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 269 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24597 + - uid: 25025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,14.5 + pos: -41.5,-72.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 258 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24598 + - uid: 25026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-5.5 + pos: -59.5,-88.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 282 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24599 + - uid: 25027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-20.5 + pos: -60.5,-92.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 265 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24600 + - uid: 25028 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,13.5 + pos: 74.5,-75.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 258 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24601 + - uid: 25029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-7.5 + pos: -41.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 150 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24602 + - uid: 25030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-21.5 + pos: -48.5,-45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 260 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24603 + - uid: 25031 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,-21.5 + pos: 67.5,-75.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 265 - - uid: 24604 + - uid: 25032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,4.5 + pos: -8.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 263 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24605 + - uid: 25033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-23.5 + pos: -11.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 264 - - 260 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24606 + - uid: 25034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-1.5 + pos: -10.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24607 + - uid: 25035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,6.5 + pos: -58.5,14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24608 + - uid: 25036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,1.5 + rot: 3.141592653589793 rad + pos: -64.5,13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24609 + - uid: 25037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-19.5 + rot: 3.141592653589793 rad + pos: -62.5,13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 260 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24610 + - uid: 25038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,0.5 + rot: 3.141592653589793 rad + pos: -75.5,16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24611 + - uid: 25039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,4.5 + pos: -27.5,-51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24612 + - uid: 25040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,3.5 + rot: 3.141592653589793 rad + pos: -41.5,-63.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24613 + - uid: 25041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-16.5 + rot: 3.141592653589793 rad + pos: 65.5,-75.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 267 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24614 + - uid: 25042 components: - type: Transform - pos: 63.5,-12.5 + rot: -1.5707963267948966 rad + pos: -72.5,-51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 266 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24615 + - uid: 25043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,3.5 + rot: -1.5707963267948966 rad + pos: -70.5,-51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 251 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24616 + - uid: 25044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,12.5 + pos: 2.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 250 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24617 + - uid: 25045 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-70.5 + pos: 2.5,7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24618 + - uid: 25046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-39.5 + pos: 2.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 255 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24619 + - uid: 25047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-32.5 + pos: 2.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 255 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24620 + - uid: 25048 components: - type: Transform - pos: -35.5,-79.5 + pos: 9.5,18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 199 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24621 + - uid: 25049 components: - type: Transform - pos: 40.5,-94.5 + pos: 10.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24623 + - uid: 25050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-39.5 + pos: 11.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24624 + - uid: 25051 components: - type: Transform - pos: 72.5,-32.5 + pos: 12.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24625 + - uid: 25052 components: - type: Transform - pos: -30.5,-32.5 + pos: 11.5,24.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24626 + - uid: 25053 components: - type: Transform - pos: 34.5,-32.5 + pos: 11.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24627 + - uid: 25054 components: - type: Transform - pos: 55.5,-82.5 + pos: 10.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24628 + - uid: 25055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-72.5 + pos: 10.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24629 + - uid: 25056 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-71.5 + pos: 8.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24630 + - uid: 25057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-56.5 + pos: 7.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24631 + - uid: 25058 components: - type: Transform - pos: 62.5,-57.5 + pos: 6.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24632 + - uid: 25059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-42.5 + pos: 6.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24633 + - uid: 25060 components: - type: Transform - pos: 50.5,-32.5 + pos: 5.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24634 + - uid: 25061 components: - type: Transform - pos: 64.5,-27.5 + pos: 4.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24635 + - uid: 25062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-27.5 + pos: 3.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24636 + - uid: 25063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-29.5 + pos: 3.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24637 + - uid: 25064 components: - type: Transform - pos: 107.5,-41.5 + pos: 2.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 292 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24638 + - uid: 25065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-36.5 + pos: 1.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24639 + - uid: 25066 components: - type: Transform - pos: 88.5,-20.5 + pos: 0.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24640 + - uid: 25067 components: - type: Transform - pos: 39.5,-32.5 + pos: -0.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24641 + - uid: 25068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-21.5 + pos: -1.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24642 + - uid: 25069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-7.5 + pos: -2.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24643 + - uid: 25070 components: - type: Transform - pos: 15.5,6.5 + pos: -2.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24644 + - uid: 25071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 + pos: -3.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24645 + - uid: 25072 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 + pos: -4.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24646 + - uid: 25073 components: - type: Transform - pos: 4.5,11.5 + pos: -5.5,27.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24647 + - uid: 25074 components: - type: Transform - pos: -2.5,8.5 + pos: -5.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24648 + - uid: 25075 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,0.5 + pos: -7.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24649 + - uid: 25076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,10.5 + pos: -8.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24650 + - uid: 25077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,14.5 + pos: -9.5,26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24651 + - uid: 25078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,14.5 + pos: -9.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24652 + - uid: 25079 components: - type: Transform - pos: -6.5,23.5 + pos: -10.5,25.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24653 + - uid: 25080 components: - type: Transform - pos: 7.5,23.5 + pos: -11.5,23.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24654 + - uid: 25081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,14.5 + pos: -21.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24655 + - uid: 25082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-48.5 + rot: -1.5707963267948966 rad + pos: 33.5,-101.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24656 + - uid: 25083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-61.5 + rot: -1.5707963267948966 rad + pos: 35.5,-98.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 206 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24657 + - uid: 25084 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-65.5 + pos: -40.5,-7.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24658 + - uid: 25085 components: - type: Transform - pos: 23.5,-70.5 + rot: 3.141592653589793 rad + pos: -56.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 205 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24659 + - uid: 25086 components: - type: Transform - pos: 5.5,-79.5 + pos: -55.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24660 + - uid: 25087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-80.5 + pos: -54.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24661 + - uid: 25088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-87.5 + pos: -53.5,-22.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24664 + - uid: 25089 components: - type: Transform - pos: 8.5,-75.5 + pos: -53.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 238 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24665 + - uid: 25090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-77.5 + pos: -54.5,-26.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24666 + - uid: 25091 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-82.5 + pos: -28.5,-49.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24667 + - uid: 25092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-87.5 + pos: -25.5,-64.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24668 + - uid: 25093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-93.5 + pos: -25.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24669 + - uid: 25094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-74.5 + pos: -25.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24670 + - uid: 25095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-61.5 + pos: -25.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24671 + - uid: 25096 components: - type: Transform - pos: -31.5,-41.5 + pos: -24.5,-64.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24672 + - uid: 25097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-19.5 + pos: -24.5,-65.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24673 + - uid: 25098 components: - type: Transform - pos: -18.5,-0.5 + pos: -25.5,-59.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24674 + - uid: 25099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-49.5 + pos: -25.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24675 + - uid: 25100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,10.5 + pos: -25.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24676 + - uid: 25101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,6.5 + pos: -25.5,-55.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24677 + - uid: 25102 components: - type: Transform - pos: -37.5,-46.5 + pos: -36.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24678 + - uid: 25103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-48.5 + pos: -53.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24679 + - uid: 25104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-52.5 + pos: -52.5,-4.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24680 + - uid: 25105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-59.5 + pos: -48.5,-3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24681 + - uid: 25106 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-60.5 + pos: -48.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24682 + - uid: 25107 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-65.5 + pos: -80.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24683 + - uid: 25108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-75.5 + rot: 3.141592653589793 rad + pos: -78.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24684 + - uid: 25109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-81.5 + rot: 3.141592653589793 rad + pos: -48.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24685 + - uid: 25110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-72.5 + rot: 3.141592653589793 rad + pos: -79.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24686 + - uid: 25111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-67.5 + rot: 3.141592653589793 rad + pos: -78.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24687 + - uid: 25112 components: - type: Transform - pos: -52.5,-59.5 + rot: 3.141592653589793 rad + pos: -80.5,-44.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24688 + - uid: 25113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-65.5 + rot: 3.141592653589793 rad + pos: -79.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24689 + - uid: 25114 components: - type: Transform - pos: -64.5,-65.5 + pos: -25.5,-62.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24690 + - uid: 25115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-66.5 + pos: -25.5,-51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24691 + - uid: 25116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-38.5 + pos: -23.5,-67.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24692 + - uid: 25117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-33.5 + pos: -24.5,-66.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24693 + - uid: 25118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-28.5 + pos: -28.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24694 + - uid: 25119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-19.5 + pos: -25.5,-52.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24695 + - uid: 25120 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-31.5 + pos: -26.5,-51.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24696 + - uid: 25121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-20.5 + pos: -22.5,-67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 171 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24697 + - uid: 25122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-6.5 + pos: -7.5,-69.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24698 + - uid: 25123 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,-11.5 + pos: 68.5,-34.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24699 + - uid: 25124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-43.5 + rot: 3.141592653589793 rad + pos: 69.5,-34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 236 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24700 + - uid: 25125 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,-43.5 + pos: 67.5,-34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 130 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24701 + - uid: 25126 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-43.5 + pos: 74.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24702 + - uid: 25127 components: - type: Transform rot: 3.141592653589793 rad - pos: -72.5,-50.5 + pos: 75.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24703 + - uid: 25128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-38.5 + rot: 3.141592653589793 rad + pos: 76.5,-30.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24704 + - uid: 25129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-37.5 + pos: 61.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24705 + - uid: 25130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-1.5 + pos: 39.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24711 + - uid: 25131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-87.5 + pos: 38.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24712 + - uid: 25132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-96.5 + pos: 37.5,-43.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24713 + - uid: 25133 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-74.5 + pos: -80.5,-36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 234 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24714 + - uid: 25134 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-12.5 + rot: 1.5707963267948966 rad + pos: 60.5,-59.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 252 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24715 + - uid: 25135 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-1.5 + pos: 18.5,-93.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 247 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24716 + - uid: 25136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-69.5 + rot: 1.5707963267948966 rad + pos: 46.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24717 + - uid: 25137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-34.5 + rot: -1.5707963267948966 rad + pos: 41.5,-104.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24718 + - uid: 25138 components: - type: Transform - pos: -46.5,-8.5 + rot: 1.5707963267948966 rad + pos: 18.5,-94.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 254 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24719 + - uid: 25139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-90.5 + pos: 50.5,-80.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24720 + - uid: 25140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-86.5 + pos: 61.5,-71.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24721 + - uid: 25141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 95.5,-78.5 + pos: 60.5,-71.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24722 + - uid: 25142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-78.5 + pos: 59.5,-71.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24723 + - uid: 25143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,-75.5 + pos: 57.5,-70.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24724 + - uid: 25144 components: - type: Transform - pos: 98.5,-70.5 + pos: 56.5,-70.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24725 + - uid: 25145 components: - type: Transform - pos: 97.5,-63.5 + pos: 55.5,-70.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24726 + - uid: 25146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.5,-71.5 + pos: 58.5,-75.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24727 + - uid: 25147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-71.5 + pos: 58.5,-76.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 294 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24728 + - uid: 25148 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-15.5 + pos: 33.5,-96.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 253 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24729 + - uid: 25149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-33.5 + pos: 48.5,-80.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24730 + - uid: 25150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,20.5 + rot: 1.5707963267948966 rad + pos: 33.5,-99.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 256 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24731 + - uid: 25151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,22.5 + pos: -28.5,-47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 256 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24732 + - uid: 25152 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-86.5 + pos: -28.5,-50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 184 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24733 + - uid: 25153 components: - type: Transform - pos: -7.5,4.5 + pos: 8.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24734 + - uid: 25154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-24.5 + pos: 11.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 264 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24735 + - uid: 25155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,9.5 + pos: 13.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 249 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24736 + - uid: 25156 components: - type: Transform - pos: 48.5,-14.5 + pos: 16.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 272 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24737 + - uid: 25157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-19.5 + pos: 17.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 281 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24738 + - uid: 25158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-10.5 + pos: 18.5,-69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 272 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24739 + - uid: 25159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-13.5 + pos: 19.5,-68.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 168 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24740 + - uid: 25160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-2.5 + pos: 19.5,-67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 285 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24741 + - uid: 25161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-70.5 + pos: 20.5,-67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 197 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24742 + - uid: 25162 components: - type: Transform - pos: 50.5,-3.5 + pos: 22.5,-67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 284 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24743 + - uid: 25163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-21.5 + pos: 23.5,-67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 171 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24744 + - uid: 25164 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,-1.5 + pos: 35.5,-95.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 287 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24745 + - uid: 25165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-12.5 + pos: 24.5,-67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24746 + - uid: 25166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-9.5 + pos: 25.5,-66.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24747 + - uid: 25167 components: - type: Transform - pos: 79.5,0.5 + rot: 1.5707963267948966 rad + pos: 18.5,-101.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 262 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24748 + - uid: 25168 components: - type: Transform - pos: 83.5,0.5 + rot: 1.5707963267948966 rad + pos: 18.5,-91.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 274 - - 259 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24749 + - uid: 25169 components: - type: Transform - pos: 87.5,0.5 + rot: 1.5707963267948966 rad + pos: 18.5,-92.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 259 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24750 + - uid: 25170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-3.5 + pos: 16.5,-95.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 290 - - 275 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24751 + - uid: 25171 components: - type: Transform - pos: 38.5,-24.5 + pos: 17.5,-101.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 271 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24752 + - uid: 25172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,2.5 + rot: 1.5707963267948966 rad + pos: 18.5,-95.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24753 + - uid: 25173 components: - type: Transform - pos: 75.5,5.5 + pos: 16.5,-101.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24754 + - uid: 25174 components: - type: Transform - pos: 79.5,4.5 + pos: 25.5,-65.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24755 + - uid: 25175 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-6.5 + pos: 26.5,-64.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 273 - - 19136 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24756 + - uid: 25176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 + pos: -3.5,-89.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 273 - - 19136 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24757 + - uid: 25177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 + pos: -3.5,-90.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 273 - - 19136 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24758 + - uid: 25178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-38.5 + pos: -3.5,-91.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 277 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24759 + - uid: 25182 components: - type: Transform - pos: 59.5,-55.5 + pos: -0.5,-92.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 139 - - 19137 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24760 + - uid: 25183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-39.5 + pos: 0.5,-92.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24761 + - uid: 25184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-40.5 + pos: 2.5,-78.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24762 + - uid: 25185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-39.5 + pos: 2.5,-79.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24763 + - uid: 25186 components: - type: Transform - pos: 1.5,-28.5 + pos: -1.5,-80.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24764 + - uid: 25187 components: - type: Transform - pos: -4.5,-23.5 + rot: 1.5707963267948966 rad + pos: 8.5,-83.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24765 + - uid: 25188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-22.5 + pos: 11.5,-85.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24766 + - uid: 25189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-28.5 + pos: 8.5,-81.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24767 + - uid: 25190 components: - type: Transform - pos: -3.5,-16.5 + pos: 26.5,-63.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24768 + - uid: 25193 components: - type: Transform - pos: -10.5,-16.5 + pos: -7.5,-82.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24769 + - uid: 25195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-19.5 + pos: 26.5,-62.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 278 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24770 + - uid: 25196 components: - type: Transform - pos: 16.5,-14.5 + pos: 26.5,-61.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24771 + - uid: 25197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-48.5 + rot: 3.141592653589793 rad + pos: 78.5,-76.5 parent: 2 - - uid: 24772 + - uid: 25198 components: - type: Transform - pos: 6.5,-47.5 + pos: 49.5,-80.5 parent: 2 - - uid: 24773 + - uid: 25199 components: - type: Transform - pos: 11.5,-58.5 + rot: -1.5707963267948966 rad + pos: -78.5,-46.5 parent: 2 - - uid: 24774 + - uid: 25200 components: - type: Transform - pos: -1.5,-56.5 + rot: -1.5707963267948966 rad + pos: -79.5,-46.5 parent: 2 - - uid: 24775 + - uid: 25201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-47.5 + rot: -1.5707963267948966 rad + pos: -80.5,-46.5 parent: 2 - - uid: 24776 + - uid: 25202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-47.5 + rot: -1.5707963267948966 rad + pos: -74.5,-51.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24777 + - uid: 25203 components: - type: Transform - pos: 9.5,-31.5 + rot: -1.5707963267948966 rad + pos: -76.5,-51.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24778 + - uid: 25204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-15.5 + rot: 3.141592653589793 rad + pos: -73.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24779 + - uid: 25205 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-40.5 + pos: -73.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24780 + - uid: 25206 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-34.5 + pos: -74.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24781 + - uid: 25207 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-53.5 + pos: -72.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24782 + - uid: 25208 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-38.5 + pos: -77.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24783 + - uid: 25209 components: - type: Transform - pos: 2.5,-20.5 + pos: -41.5,-68.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24784 + - uid: 25210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,6.5 + pos: -41.5,-67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 286 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24785 + - uid: 25211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,5.5 + pos: -47.5,-65.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 286 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24786 + - uid: 25212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 + pos: -45.5,-65.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 270 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24787 + - uid: 25213 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-8.5 + pos: -63.5,-67.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 288 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24788 + - uid: 25214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-8.5 + pos: -52.5,-63.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 289 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24789 + - uid: 25215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-1.5 + pos: -53.5,-63.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 289 - - 290 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24790 + - uid: 25216 components: - type: Transform - pos: 117.5,-39.5 + rot: 1.5707963267948966 rad + pos: -41.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 291 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24791 + - uid: 25217 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-42.5 + pos: -39.5,-45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 148 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24792 + - uid: 25218 components: - type: Transform - pos: 87.5,-40.5 + rot: 1.5707963267948966 rad + pos: -38.5,-45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 148 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24793 + - uid: 25219 components: - type: Transform rot: 1.5707963267948966 rad - pos: 111.5,-41.5 + pos: -37.5,-45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 291 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24794 + - uid: 25220 components: - type: Transform - pos: 128.5,-39.5 + rot: 1.5707963267948966 rad + pos: -38.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 291 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24795 + - uid: 25221 components: - type: Transform - pos: 7.5,4.5 + rot: 1.5707963267948966 rad + pos: -39.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24796 + - uid: 25222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-41.5 + parent: 2 + - uid: 25223 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-43.5 + pos: 68.5,-74.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24797 + - uid: 25224 components: - type: Transform - pos: 9.5,-36.5 + pos: -47.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24798 + - uid: 25225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-23.5 + pos: -46.5,-45.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24799 + - uid: 25226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-30.5 + pos: -45.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 278 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24800 + - uid: 25227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-15.5 + pos: -45.5,-47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 278 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24801 + - uid: 25228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-23.5 + pos: -45.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 278 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24802 + - uid: 25229 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-28.5 + pos: -67.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 278 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24803 + - uid: 25230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-24.5 + rot: 3.141592653589793 rad + pos: -65.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24804 + - uid: 25231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-49.5 + pos: -54.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24805 + - uid: 25232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 + pos: -54.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24806 + - uid: 25233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-23.5 + pos: -56.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 24807 + - uid: 25234 components: - type: Transform - pos: 30.5,6.5 + pos: -56.5,-56.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 247 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24808 + - uid: 25235 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,6.5 + pos: -66.5,-64.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 247 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24811 + - uid: 25236 components: - type: Transform - pos: 23.5,8.5 + pos: -41.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 251 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24812 + - uid: 25237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-7.5 + rot: 3.141592653589793 rad + pos: 78.5,-77.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 247 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24813 + - uid: 25238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,10.5 + rot: 3.141592653589793 rad + pos: 64.5,-88.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 248 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24814 + - uid: 25239 components: - type: Transform - pos: 28.5,14.5 + pos: 88.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 249 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24815 + - uid: 25240 components: - type: Transform - pos: 26.5,7.5 + pos: 26.5,-59.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 249 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24816 + - uid: 25241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-11.5 + pos: 26.5,-57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 150 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24817 + - uid: 25244 components: - type: Transform - pos: 44.5,7.5 + pos: 26.5,-56.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 283 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24818 + - uid: 25245 components: - type: Transform - pos: 14.5,14.5 + pos: 26.5,-55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 165 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24819 + - uid: 25246 components: - type: Transform - pos: 18.5,20.5 + pos: 26.5,-21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 298 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24820 + - uid: 25247 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,21.5 + pos: 26.5,-23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24821 + - uid: 25248 components: - type: Transform - pos: -1.5,24.5 + pos: 26.5,-22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24822 + - uid: 25249 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,18.5 + pos: 26.5,-24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - - 293 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24823 + - uid: 25250 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,18.5 + pos: 26.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 164 - - 293 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24824 + - uid: 25251 components: - type: Transform - pos: -48.5,-19.5 + pos: 23.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 173 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24825 + - uid: 25252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-25.5 + pos: 26.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 173 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24826 + - uid: 25253 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-43.5 + pos: 26.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 236 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24827 + - uid: 25254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-49.5 + pos: 26.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 299 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24828 + - uid: 25255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-50.5 + pos: 26.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 299 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24829 + - uid: 25256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-39.5 + pos: 26.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 175 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24830 + - uid: 25257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-40.5 + pos: 17.5,-95.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 175 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24831 + - uid: 25258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-43.5 + pos: 25.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 215 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24832 + - uid: 25259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-54.5 + pos: 25.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 195 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24833 + - uid: 25260 components: - type: Transform - pos: -15.5,-72.5 + pos: 25.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 197 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24834 + - uid: 25261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-25.5 + pos: 23.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 168 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24835 + - uid: 25262 components: - type: Transform - pos: -12.5,0.5 + pos: 23.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24836 + - uid: 25263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-5.5 + pos: 22.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 166 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24837 + - uid: 25264 components: - type: Transform - pos: 13.5,0.5 + pos: 22.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24838 + - uid: 25265 components: - type: Transform - pos: -16.5,5.5 + pos: 21.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 300 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24839 + - uid: 25266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,9.5 + pos: 21.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 300 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24840 + - uid: 25267 components: - type: Transform - pos: -20.5,7.5 + pos: 20.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 301 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25562 + - uid: 25268 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-79.5 + pos: 20.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43332 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26342 + - uid: 25269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-95.5 + pos: 24.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 213 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26538 + - uid: 25270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,10.5 + pos: 18.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 248 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 26540 + - uid: 25271 components: - type: Transform - pos: 36.5,15.5 + pos: 18.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 248 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31144 + - uid: 25272 components: - type: Transform - pos: 30.5,18.5 + pos: 17.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42374 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 36216 + - uid: 25273 components: - type: Transform - pos: 108.5,-19.5 + pos: 16.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 147 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 39470 + - uid: 25274 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-41.5 + pos: 15.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 277 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40743 + - uid: 25275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 40666 - - type: DeviceNetwork - deviceLists: - - 40667 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40744 + pos: 14.5,-2.5 + parent: 2 + - uid: 25276 components: - type: Transform - pos: 0.5,4.5 - parent: 40666 - - type: DeviceNetwork - deviceLists: - - 40667 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41244 + pos: 13.5,-2.5 + parent: 2 + - uid: 25278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40832 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41245 + pos: -11.5,-2.5 + parent: 2 + - uid: 25279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40833 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41246 + pos: -12.5,-2.5 + parent: 2 + - uid: 25280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40831 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41247 + pos: -13.5,-2.5 + parent: 2 + - uid: 25281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40830 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 40828 - - type: DeviceNetwork - deviceLists: - - 40829 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41820 + pos: -14.5,-2.5 + parent: 2 + - uid: 25282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41821 + pos: -19.5,-4.5 + parent: 2 + - uid: 25283 components: - type: Transform - pos: 5.5,1.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41822 + pos: -16.5,-3.5 + parent: 2 + - uid: 25284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41823 + pos: -16.5,-3.5 + parent: 2 + - uid: 25285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 41669 - - type: DeviceNetwork - deviceLists: - - 41670 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 42053 + pos: -17.5,-3.5 + parent: 2 + - uid: 25286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-2.5 + pos: -17.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 156 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43027 + - uid: 25287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,3.5 + pos: -19.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 276 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43152 + - uid: 25288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-102.5 + pos: -20.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 213 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43258 + - uid: 25289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-98.5 + pos: -20.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 213 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43295 + - uid: 25290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-106.5 + pos: -21.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 213 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43683 + - uid: 25291 components: - type: Transform - pos: 36.5,-57.5 + pos: -21.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 207 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43688 + - uid: 25292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-69.5 + pos: -22.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 207 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43701 + - uid: 25293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-72.5 + pos: -22.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 207 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43717 + - uid: 25294 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-82.5 + pos: -23.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 20495 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 44114 + - uid: 25295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-4.5 + pos: -24.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 44128 + - uid: 25296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-7.5 + pos: -24.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 44136 + - uid: 25297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-12.5 + pos: -24.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 44140 + - uid: 25298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-9.5 + pos: -23.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 275 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasVolumePump - entities: - - uid: 18965 + - uid: 25299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-86.5 + pos: -25.5,-32.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24841 + - uid: 25300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-89.5 + pos: -25.5,-13.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 24842 + - uid: 25301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-90.5 + pos: -25.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#FEF101FF' - - uid: 24843 + - uid: 25302 components: - type: Transform - pos: 98.5,-84.5 + pos: -25.5,-15.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24844 + - uid: 25303 components: - type: Transform - pos: 100.5,-83.5 + pos: -25.5,-16.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: Gateway - entities: - - uid: 24845 + - uid: 25304 components: - type: Transform - pos: 22.5,-22.5 + pos: -10.5,24.5 parent: 2 - - type: Gateway - enabled: True -- proto: Gauze - entities: - - uid: 2523 + - uid: 25305 components: - type: Transform - parent: 2520 - - type: Physics - canCollide: False - - uid: 2530 + pos: -25.5,-17.5 + parent: 2 + - uid: 25306 components: - type: Transform - parent: 2527 - - type: Physics - canCollide: False - - uid: 2537 + rot: -1.5707963267948966 rad + pos: 33.5,-95.5 + parent: 2 + - uid: 25307 components: - type: Transform - parent: 2534 - - type: Physics - canCollide: False - - uid: 18699 + rot: -1.5707963267948966 rad + pos: 33.5,-102.5 + parent: 2 + - uid: 25308 components: - type: Transform - parent: 18698 - - type: Physics - canCollide: False - - uid: 24846 + pos: -25.5,-34.5 + parent: 2 + - uid: 25309 components: - type: Transform - pos: 16.452196,-19.400105 + rot: -1.5707963267948966 rad + pos: 35.5,-102.5 parent: 2 -- proto: GeigerCounter - entities: - - uid: 24847 + - uid: 25310 components: - type: Transform - pos: 78.38674,-49.55499 + rot: -1.5707963267948966 rad + pos: 33.5,-92.5 parent: 2 -- proto: GeneratorBasic - entities: - - uid: 24848 + - uid: 25311 components: - type: Transform - pos: 98.5,-61.5 + pos: -25.5,-31.5 parent: 2 -- proto: GeneratorRTG - entities: - - uid: 24849 + - uid: 25312 components: - type: Transform - pos: 99.5,-61.5 + rot: -1.5707963267948966 rad + pos: 35.5,-101.5 parent: 2 - - uid: 24850 + - uid: 25313 components: - type: Transform - pos: 97.5,-61.5 + rot: -1.5707963267948966 rad + pos: 33.5,-89.5 parent: 2 - - uid: 24851 + - uid: 25314 components: - type: Transform - pos: -48.5,-74.5 + rot: -1.5707963267948966 rad + pos: 33.5,-98.5 parent: 2 - - uid: 24852 + - uid: 25315 components: - type: Transform - pos: -6.5,-46.5 + pos: -6.5,26.5 parent: 2 -- proto: GeneratorRTGDamaged - entities: - - uid: 24853 + - uid: 25316 components: - type: Transform - pos: -7.5,-46.5 + pos: -25.5,-28.5 parent: 2 - - uid: 24854 + - uid: 25317 components: - type: Transform - pos: -8.5,-46.5 + pos: -25.5,-29.5 parent: 2 -- proto: GeneratorWallmountAPU - entities: - - uid: 40745 + - uid: 25318 components: - type: Transform - pos: -2.5,-0.5 - parent: 40666 - - type: PowerSupplier - supplyRampRate: 1000 - supplyRampTolerance: 1000 - supplyRate: 12000 - - uid: 41249 + pos: -25.5,-30.5 + parent: 2 + - uid: 25319 components: - type: Transform - pos: 2.5,-11.5 - parent: 40828 - - uid: 41250 + pos: -38.5,-60.5 + parent: 2 + - uid: 25320 components: - type: Transform - pos: 2.5,-12.5 - parent: 40828 - - uid: 41251 + pos: -39.5,-60.5 + parent: 2 + - uid: 25321 components: - type: Transform - pos: -1.5,-11.5 - parent: 40828 - - uid: 41824 + pos: -40.5,-60.5 + parent: 2 + - uid: 25322 components: - type: Transform - pos: 7.5,-7.5 - parent: 41669 - - uid: 41825 + pos: -41.5,-65.5 + parent: 2 + - uid: 25323 components: - type: Transform - pos: 1.5,-7.5 - parent: 41669 - - uid: 41826 + pos: -39.5,-56.5 + parent: 2 + - uid: 25324 components: - type: Transform - pos: 5.5,-9.5 - parent: 41669 -- proto: GenericTank - entities: - - uid: 59 + pos: -41.5,-54.5 + parent: 2 + - uid: 25325 components: - - type: MetaData - name: резервуар космического очистителя - type: Transform - pos: -0.49263692,-53.470585 + pos: -41.5,-53.5 parent: 2 - - type: SolutionContainerManager - solutions: null - containers: - - tank - - type: Pullable - prevFixedRotation: True - - type: ContainerContainer - containers: - solution@tank: !type:ContainerSlot - ent: 60 - - uid: 24855 + - uid: 25326 components: - type: Transform - pos: 17.5,-83.5 + pos: -41.5,-52.5 parent: 2 - - uid: 24856 + - uid: 25327 components: - type: Transform - pos: -11.5,-96.5 + pos: -39.5,-21.5 parent: 2 - - uid: 24857 + - uid: 25328 components: - type: Transform - pos: -42.5,-107.5 + pos: 93.5,-37.5 parent: 2 - - uid: 24858 + - uid: 25329 components: - type: Transform - pos: -8.5,-48.5 + pos: 94.5,-37.5 parent: 2 -- proto: Girder - entities: - - uid: 19614 + - uid: 25330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,21.5 + pos: 95.5,-37.5 parent: 2 - - uid: 24859 + - uid: 25331 components: - type: Transform - pos: -59.5,-16.5 + pos: 96.5,-37.5 parent: 2 - - uid: 24860 + - uid: 25332 components: - type: Transform - pos: -12.5,-26.5 + pos: 84.5,-35.5 parent: 2 - - uid: 24861 + - uid: 25333 components: - type: Transform - pos: -67.5,6.5 + pos: -25.5,-26.5 parent: 2 - - uid: 24862 + - uid: 25334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-46.5 + pos: 93.5,-25.5 parent: 2 - - uid: 24863 + - uid: 25335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-91.5 + pos: 94.5,-25.5 parent: 2 - - uid: 24864 + - uid: 25336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-51.5 + pos: 95.5,-25.5 parent: 2 - - uid: 24865 + - uid: 25337 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-45.5 + pos: 96.5,-25.5 parent: 2 - - uid: 24866 + - uid: 25338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-77.5 + pos: 96.5,-19.5 parent: 2 - - uid: 24868 + - uid: 25339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-61.5 + pos: 95.5,-19.5 parent: 2 - - uid: 24869 + - uid: 25340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-81.5 + pos: 94.5,-19.5 parent: 2 - - uid: 24870 + - uid: 25341 components: - type: Transform - pos: -43.5,-95.5 + pos: 93.5,-19.5 parent: 2 - - uid: 24871 + - uid: 25342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-34.5 + pos: 84.5,-34.5 parent: 2 - - uid: 24872 + - uid: 25343 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-32.5 + pos: 84.5,-33.5 parent: 2 - - uid: 24873 + - uid: 25344 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-25.5 + pos: 84.5,-32.5 parent: 2 - - uid: 24874 + - uid: 25345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,7.5 + pos: 84.5,-30.5 parent: 2 - - uid: 24875 + - uid: 25346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,9.5 + pos: 84.5,-29.5 parent: 2 - - uid: 24876 + - uid: 25347 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,14.5 + pos: 84.5,-28.5 parent: 2 - - uid: 24877 + - uid: 25348 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,15.5 + pos: 84.5,-27.5 parent: 2 - - uid: 24878 + - uid: 25349 components: - type: Transform - pos: -65.5,-15.5 + pos: 87.5,-37.5 parent: 2 - - uid: 24879 + - uid: 25350 components: - type: Transform - pos: -22.5,16.5 + pos: 88.5,-37.5 parent: 2 - - uid: 24880 + - uid: 25351 components: - type: Transform - pos: -18.5,14.5 + pos: -25.5,-22.5 parent: 2 - - uid: 24881 + - uid: 25352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-118.5 + pos: 100.5,-37.5 parent: 2 - - uid: 24882 + - uid: 25353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-122.5 + pos: 101.5,-37.5 parent: 2 - - uid: 24883 + - uid: 25354 components: - type: Transform - pos: -42.5,-120.5 + pos: 102.5,-37.5 parent: 2 - - uid: 24884 + - uid: 25355 components: - type: Transform - pos: -57.5,-76.5 + pos: 88.5,-25.5 parent: 2 - - uid: 24885 + - uid: 25356 components: - type: Transform - pos: 108.5,-46.5 + pos: 87.5,-25.5 parent: 2 - - uid: 24886 + - uid: 25357 components: - type: Transform - pos: 92.5,-46.5 + pos: 86.5,-25.5 parent: 2 - - uid: 24887 + - uid: 25358 components: - type: Transform - pos: 75.5,-45.5 + pos: 86.5,-19.5 parent: 2 - - uid: 24888 + - uid: 25359 components: - type: Transform - pos: -45.5,-106.5 + pos: 87.5,-19.5 parent: 2 - - uid: 24889 + - uid: 25360 components: - type: Transform - pos: -39.5,-107.5 + pos: 88.5,-19.5 parent: 2 - - uid: 24890 + - uid: 25361 components: - type: Transform - pos: -28.5,-109.5 + pos: 100.5,-25.5 parent: 2 - - uid: 24891 + - uid: 25362 components: - type: Transform - pos: -49.5,-119.5 + pos: 101.5,-25.5 parent: 2 - - uid: 24892 + - uid: 25363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-21.5 + pos: 102.5,-25.5 parent: 2 - - uid: 24893 + - uid: 25364 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-21.5 + pos: 102.5,-19.5 parent: 2 - - uid: 24894 + - uid: 25365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,28.5 + pos: 101.5,-19.5 parent: 2 - - uid: 24895 + - uid: 25366 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-4.5 + pos: 100.5,-19.5 parent: 2 - - uid: 24896 + - uid: 25367 components: - type: Transform - pos: -47.5,1.5 + pos: -25.5,-19.5 parent: 2 - - uid: 38989 + - uid: 25368 components: - type: Transform - pos: 26.5,25.5 + pos: 30.5,-48.5 parent: 2 - - uid: 42303 + - uid: 25369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-49.5 + pos: 30.5,-49.5 parent: 2 - - uid: 44234 + - uid: 25370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-57.5 + pos: 30.5,-50.5 parent: 2 - - uid: 44235 + - uid: 25371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-57.5 + pos: 24.5,-68.5 parent: 2 -- proto: GlassBoxBroken - entities: - - uid: 24897 + - uid: 25372 components: - type: Transform - pos: 14.5,-23.5 + pos: 27.5,-54.5 parent: 2 -- proto: GlassBoxLaserFilled - entities: - - uid: 29820 + - uid: 25373 components: - type: Transform - pos: 17.5,16.5 + pos: 27.5,-55.5 parent: 2 -- proto: GlowstickBase - entities: - - uid: 24898 + - uid: 25374 components: - type: Transform - pos: -46.635826,-97.712006 + pos: 27.5,-56.5 parent: 2 - - uid: 24899 + - uid: 25375 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.455772,-103.54919 + pos: 27.5,-57.5 parent: 2 - - uid: 24900 + - uid: 25376 components: - type: Transform - pos: -76.321335,-9.98569 + pos: 27.5,-61.5 parent: 2 - - uid: 24901 + - uid: 25377 components: - type: Transform - pos: -74.14946,-7.76694 + pos: 27.5,-62.5 parent: 2 -- proto: GlowstickBlue - entities: - - uid: 24902 + - uid: 25378 components: - type: Transform - pos: -47.2452,-100.72763 + pos: 27.5,-63.5 parent: 2 -- proto: GlowstickPurple - entities: - - uid: 24903 + - uid: 25379 components: - type: Transform - pos: -45.542076,-103.274506 + pos: 27.5,-64.5 parent: 2 -- proto: GlowstickRed - entities: - - uid: 24904 + - uid: 25380 components: - type: Transform - pos: -49.667076,-97.555756 + pos: 23.5,-68.5 parent: 2 -- proto: GoldRingDiamond - entities: - - uid: 24906 + - uid: 25381 components: - type: Transform - pos: -6.2808795,-8.315094 + pos: 22.5,-68.5 parent: 2 -- proto: GoldRingGem - entities: - - uid: 24907 + - uid: 25382 components: - type: Transform - pos: -6.3746295,-8.471344 + pos: 18.5,-70.5 parent: 2 -- proto: GravityGenerator - entities: - - uid: 24908 + - uid: 25383 components: - type: Transform - pos: 27.5,-42.5 + pos: 17.5,-70.5 parent: 2 -- proto: GravityGeneratorMini - entities: - - uid: 40746 + - uid: 25384 components: - type: Transform - pos: -0.5,-0.5 - parent: 40666 - - uid: 41252 + pos: 16.5,-70.5 + parent: 2 + - uid: 25385 components: - type: Transform - pos: 1.5,-12.5 - parent: 40828 - - uid: 41827 + pos: 13.5,-70.5 + parent: 2 + - uid: 25386 components: - type: Transform - pos: 1.5,-9.5 - parent: 41669 -- proto: GrenadeBaton - entities: - - uid: 24909 + pos: 12.5,-70.5 + parent: 2 + - uid: 25387 components: - type: Transform - pos: 12.37467,-16.41426 + pos: 11.5,-70.5 parent: 2 - - uid: 24910 + - uid: 25388 components: - type: Transform - pos: 12.640295,-16.304886 + pos: -10.5,-70.5 parent: 2 -- proto: GrenadeFoamDart - entities: - - uid: 24911 + - uid: 25389 components: - type: Transform - pos: 8.747442,-16.62456 + pos: -11.5,-70.5 parent: 2 -- proto: GrenadeFrag - entities: - - uid: 24912 + - uid: 25390 components: - type: Transform - pos: 8.300089,-15.383011 + pos: -12.5,-70.5 parent: 2 - - uid: 24913 + - uid: 25391 components: - type: Transform - pos: 8.503214,-15.289261 + pos: -15.5,-70.5 parent: 2 -- proto: GrenadeIncendiary - entities: - - uid: 16302 + - uid: 25392 components: - type: Transform - parent: 16300 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40867 + pos: -16.5,-70.5 + parent: 2 + - uid: 25393 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40868 + pos: -17.5,-70.5 + parent: 2 + - uid: 25394 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40869 + pos: -21.5,-68.5 + parent: 2 + - uid: 25395 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: GrenadeShrapnel - entities: - - uid: 16303 + pos: -22.5,-68.5 + parent: 2 + - uid: 25396 components: - type: Transform - parent: 16300 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40870 + pos: -23.5,-68.5 + parent: 2 + - uid: 25397 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40871 + pos: -26.5,-64.5 + parent: 2 + - uid: 25398 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40872 + pos: -26.5,-63.5 + parent: 2 + - uid: 25399 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: GrenadeStinger - entities: - - uid: 16304 + pos: -26.5,-62.5 + parent: 2 + - uid: 25400 components: - type: Transform - parent: 16300 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40873 + pos: -26.5,-61.5 + parent: 2 + - uid: 25401 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40874 + pos: -26.5,-57.5 + parent: 2 + - uid: 25402 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40875 + pos: -26.5,-56.5 + parent: 2 + - uid: 25403 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40876 + pos: -26.5,-55.5 + parent: 2 + - uid: 25404 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40877 + pos: -26.5,-54.5 + parent: 2 + - uid: 25405 components: - type: Transform - parent: 40864 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Grille - entities: - - uid: 2002 + pos: -29.5,-50.5 + parent: 2 + - uid: 25406 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-77.5 + pos: -29.5,-49.5 parent: 2 - - uid: 13959 + - uid: 25407 components: - type: Transform - pos: -58.5,-79.5 + pos: -29.5,-48.5 parent: 2 - - uid: 18968 + - uid: 25408 components: - type: Transform - pos: -5.5,-79.5 + pos: -29.5,-47.5 parent: 2 - - uid: 24914 + - uid: 25409 components: - type: Transform - pos: 51.5,-6.5 + pos: -29.5,-46.5 parent: 2 - - uid: 24915 + - uid: 25410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,9.5 + pos: -29.5,-40.5 parent: 2 - - uid: 24916 + - uid: 25411 components: - type: Transform - pos: 45.5,-3.5 + pos: -29.5,-39.5 parent: 2 - - uid: 24917 + - uid: 25412 components: - type: Transform - pos: 41.5,4.5 + pos: -29.5,-38.5 parent: 2 - - uid: 24918 + - uid: 25413 components: - type: Transform - pos: 45.5,7.5 + pos: -29.5,-37.5 parent: 2 - - uid: 24919 + - uid: 25414 components: - type: Transform - pos: 45.5,3.5 + pos: -29.5,-36.5 parent: 2 - - uid: 24920 + - uid: 25415 components: - type: Transform - pos: 56.5,2.5 + pos: -26.5,-32.5 parent: 2 - - uid: 24921 + - uid: 25416 components: - type: Transform - pos: 58.5,-6.5 + pos: -26.5,-31.5 parent: 2 - - uid: 24922 + - uid: 25417 components: - type: Transform - pos: 56.5,-6.5 + pos: -26.5,-30.5 parent: 2 - - uid: 24923 + - uid: 25418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-19.5 + pos: -26.5,-29.5 parent: 2 - - uid: 24924 + - uid: 25419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-16.5 + pos: -26.5,-28.5 parent: 2 - - uid: 24925 + - uid: 25420 components: - type: Transform - pos: 41.5,1.5 + pos: -26.5,-24.5 parent: 2 - - uid: 24926 + - uid: 25421 components: - type: Transform - pos: 45.5,0.5 + pos: -26.5,-23.5 parent: 2 - - uid: 24927 + - uid: 25422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-18.5 + pos: -26.5,-22.5 parent: 2 - - uid: 24928 + - uid: 25423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,21.5 + pos: -26.5,-21.5 parent: 2 - - uid: 24929 + - uid: 25424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-24.5 + pos: -26.5,-17.5 parent: 2 - - uid: 24930 + - uid: 25425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-22.5 + pos: -26.5,-16.5 parent: 2 - - uid: 24931 + - uid: 25426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,16.5 + pos: -26.5,-15.5 parent: 2 - - uid: 24932 + - uid: 25427 components: - type: Transform - pos: 42.5,-26.5 + pos: -26.5,-14.5 parent: 2 - - uid: 24933 + - uid: 25428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-16.5 + pos: -26.5,-13.5 parent: 2 - - uid: 24934 + - uid: 25429 components: - type: Transform - pos: 11.5,-112.5 + pos: -24.5,-8.5 parent: 2 - - uid: 24935 + - uid: 25430 components: - type: Transform - pos: -15.5,-10.5 + pos: -24.5,-7.5 parent: 2 - - uid: 24936 + - uid: 25431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-17.5 + pos: -23.5,-7.5 parent: 2 - - uid: 24937 + - uid: 25432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-8.5 + pos: -23.5,-6.5 parent: 2 - - uid: 24938 + - uid: 25433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-10.5 + pos: -22.5,-6.5 parent: 2 - - uid: 24939 + - uid: 25434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,16.5 + pos: -22.5,-5.5 parent: 2 - - uid: 24940 + - uid: 25435 components: - type: Transform - pos: 74.5,-8.5 + pos: -21.5,-5.5 parent: 2 - - uid: 24941 + - uid: 25436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,37.5 + pos: 12.5,-1.5 parent: 2 - - uid: 24942 + - uid: 25437 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,34.5 + pos: -21.5,-4.5 parent: 2 - - uid: 24943 + - uid: 25438 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-61.5 + pos: -20.5,-4.5 parent: 2 - - uid: 24944 + - uid: 25439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-71.5 + pos: -20.5,-3.5 parent: 2 - - uid: 24945 + - uid: 25440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-92.5 + pos: -19.5,-3.5 parent: 2 - - uid: 24946 + - uid: 25441 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-62.5 + pos: -14.5,-1.5 parent: 2 - - uid: 24947 + - uid: 25442 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-14.5 + pos: -13.5,-1.5 parent: 2 - - uid: 24948 + - uid: 25443 components: - type: Transform - pos: -69.5,-72.5 + pos: -12.5,-1.5 parent: 2 - - uid: 24950 + - uid: 25444 components: - type: Transform - pos: 66.5,-67.5 + pos: -11.5,-1.5 parent: 2 - - uid: 24951 + - uid: 25445 components: - type: Transform - pos: 66.5,-69.5 + pos: 13.5,-1.5 parent: 2 - - uid: 24952 + - uid: 25446 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,39.5 + pos: 14.5,-1.5 parent: 2 - - uid: 24955 + - uid: 25447 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-47.5 + pos: 15.5,-1.5 parent: 2 - - uid: 24956 + - uid: 25448 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-60.5 + pos: 27.5,-21.5 parent: 2 - - uid: 24957 + - uid: 25449 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-48.5 + pos: 20.5,-3.5 parent: 2 - - uid: 24958 + - uid: 25450 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-46.5 + pos: 21.5,-3.5 parent: 2 - - uid: 24959 + - uid: 25451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-75.5 + pos: 21.5,-4.5 parent: 2 - - uid: 24960 + - uid: 25452 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-46.5 + pos: 22.5,-4.5 parent: 2 - - uid: 24961 + - uid: 25453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-62.5 + pos: 22.5,-5.5 parent: 2 - - uid: 24962 + - uid: 25454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-63.5 + pos: 23.5,-5.5 parent: 2 - - uid: 24963 + - uid: 25455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-79.5 + pos: 23.5,-6.5 parent: 2 - - uid: 24964 + - uid: 25456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-81.5 + pos: 24.5,-6.5 parent: 2 - - uid: 24965 + - uid: 25457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-81.5 + pos: 24.5,-7.5 parent: 2 - - uid: 24966 + - uid: 25458 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-78.5 + pos: 25.5,-7.5 parent: 2 - - uid: 24967 + - uid: 25459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-103.5 + pos: 25.5,-8.5 parent: 2 - - uid: 24968 + - uid: 25460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-5.5 + pos: 27.5,-13.5 parent: 2 - - uid: 24969 + - uid: 25461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-58.5 + pos: 27.5,-14.5 parent: 2 - - uid: 24970 + - uid: 25462 components: - type: Transform - pos: 12.5,27.5 + pos: 27.5,-15.5 parent: 2 - - uid: 24971 + - uid: 25463 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-77.5 + pos: 27.5,-16.5 parent: 2 - - uid: 24972 + - uid: 25464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-59.5 + pos: 27.5,-17.5 parent: 2 - - uid: 24973 + - uid: 25465 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-3.5 + pos: 27.5,-22.5 parent: 2 - - uid: 24974 + - uid: 25466 components: - type: Transform - pos: -33.5,-81.5 + pos: 27.5,-23.5 parent: 2 - - uid: 24975 + - uid: 25467 components: - type: Transform - pos: -69.5,-74.5 + pos: 27.5,-24.5 parent: 2 - - uid: 24976 + - uid: 25471 components: - type: Transform - pos: -50.5,-70.5 + pos: 57.5,-34.5 parent: 2 - - uid: 24977 + - uid: 25472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 111.5,-58.5 + pos: 56.5,-34.5 parent: 2 - - uid: 24978 + - uid: 25473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,39.5 + pos: 55.5,-34.5 parent: 2 - - uid: 24979 + - uid: 25474 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,39.5 + pos: 51.5,-34.5 parent: 2 - - uid: 24980 + - uid: 25475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-88.5 + pos: 50.5,-34.5 parent: 2 - - uid: 24981 + - uid: 25476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-100.5 + pos: 49.5,-34.5 parent: 2 - - uid: 24982 + - uid: 25477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-98.5 + pos: 46.5,-35.5 parent: 2 - - uid: 24983 + - uid: 25478 components: - type: Transform - pos: -49.5,-70.5 + pos: 46.5,-36.5 parent: 2 - - uid: 24984 + - uid: 25479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-87.5 + pos: 46.5,-37.5 parent: 2 - - uid: 24985 + - uid: 25480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-87.5 + pos: 46.5,-40.5 parent: 2 - - uid: 24986 + - uid: 25481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-88.5 + pos: 46.5,-41.5 parent: 2 - - uid: 24987 + - uid: 25482 components: - type: Transform - pos: -2.5,7.5 + pos: 46.5,-42.5 parent: 2 - - uid: 24988 + - uid: 25483 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,7.5 + pos: -73.5,-60.5 parent: 2 - - uid: 24989 + - uid: 25484 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,7.5 + pos: -74.5,-60.5 parent: 2 - - uid: 24990 + - uid: 25485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,20.5 + pos: -72.5,-60.5 parent: 2 - - uid: 24991 + - uid: 25486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,18.5 + pos: -71.5,-60.5 parent: 2 - - uid: 24992 + - uid: 25487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,26.5 + pos: -70.5,-60.5 parent: 2 - - uid: 24993 + - uid: 25488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-90.5 + pos: -77.5,-63.5 parent: 2 - - uid: 24994 + - uid: 25489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-86.5 + pos: -77.5,-64.5 parent: 2 - - uid: 24995 + - uid: 25490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-63.5 + pos: -77.5,-65.5 parent: 2 - - uid: 24996 + - uid: 25491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-63.5 + pos: -77.5,-66.5 parent: 2 - - uid: 24997 + - uid: 25492 components: - type: Transform - pos: 86.5,-37.5 + pos: -77.5,-67.5 parent: 2 - - uid: 24998 + - uid: 25493 components: - type: Transform - pos: 65.5,-30.5 + pos: -74.5,-70.5 parent: 2 - - uid: 24999 + - uid: 25494 components: - type: Transform - pos: 66.5,-30.5 + pos: -73.5,-70.5 parent: 2 - - uid: 25000 + - uid: 25495 components: - type: Transform - pos: 67.5,-30.5 + pos: -72.5,-70.5 parent: 2 - - uid: 25001 + - uid: 25496 components: - type: Transform - pos: -12.5,-69.5 + pos: -71.5,-70.5 parent: 2 - - uid: 25002 + - uid: 25497 components: - type: Transform - pos: -17.5,-69.5 + pos: -70.5,-70.5 parent: 2 - - uid: 25003 + - uid: 25498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-87.5 + pos: 44.5,-86.5 parent: 2 - - uid: 25004 + - uid: 25499 components: - type: Transform - pos: -15.5,-69.5 + pos: 44.5,-87.5 parent: 2 - - uid: 25005 + - uid: 25500 components: - type: Transform - pos: -21.5,-67.5 + rot: -1.5707963267948966 rad + pos: 49.5,-49.5 parent: 2 - - uid: 25006 + - uid: 25501 components: - type: Transform - pos: -25.5,-57.5 + rot: -1.5707963267948966 rad + pos: 50.5,-49.5 parent: 2 - - uid: 25007 + - uid: 25502 components: - type: Transform - pos: -19.5,-67.5 + rot: -1.5707963267948966 rad + pos: 43.5,-104.5 parent: 2 - - uid: 25008 + - uid: 25503 components: - type: Transform - pos: -18.5,-68.5 + rot: 3.141592653589793 rad + pos: 44.5,-106.5 parent: 2 - - uid: 25009 + - uid: 25504 components: - type: Transform - pos: 12.5,-69.5 + pos: -25.5,-21.5 parent: 2 - - uid: 25010 + - uid: 25505 components: - type: Transform rot: 3.141592653589793 rad - pos: 79.5,-68.5 + pos: 40.5,-106.5 parent: 2 - - uid: 25011 + - uid: 25506 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,-68.5 + pos: 37.5,-106.5 parent: 2 - - uid: 25012 + - uid: 25507 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-82.5 + pos: 36.5,-106.5 parent: 2 - - uid: 25013 + - uid: 25508 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-81.5 + pos: 43.5,-106.5 parent: 2 - - uid: 25014 + - uid: 25509 components: - type: Transform - pos: 9.5,-69.5 + rot: -1.5707963267948966 rad + pos: -40.5,-50.5 parent: 2 - - uid: 25015 + - uid: 25510 components: - type: Transform - pos: 44.5,-70.5 + rot: -1.5707963267948966 rad + pos: -39.5,-50.5 parent: 2 - - uid: 25016 + - uid: 25511 components: - type: Transform - pos: 43.5,-70.5 + rot: -1.5707963267948966 rad + pos: -38.5,-50.5 parent: 2 - - uid: 25017 + - uid: 25512 components: - type: Transform - pos: -16.5,-69.5 + pos: -25.5,-23.5 parent: 2 - - uid: 25018 + - uid: 25513 components: - type: Transform - pos: -18.5,-67.5 + rot: -1.5707963267948966 rad + pos: 33.5,-86.5 parent: 2 - - uid: 25019 + - uid: 25514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-63.5 + pos: -25.5,-24.5 parent: 2 - - uid: 25020 + - uid: 25515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-83.5 + pos: -28.5,-46.5 parent: 2 - - uid: 25021 + - uid: 25516 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,-84.5 + pos: 42.5,-106.5 parent: 2 - - uid: 25022 + - uid: 25517 components: - type: Transform - pos: -6.5,2.5 + rot: 3.141592653589793 rad + pos: 38.5,-106.5 parent: 2 - - uid: 25023 + - uid: 25518 components: - type: Transform - pos: 32.5,-68.5 + rot: 3.141592653589793 rad + pos: 41.5,-106.5 parent: 2 - - uid: 25024 + - uid: 25519 components: - type: Transform - pos: -41.5,-74.5 + pos: -26.5,-35.5 parent: 2 - - uid: 25025 + - uid: 25520 components: - type: Transform - pos: -41.5,-72.5 + pos: -27.5,-35.5 parent: 2 - - uid: 25026 + - uid: 25521 components: - type: Transform - pos: -59.5,-88.5 + rot: -1.5707963267948966 rad + pos: 35.5,-89.5 parent: 2 - - uid: 25027 + - uid: 25522 components: - type: Transform - pos: -60.5,-92.5 + pos: -28.5,-36.5 parent: 2 - - uid: 25028 + - uid: 25523 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-75.5 + rot: -1.5707963267948966 rad + pos: 35.5,-92.5 parent: 2 - - uid: 25029 + - uid: 25524 components: - type: Transform - pos: -41.5,-69.5 + pos: 35.5,-97.5 parent: 2 - - uid: 25030 + - uid: 25525 components: - type: Transform - pos: -48.5,-45.5 + pos: -28.5,-37.5 parent: 2 - - uid: 25031 + - uid: 25526 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-75.5 + pos: 26.5,-54.5 parent: 2 - - uid: 25032 + - uid: 25527 components: - type: Transform - pos: -8.5,-69.5 + rot: -1.5707963267948966 rad + pos: 44.5,-104.5 parent: 2 - - uid: 25033 + - uid: 25528 components: - type: Transform - pos: -11.5,-69.5 + rot: -1.5707963267948966 rad + pos: 42.5,-104.5 parent: 2 - - uid: 25034 + - uid: 25529 components: - type: Transform - pos: -10.5,-69.5 + rot: -1.5707963267948966 rad + pos: 38.5,-104.5 parent: 2 - - uid: 25035 + - uid: 25530 components: - type: Transform - pos: -58.5,14.5 + rot: -1.5707963267948966 rad + pos: 37.5,-104.5 parent: 2 - - uid: 25036 + - uid: 25531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,13.5 + rot: -1.5707963267948966 rad + pos: 40.5,-104.5 parent: 2 - - uid: 25037 + - uid: 25532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,13.5 + pos: 12.5,-2.5 parent: 2 - - uid: 25038 + - uid: 25533 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,16.5 + pos: 35.5,-49.5 parent: 2 - - uid: 25039 + - uid: 25534 components: - type: Transform - pos: -27.5,-51.5 + rot: 1.5707963267948966 rad + pos: 35.5,-87.5 parent: 2 - - uid: 25040 + - uid: 25535 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,-63.5 + pos: 69.5,-60.5 parent: 2 - - uid: 25041 + - uid: 25536 components: - type: Transform rot: 3.141592653589793 rad - pos: 65.5,-75.5 - parent: 2 - - uid: 25042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-51.5 - parent: 2 - - uid: 25043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-51.5 - parent: 2 - - uid: 25044 - components: - - type: Transform - pos: 2.5,6.5 + pos: 35.5,-46.5 parent: 2 - - uid: 25045 + - uid: 25537 components: - type: Transform - pos: 2.5,7.5 + rot: 3.141592653589793 rad + pos: 35.5,-47.5 parent: 2 - - uid: 25046 + - uid: 25538 components: - type: Transform - pos: 2.5,10.5 + rot: 1.5707963267948966 rad + pos: 41.5,-46.5 parent: 2 - - uid: 25047 + - uid: 25539 components: - type: Transform - pos: 2.5,11.5 + rot: 3.141592653589793 rad + pos: 35.5,-48.5 parent: 2 - - uid: 25048 + - uid: 25540 components: - type: Transform - pos: 9.5,18.5 + rot: 3.141592653589793 rad + pos: -35.5,-45.5 parent: 2 - - uid: 25049 + - uid: 25541 components: - type: Transform - pos: 10.5,18.5 + rot: 1.5707963267948966 rad + pos: 35.5,-99.5 parent: 2 - - uid: 25050 + - uid: 25542 components: - type: Transform - pos: 11.5,18.5 + rot: 1.5707963267948966 rad + pos: 33.5,-87.5 parent: 2 - - uid: 25051 + - uid: 25543 components: - type: Transform - pos: 12.5,24.5 + rot: 1.5707963267948966 rad + pos: 35.5,-96.5 parent: 2 - - uid: 25052 + - uid: 25544 components: - type: Transform - pos: 11.5,24.5 + rot: 3.141592653589793 rad + pos: 44.5,-85.5 parent: 2 - - uid: 25053 + - uid: 25545 components: - type: Transform - pos: 11.5,25.5 + rot: 1.5707963267948966 rad + pos: 35.5,-90.5 parent: 2 - - uid: 25054 + - uid: 25546 components: - type: Transform - pos: 10.5,25.5 + rot: 1.5707963267948966 rad + pos: 33.5,-93.5 parent: 2 - - uid: 25055 + - uid: 25547 components: - type: Transform - pos: 10.5,26.5 + rot: 1.5707963267948966 rad + pos: 35.5,-93.5 parent: 2 - - uid: 25056 + - uid: 25548 components: - type: Transform - pos: 8.5,26.5 + pos: 35.5,-85.5 parent: 2 - - uid: 25057 + - uid: 25549 components: - type: Transform - pos: 7.5,26.5 + pos: 24.5,-10.5 parent: 2 - - uid: 25058 + - uid: 25550 components: - type: Transform - pos: 6.5,26.5 + pos: 26.5,-52.5 parent: 2 - - uid: 25059 + - uid: 25553 components: - type: Transform - pos: 6.5,27.5 + rot: 3.141592653589793 rad + pos: -43.5,-32.5 parent: 2 - - uid: 25060 + - uid: 25554 components: - type: Transform - pos: 5.5,27.5 + rot: -1.5707963267948966 rad + pos: -7.5,2.5 parent: 2 - - uid: 25061 + - uid: 25555 components: - type: Transform - pos: 4.5,27.5 + pos: 26.5,-72.5 parent: 2 - - uid: 25062 + - uid: 25556 components: - type: Transform - pos: 3.5,27.5 + pos: 27.5,-72.5 parent: 2 - - uid: 25063 + - uid: 25557 components: - type: Transform - pos: 3.5,28.5 + rot: 3.141592653589793 rad + pos: -79.5,-36.5 parent: 2 - - uid: 25064 + - uid: 25558 components: - type: Transform - pos: 2.5,28.5 + rot: 3.141592653589793 rad + pos: -78.5,-36.5 parent: 2 - - uid: 25065 + - uid: 25559 components: - type: Transform - pos: 1.5,28.5 + rot: 3.141592653589793 rad + pos: -64.5,-61.5 parent: 2 - - uid: 25066 + - uid: 25560 components: - type: Transform - pos: 0.5,28.5 + rot: 3.141592653589793 rad + pos: -63.5,-61.5 parent: 2 - - uid: 25067 + - uid: 25561 components: - type: Transform - pos: -0.5,28.5 + rot: 3.141592653589793 rad + pos: -51.5,-92.5 parent: 2 - - uid: 25068 + - uid: 25563 components: - type: Transform - pos: -1.5,28.5 + rot: 3.141592653589793 rad + pos: 12.5,-107.5 parent: 2 - - uid: 25069 + - uid: 25564 components: - type: Transform - pos: -2.5,28.5 + pos: 14.5,-104.5 parent: 2 - - uid: 25070 + - uid: 25565 components: - type: Transform - pos: -2.5,27.5 + pos: 13.5,-104.5 parent: 2 - - uid: 25071 + - uid: 25566 components: - type: Transform - pos: -3.5,27.5 + pos: 12.5,-104.5 parent: 2 - - uid: 25072 + - uid: 25567 components: - type: Transform - pos: -4.5,27.5 + pos: 17.5,-104.5 parent: 2 - - uid: 25073 + - uid: 25568 components: - type: Transform - pos: -5.5,27.5 + pos: 7.5,-104.5 parent: 2 - - uid: 25074 + - uid: 25569 components: - type: Transform - pos: -5.5,26.5 + pos: 6.5,-104.5 parent: 2 - - uid: 25075 + - uid: 25572 components: - type: Transform - pos: -7.5,26.5 + pos: 4.5,-99.5 parent: 2 - - uid: 25076 + - uid: 25573 components: - type: Transform - pos: -8.5,26.5 + rot: 3.141592653589793 rad + pos: -11.5,24.5 parent: 2 - - uid: 25077 + - uid: 25574 components: - type: Transform - pos: -9.5,26.5 + rot: 3.141592653589793 rad + pos: 56.5,-45.5 parent: 2 - - uid: 25078 + - uid: 25575 components: - type: Transform - pos: -9.5,25.5 + rot: 3.141592653589793 rad + pos: 57.5,-45.5 parent: 2 - - uid: 25079 + - uid: 25576 components: - type: Transform - pos: -10.5,25.5 + rot: 3.141592653589793 rad + pos: 18.5,-106.5 parent: 2 - - uid: 25080 + - uid: 25577 components: - type: Transform - pos: -11.5,23.5 + rot: 3.141592653589793 rad + pos: 10.5,-107.5 parent: 2 - - uid: 25081 + - uid: 25578 components: - type: Transform - pos: -21.5,2.5 + rot: 3.141592653589793 rad + pos: 14.5,-107.5 parent: 2 - - uid: 25082 + - uid: 25579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-101.5 + rot: 3.141592653589793 rad + pos: 15.5,-107.5 parent: 2 - - uid: 25083 + - uid: 25580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-98.5 + rot: 3.141592653589793 rad + pos: 15.5,-106.5 parent: 2 - - uid: 25084 + - uid: 25582 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-7.5 + pos: 6.5,-106.5 parent: 2 - - uid: 25085 + - uid: 25583 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-0.5 + pos: 9.5,-107.5 parent: 2 - - uid: 25086 + - uid: 25587 components: - type: Transform - pos: -55.5,-22.5 + rot: 3.141592653589793 rad + pos: -52.5,14.5 parent: 2 - - uid: 25087 + - uid: 25588 components: - type: Transform - pos: -54.5,-22.5 + rot: 3.141592653589793 rad + pos: 88.5,-13.5 parent: 2 - - uid: 25088 + - uid: 25589 components: - type: Transform - pos: -53.5,-22.5 + rot: 3.141592653589793 rad + pos: -51.5,14.5 parent: 2 - - uid: 25089 + - uid: 25590 components: - type: Transform - pos: -53.5,-26.5 + rot: 3.141592653589793 rad + pos: -50.5,14.5 parent: 2 - - uid: 25090 + - uid: 25591 components: - type: Transform - pos: -54.5,-26.5 + rot: 3.141592653589793 rad + pos: -54.5,18.5 parent: 2 - - uid: 25091 + - uid: 25592 components: - type: Transform - pos: -28.5,-49.5 + rot: 3.141592653589793 rad + pos: -54.5,17.5 parent: 2 - - uid: 25092 + - uid: 25593 components: - type: Transform - pos: -25.5,-64.5 + rot: 3.141592653589793 rad + pos: -54.5,16.5 parent: 2 - - uid: 25093 + - uid: 25594 components: - type: Transform - pos: -25.5,-63.5 + rot: 3.141592653589793 rad + pos: -54.5,15.5 parent: 2 - - uid: 25094 + - uid: 25595 components: - type: Transform - pos: -25.5,-54.5 + rot: 3.141592653589793 rad + pos: -77.5,-29.5 parent: 2 - - uid: 25095 + - uid: 25596 components: - type: Transform - pos: -25.5,-35.5 + rot: 3.141592653589793 rad + pos: 28.5,-80.5 parent: 2 - - uid: 25096 + - uid: 25597 components: - type: Transform - pos: -24.5,-64.5 + rot: 3.141592653589793 rad + pos: 30.5,-80.5 parent: 2 - - uid: 25097 + - uid: 25598 components: - type: Transform - pos: -24.5,-65.5 + rot: 3.141592653589793 rad + pos: 26.5,-80.5 parent: 2 - - uid: 25098 + - uid: 25599 components: - type: Transform - pos: -25.5,-59.5 + rot: 3.141592653589793 rad + pos: 24.5,-80.5 parent: 2 - - uid: 25099 + - uid: 25600 components: - type: Transform - pos: -25.5,-56.5 + rot: 3.141592653589793 rad + pos: -54.5,-46.5 parent: 2 - - uid: 25100 + - uid: 25601 components: - type: Transform - pos: -25.5,-61.5 + rot: 3.141592653589793 rad + pos: -53.5,-46.5 parent: 2 - - uid: 25101 + - uid: 25602 components: - type: Transform - pos: -25.5,-55.5 + rot: 3.141592653589793 rad + pos: -52.5,-46.5 parent: 2 - - uid: 25102 + - uid: 25603 components: - type: Transform - pos: -36.5,-35.5 + rot: 3.141592653589793 rad + pos: -51.5,-46.5 parent: 2 - - uid: 25103 + - uid: 25606 components: - type: Transform - pos: -53.5,-4.5 + rot: 3.141592653589793 rad + pos: 81.5,-78.5 parent: 2 - - uid: 25104 + - uid: 25607 components: - type: Transform - pos: -52.5,-4.5 + rot: 3.141592653589793 rad + pos: 81.5,-77.5 parent: 2 - - uid: 25105 + - uid: 25608 components: - type: Transform - pos: -48.5,-3.5 + rot: 3.141592653589793 rad + pos: 87.5,-14.5 parent: 2 - - uid: 25106 + - uid: 25609 components: - type: Transform - pos: -48.5,-0.5 + rot: 3.141592653589793 rad + pos: 86.5,-16.5 parent: 2 - - uid: 25107 + - uid: 25610 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,-40.5 + pos: 86.5,-17.5 parent: 2 - - uid: 25108 + - uid: 25611 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-40.5 + pos: 42.5,-27.5 parent: 2 - - uid: 25109 + - uid: 25612 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-5.5 + pos: 50.5,27.5 parent: 2 - - uid: 25110 + - uid: 25613 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,-44.5 + pos: 49.5,27.5 parent: 2 - - uid: 25111 + - uid: 25614 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-44.5 + pos: 49.5,28.5 parent: 2 - - uid: 25112 + - uid: 25615 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,-44.5 + pos: 46.5,28.5 parent: 2 - - uid: 25113 + - uid: 25616 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,-40.5 + pos: 47.5,28.5 parent: 2 - - uid: 25114 + - uid: 25617 components: - type: Transform - pos: -25.5,-62.5 + pos: 21.5,29.5 parent: 2 - - uid: 25115 + - uid: 25618 components: - type: Transform - pos: -25.5,-51.5 + pos: 20.5,28.5 parent: 2 - - uid: 25116 + - uid: 25619 components: - type: Transform - pos: -23.5,-67.5 + pos: 21.5,28.5 parent: 2 - - uid: 25117 + - uid: 25620 components: - type: Transform - pos: -24.5,-66.5 + pos: 9.5,30.5 parent: 2 - - uid: 25118 + - uid: 25621 components: - type: Transform - pos: -28.5,-48.5 + pos: 8.5,30.5 parent: 2 - - uid: 25119 + - uid: 25622 components: - type: Transform - pos: -25.5,-52.5 + pos: 10.5,29.5 parent: 2 - - uid: 25120 + - uid: 25623 components: - type: Transform - pos: -26.5,-51.5 + rot: 3.141592653589793 rad + pos: 3.5,32.5 parent: 2 - - uid: 25121 + - uid: 25624 components: - type: Transform - pos: -22.5,-67.5 + rot: 3.141592653589793 rad + pos: -2.5,32.5 parent: 2 - - uid: 25122 + - uid: 25625 components: - type: Transform - pos: -7.5,-69.5 + rot: 3.141592653589793 rad + pos: 5.5,31.5 parent: 2 - - uid: 25123 + - uid: 25626 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-34.5 + pos: 2.5,32.5 parent: 2 - - uid: 25124 + - uid: 25627 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-34.5 + pos: 6.5,31.5 parent: 2 - - uid: 25125 + - uid: 25628 components: - type: Transform rot: 3.141592653589793 rad - pos: 67.5,-34.5 + pos: -1.5,32.5 parent: 2 - - uid: 25126 + - uid: 25629 components: - type: Transform rot: 3.141592653589793 rad - pos: 74.5,-30.5 + pos: -5.5,31.5 parent: 2 - - uid: 25127 + - uid: 25630 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,-30.5 + pos: -6.5,31.5 parent: 2 - - uid: 25128 + - uid: 25631 components: - type: Transform rot: 3.141592653589793 rad - pos: 76.5,-30.5 + pos: -6.5,30.5 parent: 2 - - uid: 25129 + - uid: 25632 components: - type: Transform - pos: 61.5,-63.5 + pos: -12.5,29.5 parent: 2 - - uid: 25130 + - uid: 25633 components: - type: Transform - pos: 39.5,-43.5 + pos: -13.5,28.5 parent: 2 - - uid: 25131 + - uid: 25634 components: - type: Transform - pos: 38.5,-43.5 + pos: -14.5,27.5 parent: 2 - - uid: 25132 + - uid: 25635 components: - type: Transform - pos: 37.5,-43.5 + rot: 3.141592653589793 rad + pos: -30.5,21.5 parent: 2 - - uid: 25133 + - uid: 25636 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,-36.5 + pos: -29.5,21.5 parent: 2 - - uid: 25134 + - uid: 25637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-59.5 + rot: 3.141592653589793 rad + pos: -22.5,22.5 parent: 2 - - uid: 25135 + - uid: 25638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-93.5 + rot: 3.141592653589793 rad + pos: -22.5,21.5 parent: 2 - - uid: 25136 + - uid: 25639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-46.5 + rot: 3.141592653589793 rad + pos: -23.5,21.5 parent: 2 - - uid: 25137 + - uid: 25640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-104.5 + rot: 3.141592653589793 rad + pos: -18.5,22.5 parent: 2 - - uid: 25138 + - uid: 25641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-94.5 + rot: 3.141592653589793 rad + pos: -57.5,19.5 parent: 2 - - uid: 25139 + - uid: 25642 components: - type: Transform - pos: 50.5,-80.5 + rot: 3.141592653589793 rad + pos: -57.5,18.5 parent: 2 - - uid: 25140 + - uid: 25643 components: - type: Transform - pos: 61.5,-71.5 + rot: 3.141592653589793 rad + pos: -59.5,17.5 parent: 2 - - uid: 25141 + - uid: 25644 components: - type: Transform - pos: 60.5,-71.5 + rot: 3.141592653589793 rad + pos: -62.5,16.5 parent: 2 - - uid: 25142 + - uid: 25645 components: - type: Transform - pos: 59.5,-71.5 + rot: 3.141592653589793 rad + pos: -75.5,15.5 parent: 2 - - uid: 25143 + - uid: 25646 components: - type: Transform - pos: 57.5,-70.5 + rot: 3.141592653589793 rad + pos: -81.5,-33.5 parent: 2 - - uid: 25144 + - uid: 25647 components: - type: Transform - pos: 56.5,-70.5 + rot: 3.141592653589793 rad + pos: -77.5,-76.5 parent: 2 - - uid: 25145 + - uid: 25648 components: - type: Transform - pos: 55.5,-70.5 + rot: 3.141592653589793 rad + pos: -82.5,-68.5 parent: 2 - - uid: 25146 + - uid: 25649 components: - type: Transform - pos: 58.5,-75.5 + rot: 3.141592653589793 rad + pos: -79.5,-75.5 parent: 2 - - uid: 25147 + - uid: 25650 components: - type: Transform - pos: 58.5,-76.5 + rot: 3.141592653589793 rad + pos: -81.5,-73.5 parent: 2 - - uid: 25148 + - uid: 25651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-96.5 + rot: 3.141592653589793 rad + pos: -81.5,-72.5 parent: 2 - - uid: 25149 + - uid: 25652 components: - type: Transform - pos: 48.5,-80.5 + rot: 3.141592653589793 rad + pos: -82.5,-69.5 parent: 2 - - uid: 25150 + - uid: 25653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-99.5 + rot: 3.141592653589793 rad + pos: -83.5,-65.5 parent: 2 - - uid: 25151 + - uid: 25654 components: - type: Transform - pos: -28.5,-47.5 + rot: 3.141592653589793 rad + pos: -83.5,-64.5 parent: 2 - - uid: 25152 + - uid: 25655 components: - type: Transform - pos: -28.5,-50.5 + rot: 3.141592653589793 rad + pos: -83.5,-59.5 parent: 2 - - uid: 25153 + - uid: 25656 components: - type: Transform - pos: 8.5,-69.5 + rot: 3.141592653589793 rad + pos: -83.5,-58.5 parent: 2 - - uid: 25154 + - uid: 25657 components: - type: Transform - pos: 11.5,-69.5 + rot: 3.141592653589793 rad + pos: -81.5,-56.5 parent: 2 - - uid: 25155 + - uid: 25658 components: - type: Transform - pos: 13.5,-69.5 + rot: 3.141592653589793 rad + pos: -81.5,-54.5 parent: 2 - - uid: 25156 + - uid: 25659 components: - type: Transform - pos: 16.5,-69.5 + rot: 3.141592653589793 rad + pos: 27.5,-91.5 parent: 2 - - uid: 25157 + - uid: 25660 components: - type: Transform - pos: 17.5,-69.5 + rot: 3.141592653589793 rad + pos: 27.5,-92.5 parent: 2 - - uid: 25158 + - uid: 25661 components: - type: Transform - pos: 18.5,-69.5 + rot: 3.141592653589793 rad + pos: 27.5,-94.5 parent: 2 - - uid: 25159 + - uid: 25662 components: - type: Transform - pos: 19.5,-68.5 + rot: 3.141592653589793 rad + pos: 27.5,-95.5 parent: 2 - - uid: 25160 + - uid: 25663 components: - type: Transform - pos: 19.5,-67.5 + rot: 3.141592653589793 rad + pos: 27.5,-99.5 parent: 2 - - uid: 25161 + - uid: 25664 components: - type: Transform - pos: 20.5,-67.5 + rot: 3.141592653589793 rad + pos: 27.5,-100.5 parent: 2 - - uid: 25162 + - uid: 25665 components: - type: Transform - pos: 22.5,-67.5 + rot: 3.141592653589793 rad + pos: 27.5,-101.5 parent: 2 - - uid: 25163 + - uid: 25666 components: - type: Transform - pos: 23.5,-67.5 + rot: 3.141592653589793 rad + pos: 27.5,-102.5 parent: 2 - - uid: 25164 + - uid: 25667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-95.5 + rot: 3.141592653589793 rad + pos: 27.5,-103.5 parent: 2 - - uid: 25165 + - uid: 25668 components: - type: Transform - pos: 24.5,-67.5 + rot: 3.141592653589793 rad + pos: 55.5,-109.5 parent: 2 - - uid: 25166 + - uid: 25669 components: - type: Transform - pos: 25.5,-66.5 + rot: 3.141592653589793 rad + pos: 29.5,-110.5 parent: 2 - - uid: 25167 + - uid: 25670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-101.5 + rot: 3.141592653589793 rad + pos: 28.5,-109.5 parent: 2 - - uid: 25168 + - uid: 25671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-91.5 + rot: 3.141592653589793 rad + pos: 27.5,-106.5 parent: 2 - - uid: 25169 + - uid: 25672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-92.5 + rot: 3.141592653589793 rad + pos: 28.5,-107.5 parent: 2 - - uid: 25170 + - uid: 25673 components: - type: Transform - pos: 16.5,-95.5 + rot: 3.141592653589793 rad + pos: 30.5,-113.5 parent: 2 - - uid: 25171 + - uid: 25674 components: - type: Transform - pos: 17.5,-101.5 + rot: 3.141592653589793 rad + pos: 30.5,-114.5 parent: 2 - - uid: 25172 + - uid: 25675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-95.5 + rot: 3.141592653589793 rad + pos: 31.5,-114.5 parent: 2 - - uid: 25173 + - uid: 25676 components: - type: Transform - pos: 16.5,-101.5 + rot: 3.141592653589793 rad + pos: 35.5,-114.5 parent: 2 - - uid: 25174 + - uid: 25677 components: - type: Transform - pos: 25.5,-65.5 + rot: 3.141592653589793 rad + pos: 37.5,-114.5 parent: 2 - - uid: 25175 + - uid: 25678 components: - type: Transform - pos: 26.5,-64.5 + rot: 3.141592653589793 rad + pos: 36.5,-114.5 parent: 2 - - uid: 25176 + - uid: 25679 components: - type: Transform - pos: -3.5,-89.5 + rot: 3.141592653589793 rad + pos: 41.5,-114.5 parent: 2 - - uid: 25177 + - uid: 25680 components: - type: Transform - pos: -3.5,-90.5 + rot: 3.141592653589793 rad + pos: 42.5,-114.5 parent: 2 - - uid: 25178 + - uid: 25681 components: - type: Transform - pos: -3.5,-91.5 + rot: 3.141592653589793 rad + pos: 43.5,-114.5 parent: 2 - - uid: 25182 + - uid: 25682 components: - type: Transform - pos: -0.5,-92.5 + rot: 3.141592653589793 rad + pos: 47.5,-114.5 parent: 2 - - uid: 25183 + - uid: 25683 components: - type: Transform - pos: 0.5,-92.5 + rot: 3.141592653589793 rad + pos: 48.5,-114.5 parent: 2 - - uid: 25184 + - uid: 25684 components: - type: Transform - pos: 2.5,-78.5 + rot: 3.141592653589793 rad + pos: 49.5,-114.5 parent: 2 - - uid: 25185 + - uid: 25685 components: - type: Transform - pos: 2.5,-79.5 + rot: 3.141592653589793 rad + pos: 52.5,-112.5 parent: 2 - - uid: 25186 + - uid: 25686 components: - type: Transform - pos: -1.5,-80.5 + rot: 3.141592653589793 rad + pos: 53.5,-111.5 parent: 2 - - uid: 25187 + - uid: 25687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-83.5 + rot: 3.141592653589793 rad + pos: 56.5,-108.5 parent: 2 - - uid: 25188 + - uid: 25688 components: - type: Transform - pos: 11.5,-85.5 + rot: 3.141592653589793 rad + pos: 56.5,-107.5 parent: 2 - - uid: 25189 + - uid: 25689 components: - type: Transform - pos: 8.5,-81.5 + rot: 3.141592653589793 rad + pos: 58.5,-106.5 parent: 2 - - uid: 25190 + - uid: 25690 components: - type: Transform - pos: 26.5,-63.5 + rot: 3.141592653589793 rad + pos: 59.5,-105.5 parent: 2 - - uid: 25193 + - uid: 25691 components: - type: Transform - pos: -7.5,-82.5 + rot: 3.141592653589793 rad + pos: 59.5,-102.5 parent: 2 - - uid: 25195 + - uid: 25692 components: - type: Transform - pos: 26.5,-62.5 + rot: -1.5707963267948966 rad + pos: 59.5,-99.5 parent: 2 - - uid: 25196 + - uid: 25694 components: - type: Transform - pos: 26.5,-61.5 + rot: -1.5707963267948966 rad + pos: 64.5,-95.5 parent: 2 - - uid: 25197 + - uid: 25695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-76.5 + pos: -51.5,-70.5 parent: 2 - - uid: 25198 + - uid: 25696 components: - type: Transform - pos: 49.5,-80.5 + pos: -48.5,-70.5 parent: 2 - - uid: 25199 + - uid: 25697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-46.5 + pos: -47.5,-70.5 parent: 2 - - uid: 25200 + - uid: 25698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-46.5 + rot: 3.141592653589793 rad + pos: 12.5,29.5 parent: 2 - - uid: 25201 + - uid: 25699 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,-46.5 + pos: 59.5,-95.5 parent: 2 - - uid: 25202 + - uid: 25700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-51.5 + rot: 3.141592653589793 rad + pos: -69.5,-37.5 parent: 2 - - uid: 25203 + - uid: 25701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-51.5 + rot: 3.141592653589793 rad + pos: 29.5,39.5 parent: 2 - - uid: 25204 + - uid: 25702 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,-46.5 + pos: -37.5,-24.5 parent: 2 - - uid: 25205 + - uid: 25703 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,-46.5 + pos: 38.5,39.5 parent: 2 - - uid: 25206 + - uid: 25704 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-46.5 + rot: 1.5707963267948966 rad + pos: 51.5,-104.5 parent: 2 - - uid: 25207 + - uid: 25705 components: - type: Transform rot: 3.141592653589793 rad - pos: -72.5,-46.5 + pos: 30.5,-38.5 parent: 2 - - uid: 25208 + - uid: 25706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-35.5 + rot: 1.5707963267948966 rad + pos: 56.5,-99.5 parent: 2 - - uid: 25209 + - uid: 25707 components: - type: Transform - pos: -41.5,-68.5 + rot: 3.141592653589793 rad + pos: 69.5,-59.5 parent: 2 - - uid: 25210 + - uid: 25708 components: - type: Transform - pos: -41.5,-67.5 + rot: 3.141592653589793 rad + pos: 85.5,-70.5 parent: 2 - - uid: 25211 + - uid: 25709 components: - type: Transform - pos: -47.5,-65.5 + rot: 3.141592653589793 rad + pos: 85.5,-71.5 parent: 2 - - uid: 25212 + - uid: 25710 components: - type: Transform - pos: -45.5,-65.5 + rot: 3.141592653589793 rad + pos: 83.5,-72.5 parent: 2 - - uid: 25213 + - uid: 25711 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-67.5 + rot: 1.5707963267948966 rad + pos: 50.5,-104.5 parent: 2 - - uid: 25214 + - uid: 25712 components: - type: Transform - pos: -52.5,-63.5 + pos: 35.5,-91.5 parent: 2 - - uid: 25215 + - uid: 25713 components: - type: Transform - pos: -53.5,-63.5 + rot: 3.141592653589793 rad + pos: -62.5,-76.5 parent: 2 - - uid: 25216 + - uid: 25714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-46.5 + rot: 3.141592653589793 rad + pos: -60.5,-76.5 parent: 2 - - uid: 25217 + - uid: 25715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-45.5 + rot: 3.141592653589793 rad + pos: -66.5,16.5 parent: 2 - - uid: 25218 + - uid: 25716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-45.5 + rot: 3.141592653589793 rad + pos: -71.5,16.5 parent: 2 - - uid: 25219 + - uid: 25717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-45.5 + rot: 3.141592653589793 rad + pos: -63.5,13.5 parent: 2 - - uid: 25220 + - uid: 25718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-41.5 + rot: 3.141592653589793 rad + pos: -70.5,16.5 parent: 2 - - uid: 25221 + - uid: 25719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-41.5 + rot: 3.141592653589793 rad + pos: -65.5,15.5 parent: 2 - - uid: 25222 + - uid: 25720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-41.5 + rot: 3.141592653589793 rad + pos: -71.5,-76.5 parent: 2 - - uid: 25223 + - uid: 25721 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-74.5 + pos: 31.5,-64.5 parent: 2 - - uid: 25224 + - uid: 25722 components: - type: Transform - pos: -47.5,-45.5 + rot: 3.141592653589793 rad + pos: 44.5,-78.5 parent: 2 - - uid: 25225 + - uid: 25723 components: - type: Transform - pos: -46.5,-45.5 + rot: 3.141592653589793 rad + pos: -71.5,-78.5 parent: 2 - - uid: 25226 + - uid: 25724 components: - type: Transform - pos: -45.5,-46.5 + rot: 3.141592653589793 rad + pos: 28.5,-2.5 parent: 2 - - uid: 25227 + - uid: 25725 components: - type: Transform - pos: -45.5,-47.5 + rot: 3.141592653589793 rad + pos: -66.5,-46.5 parent: 2 - - uid: 25228 + - uid: 25726 components: - type: Transform - pos: -45.5,-48.5 + rot: 3.141592653589793 rad + pos: -44.5,-30.5 parent: 2 - - uid: 25229 + - uid: 25727 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-40.5 + pos: 88.5,-58.5 parent: 2 - - uid: 25230 + - uid: 25728 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,-40.5 + pos: 68.5,-56.5 parent: 2 - - uid: 25231 + - uid: 25729 components: - type: Transform - pos: -54.5,-56.5 + rot: 3.141592653589793 rad + pos: 68.5,-55.5 parent: 2 - - uid: 25232 + - uid: 25730 components: - type: Transform - pos: -54.5,-58.5 + rot: 3.141592653589793 rad + pos: 69.5,-58.5 parent: 2 - - uid: 25233 + - uid: 25731 components: - type: Transform - pos: -56.5,-58.5 + rot: 3.141592653589793 rad + pos: 88.5,-57.5 parent: 2 - - uid: 25234 + - uid: 25732 components: - type: Transform - pos: -56.5,-56.5 + rot: 3.141592653589793 rad + pos: 74.5,-51.5 parent: 2 - - uid: 25235 + - uid: 25733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-64.5 + rot: 3.141592653589793 rad + pos: 75.5,-51.5 parent: 2 - - uid: 25236 + - uid: 25734 components: - type: Transform - pos: -41.5,-31.5 + rot: 3.141592653589793 rad + pos: -65.5,-67.5 parent: 2 - - uid: 25237 + - uid: 25735 components: - type: Transform rot: 3.141592653589793 rad - pos: 78.5,-77.5 + pos: -64.5,-67.5 parent: 2 - - uid: 25238 + - uid: 25736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-88.5 + pos: -69.5,-76.5 parent: 2 - - uid: 25239 + - uid: 25737 components: - type: Transform - pos: 88.5,4.5 + rot: 3.141592653589793 rad + pos: -26.5,-73.5 parent: 2 - - uid: 25240 + - uid: 25738 components: - type: Transform - pos: 26.5,-59.5 + rot: 1.5707963267948966 rad + pos: 56.5,-98.5 parent: 2 - - uid: 25241 + - uid: 25739 components: - type: Transform - pos: 26.5,-57.5 + rot: 1.5707963267948966 rad + pos: 56.5,-96.5 parent: 2 - - uid: 25242 + - uid: 25740 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-73.5 + pos: -1.5,9.5 parent: 2 - - uid: 25244 + - uid: 25741 components: - type: Transform - pos: 26.5,-56.5 + rot: 1.5707963267948966 rad + pos: 56.5,-97.5 parent: 2 - - uid: 25245 + - uid: 25742 components: - type: Transform - pos: 26.5,-55.5 + rot: 3.141592653589793 rad + pos: 76.5,-51.5 parent: 2 - - uid: 25246 + - uid: 25743 components: - type: Transform - pos: 26.5,-21.5 + rot: 3.141592653589793 rad + pos: -67.5,-46.5 parent: 2 - - uid: 25247 + - uid: 25744 components: - type: Transform - pos: 26.5,-23.5 + rot: 3.141592653589793 rad + pos: 77.5,-51.5 parent: 2 - - uid: 25248 + - uid: 25745 components: - type: Transform - pos: 26.5,-22.5 + rot: 3.141592653589793 rad + pos: 78.5,-51.5 parent: 2 - - uid: 25249 + - uid: 25746 components: - type: Transform - pos: 26.5,-24.5 + rot: 3.141592653589793 rad + pos: 80.5,-68.5 parent: 2 - - uid: 25250 + - uid: 25747 components: - type: Transform - pos: 26.5,-19.5 + rot: 3.141592653589793 rad + pos: 81.5,-68.5 parent: 2 - - uid: 25251 + - uid: 25748 components: - type: Transform - pos: 23.5,-8.5 + rot: 3.141592653589793 rad + pos: 78.5,-68.5 parent: 2 - - uid: 25252 + - uid: 25749 components: - type: Transform - pos: 26.5,-16.5 + rot: 3.141592653589793 rad + pos: 71.5,-68.5 parent: 2 - - uid: 25253 + - uid: 25750 components: - type: Transform - pos: 26.5,-17.5 + rot: 3.141592653589793 rad + pos: 70.5,-68.5 parent: 2 - - uid: 25254 + - uid: 25751 components: - type: Transform - pos: 26.5,-14.5 + rot: 3.141592653589793 rad + pos: 49.5,-65.5 parent: 2 - - uid: 25255 + - uid: 25752 components: - type: Transform - pos: 26.5,-15.5 + rot: 3.141592653589793 rad + pos: 49.5,-63.5 parent: 2 - - uid: 25256 + - uid: 25753 components: - type: Transform - pos: 26.5,-13.5 + rot: 3.141592653589793 rad + pos: 30.5,-7.5 parent: 2 - - uid: 25257 + - uid: 25754 components: - type: Transform - pos: 17.5,-95.5 + rot: 3.141592653589793 rad + pos: -33.5,-33.5 parent: 2 - - uid: 25258 + - uid: 25755 components: - type: Transform - pos: 25.5,-12.5 + rot: 3.141592653589793 rad + pos: -33.5,-34.5 parent: 2 - - uid: 25259 + - uid: 25756 components: - type: Transform - pos: 25.5,-10.5 + rot: 3.141592653589793 rad + pos: -39.5,-28.5 parent: 2 - - uid: 25260 + - uid: 25757 components: - type: Transform - pos: 25.5,-11.5 + rot: 3.141592653589793 rad + pos: 80.5,-28.5 parent: 2 - - uid: 25261 + - uid: 25758 components: - type: Transform - pos: 23.5,-8.5 + rot: 3.141592653589793 rad + pos: 80.5,-27.5 parent: 2 - - uid: 25262 + - uid: 25759 components: - type: Transform - pos: 23.5,-7.5 + rot: 3.141592653589793 rad + pos: 31.5,-58.5 parent: 2 - - uid: 25263 + - uid: 25760 components: - type: Transform - pos: 22.5,-7.5 + pos: -69.5,-78.5 parent: 2 - - uid: 25264 + - uid: 25761 components: - type: Transform - pos: 22.5,-6.5 + rot: 3.141592653589793 rad + pos: 24.5,32.5 parent: 2 - - uid: 25265 + - uid: 25762 components: - type: Transform - pos: 21.5,-6.5 + rot: 3.141592653589793 rad + pos: 31.5,-65.5 parent: 2 - - uid: 25266 + - uid: 25763 components: - type: Transform - pos: 21.5,-5.5 + rot: 3.141592653589793 rad + pos: -51.5,-30.5 parent: 2 - - uid: 25267 + - uid: 25764 components: - type: Transform - pos: 20.5,-5.5 + rot: 3.141592653589793 rad + pos: -48.5,-30.5 parent: 2 - - uid: 25268 + - uid: 25765 components: - type: Transform - pos: 20.5,-4.5 + rot: 3.141592653589793 rad + pos: -47.5,-26.5 parent: 2 - - uid: 25269 + - uid: 25766 components: - type: Transform - pos: 24.5,-8.5 + rot: 3.141592653589793 rad + pos: 31.5,-57.5 parent: 2 - - uid: 25270 + - uid: 25767 components: - type: Transform - pos: 18.5,-4.5 + pos: -47.5,-37.5 parent: 2 - - uid: 25271 + - uid: 25768 components: - type: Transform - pos: 18.5,-3.5 + rot: 3.141592653589793 rad + pos: 69.5,-68.5 parent: 2 - - uid: 25272 + - uid: 25769 components: - type: Transform - pos: 17.5,-3.5 + rot: 3.141592653589793 rad + pos: 73.5,-68.5 parent: 2 - - uid: 25273 + - uid: 25770 components: - type: Transform - pos: 16.5,-3.5 + rot: 3.141592653589793 rad + pos: 76.5,-68.5 parent: 2 - - uid: 25274 + - uid: 25771 components: - type: Transform - pos: 15.5,-2.5 + rot: 3.141592653589793 rad + pos: -49.5,-73.5 parent: 2 - - uid: 25275 + - uid: 25772 components: - type: Transform - pos: 14.5,-2.5 + rot: 3.141592653589793 rad + pos: 74.5,-68.5 parent: 2 - - uid: 25276 + - uid: 25773 components: - type: Transform - pos: 13.5,-2.5 + rot: 3.141592653589793 rad + pos: 75.5,-68.5 parent: 2 - - uid: 25277 + - uid: 25774 components: - type: Transform - pos: -16.5,-10.5 + rot: 3.141592653589793 rad + pos: -49.5,-75.5 parent: 2 - - uid: 25278 + - uid: 25775 components: - type: Transform - pos: -11.5,-2.5 + rot: 3.141592653589793 rad + pos: -45.5,-38.5 parent: 2 - - uid: 25279 + - uid: 25776 components: - type: Transform - pos: -12.5,-2.5 + rot: 3.141592653589793 rad + pos: -45.5,-39.5 parent: 2 - - uid: 25280 + - uid: 25777 components: - type: Transform - pos: -13.5,-2.5 + rot: 3.141592653589793 rad + pos: 29.5,-34.5 parent: 2 - - uid: 25281 + - uid: 25778 components: - type: Transform - pos: -14.5,-2.5 + rot: 3.141592653589793 rad + pos: 49.5,-66.5 parent: 2 - - uid: 25282 + - uid: 25779 components: - type: Transform - pos: -19.5,-4.5 + rot: -1.5707963267948966 rad + pos: 61.5,-95.5 parent: 2 - - uid: 25283 + - uid: 25780 components: - type: Transform - pos: -16.5,-3.5 + rot: -1.5707963267948966 rad + pos: 64.5,-93.5 parent: 2 - - uid: 25284 + - uid: 25782 components: - type: Transform - pos: -16.5,-3.5 + rot: 3.141592653589793 rad + pos: -63.5,-104.5 parent: 2 - - uid: 25285 + - uid: 25783 components: - type: Transform - pos: -17.5,-3.5 + rot: 3.141592653589793 rad + pos: -74.5,-103.5 parent: 2 - - uid: 25286 + - uid: 25784 components: - type: Transform - pos: -17.5,-4.5 + rot: 3.141592653589793 rad + pos: -74.5,-104.5 parent: 2 - - uid: 25287 + - uid: 25785 components: - type: Transform - pos: -19.5,-5.5 + rot: 3.141592653589793 rad + pos: -62.5,-104.5 parent: 2 - - uid: 25288 + - uid: 25786 components: - type: Transform - pos: -20.5,-5.5 + rot: 3.141592653589793 rad + pos: -62.5,-103.5 parent: 2 - - uid: 25289 + - uid: 25787 components: - type: Transform - pos: -20.5,-6.5 + rot: 3.141592653589793 rad + pos: -76.5,-100.5 parent: 2 - - uid: 25290 + - uid: 25788 components: - type: Transform - pos: -21.5,-6.5 + rot: 3.141592653589793 rad + pos: -61.5,-100.5 parent: 2 - - uid: 25291 + - uid: 25789 components: - type: Transform - pos: -21.5,-7.5 + rot: 3.141592653589793 rad + pos: -60.5,-100.5 parent: 2 - - uid: 25292 + - uid: 25790 components: - type: Transform - pos: -22.5,-7.5 + rot: 3.141592653589793 rad + pos: -60.5,-99.5 parent: 2 - - uid: 25293 + - uid: 25791 components: - type: Transform - pos: -22.5,-8.5 + rot: 3.141592653589793 rad + pos: -60.5,-96.5 parent: 2 - - uid: 25294 + - uid: 25792 components: - type: Transform - pos: -23.5,-8.5 + rot: 3.141592653589793 rad + pos: -60.5,-95.5 parent: 2 - - uid: 25295 + - uid: 25793 components: - type: Transform - pos: -24.5,-12.5 + rot: 3.141592653589793 rad + pos: -75.5,-100.5 parent: 2 - - uid: 25296 + - uid: 25794 components: - type: Transform - pos: -24.5,-11.5 + rot: 3.141592653589793 rad + pos: -76.5,-99.5 parent: 2 - - uid: 25297 + - uid: 25795 components: - type: Transform - pos: -24.5,-10.5 + rot: 3.141592653589793 rad + pos: -76.5,-96.5 parent: 2 - - uid: 25298 + - uid: 25796 components: - type: Transform - pos: -23.5,-10.5 + rot: 3.141592653589793 rad + pos: -76.5,-95.5 parent: 2 - - uid: 25299 + - uid: 25797 components: - type: Transform - pos: -25.5,-32.5 + rot: 3.141592653589793 rad + pos: -75.5,-92.5 parent: 2 - - uid: 25300 + - uid: 25798 components: - type: Transform - pos: -25.5,-13.5 + rot: 3.141592653589793 rad + pos: -75.5,-91.5 parent: 2 - - uid: 25301 + - uid: 25799 components: - type: Transform - pos: -25.5,-14.5 + rot: 3.141592653589793 rad + pos: -74.5,-90.5 parent: 2 - - uid: 25302 + - uid: 25800 components: - type: Transform - pos: -25.5,-15.5 + rot: 3.141592653589793 rad + pos: -75.5,-90.5 parent: 2 - - uid: 25303 + - uid: 25801 components: - type: Transform - pos: -25.5,-16.5 + rot: 3.141592653589793 rad + pos: -74.5,-87.5 parent: 2 - - uid: 25304 + - uid: 25802 components: - type: Transform - pos: -10.5,24.5 + rot: 3.141592653589793 rad + pos: -74.5,-86.5 parent: 2 - - uid: 25305 + - uid: 25803 components: - type: Transform - pos: -25.5,-17.5 + rot: 3.141592653589793 rad + pos: -73.5,-86.5 parent: 2 - - uid: 25306 + - uid: 25804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-95.5 + rot: 3.141592653589793 rad + pos: -75.5,-83.5 parent: 2 - - uid: 25307 + - uid: 25805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-102.5 + rot: 3.141592653589793 rad + pos: -75.5,-82.5 parent: 2 - - uid: 25308 + - uid: 25806 components: - type: Transform - pos: -25.5,-34.5 + rot: 3.141592653589793 rad + pos: 84.5,-81.5 parent: 2 - - uid: 25309 + - uid: 25807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-102.5 + rot: 3.141592653589793 rad + pos: -56.5,-109.5 parent: 2 - - uid: 25310 + - uid: 25808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-92.5 + rot: 3.141592653589793 rad + pos: -56.5,-110.5 parent: 2 - - uid: 25311 + - uid: 25809 components: - type: Transform - pos: -25.5,-31.5 + rot: 3.141592653589793 rad + pos: -56.5,-111.5 parent: 2 - - uid: 25312 + - uid: 25810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-101.5 + rot: 3.141592653589793 rad + pos: -56.5,-112.5 parent: 2 - - uid: 25313 + - uid: 25811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-89.5 + rot: 3.141592653589793 rad + pos: -56.5,-113.5 parent: 2 - - uid: 25314 + - uid: 25812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-98.5 + rot: 3.141592653589793 rad + pos: -56.5,-114.5 parent: 2 - - uid: 25315 + - uid: 25813 components: - type: Transform - pos: -6.5,26.5 + rot: 3.141592653589793 rad + pos: -56.5,-115.5 parent: 2 - - uid: 25316 + - uid: 25814 components: - type: Transform - pos: -25.5,-28.5 + rot: 3.141592653589793 rad + pos: -56.5,-116.5 parent: 2 - - uid: 25317 + - uid: 25815 components: - type: Transform - pos: -25.5,-29.5 + rot: 3.141592653589793 rad + pos: -54.5,-116.5 parent: 2 - - uid: 25318 + - uid: 25816 components: - type: Transform - pos: -25.5,-30.5 + rot: 3.141592653589793 rad + pos: -54.5,-115.5 parent: 2 - - uid: 25319 + - uid: 25817 components: - type: Transform - pos: -38.5,-60.5 + rot: 3.141592653589793 rad + pos: -54.5,-114.5 parent: 2 - - uid: 25320 + - uid: 25818 components: - type: Transform - pos: -39.5,-60.5 + rot: 3.141592653589793 rad + pos: -54.5,-113.5 parent: 2 - - uid: 25321 + - uid: 25819 components: - type: Transform - pos: -40.5,-60.5 + rot: 3.141592653589793 rad + pos: -54.5,-112.5 parent: 2 - - uid: 25322 + - uid: 25820 components: - type: Transform - pos: -41.5,-65.5 + rot: 3.141592653589793 rad + pos: -54.5,-111.5 parent: 2 - - uid: 25323 + - uid: 25821 components: - type: Transform - pos: -39.5,-56.5 + rot: 3.141592653589793 rad + pos: -54.5,-110.5 parent: 2 - - uid: 25324 + - uid: 25822 components: - type: Transform - pos: -41.5,-54.5 + rot: 3.141592653589793 rad + pos: -54.5,-109.5 parent: 2 - - uid: 25325 + - uid: 25824 components: - type: Transform - pos: -41.5,-53.5 + rot: 3.141592653589793 rad + pos: -75.5,0.5 parent: 2 - - uid: 25326 + - uid: 25825 components: - type: Transform - pos: -41.5,-52.5 + rot: 3.141592653589793 rad + pos: -75.5,1.5 parent: 2 - - uid: 25327 + - uid: 25826 components: - type: Transform - pos: -39.5,-21.5 + rot: 3.141592653589793 rad + pos: -75.5,2.5 parent: 2 - - uid: 25328 + - uid: 25827 components: - type: Transform - pos: 93.5,-37.5 + rot: 3.141592653589793 rad + pos: -75.5,3.5 parent: 2 - - uid: 25329 + - uid: 25828 components: - type: Transform - pos: 94.5,-37.5 + rot: 3.141592653589793 rad + pos: -75.5,4.5 parent: 2 - - uid: 25330 + - uid: 25829 components: - type: Transform - pos: 95.5,-37.5 + rot: 3.141592653589793 rad + pos: -77.5,0.5 parent: 2 - - uid: 25331 + - uid: 25830 components: - type: Transform - pos: 96.5,-37.5 + rot: 3.141592653589793 rad + pos: -77.5,1.5 parent: 2 - - uid: 25332 + - uid: 25831 components: - type: Transform - pos: 84.5,-35.5 + rot: 3.141592653589793 rad + pos: -77.5,2.5 parent: 2 - - uid: 25333 + - uid: 25832 components: - type: Transform - pos: -25.5,-26.5 + rot: 3.141592653589793 rad + pos: -77.5,3.5 parent: 2 - - uid: 25334 + - uid: 25833 components: - type: Transform - pos: 93.5,-25.5 + rot: 3.141592653589793 rad + pos: -77.5,4.5 parent: 2 - - uid: 25335 + - uid: 25834 components: - type: Transform - pos: 94.5,-25.5 + rot: 3.141592653589793 rad + pos: -9.5,29.5 parent: 2 - - uid: 25336 + - uid: 25835 components: - type: Transform - pos: 95.5,-25.5 + rot: 3.141592653589793 rad + pos: -91.5,-0.5 parent: 2 - - uid: 25337 + - uid: 25836 components: - type: Transform - pos: 96.5,-25.5 + rot: 3.141592653589793 rad + pos: -92.5,2.5 parent: 2 - - uid: 25338 + - uid: 25837 components: - type: Transform - pos: 96.5,-19.5 + rot: 3.141592653589793 rad + pos: -87.5,26.5 parent: 2 - - uid: 25339 + - uid: 25838 components: - type: Transform - pos: 95.5,-19.5 + rot: 3.141592653589793 rad + pos: -69.5,-109.5 parent: 2 - - uid: 25340 + - uid: 25839 components: - type: Transform - pos: 94.5,-19.5 + rot: 3.141592653589793 rad + pos: -66.5,-110.5 parent: 2 - - uid: 25341 + - uid: 25840 components: - type: Transform - pos: 93.5,-19.5 + rot: 3.141592653589793 rad + pos: -75.5,20.5 parent: 2 - - uid: 25342 + - uid: 25841 components: - type: Transform - pos: 84.5,-34.5 + rot: 3.141592653589793 rad + pos: -65.5,-110.5 parent: 2 - - uid: 25343 + - uid: 25842 components: - type: Transform - pos: 84.5,-33.5 + rot: 3.141592653589793 rad + pos: -88.5,13.5 parent: 2 - - uid: 25344 + - uid: 25843 components: - type: Transform - pos: 84.5,-32.5 + rot: 3.141592653589793 rad + pos: -89.5,18.5 parent: 2 - - uid: 25345 + - uid: 25844 components: - type: Transform - pos: 84.5,-30.5 + rot: 3.141592653589793 rad + pos: -89.5,17.5 parent: 2 - - uid: 25346 + - uid: 25845 components: - type: Transform - pos: 84.5,-29.5 + rot: 3.141592653589793 rad + pos: -88.5,12.5 parent: 2 - - uid: 25347 + - uid: 25846 components: - type: Transform - pos: 84.5,-28.5 + rot: 3.141592653589793 rad + pos: -89.5,15.5 parent: 2 - - uid: 25348 + - uid: 25847 components: - type: Transform - pos: 84.5,-27.5 + rot: 3.141592653589793 rad + pos: -88.5,9.5 parent: 2 - - uid: 25349 + - uid: 25848 components: - type: Transform - pos: 87.5,-37.5 + rot: 3.141592653589793 rad + pos: -87.5,7.5 parent: 2 - - uid: 25350 + - uid: 25849 components: - type: Transform - pos: 88.5,-37.5 + rot: 3.141592653589793 rad + pos: -85.5,5.5 parent: 2 - - uid: 25351 + - uid: 25850 components: - type: Transform - pos: -25.5,-22.5 + rot: 3.141592653589793 rad + pos: -82.5,5.5 parent: 2 - - uid: 25352 + - uid: 25851 components: - type: Transform - pos: 100.5,-37.5 + rot: 3.141592653589793 rad + pos: -90.5,-1.5 parent: 2 - - uid: 25353 + - uid: 25852 components: - type: Transform - pos: 101.5,-37.5 + rot: 3.141592653589793 rad + pos: -73.5,18.5 parent: 2 - - uid: 25354 + - uid: 25853 components: - type: Transform - pos: 102.5,-37.5 + rot: 3.141592653589793 rad + pos: -89.5,-17.5 parent: 2 - - uid: 25355 + - uid: 25854 components: - type: Transform - pos: 88.5,-25.5 + rot: 3.141592653589793 rad + pos: -91.5,-15.5 parent: 2 - - uid: 25356 + - uid: 25855 components: - type: Transform - pos: 87.5,-25.5 + rot: 3.141592653589793 rad + pos: -92.5,-15.5 parent: 2 - - uid: 25357 + - uid: 25856 components: - type: Transform - pos: 86.5,-25.5 + rot: 3.141592653589793 rad + pos: -92.5,-14.5 parent: 2 - - uid: 25358 + - uid: 25857 components: - type: Transform - pos: 86.5,-19.5 + rot: 3.141592653589793 rad + pos: -93.5,-11.5 parent: 2 - - uid: 25359 + - uid: 25858 components: - type: Transform - pos: 87.5,-19.5 + rot: 3.141592653589793 rad + pos: -93.5,-10.5 parent: 2 - - uid: 25360 + - uid: 25859 components: - type: Transform - pos: 88.5,-19.5 + rot: 3.141592653589793 rad + pos: -93.5,-7.5 parent: 2 - - uid: 25361 + - uid: 25860 components: - type: Transform - pos: 100.5,-25.5 + rot: 3.141592653589793 rad + pos: -93.5,-6.5 parent: 2 - - uid: 25362 + - uid: 25861 components: - type: Transform - pos: 101.5,-25.5 + rot: 3.141592653589793 rad + pos: -93.5,-5.5 parent: 2 - - uid: 25363 + - uid: 25862 components: - type: Transform - pos: 102.5,-25.5 + rot: 3.141592653589793 rad + pos: -40.5,-4.5 parent: 2 - - uid: 25364 + - uid: 25863 components: - type: Transform - pos: 102.5,-19.5 + rot: 3.141592653589793 rad + pos: -47.5,-17.5 parent: 2 - - uid: 25365 + - uid: 25864 components: - type: Transform - pos: 101.5,-19.5 + rot: 3.141592653589793 rad + pos: -48.5,-17.5 parent: 2 - - uid: 25366 + - uid: 25865 components: - type: Transform - pos: 100.5,-19.5 + rot: 3.141592653589793 rad + pos: -49.5,-17.5 parent: 2 - - uid: 25367 + - uid: 25866 components: - type: Transform - pos: -25.5,-19.5 + rot: 3.141592653589793 rad + pos: -61.5,-114.5 parent: 2 - - uid: 25368 + - uid: 25867 components: - type: Transform - pos: 30.5,-48.5 + rot: 3.141592653589793 rad + pos: -62.5,-111.5 parent: 2 - - uid: 25369 + - uid: 25868 components: - type: Transform - pos: 30.5,-49.5 + rot: 3.141592653589793 rad + pos: -61.5,-111.5 parent: 2 - - uid: 25370 + - uid: 25869 components: - type: Transform - pos: 30.5,-50.5 + rot: 3.141592653589793 rad + pos: -61.5,-112.5 parent: 2 - - uid: 25371 + - uid: 25870 components: - type: Transform - pos: 24.5,-68.5 + rot: 3.141592653589793 rad + pos: -61.5,-115.5 parent: 2 - - uid: 25372 + - uid: 25871 components: - type: Transform - pos: 27.5,-54.5 + rot: 3.141592653589793 rad + pos: -50.5,-124.5 parent: 2 - - uid: 25373 + - uid: 25872 components: - type: Transform - pos: 27.5,-55.5 + rot: 3.141592653589793 rad + pos: -62.5,-124.5 parent: 2 - - uid: 25374 + - uid: 25873 components: - type: Transform - pos: 27.5,-56.5 + rot: 3.141592653589793 rad + pos: -61.5,-124.5 parent: 2 - - uid: 25375 + - uid: 25874 components: - type: Transform - pos: 27.5,-57.5 + rot: 3.141592653589793 rad + pos: -59.5,-126.5 parent: 2 - - uid: 25376 + - uid: 25875 components: - type: Transform - pos: 27.5,-61.5 + rot: 3.141592653589793 rad + pos: -57.5,-125.5 parent: 2 - - uid: 25377 + - uid: 25878 components: - type: Transform - pos: 27.5,-62.5 + rot: 3.141592653589793 rad + pos: -53.5,-124.5 parent: 2 - - uid: 25378 + - uid: 25879 components: - type: Transform - pos: 27.5,-63.5 + rot: 3.141592653589793 rad + pos: -49.5,-124.5 parent: 2 - - uid: 25379 + - uid: 25880 components: - type: Transform - pos: 27.5,-64.5 + rot: 3.141592653589793 rad + pos: -49.5,-125.5 parent: 2 - - uid: 25380 + - uid: 25881 components: - type: Transform - pos: 23.5,-68.5 + rot: 3.141592653589793 rad + pos: -41.5,-128.5 parent: 2 - - uid: 25381 + - uid: 25882 components: - type: Transform - pos: 22.5,-68.5 + rot: 3.141592653589793 rad + pos: -45.5,-126.5 parent: 2 - - uid: 25382 + - uid: 25883 components: - type: Transform - pos: 18.5,-70.5 + rot: 3.141592653589793 rad + pos: -44.5,-126.5 parent: 2 - - uid: 25383 + - uid: 25884 components: - type: Transform - pos: 17.5,-70.5 + rot: 3.141592653589793 rad + pos: -47.5,-125.5 parent: 2 - - uid: 25384 + - uid: 25885 components: - type: Transform - pos: 16.5,-70.5 + rot: 3.141592653589793 rad + pos: -40.5,-128.5 parent: 2 - - uid: 25385 + - uid: 25886 components: - type: Transform - pos: 13.5,-70.5 + rot: 3.141592653589793 rad + pos: -37.5,-127.5 parent: 2 - - uid: 25386 + - uid: 25887 components: - type: Transform - pos: 12.5,-70.5 + rot: 3.141592653589793 rad + pos: -36.5,-128.5 parent: 2 - - uid: 25387 + - uid: 25888 components: - type: Transform - pos: 11.5,-70.5 + rot: 3.141592653589793 rad + pos: -36.5,-127.5 parent: 2 - - uid: 25388 + - uid: 25889 components: - type: Transform - pos: -10.5,-70.5 + rot: 3.141592653589793 rad + pos: -32.5,-127.5 parent: 2 - - uid: 25389 + - uid: 25890 components: - type: Transform - pos: -11.5,-70.5 + rot: 3.141592653589793 rad + pos: -32.5,-126.5 parent: 2 - - uid: 25390 + - uid: 25891 components: - type: Transform - pos: -12.5,-70.5 + rot: 3.141592653589793 rad + pos: -30.5,-125.5 parent: 2 - - uid: 25391 + - uid: 25892 components: - type: Transform - pos: -15.5,-70.5 + rot: 3.141592653589793 rad + pos: -29.5,-123.5 parent: 2 - - uid: 25392 + - uid: 25893 components: - type: Transform - pos: -16.5,-70.5 + rot: 3.141592653589793 rad + pos: -28.5,-123.5 parent: 2 - - uid: 25393 + - uid: 25894 components: - type: Transform - pos: -17.5,-70.5 + rot: 3.141592653589793 rad + pos: -28.5,-122.5 parent: 2 - - uid: 25394 + - uid: 25895 components: - type: Transform - pos: -21.5,-68.5 + rot: 3.141592653589793 rad + pos: -25.5,-120.5 parent: 2 - - uid: 25395 + - uid: 25896 components: - type: Transform - pos: -22.5,-68.5 + rot: 3.141592653589793 rad + pos: -24.5,-120.5 parent: 2 - - uid: 25396 + - uid: 25897 components: - type: Transform - pos: -23.5,-68.5 + rot: 3.141592653589793 rad + pos: -22.5,-118.5 parent: 2 - - uid: 25397 + - uid: 25898 components: - type: Transform - pos: -26.5,-64.5 + rot: 3.141592653589793 rad + pos: -22.5,-117.5 parent: 2 - - uid: 25398 + - uid: 25899 components: - type: Transform - pos: -26.5,-63.5 + rot: 3.141592653589793 rad + pos: -22.5,-114.5 parent: 2 - - uid: 25399 + - uid: 25900 components: - type: Transform - pos: -26.5,-62.5 + rot: 3.141592653589793 rad + pos: -22.5,-112.5 parent: 2 - - uid: 25400 + - uid: 25901 components: - type: Transform - pos: -26.5,-61.5 + rot: 3.141592653589793 rad + pos: -21.5,-110.5 parent: 2 - - uid: 25401 + - uid: 25902 components: - type: Transform - pos: -26.5,-57.5 + rot: 3.141592653589793 rad + pos: -20.5,-110.5 parent: 2 - - uid: 25402 + - uid: 25907 components: - type: Transform - pos: -26.5,-56.5 + rot: 3.141592653589793 rad + pos: 97.5,-97.5 parent: 2 - - uid: 25403 + - uid: 25908 components: - type: Transform - pos: -26.5,-55.5 + rot: 3.141592653589793 rad + pos: 96.5,-97.5 parent: 2 - - uid: 25404 + - uid: 25909 components: - type: Transform - pos: -26.5,-54.5 + rot: 3.141592653589793 rad + pos: 96.5,-96.5 parent: 2 - - uid: 25405 + - uid: 25910 components: - type: Transform - pos: -29.5,-50.5 + rot: 3.141592653589793 rad + pos: 100.5,-97.5 parent: 2 - - uid: 25406 + - uid: 25911 components: - type: Transform - pos: -29.5,-49.5 + rot: 3.141592653589793 rad + pos: 102.5,-96.5 parent: 2 - - uid: 25407 + - uid: 25912 components: - type: Transform - pos: -29.5,-48.5 + rot: 3.141592653589793 rad + pos: 102.5,-95.5 parent: 2 - - uid: 25408 + - uid: 25913 components: - type: Transform - pos: -29.5,-47.5 + rot: 3.141592653589793 rad + pos: 93.5,-94.5 parent: 2 - - uid: 25409 + - uid: 25914 components: - type: Transform - pos: -29.5,-46.5 + rot: 3.141592653589793 rad + pos: 94.5,-94.5 parent: 2 - - uid: 25410 + - uid: 25915 components: - type: Transform - pos: -29.5,-40.5 + rot: 3.141592653589793 rad + pos: 103.5,-93.5 parent: 2 - - uid: 25411 + - uid: 25916 components: - type: Transform - pos: -29.5,-39.5 + rot: 3.141592653589793 rad + pos: 94.5,-96.5 parent: 2 - - uid: 25412 + - uid: 25917 components: - type: Transform - pos: -29.5,-38.5 + rot: 3.141592653589793 rad + pos: 83.5,-81.5 parent: 2 - - uid: 25413 + - uid: 25918 components: - type: Transform - pos: -29.5,-37.5 + rot: 3.141592653589793 rad + pos: 89.5,-87.5 parent: 2 - - uid: 25414 + - uid: 25919 components: - type: Transform - pos: -29.5,-36.5 + rot: 3.141592653589793 rad + pos: 87.5,-83.5 parent: 2 - - uid: 25415 + - uid: 25920 components: - type: Transform - pos: -26.5,-32.5 + rot: 3.141592653589793 rad + pos: 87.5,-84.5 parent: 2 - - uid: 25416 + - uid: 25921 components: - type: Transform - pos: -26.5,-31.5 + rot: 3.141592653589793 rad + pos: 87.5,-85.5 parent: 2 - - uid: 25417 + - uid: 25922 components: - type: Transform - pos: -26.5,-30.5 + rot: 3.141592653589793 rad + pos: 89.5,-88.5 parent: 2 - - uid: 25418 + - uid: 25923 components: - type: Transform - pos: -26.5,-29.5 + rot: 3.141592653589793 rad + pos: 89.5,-89.5 parent: 2 - - uid: 25419 + - uid: 25924 components: - type: Transform - pos: -26.5,-28.5 + rot: 3.141592653589793 rad + pos: 90.5,-93.5 parent: 2 - - uid: 25420 + - uid: 25925 components: - type: Transform - pos: -26.5,-24.5 + rot: 3.141592653589793 rad + pos: 90.5,-92.5 parent: 2 - - uid: 25421 + - uid: 25926 components: - type: Transform - pos: -26.5,-23.5 + rot: 3.141592653589793 rad + pos: 105.5,-93.5 parent: 2 - - uid: 25422 + - uid: 25927 components: - type: Transform - pos: -26.5,-22.5 + rot: 3.141592653589793 rad + pos: 91.5,-93.5 parent: 2 - - uid: 25423 + - uid: 25928 components: - type: Transform - pos: -26.5,-21.5 + rot: 3.141592653589793 rad + pos: 106.5,-93.5 parent: 2 - - uid: 25424 + - uid: 25929 components: - type: Transform - pos: -26.5,-17.5 + rot: 3.141592653589793 rad + pos: 106.5,-92.5 parent: 2 - - uid: 25425 + - uid: 25930 components: - type: Transform - pos: -26.5,-16.5 + rot: 3.141592653589793 rad + pos: 108.5,-85.5 parent: 2 - - uid: 25426 + - uid: 25931 components: - type: Transform - pos: -26.5,-15.5 + rot: 3.141592653589793 rad + pos: 107.5,-89.5 parent: 2 - - uid: 25427 + - uid: 25932 components: - type: Transform - pos: -26.5,-14.5 + rot: 3.141592653589793 rad + pos: 107.5,-88.5 parent: 2 - - uid: 25428 + - uid: 25933 components: - type: Transform - pos: -26.5,-13.5 + rot: 3.141592653589793 rad + pos: 107.5,-85.5 parent: 2 - - uid: 25429 + - uid: 25934 components: - type: Transform - pos: -24.5,-8.5 + rot: 3.141592653589793 rad + pos: 107.5,-86.5 parent: 2 - - uid: 25430 + - uid: 25935 components: - type: Transform - pos: -24.5,-7.5 + rot: 3.141592653589793 rad + pos: 110.5,-77.5 parent: 2 - - uid: 25431 + - uid: 25936 components: - type: Transform - pos: -23.5,-7.5 + rot: 3.141592653589793 rad + pos: 109.5,-83.5 parent: 2 - - uid: 25432 + - uid: 25937 components: - type: Transform - pos: -23.5,-6.5 + rot: 3.141592653589793 rad + pos: 110.5,-81.5 parent: 2 - - uid: 25433 + - uid: 25938 components: - type: Transform - pos: -22.5,-6.5 + rot: 3.141592653589793 rad + pos: 110.5,-80.5 parent: 2 - - uid: 25434 + - uid: 25939 components: - type: Transform - pos: -22.5,-5.5 + rot: 3.141592653589793 rad + pos: 109.5,-76.5 parent: 2 - - uid: 25435 + - uid: 25940 components: - type: Transform - pos: -21.5,-5.5 + rot: 3.141592653589793 rad + pos: 110.5,-76.5 parent: 2 - - uid: 25436 + - uid: 25941 components: - type: Transform - pos: 12.5,-1.5 + rot: 3.141592653589793 rad + pos: 109.5,-74.5 parent: 2 - - uid: 25437 + - uid: 25942 components: - type: Transform - pos: -21.5,-4.5 + rot: 3.141592653589793 rad + pos: 110.5,-72.5 parent: 2 - - uid: 25438 + - uid: 25943 components: - type: Transform - pos: -20.5,-4.5 + rot: 3.141592653589793 rad + pos: 110.5,-71.5 parent: 2 - - uid: 25439 + - uid: 25944 components: - type: Transform - pos: -20.5,-3.5 + rot: 3.141592653589793 rad + pos: 110.5,-68.5 parent: 2 - - uid: 25440 + - uid: 25945 components: - type: Transform - pos: -19.5,-3.5 + rot: 3.141592653589793 rad + pos: 110.5,-67.5 parent: 2 - - uid: 25441 + - uid: 25946 components: - type: Transform - pos: -14.5,-1.5 + rot: 3.141592653589793 rad + pos: 109.5,-66.5 parent: 2 - - uid: 25442 + - uid: 25947 components: - type: Transform - pos: -13.5,-1.5 + rot: 3.141592653589793 rad + pos: 109.5,-63.5 parent: 2 - - uid: 25443 + - uid: 25948 components: - type: Transform - pos: -12.5,-1.5 + rot: 3.141592653589793 rad + pos: 108.5,-62.5 parent: 2 - - uid: 25444 + - uid: 25949 components: - type: Transform - pos: -11.5,-1.5 + rot: 3.141592653589793 rad + pos: 107.5,-62.5 parent: 2 - - uid: 25445 + - uid: 25950 components: - type: Transform - pos: 13.5,-1.5 + rot: 3.141592653589793 rad + pos: -55.5,-26.5 parent: 2 - - uid: 25446 + - uid: 25951 components: - type: Transform - pos: 14.5,-1.5 + rot: 3.141592653589793 rad + pos: -23.5,-90.5 parent: 2 - - uid: 25447 + - uid: 25952 components: - type: Transform - pos: 15.5,-1.5 + rot: 3.141592653589793 rad + pos: -22.5,-90.5 parent: 2 - - uid: 25448 + - uid: 25953 components: - type: Transform - pos: 27.5,-21.5 + rot: 3.141592653589793 rad + pos: 45.5,36.5 parent: 2 - - uid: 25449 + - uid: 25954 components: - type: Transform - pos: 20.5,-3.5 + rot: 3.141592653589793 rad + pos: 47.5,34.5 parent: 2 - - uid: 25450 + - uid: 25955 components: - type: Transform - pos: 21.5,-3.5 + rot: 3.141592653589793 rad + pos: 48.5,31.5 parent: 2 - - uid: 25451 + - uid: 25956 components: - type: Transform - pos: 21.5,-4.5 + rot: 3.141592653589793 rad + pos: 47.5,33.5 parent: 2 - - uid: 25452 + - uid: 25957 components: - type: Transform - pos: 22.5,-4.5 + rot: 3.141592653589793 rad + pos: 112.5,-52.5 parent: 2 - - uid: 25453 + - uid: 25958 components: - type: Transform - pos: 22.5,-5.5 + rot: 3.141592653589793 rad + pos: 114.5,-50.5 parent: 2 - - uid: 25454 + - uid: 25959 components: - type: Transform - pos: 23.5,-5.5 + rot: 3.141592653589793 rad + pos: 114.5,-49.5 parent: 2 - - uid: 25455 + - uid: 25960 components: - type: Transform - pos: 23.5,-6.5 + rot: 3.141592653589793 rad + pos: 115.5,-43.5 parent: 2 - - uid: 25456 + - uid: 25961 components: - type: Transform - pos: 24.5,-6.5 + rot: 3.141592653589793 rad + pos: 115.5,-44.5 parent: 2 - - uid: 25457 + - uid: 25962 components: - type: Transform - pos: 24.5,-7.5 + rot: 3.141592653589793 rad + pos: 115.5,-47.5 parent: 2 - - uid: 25458 + - uid: 25963 components: - type: Transform - pos: 25.5,-7.5 + rot: 3.141592653589793 rad + pos: -44.5,-35.5 parent: 2 - - uid: 25459 + - uid: 25964 components: - type: Transform - pos: 25.5,-8.5 + rot: 3.141592653589793 rad + pos: -45.5,-14.5 parent: 2 - - uid: 25460 + - uid: 25965 components: - type: Transform - pos: 27.5,-13.5 + rot: 3.141592653589793 rad + pos: -92.5,-18.5 parent: 2 - - uid: 25461 + - uid: 25966 components: - type: Transform - pos: 27.5,-14.5 + rot: 3.141592653589793 rad + pos: -92.5,-19.5 parent: 2 - - uid: 25462 + - uid: 25967 components: - type: Transform - pos: 27.5,-15.5 + rot: 3.141592653589793 rad + pos: -92.5,-23.5 parent: 2 - - uid: 25463 + - uid: 25968 components: - type: Transform - pos: 27.5,-16.5 + rot: 3.141592653589793 rad + pos: -92.5,-24.5 parent: 2 - - uid: 25464 + - uid: 25969 components: - type: Transform - pos: 27.5,-17.5 + rot: 3.141592653589793 rad + pos: -90.5,-28.5 parent: 2 - - uid: 25465 + - uid: 25970 components: - type: Transform - pos: 27.5,-22.5 + rot: 3.141592653589793 rad + pos: -90.5,-27.5 parent: 2 - - uid: 25466 + - uid: 25971 components: - type: Transform - pos: 27.5,-23.5 + rot: 3.141592653589793 rad + pos: -92.5,-21.5 parent: 2 - - uid: 25467 + - uid: 25972 components: - type: Transform - pos: 27.5,-24.5 + rot: 3.141592653589793 rad + pos: -85.5,-23.5 parent: 2 - - uid: 25471 + - uid: 25973 components: - type: Transform - pos: 57.5,-34.5 + rot: 3.141592653589793 rad + pos: -40.5,-2.5 parent: 2 - - uid: 25472 + - uid: 25974 components: - type: Transform - pos: 56.5,-34.5 + rot: 3.141592653589793 rad + pos: -28.5,-4.5 parent: 2 - - uid: 25473 + - uid: 25975 components: - type: Transform - pos: 55.5,-34.5 + rot: 3.141592653589793 rad + pos: -23.5,-0.5 parent: 2 - - uid: 25474 + - uid: 25976 components: - type: Transform - pos: 51.5,-34.5 + rot: 3.141592653589793 rad + pos: -9.5,1.5 parent: 2 - - uid: 25475 + - uid: 25977 components: - type: Transform - pos: 50.5,-34.5 + rot: 3.141592653589793 rad + pos: -9.5,0.5 parent: 2 - - uid: 25476 + - uid: 25978 components: - type: Transform - pos: 49.5,-34.5 + rot: 3.141592653589793 rad + pos: -36.5,-24.5 parent: 2 - - uid: 25477 + - uid: 25979 components: - type: Transform - pos: 46.5,-35.5 + rot: 3.141592653589793 rad + pos: -35.5,-24.5 parent: 2 - - uid: 25478 + - uid: 25980 components: - type: Transform - pos: 46.5,-36.5 + rot: 3.141592653589793 rad + pos: 5.5,-77.5 parent: 2 - - uid: 25479 + - uid: 25981 components: - type: Transform - pos: 46.5,-37.5 + rot: 3.141592653589793 rad + pos: 4.5,-77.5 parent: 2 - - uid: 25480 + - uid: 25982 components: - type: Transform - pos: 46.5,-40.5 + rot: 3.141592653589793 rad + pos: 24.5,31.5 parent: 2 - - uid: 25481 + - uid: 25983 components: - type: Transform - pos: 46.5,-41.5 + rot: 3.141592653589793 rad + pos: -88.5,22.5 parent: 2 - - uid: 25482 + - uid: 25984 components: - type: Transform - pos: 46.5,-42.5 + rot: 3.141592653589793 rad + pos: -88.5,23.5 parent: 2 - - uid: 25483 + - uid: 25985 components: - type: Transform - pos: -73.5,-60.5 + rot: 3.141592653589793 rad + pos: -86.5,26.5 parent: 2 - - uid: 25484 + - uid: 25986 components: - type: Transform - pos: -74.5,-60.5 + rot: 3.141592653589793 rad + pos: -85.5,30.5 parent: 2 - - uid: 25485 + - uid: 25987 components: - type: Transform - pos: -72.5,-60.5 + rot: 3.141592653589793 rad + pos: -85.5,31.5 parent: 2 - - uid: 25486 + - uid: 25988 components: - type: Transform - pos: -71.5,-60.5 + rot: 3.141592653589793 rad + pos: -76.5,22.5 parent: 2 - - uid: 25487 + - uid: 25989 components: - type: Transform - pos: -70.5,-60.5 + rot: 3.141592653589793 rad + pos: -82.5,32.5 parent: 2 - - uid: 25488 + - uid: 25990 components: - type: Transform - pos: -77.5,-63.5 + rot: 3.141592653589793 rad + pos: -81.5,32.5 parent: 2 - - uid: 25489 + - uid: 25991 components: - type: Transform - pos: -77.5,-64.5 + rot: 3.141592653589793 rad + pos: -79.5,30.5 parent: 2 - - uid: 25490 + - uid: 25992 components: - type: Transform - pos: -77.5,-65.5 + rot: 3.141592653589793 rad + pos: -79.5,28.5 parent: 2 - - uid: 25491 + - uid: 25993 components: - type: Transform - pos: -77.5,-66.5 + rot: 3.141592653589793 rad + pos: -77.5,26.5 parent: 2 - - uid: 25492 + - uid: 25994 components: - type: Transform - pos: -77.5,-67.5 + rot: 3.141592653589793 rad + pos: -76.5,26.5 parent: 2 - - uid: 25493 + - uid: 25995 components: - type: Transform - pos: -74.5,-70.5 + rot: 3.141592653589793 rad + pos: -76.5,23.5 parent: 2 - - uid: 25494 + - uid: 25996 components: - type: Transform - pos: -73.5,-70.5 + rot: 3.141592653589793 rad + pos: -73.5,-109.5 parent: 2 - - uid: 25495 + - uid: 25997 components: - type: Transform - pos: -72.5,-70.5 + rot: 3.141592653589793 rad + pos: -70.5,-109.5 parent: 2 - - uid: 25496 + - uid: 25998 components: - type: Transform - pos: -71.5,-70.5 + rot: 3.141592653589793 rad + pos: -74.5,-107.5 parent: 2 - - uid: 25497 + - uid: 25999 components: - type: Transform - pos: -70.5,-70.5 + rot: 3.141592653589793 rad + pos: -68.5,-107.5 parent: 2 - - uid: 25498 + - uid: 26000 components: - type: Transform - pos: 44.5,-86.5 + rot: 3.141592653589793 rad + pos: 77.5,-75.5 parent: 2 - - uid: 25499 + - uid: 26001 components: - type: Transform - pos: 44.5,-87.5 + rot: 3.141592653589793 rad + pos: 78.5,-75.5 parent: 2 - - uid: 25500 + - uid: 26002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-49.5 + rot: 3.141592653589793 rad + pos: 75.5,-75.5 parent: 2 - - uid: 25501 + - uid: 26003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-49.5 + rot: 3.141592653589793 rad + pos: 71.5,-74.5 parent: 2 - - uid: 25502 + - uid: 26004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-104.5 + rot: 3.141592653589793 rad + pos: 72.5,-74.5 parent: 2 - - uid: 25503 + - uid: 26005 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-106.5 + pos: 64.5,-89.5 parent: 2 - - uid: 25504 + - uid: 26006 components: - type: Transform - pos: -25.5,-21.5 + rot: 3.141592653589793 rad + pos: 77.5,-99.5 parent: 2 - - uid: 25505 + - uid: 26007 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,-106.5 + pos: 76.5,-99.5 parent: 2 - - uid: 25506 + - uid: 26008 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-106.5 + pos: 73.5,-98.5 parent: 2 - - uid: 25507 + - uid: 26009 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-106.5 + pos: 74.5,-98.5 parent: 2 - - uid: 25508 + - uid: 26010 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-106.5 + pos: 80.5,-98.5 parent: 2 - - uid: 25509 + - uid: 26011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-50.5 + rot: 3.141592653589793 rad + pos: 71.5,-98.5 parent: 2 - - uid: 25510 + - uid: 26012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-50.5 + rot: 3.141592653589793 rad + pos: 70.5,-98.5 parent: 2 - - uid: 25511 + - uid: 26013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-50.5 + rot: 3.141592653589793 rad + pos: 69.5,-96.5 parent: 2 - - uid: 25512 + - uid: 26014 components: - type: Transform - pos: -25.5,-23.5 + rot: 3.141592653589793 rad + pos: 69.5,-95.5 parent: 2 - - uid: 25513 + - uid: 26015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-86.5 + rot: 3.141592653589793 rad + pos: 81.5,-98.5 parent: 2 - - uid: 25514 + - uid: 26016 components: - type: Transform - pos: -25.5,-24.5 + rot: 3.141592653589793 rad + pos: 68.5,-92.5 parent: 2 - - uid: 25515 + - uid: 26017 components: - type: Transform - pos: -28.5,-46.5 + rot: 3.141592653589793 rad + pos: 83.5,-96.5 parent: 2 - - uid: 25516 + - uid: 26018 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,-106.5 + pos: 83.5,-95.5 parent: 2 - - uid: 25517 + - uid: 26019 components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,-106.5 + pos: 84.5,-93.5 parent: 2 - - uid: 25518 + - uid: 26020 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-106.5 + pos: 84.5,-92.5 parent: 2 - - uid: 25519 + - uid: 26021 components: - type: Transform - pos: -26.5,-35.5 + rot: 3.141592653589793 rad + pos: 86.5,-90.5 parent: 2 - - uid: 25520 + - uid: 26022 components: - type: Transform - pos: -27.5,-35.5 + rot: 3.141592653589793 rad + pos: 87.5,-90.5 parent: 2 - - uid: 25521 + - uid: 26023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-89.5 + rot: 3.141592653589793 rad + pos: 68.5,-91.5 parent: 2 - - uid: 25522 + - uid: 26024 components: - type: Transform - pos: -28.5,-36.5 + rot: 3.141592653589793 rad + pos: 67.5,-89.5 parent: 2 - - uid: 25523 + - uid: 26025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-92.5 + rot: 3.141592653589793 rad + pos: 66.5,-89.5 parent: 2 - - uid: 25524 + - uid: 26026 components: - type: Transform - pos: 35.5,-97.5 + pos: 56.5,-91.5 parent: 2 - - uid: 25525 + - uid: 26027 components: - type: Transform - pos: -28.5,-37.5 + pos: 56.5,-90.5 parent: 2 - - uid: 25526 + - uid: 26028 components: - type: Transform - pos: 26.5,-54.5 + pos: 56.5,-89.5 parent: 2 - - uid: 25527 + - uid: 26029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-104.5 + pos: 56.5,-88.5 parent: 2 - - uid: 25528 + - uid: 26030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-104.5 + pos: -37.5,-35.5 parent: 2 - - uid: 25529 + - uid: 26033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-104.5 + pos: 74.5,-6.5 parent: 2 - - uid: 25530 + - uid: 26037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-104.5 + pos: 45.5,-5.5 parent: 2 - - uid: 25531 + - uid: 26041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-104.5 + pos: 90.5,-3.5 parent: 2 - - uid: 25532 + - uid: 26042 components: - type: Transform - pos: 12.5,-2.5 + pos: 90.5,-4.5 parent: 2 - - uid: 25533 + - uid: 26043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-49.5 + pos: 90.5,-6.5 parent: 2 - - uid: 25534 + - uid: 26044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-87.5 + pos: 90.5,-7.5 parent: 2 - - uid: 25535 + - uid: 26045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-60.5 + pos: 90.5,-5.5 parent: 2 - - uid: 25536 + - uid: 26046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-46.5 + rot: 1.5707963267948966 rad + pos: 55.5,9.5 parent: 2 - - uid: 25537 + - uid: 26047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-47.5 + pos: 4.5,-112.5 parent: 2 - - uid: 25538 + - uid: 26048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-46.5 + pos: 62.5,-6.5 parent: 2 - - uid: 25539 + - uid: 26049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-48.5 + pos: 64.5,-6.5 parent: 2 - - uid: 25540 + - uid: 26050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-45.5 + pos: 77.5,-0.5 parent: 2 - - uid: 25541 + - uid: 26051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-99.5 + pos: 79.5,-0.5 parent: 2 - - uid: 25542 + - uid: 26052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-87.5 + pos: 81.5,-0.5 parent: 2 - - uid: 25543 + - uid: 26053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-96.5 + pos: 83.5,-0.5 parent: 2 - - uid: 25544 + - uid: 26054 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-85.5 + pos: 85.5,-0.5 parent: 2 - - uid: 25545 + - uid: 26055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-90.5 + pos: 87.5,-0.5 parent: 2 - - uid: 25546 + - uid: 26056 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-93.5 + pos: 55.5,11.5 parent: 2 - - uid: 25547 + - uid: 26057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-93.5 + pos: -37.5,20.5 parent: 2 - - uid: 25548 + - uid: 26058 components: - type: Transform - pos: 35.5,-85.5 + pos: -95.5,-9.5 parent: 2 - - uid: 25549 + - uid: 26059 components: - type: Transform - pos: 24.5,-10.5 + rot: 1.5707963267948966 rad + pos: -97.5,-9.5 parent: 2 - - uid: 25550 + - uid: 26060 components: - type: Transform - pos: 26.5,-52.5 + rot: 1.5707963267948966 rad + pos: -96.5,-9.5 parent: 2 - - uid: 25553 + - uid: 26061 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-32.5 + rot: -1.5707963267948966 rad + pos: 54.5,22.5 parent: 2 - - uid: 25554 + - uid: 26062 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,2.5 + pos: 49.5,24.5 parent: 2 - - uid: 25555 + - uid: 26063 components: - type: Transform - pos: 26.5,-72.5 + rot: -1.5707963267948966 rad + pos: 53.5,23.5 parent: 2 - - uid: 25556 + - uid: 26064 components: - type: Transform - pos: 27.5,-72.5 + rot: -1.5707963267948966 rad + pos: 52.5,24.5 parent: 2 - - uid: 25557 + - uid: 26065 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-36.5 + rot: -1.5707963267948966 rad + pos: 50.5,24.5 parent: 2 - - uid: 25558 + - uid: 26066 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-36.5 + rot: -1.5707963267948966 rad + pos: 51.5,24.5 parent: 2 - - uid: 25559 + - uid: 26067 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-61.5 + rot: -1.5707963267948966 rad + pos: 54.5,27.5 parent: 2 - - uid: 25560 + - uid: 26068 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-61.5 + rot: -1.5707963267948966 rad + pos: 53.5,27.5 parent: 2 - - uid: 25561 + - uid: 26069 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-92.5 + rot: -1.5707963267948966 rad + pos: 71.5,14.5 parent: 2 - - uid: 25563 + - uid: 26070 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-107.5 + pos: 46.5,-11.5 parent: 2 - - uid: 25564 + - uid: 26071 components: - type: Transform - pos: 14.5,-104.5 + pos: 56.5,-80.5 parent: 2 - - uid: 25565 + - uid: 26072 components: - type: Transform - pos: 13.5,-104.5 + pos: 56.5,-82.5 parent: 2 - - uid: 25566 + - uid: 26073 components: - type: Transform - pos: 12.5,-104.5 + pos: 59.5,-82.5 parent: 2 - - uid: 25567 + - uid: 26074 components: - type: Transform - pos: 17.5,-104.5 + pos: 59.5,-80.5 parent: 2 - - uid: 25568 + - uid: 26075 components: - type: Transform - pos: 7.5,-104.5 + pos: 93.5,-5.5 parent: 2 - - uid: 25569 + - uid: 26076 components: - type: Transform - pos: 6.5,-104.5 + pos: 52.5,-6.5 parent: 2 - - uid: 25572 + - uid: 26077 components: - type: Transform - pos: 4.5,-99.5 + rot: -1.5707963267948966 rad + pos: 72.5,14.5 parent: 2 - - uid: 25573 + - uid: 26078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,24.5 + rot: -1.5707963267948966 rad + pos: 73.5,14.5 parent: 2 - - uid: 25574 + - uid: 26079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-45.5 + rot: -1.5707963267948966 rad + pos: 75.5,14.5 parent: 2 - - uid: 25575 + - uid: 26080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-45.5 + rot: -1.5707963267948966 rad + pos: 76.5,14.5 parent: 2 - - uid: 25576 + - uid: 26081 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-106.5 + rot: -1.5707963267948966 rad + pos: 79.5,13.5 parent: 2 - - uid: 25577 + - uid: 26082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-107.5 + rot: -1.5707963267948966 rad + pos: 80.5,13.5 parent: 2 - - uid: 25578 + - uid: 26083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-107.5 + rot: -1.5707963267948966 rad + pos: 85.5,10.5 parent: 2 - - uid: 25579 + - uid: 26084 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-107.5 + rot: -1.5707963267948966 rad + pos: 82.5,13.5 parent: 2 - - uid: 25580 + - uid: 26085 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-106.5 + pos: 4.5,-113.5 parent: 2 - - uid: 25582 + - uid: 26086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-106.5 + pos: 7.5,-112.5 parent: 2 - - uid: 25583 + - uid: 26087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-107.5 + pos: 7.5,-111.5 parent: 2 - - uid: 25587 + - uid: 26088 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,14.5 + pos: 4.5,-109.5 parent: 2 - - uid: 25588 + - uid: 26089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-13.5 + pos: 11.5,-111.5 parent: 2 - - uid: 25589 + - uid: 26090 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,14.5 + pos: 13.5,-110.5 parent: 2 - - uid: 25590 + - uid: 26091 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,14.5 + pos: 12.5,-111.5 parent: 2 - - uid: 25591 + - uid: 26092 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,18.5 + pos: 15.5,-113.5 parent: 2 - - uid: 25592 + - uid: 26093 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,17.5 + pos: 17.5,-113.5 parent: 2 - - uid: 25593 + - uid: 26094 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,16.5 + pos: 15.5,-109.5 parent: 2 - - uid: 25594 + - uid: 26095 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,15.5 + pos: 16.5,-109.5 parent: 2 - - uid: 25595 + - uid: 26096 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-29.5 + pos: 8.5,-109.5 parent: 2 - - uid: 25596 + - uid: 26097 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-80.5 + pos: 9.5,-109.5 parent: 2 - - uid: 25597 + - uid: 26098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-80.5 + rot: -1.5707963267948966 rad + pos: 82.5,12.5 parent: 2 - - uid: 25598 + - uid: 26099 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-80.5 + rot: -1.5707963267948966 rad + pos: 85.5,9.5 parent: 2 - - uid: 25599 + - uid: 26100 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-80.5 + rot: -1.5707963267948966 rad + pos: 84.5,10.5 parent: 2 - - uid: 25600 + - uid: 26101 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-46.5 + rot: -1.5707963267948966 rad + pos: 83.5,10.5 parent: 2 - - uid: 25601 + - uid: 26104 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-46.5 + pos: 93.5,-6.5 parent: 2 - - uid: 25602 + - uid: 26105 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-46.5 + pos: 93.5,-2.5 parent: 2 - - uid: 25603 + - uid: 26106 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-46.5 + pos: 92.5,-0.5 parent: 2 - - uid: 25604 + - uid: 26107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-69.5 + pos: 90.5,2.5 parent: 2 - - uid: 25605 + - uid: 26108 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-69.5 + pos: 87.5,4.5 parent: 2 - - uid: 25606 + - uid: 26109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-78.5 + rot: 1.5707963267948966 rad + pos: 117.5,-37.5 parent: 2 - - uid: 25607 + - uid: 26110 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-77.5 + rot: 1.5707963267948966 rad + pos: 118.5,-37.5 parent: 2 - - uid: 25608 + - uid: 26111 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-14.5 + rot: 1.5707963267948966 rad + pos: 119.5,-37.5 parent: 2 - - uid: 25609 + - uid: 26112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-16.5 + rot: 1.5707963267948966 rad + pos: 120.5,-37.5 parent: 2 - - uid: 25610 + - uid: 26113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-17.5 + rot: 1.5707963267948966 rad + pos: 117.5,-41.5 parent: 2 - - uid: 25611 + - uid: 26114 components: - type: Transform - pos: 42.5,-27.5 + rot: 1.5707963267948966 rad + pos: 118.5,-41.5 parent: 2 - - uid: 25612 + - uid: 26115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,27.5 + rot: 1.5707963267948966 rad + pos: 119.5,-41.5 parent: 2 - - uid: 25613 + - uid: 26116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,27.5 + rot: 1.5707963267948966 rad + pos: 120.5,-41.5 parent: 2 - - uid: 25614 + - uid: 26117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,28.5 + rot: 1.5707963267948966 rad + pos: 124.5,-37.5 parent: 2 - - uid: 25615 + - uid: 26118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,28.5 + rot: 1.5707963267948966 rad + pos: 125.5,-37.5 parent: 2 - - uid: 25616 + - uid: 26119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,28.5 + rot: 1.5707963267948966 rad + pos: 126.5,-37.5 parent: 2 - - uid: 25617 + - uid: 26120 components: - type: Transform - pos: 21.5,29.5 + rot: 1.5707963267948966 rad + pos: 127.5,-37.5 parent: 2 - - uid: 25618 + - uid: 26121 components: - type: Transform - pos: 20.5,28.5 + rot: 1.5707963267948966 rad + pos: 124.5,-41.5 parent: 2 - - uid: 25619 + - uid: 26122 components: - type: Transform - pos: 21.5,28.5 + rot: 1.5707963267948966 rad + pos: 125.5,-41.5 parent: 2 - - uid: 25620 + - uid: 26123 components: - type: Transform - pos: 9.5,30.5 + rot: 1.5707963267948966 rad + pos: 126.5,-41.5 parent: 2 - - uid: 25621 + - uid: 26124 components: - type: Transform - pos: 8.5,30.5 + rot: 1.5707963267948966 rad + pos: 127.5,-41.5 parent: 2 - - uid: 25622 + - uid: 26125 components: - type: Transform - pos: 10.5,29.5 + pos: -15.5,2.5 parent: 2 - - uid: 25623 + - uid: 26126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,32.5 + pos: -13.5,4.5 parent: 2 - - uid: 25624 + - uid: 26127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,32.5 + pos: -17.5,2.5 parent: 2 - - uid: 25625 + - uid: 26128 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,31.5 + pos: -14.5,3.5 parent: 2 - - uid: 25626 + - uid: 27951 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,32.5 + pos: 112.5,-85.5 parent: 2 - - uid: 25627 + - uid: 28995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,31.5 + pos: 112.5,-89.5 parent: 2 - - uid: 25628 + - uid: 28997 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,32.5 + pos: 112.5,-88.5 parent: 2 - - uid: 25629 + - uid: 28998 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,31.5 + pos: 112.5,-87.5 parent: 2 - - uid: 25630 + - uid: 28999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,31.5 + pos: 112.5,-84.5 parent: 2 - - uid: 25631 + - uid: 29004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,30.5 + pos: 114.5,-84.5 parent: 2 - - uid: 25632 + - uid: 29005 components: - type: Transform - pos: -12.5,29.5 + pos: 114.5,-83.5 parent: 2 - - uid: 25633 + - uid: 29006 components: - type: Transform - pos: -13.5,28.5 + pos: 114.5,-82.5 parent: 2 - - uid: 25634 + - uid: 29008 components: - type: Transform - pos: -14.5,27.5 + pos: 114.5,-81.5 parent: 2 - - uid: 25635 + - uid: 29011 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,21.5 + pos: 114.5,-78.5 parent: 2 - - uid: 25636 + - uid: 29020 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,21.5 + pos: 114.5,-77.5 parent: 2 - - uid: 25637 + - uid: 29029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,22.5 + pos: 114.5,-76.5 parent: 2 - - uid: 25638 + - uid: 29036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,21.5 + pos: 114.5,-75.5 parent: 2 - - uid: 25639 + - uid: 29037 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,21.5 + pos: 114.5,-74.5 parent: 2 - - uid: 25640 + - uid: 29038 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,22.5 + pos: 114.5,-72.5 parent: 2 - - uid: 25641 + - uid: 29039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,19.5 + pos: 111.5,-92.5 parent: 2 - - uid: 25642 + - uid: 29040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,18.5 + pos: 111.5,-93.5 parent: 2 - - uid: 25643 + - uid: 29041 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,17.5 + pos: 109.5,-94.5 parent: 2 - - uid: 25644 + - uid: 29042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,16.5 + pos: 109.5,-95.5 parent: 2 - - uid: 25645 + - uid: 29043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,15.5 + pos: 109.5,-96.5 parent: 2 - - uid: 25646 + - uid: 29044 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-33.5 + pos: 110.5,-94.5 parent: 2 - - uid: 25647 + - uid: 29045 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-76.5 + pos: 107.5,-97.5 parent: 2 - - uid: 25648 + - uid: 29046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-68.5 + pos: 106.5,-97.5 parent: 2 - - uid: 25649 + - uid: 29047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-75.5 + pos: 106.5,-98.5 parent: 2 - - uid: 25650 + - uid: 29048 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-73.5 + pos: 106.5,-99.5 parent: 2 - - uid: 25651 + - uid: 29049 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-72.5 + pos: 106.5,-100.5 parent: 2 - - uid: 25652 + - uid: 29050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-69.5 + pos: 105.5,-100.5 parent: 2 - - uid: 25653 + - uid: 29051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-65.5 + pos: 99.5,-100.5 parent: 2 - - uid: 25654 + - uid: 29052 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-64.5 + pos: 103.5,-100.5 parent: 2 - - uid: 25655 + - uid: 29053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-59.5 + pos: 102.5,-100.5 parent: 2 - - uid: 25656 + - uid: 29150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-58.5 + pos: 101.5,-100.5 parent: 2 - - uid: 25657 + - uid: 29151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-56.5 + pos: 100.5,-100.5 parent: 2 - - uid: 25658 + - uid: 29152 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-54.5 + pos: 98.5,-100.5 parent: 2 - - uid: 25659 + - uid: 29153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-91.5 + pos: 97.5,-100.5 parent: 2 - - uid: 25660 + - uid: 29154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-92.5 + pos: 96.5,-100.5 parent: 2 - - uid: 25661 + - uid: 29155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-94.5 + pos: 95.5,-100.5 parent: 2 - - uid: 25662 + - uid: 29156 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-95.5 + pos: 94.5,-100.5 parent: 2 - - uid: 25663 + - uid: 29157 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-99.5 + pos: 91.5,-100.5 parent: 2 - - uid: 25664 + - uid: 29158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-100.5 + pos: 90.5,-100.5 parent: 2 - - uid: 25665 + - uid: 29159 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-101.5 + pos: 89.5,-100.5 parent: 2 - - uid: 25666 + - uid: 29160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-102.5 + pos: 89.5,-99.5 parent: 2 - - uid: 25667 + - uid: 29161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-103.5 + pos: 89.5,-98.5 parent: 2 - - uid: 25668 + - uid: 29162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-109.5 + pos: 87.5,-98.5 parent: 2 - - uid: 25669 + - uid: 29163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-110.5 + pos: 86.5,-98.5 parent: 2 - - uid: 25670 + - uid: 29164 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-109.5 + pos: 85.5,-98.5 parent: 2 - - uid: 25671 + - uid: 29251 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-106.5 + pos: -0.5,-12.5 parent: 2 - - uid: 25672 + - uid: 29252 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-107.5 + pos: 0.5,-12.5 parent: 2 - - uid: 25673 + - uid: 29253 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-113.5 + pos: 1.5,-12.5 parent: 2 - - uid: 25674 + - uid: 30198 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-114.5 + pos: 24.5,-30.5 parent: 2 - - uid: 25675 + - uid: 30338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-114.5 + rot: -1.5707963267948966 rad + pos: 0.5,-99.5 parent: 2 - - uid: 25676 + - uid: 30727 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-114.5 + rot: 1.5707963267948966 rad + pos: 4.5,-98.5 parent: 2 - - uid: 25677 + - uid: 33626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-114.5 + rot: 1.5707963267948966 rad + pos: 56.5,12.5 parent: 2 - - uid: 25678 + - uid: 35531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-114.5 + rot: -1.5707963267948966 rad + pos: 0.5,-98.5 parent: 2 - - uid: 25679 + - uid: 35532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-114.5 + rot: -1.5707963267948966 rad + pos: 0.5,-98.5 parent: 2 - - uid: 25680 + - uid: 35534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-114.5 + rot: -1.5707963267948966 rad + pos: -2.5,-77.5 parent: 2 - - uid: 25681 + - uid: 35538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-114.5 + pos: -5.5,-80.5 parent: 2 - - uid: 25682 + - uid: 39042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-114.5 + pos: -51.5,10.5 parent: 2 - - uid: 25683 + - uid: 39804 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-114.5 + pos: 25.5,-30.5 parent: 2 - - uid: 25684 + - uid: 40747 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,-114.5 - parent: 2 - - uid: 25685 + pos: 1.5,3.5 + parent: 40666 + - uid: 40748 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-112.5 - parent: 2 - - uid: 25686 + pos: -0.5,3.5 + parent: 40666 + - uid: 40749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-111.5 - parent: 2 - - uid: 25687 + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 40666 + - uid: 40750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-108.5 - parent: 2 - - uid: 25688 + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 40666 + - uid: 40751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-107.5 - parent: 2 - - uid: 25689 + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 40666 + - uid: 40752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-106.5 - parent: 2 - - uid: 25690 + pos: 4.5,2.5 + parent: 40666 + - uid: 40753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-105.5 - parent: 2 - - uid: 25691 + pos: -3.5,2.5 + parent: 40666 + - uid: 41253 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-102.5 - parent: 2 - - uid: 25692 + pos: -11.5,-15.5 + parent: 40828 + - uid: 41254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-99.5 - parent: 2 - - uid: 25694 + rot: 3.141592653589793 rad + pos: -11.5,-14.5 + parent: 40828 + - uid: 41255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-95.5 - parent: 2 - - uid: 25695 + rot: 3.141592653589793 rad + pos: -11.5,-13.5 + parent: 40828 + - uid: 41256 components: - type: Transform - pos: -51.5,-70.5 - parent: 2 - - uid: 25696 + rot: 3.141592653589793 rad + pos: -12.5,-13.5 + parent: 40828 + - uid: 41257 components: - type: Transform - pos: -48.5,-70.5 - parent: 2 - - uid: 25697 + rot: 3.141592653589793 rad + pos: -12.5,-12.5 + parent: 40828 + - uid: 41258 components: - type: Transform - pos: -47.5,-70.5 - parent: 2 - - uid: 25698 + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 40828 + - uid: 41259 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,29.5 - parent: 2 - - uid: 25699 + pos: -12.5,-11.5 + parent: 40828 + - uid: 41260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-95.5 - parent: 2 - - uid: 25700 + rot: 3.141592653589793 rad + pos: -12.5,-10.5 + parent: 40828 + - uid: 41261 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,-37.5 - parent: 2 - - uid: 25701 + pos: -11.5,-10.5 + parent: 40828 + - uid: 41262 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,39.5 - parent: 2 - - uid: 25702 + pos: -11.5,-9.5 + parent: 40828 + - uid: 41263 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-24.5 - parent: 2 - - uid: 25703 + pos: -11.5,-8.5 + parent: 40828 + - uid: 41264 components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,39.5 - parent: 2 - - uid: 25704 + pos: 12.5,-14.5 + parent: 40828 + - uid: 41265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-104.5 - parent: 2 - - uid: 25705 + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 40828 + - uid: 41266 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-38.5 - parent: 2 - - uid: 25706 + pos: 12.5,-8.5 + parent: 40828 + - uid: 41267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-99.5 - parent: 2 - - uid: 25707 + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 40828 + - uid: 41268 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-59.5 - parent: 2 - - uid: 25708 + pos: 7.5,-0.5 + parent: 40828 + - uid: 41269 components: - type: Transform rot: 3.141592653589793 rad - pos: 85.5,-70.5 - parent: 2 - - uid: 25709 + pos: -7.5,-4.5 + parent: 40828 + - uid: 41270 components: - type: Transform rot: 3.141592653589793 rad - pos: 85.5,-71.5 - parent: 2 - - uid: 25710 + pos: -7.5,-5.5 + parent: 40828 + - uid: 41271 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,-72.5 - parent: 2 - - uid: 25711 + pos: -7.5,-6.5 + parent: 40828 + - uid: 41272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-104.5 - parent: 2 - - uid: 25712 + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 40828 + - uid: 41273 components: - type: Transform - pos: 35.5,-91.5 - parent: 2 - - uid: 25713 + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 40828 + - uid: 41274 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,-76.5 - parent: 2 - - uid: 25714 + pos: -7.5,-11.5 + parent: 40828 + - uid: 41275 components: - type: Transform rot: 3.141592653589793 rad - pos: -60.5,-76.5 - parent: 2 - - uid: 25715 + pos: -7.5,-12.5 + parent: 40828 + - uid: 41276 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,16.5 - parent: 2 - - uid: 25716 + pos: -7.5,-13.5 + parent: 40828 + - uid: 41277 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,16.5 - parent: 2 - - uid: 25717 + pos: -5.5,-15.5 + parent: 40828 + - uid: 41278 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,13.5 - parent: 2 - - uid: 25718 + pos: -4.5,-15.5 + parent: 40828 + - uid: 41279 components: - type: Transform rot: 3.141592653589793 rad - pos: -70.5,16.5 - parent: 2 - - uid: 25719 + pos: -3.5,-15.5 + parent: 40828 + - uid: 41280 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,15.5 - parent: 2 - - uid: 25720 + pos: -0.5,-14.5 + parent: 40828 + - uid: 41281 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,-76.5 - parent: 2 - - uid: 25721 + pos: 0.5,-14.5 + parent: 40828 + - uid: 41282 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-64.5 - parent: 2 - - uid: 25722 + pos: 1.5,-14.5 + parent: 40828 + - uid: 41283 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-78.5 - parent: 2 - - uid: 25723 + pos: 4.5,-15.5 + parent: 40828 + - uid: 41284 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,-78.5 - parent: 2 - - uid: 25724 + pos: 5.5,-15.5 + parent: 40828 + - uid: 41285 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-2.5 - parent: 2 - - uid: 25725 + pos: 6.5,-15.5 + parent: 40828 + - uid: 41286 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-46.5 - parent: 2 - - uid: 25726 + pos: 8.5,-13.5 + parent: 40828 + - uid: 41287 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-30.5 - parent: 2 - - uid: 25727 + pos: 8.5,-12.5 + parent: 40828 + - uid: 41288 components: - type: Transform rot: 3.141592653589793 rad - pos: 88.5,-58.5 - parent: 2 - - uid: 25728 + pos: 8.5,-11.5 + parent: 40828 + - uid: 41289 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-56.5 - parent: 2 - - uid: 25729 + pos: 8.5,-10.5 + parent: 40828 + - uid: 41290 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-55.5 - parent: 2 - - uid: 25730 + pos: 8.5,-7.5 + parent: 40828 + - uid: 41291 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-58.5 - parent: 2 - - uid: 25731 + pos: 8.5,-6.5 + parent: 40828 + - uid: 41292 components: - type: Transform rot: 3.141592653589793 rad - pos: 88.5,-57.5 - parent: 2 - - uid: 25732 + pos: 8.5,-5.5 + parent: 40828 + - uid: 41293 components: - type: Transform rot: 3.141592653589793 rad - pos: 74.5,-51.5 - parent: 2 - - uid: 25733 + pos: 8.5,-4.5 + parent: 40828 + - uid: 41294 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,-51.5 - parent: 2 - - uid: 25734 + pos: 7.5,-1.5 + parent: 40828 + - uid: 41297 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,-67.5 - parent: 2 - - uid: 25735 + pos: -6.5,-2.5 + parent: 40828 + - uid: 41298 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,-67.5 - parent: 2 - - uid: 25736 + pos: -6.5,-1.5 + parent: 40828 + - uid: 41299 components: - type: Transform - pos: -69.5,-76.5 - parent: 2 - - uid: 25737 + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 40828 + - uid: 41300 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,-73.5 - parent: 2 - - uid: 25738 + pos: 8.5,10.5 + parent: 40828 + - uid: 41301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-98.5 - parent: 2 - - uid: 25739 + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 40828 + - uid: 41302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-96.5 - parent: 2 - - uid: 25740 + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 40828 + - uid: 41303 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,9.5 - parent: 2 - - uid: 25741 + pos: -8.5,6.5 + parent: 40828 + - uid: 41304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-97.5 - parent: 2 - - uid: 25742 + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 40828 + - uid: 41305 components: - type: Transform rot: 3.141592653589793 rad - pos: 76.5,-51.5 - parent: 2 - - uid: 25743 + pos: -8.5,8.5 + parent: 40828 + - uid: 41306 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-46.5 - parent: 2 - - uid: 25744 + pos: -7.5,10.5 + parent: 40828 + - uid: 41307 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-51.5 - parent: 2 - - uid: 25745 + pos: 9.5,8.5 + parent: 40828 + - uid: 41308 components: - type: Transform rot: 3.141592653589793 rad - pos: 78.5,-51.5 - parent: 2 - - uid: 25746 + pos: 9.5,7.5 + parent: 40828 + - uid: 41309 components: - type: Transform rot: 3.141592653589793 rad - pos: 80.5,-68.5 - parent: 2 - - uid: 25747 + pos: 9.5,6.5 + parent: 40828 + - uid: 41310 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,-68.5 - parent: 2 - - uid: 25748 + pos: 8.5,3.5 + parent: 40828 + - uid: 41311 components: - type: Transform rot: 3.141592653589793 rad - pos: 78.5,-68.5 - parent: 2 - - uid: 25749 + pos: 8.5,2.5 + parent: 40828 + - uid: 41312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-68.5 - parent: 2 - - uid: 25750 + rot: 1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 40828 + - uid: 41313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-68.5 - parent: 2 - - uid: 25751 + rot: 1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 40828 + - uid: 41314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-65.5 - parent: 2 - - uid: 25752 + rot: 1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 40828 + - uid: 41315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-63.5 - parent: 2 - - uid: 25753 + rot: 1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 40828 + - uid: 41316 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 2 - - uid: 25754 + rot: 1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 40828 + - uid: 41317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-33.5 - parent: 2 - - uid: 25755 + rot: 1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 40828 + - uid: 41828 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-34.5 - parent: 2 - - uid: 25756 + pos: 6.5,3.5 + parent: 41669 + - uid: 41829 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-28.5 - parent: 2 - - uid: 25757 + pos: 2.5,3.5 + parent: 41669 + - uid: 41830 components: - type: Transform rot: 3.141592653589793 rad - pos: 80.5,-28.5 - parent: 2 - - uid: 25758 + pos: 2.5,4.5 + parent: 41669 + - uid: 41831 components: - type: Transform rot: 3.141592653589793 rad - pos: 80.5,-27.5 - parent: 2 - - uid: 25759 + pos: 3.5,5.5 + parent: 41669 + - uid: 41832 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-58.5 - parent: 2 - - uid: 25760 + pos: 4.5,5.5 + parent: 41669 + - uid: 41833 components: - type: Transform - pos: -69.5,-78.5 - parent: 2 - - uid: 25761 + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 41669 + - uid: 41834 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,32.5 - parent: 2 - - uid: 25762 + pos: 6.5,4.5 + parent: 41669 + - uid: 42361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-65.5 + rot: -1.5707963267948966 rad + pos: 23.5,29.5 parent: 2 - - uid: 25763 + - uid: 43328 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-30.5 + pos: -52.5,10.5 parent: 2 - - uid: 25764 + - uid: 43329 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-30.5 + pos: -50.5,10.5 parent: 2 - - uid: 25765 + - uid: 43374 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-26.5 + rot: 1.5707963267948966 rad + pos: 60.5,-37.5 parent: 2 - - uid: 25766 + - uid: 43375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-57.5 + rot: 1.5707963267948966 rad + pos: 60.5,-36.5 parent: 2 - - uid: 25767 + - uid: 43816 components: - type: Transform - pos: -47.5,-37.5 + pos: -58.5,-130.5 parent: 2 - - uid: 25768 + - uid: 43817 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-68.5 + pos: -58.5,-131.5 parent: 2 - - uid: 25769 + - uid: 43819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-68.5 + pos: -58.5,-133.5 parent: 2 - - uid: 25770 + - uid: 43820 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-68.5 + pos: -57.5,-133.5 parent: 2 - - uid: 25771 + - uid: 43821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-73.5 + pos: -57.5,-134.5 parent: 2 - - uid: 25772 + - uid: 43824 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-68.5 + pos: -54.5,-134.5 parent: 2 - - uid: 25773 + - uid: 43825 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-68.5 + pos: -53.5,-134.5 parent: 2 - - uid: 25774 + - uid: 43826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-75.5 + pos: -53.5,-133.5 parent: 2 - - uid: 25775 + - uid: 43830 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-38.5 + pos: -52.5,-130.5 parent: 2 - - uid: 25776 + - uid: 43831 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-39.5 + pos: -56.5,-127.5 parent: 2 - - uid: 25777 + - uid: 43832 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-34.5 + pos: -56.5,-126.5 parent: 2 - - uid: 25778 + - uid: 43833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-66.5 + pos: -56.5,-125.5 parent: 2 - - uid: 25779 + - uid: 43834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-95.5 + pos: -56.5,-124.5 parent: 2 - - uid: 25780 + - uid: 43835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-93.5 + pos: -56.5,-123.5 parent: 2 - - uid: 25782 + - uid: 43836 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-104.5 + pos: -56.5,-122.5 parent: 2 - - uid: 25783 + - uid: 43837 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-103.5 + pos: -54.5,-122.5 parent: 2 - - uid: 25784 + - uid: 43838 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-104.5 + pos: -54.5,-123.5 parent: 2 - - uid: 25785 + - uid: 43839 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-104.5 + pos: -54.5,-124.5 parent: 2 - - uid: 25786 + - uid: 43841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-103.5 + pos: -54.5,-126.5 parent: 2 - - uid: 25787 + - uid: 43842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-100.5 + pos: -54.5,-127.5 parent: 2 - - uid: 25788 + - uid: 43849 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-100.5 + rot: 1.5707963267948966 rad + pos: -51.5,-127.5 parent: 2 - - uid: 25789 + - uid: 43850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-100.5 + rot: 1.5707963267948966 rad + pos: -51.5,-126.5 parent: 2 - - uid: 25790 + - uid: 44106 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-99.5 + pos: -23.5,-108.5 parent: 2 - - uid: 25791 + - uid: 44107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-96.5 + pos: -22.5,-108.5 parent: 2 - - uid: 25792 + - uid: 44108 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-95.5 + pos: -21.5,-108.5 parent: 2 - - uid: 25793 + - uid: 44109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-100.5 + pos: -20.5,-108.5 parent: 2 - - uid: 25794 + - uid: 44110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-99.5 + pos: -19.5,-108.5 parent: 2 - - uid: 25795 + - uid: 44111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-96.5 + pos: -18.5,-108.5 parent: 2 - - uid: 25796 + - uid: 44147 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-95.5 + rot: 1.5707963267948966 rad + pos: 3.5,-105.5 parent: 2 - - uid: 25797 + - uid: 44148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-92.5 + rot: 1.5707963267948966 rad + pos: 0.5,-105.5 parent: 2 - - uid: 25798 + - uid: 44149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-91.5 + rot: 1.5707963267948966 rad + pos: 1.5,-105.5 parent: 2 - - uid: 25799 + - uid: 44172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-90.5 + rot: 1.5707963267948966 rad + pos: -62.5,-58.5 parent: 2 - - uid: 25800 + - uid: 44173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-90.5 + rot: 1.5707963267948966 rad + pos: -62.5,-57.5 parent: 2 - - uid: 25801 + - uid: 44174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-87.5 + rot: 1.5707963267948966 rad + pos: -62.5,-56.5 parent: 2 - - uid: 25802 + - uid: 44177 components: - type: Transform rot: 3.141592653589793 rad - pos: -74.5,-86.5 + pos: -61.5,-55.5 parent: 2 - - uid: 25803 + - uid: 44186 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,-86.5 + pos: -50.5,21.5 parent: 2 - - uid: 25804 + - uid: 44187 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,-83.5 + pos: -42.5,21.5 parent: 2 - - uid: 25805 +- proto: GrilleBroken + entities: + - uid: 12262 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-82.5 + pos: -8.5,-42.5 parent: 2 - - uid: 25806 + - uid: 12263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-81.5 + pos: -7.5,-41.5 parent: 2 - - uid: 25807 + - uid: 12288 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-109.5 + rot: 1.5707963267948966 rad + pos: -0.5,-43.5 parent: 2 - - uid: 25808 + - uid: 14910 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-110.5 + pos: -6.5,-30.5 parent: 2 - - uid: 25809 + - uid: 26129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-111.5 + rot: 1.5707963267948966 rad + pos: 62.5,-91.5 parent: 2 - - uid: 25810 + - uid: 26130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-112.5 + pos: 63.5,-91.5 parent: 2 - - uid: 25811 + - uid: 26131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-113.5 + rot: -1.5707963267948966 rad + pos: 84.5,-72.5 parent: 2 - - uid: 25812 + - uid: 26132 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-114.5 + pos: 12.5,28.5 parent: 2 - - uid: 25813 + - uid: 26133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-115.5 + rot: 1.5707963267948966 rad + pos: 85.5,-69.5 parent: 2 - - uid: 25814 + - uid: 26134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-116.5 + pos: 85.5,-69.5 parent: 2 - - uid: 25815 + - uid: 26135 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-116.5 + pos: 68.5,-75.5 parent: 2 - - uid: 25816 + - uid: 26136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-115.5 + rot: -1.5707963267948966 rad + pos: 68.5,-75.5 parent: 2 - - uid: 25817 + - uid: 26137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-114.5 + rot: -1.5707963267948966 rad + pos: 59.5,-104.5 parent: 2 - - uid: 25818 + - uid: 26138 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-113.5 + pos: 57.5,-106.5 parent: 2 - - uid: 25819 + - uid: 26139 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-112.5 + pos: -56.5,0.5 parent: 2 - - uid: 25820 + - uid: 26140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-111.5 + pos: -56.5,0.5 parent: 2 - - uid: 25821 + - uid: 26141 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-110.5 + pos: -56.5,-2.5 parent: 2 - - uid: 25822 + - uid: 26142 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-109.5 + pos: -56.5,-1.5 parent: 2 - - uid: 25824 + - uid: 26143 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,0.5 + pos: 8.5,-107.5 parent: 2 - - uid: 25825 + - uid: 26144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,1.5 + pos: 11.5,-107.5 parent: 2 - - uid: 25826 + - uid: 26145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,2.5 + pos: 13.5,-107.5 parent: 2 - - uid: 25827 + - uid: 26146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,3.5 + rot: 1.5707963267948966 rad + pos: 8.5,-107.5 parent: 2 - - uid: 25828 + - uid: 26148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,4.5 + rot: 1.5707963267948966 rad + pos: 5.5,-106.5 parent: 2 - - uid: 25829 + - uid: 26150 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,0.5 + pos: 5.5,-106.5 parent: 2 - - uid: 25830 + - uid: 26151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,1.5 + pos: 81.5,-76.5 parent: 2 - - uid: 25831 + - uid: 26152 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,2.5 + rot: 1.5707963267948966 rad + pos: 80.5,-78.5 parent: 2 - - uid: 25832 + - uid: 26153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,3.5 + rot: -1.5707963267948966 rad + pos: 10.5,30.5 parent: 2 - - uid: 25833 + - uid: 26154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,4.5 + pos: 10.5,30.5 parent: 2 - - uid: 25834 + - uid: 26155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,29.5 + rot: -1.5707963267948966 rad + pos: -0.5,32.5 parent: 2 - - uid: 25835 + - uid: 26156 components: - type: Transform rot: 3.141592653589793 rad - pos: -91.5,-0.5 + pos: -0.5,32.5 parent: 2 - - uid: 25836 + - uid: 26157 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,2.5 + pos: -2.5,31.5 parent: 2 - - uid: 25837 + - uid: 26158 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,26.5 + pos: -3.5,31.5 parent: 2 - - uid: 25838 + - uid: 26159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-109.5 + rot: -1.5707963267948966 rad + pos: -12.5,28.5 parent: 2 - - uid: 25839 + - uid: 26160 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-110.5 + pos: -12.5,28.5 parent: 2 - - uid: 25840 + - uid: 26161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,20.5 + rot: -1.5707963267948966 rad + pos: -28.5,21.5 parent: 2 - - uid: 25841 + - uid: 26162 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,-110.5 + pos: -28.5,21.5 parent: 2 - - uid: 25842 + - uid: 26163 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,13.5 + pos: -27.5,21.5 parent: 2 - - uid: 25843 + - uid: 26164 components: - type: Transform rot: 3.141592653589793 rad - pos: -89.5,18.5 + pos: -57.5,17.5 parent: 2 - - uid: 25844 + - uid: 26165 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,17.5 + pos: -81.5,-35.5 parent: 2 - - uid: 25845 + - uid: 26166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,12.5 + rot: -1.5707963267948966 rad + pos: -81.5,-35.5 parent: 2 - - uid: 25846 + - uid: 26167 components: - type: Transform rot: 3.141592653589793 rad - pos: -89.5,15.5 + pos: -81.5,-34.5 parent: 2 - - uid: 25847 + - uid: 26168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,9.5 + pos: -76.5,-79.5 parent: 2 - - uid: 25848 + - uid: 26169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,7.5 + rot: -1.5707963267948966 rad + pos: -76.5,-78.5 parent: 2 - - uid: 25849 + - uid: 26170 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,5.5 + rot: -1.5707963267948966 rad + pos: -76.5,-79.5 parent: 2 - - uid: 25850 + - uid: 26171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,5.5 + pos: -83.5,-63.5 parent: 2 - - uid: 25851 + - uid: 26172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-1.5 + pos: -81.5,-55.5 parent: 2 - - uid: 25852 + - uid: 26173 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,18.5 + pos: -82.5,-70.5 parent: 2 - - uid: 25853 + - uid: 26174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-17.5 + pos: -81.5,-71.5 parent: 2 - - uid: 25854 + - uid: 26175 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-15.5 + rot: -1.5707963267948966 rad + pos: -81.5,-71.5 parent: 2 - - uid: 25855 + - uid: 26176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-15.5 + pos: -82.5,-67.5 parent: 2 - - uid: 25856 + - uid: 26177 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-14.5 + rot: -1.5707963267948966 rad + pos: -83.5,-63.5 parent: 2 - - uid: 25857 + - uid: 26178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-11.5 + rot: -1.5707963267948966 rad + pos: -83.5,-60.5 parent: 2 - - uid: 25858 + - uid: 26179 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-10.5 + rot: -1.5707963267948966 rad + pos: -83.5,-61.5 parent: 2 - - uid: 25859 + - uid: 26180 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-7.5 + rot: -1.5707963267948966 rad + pos: -82.5,-58.5 parent: 2 - - uid: 25860 + - uid: 26181 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-6.5 + pos: -82.5,-58.5 parent: 2 - - uid: 25861 + - uid: 26182 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-5.5 + pos: -81.5,-57.5 parent: 2 - - uid: 25862 + - uid: 26183 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-4.5 + pos: -81.5,-55.5 parent: 2 - - uid: 25863 + - uid: 26184 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-17.5 + pos: 27.5,-104.5 parent: 2 - - uid: 25864 + - uid: 26185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-17.5 + rot: -1.5707963267948966 rad + pos: 27.5,-93.5 parent: 2 - - uid: 25865 + - uid: 26186 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,-17.5 + pos: 27.5,-96.5 parent: 2 - - uid: 25866 + - uid: 26187 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-114.5 + pos: 27.5,-98.5 parent: 2 - - uid: 25867 + - uid: 26188 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,-111.5 + pos: 28.5,-110.5 parent: 2 - - uid: 25868 + - uid: 26189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-111.5 + rot: 1.5707963267948966 rad + pos: 28.5,-110.5 parent: 2 - - uid: 25869 + - uid: 26190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-112.5 + pos: 27.5,-105.5 parent: 2 - - uid: 25870 + - uid: 26191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-115.5 + pos: 28.5,-106.5 parent: 2 - - uid: 25871 + - uid: 26192 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-124.5 + rot: -1.5707963267948966 rad + pos: 28.5,-106.5 parent: 2 - - uid: 25872 + - uid: 26193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-124.5 + rot: -1.5707963267948966 rad + pos: 28.5,-108.5 parent: 2 - - uid: 25873 + - uid: 26194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-124.5 + rot: -1.5707963267948966 rad + pos: 53.5,-112.5 parent: 2 - - uid: 25874 + - uid: 26195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-126.5 + rot: 1.5707963267948966 rad + pos: 55.5,-110.5 parent: 2 - - uid: 25875 + - uid: 26196 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-125.5 + rot: 1.5707963267948966 rad + pos: 55.5,-108.5 parent: 2 - - uid: 25878 + - uid: 26197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-124.5 + pos: 55.5,-108.5 parent: 2 - - uid: 25879 + - uid: 26198 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-124.5 + pos: 53.5,-110.5 parent: 2 - - uid: 25880 + - uid: 26199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-125.5 + rot: 1.5707963267948966 rad + pos: 51.5,-112.5 parent: 2 - - uid: 25881 + - uid: 26200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-128.5 + pos: 49.5,-113.5 parent: 2 - - uid: 25882 + - uid: 26201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-126.5 + rot: 1.5707963267948966 rad + pos: 51.5,-113.5 parent: 2 - - uid: 25883 + - uid: 26202 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-126.5 + pos: 51.5,-113.5 parent: 2 - - uid: 25884 + - uid: 26203 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-125.5 + pos: 55.5,-110.5 parent: 2 - - uid: 25885 + - uid: 26204 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-128.5 + pos: 56.5,-106.5 parent: 2 - - uid: 25886 + - uid: 26205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-127.5 + pos: 30.5,-112.5 parent: 2 - - uid: 25887 + - uid: 26206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-128.5 + rot: -1.5707963267948966 rad + pos: 32.5,-114.5 parent: 2 - - uid: 25888 + - uid: 26207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-127.5 + pos: 32.5,-114.5 parent: 2 - - uid: 25889 + - uid: 26208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-127.5 + rot: -1.5707963267948966 rad + pos: 38.5,-114.5 parent: 2 - - uid: 25890 + - uid: 26209 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-126.5 + pos: 38.5,-114.5 parent: 2 - - uid: 25891 + - uid: 26210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-125.5 + rot: 1.5707963267948966 rad + pos: 34.5,-114.5 parent: 2 - - uid: 25892 + - uid: 26211 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-123.5 + rot: 1.5707963267948966 rad + pos: 40.5,-114.5 parent: 2 - - uid: 25893 + - uid: 26212 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-123.5 + rot: -1.5707963267948966 rad + pos: 44.5,-114.5 parent: 2 - - uid: 25894 + - uid: 26213 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-122.5 + rot: 1.5707963267948966 rad + pos: 46.5,-114.5 parent: 2 - - uid: 25895 + - uid: 26214 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-120.5 + pos: 27.5,-93.5 parent: 2 - - uid: 25896 + - uid: 26215 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-120.5 + pos: 53.5,-112.5 parent: 2 - - uid: 25897 + - uid: 26216 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-118.5 + pos: 27.5,-90.5 parent: 2 - - uid: 25898 + - uid: 26217 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-117.5 + rot: -1.5707963267948966 rad + pos: 27.5,-90.5 parent: 2 - - uid: 25899 + - uid: 26218 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-114.5 + pos: 47.5,27.5 parent: 2 - - uid: 25900 + - uid: 26219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-112.5 + rot: 1.5707963267948966 rad + pos: 12.5,28.5 parent: 2 - - uid: 25901 + - uid: 26220 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-110.5 + pos: 87.5,-68.5 parent: 2 - - uid: 25902 + - uid: 26221 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-110.5 + pos: -66.5,15.5 parent: 2 - - uid: 25907 + - uid: 26222 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-97.5 + rot: 1.5707963267948966 rad + pos: -72.5,16.5 parent: 2 - - uid: 25908 + - uid: 26223 components: - type: Transform rot: 3.141592653589793 rad - pos: 96.5,-97.5 + pos: -72.5,16.5 parent: 2 - - uid: 25909 + - uid: 26224 components: - type: Transform - rot: 3.141592653589793 rad - pos: 96.5,-96.5 + rot: -1.5707963267948966 rad + pos: -74.5,15.5 parent: 2 - - uid: 25910 + - uid: 26225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 100.5,-97.5 + rot: 1.5707963267948966 rad + pos: -66.5,15.5 parent: 2 - - uid: 25911 + - uid: 26226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 102.5,-96.5 + rot: -1.5707963267948966 rad + pos: 63.5,-95.5 parent: 2 - - uid: 25912 + - uid: 26227 components: - type: Transform - rot: 3.141592653589793 rad - pos: 102.5,-95.5 + rot: 1.5707963267948966 rad + pos: 64.5,-94.5 parent: 2 - - uid: 25913 + - uid: 26228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,-94.5 + pos: -75.5,-81.5 parent: 2 - - uid: 25914 + - uid: 26229 components: - type: Transform rot: 3.141592653589793 rad - pos: 94.5,-94.5 + pos: -74.5,-88.5 parent: 2 - - uid: 25915 + - uid: 26230 components: - type: Transform rot: 3.141592653589793 rad - pos: 103.5,-93.5 + pos: -76.5,-97.5 parent: 2 - - uid: 25916 + - uid: 26231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 94.5,-96.5 + pos: -74.5,-102.5 parent: 2 - - uid: 25917 + - uid: 26232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,-81.5 + rot: -1.5707963267948966 rad + pos: -74.5,-100.5 parent: 2 - - uid: 25918 + - uid: 26233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-87.5 + pos: -60.5,-94.5 parent: 2 - - uid: 25919 + - uid: 26234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-83.5 + rot: 1.5707963267948966 rad + pos: -60.5,-94.5 parent: 2 - - uid: 25920 + - uid: 26235 components: - type: Transform rot: 3.141592653589793 rad - pos: 87.5,-84.5 + pos: -60.5,-94.5 parent: 2 - - uid: 25921 + - uid: 26236 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-85.5 + pos: -93.5,-0.5 parent: 2 - - uid: 25922 + - uid: 26237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-88.5 + rot: 1.5707963267948966 rad + pos: -92.5,-0.5 parent: 2 - - uid: 25923 + - uid: 26238 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-89.5 + pos: -92.5,-0.5 parent: 2 - - uid: 25924 + - uid: 26239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-93.5 + rot: -1.5707963267948966 rad + pos: -93.5,-0.5 parent: 2 - - uid: 25925 + - uid: 26240 components: - type: Transform rot: 3.141592653589793 rad - pos: 90.5,-92.5 + pos: -75.5,19.5 parent: 2 - - uid: 25926 + - uid: 26241 components: - type: Transform - rot: 3.141592653589793 rad - pos: 105.5,-93.5 + pos: -89.5,19.5 parent: 2 - - uid: 25927 + - uid: 26242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-93.5 + rot: -1.5707963267948966 rad + pos: -89.5,19.5 parent: 2 - - uid: 25928 + - uid: 26243 components: - type: Transform rot: 3.141592653589793 rad - pos: 106.5,-93.5 + pos: -88.5,11.5 parent: 2 - - uid: 25929 + - uid: 26244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 106.5,-92.5 + rot: 1.5707963267948966 rad + pos: -74.5,18.5 parent: 2 - - uid: 25930 + - uid: 26245 components: - type: Transform - rot: 3.141592653589793 rad - pos: 108.5,-85.5 + rot: -1.5707963267948966 rad + pos: -90.5,-15.5 parent: 2 - - uid: 25931 + - uid: 26246 components: - type: Transform - rot: 3.141592653589793 rad - pos: 107.5,-89.5 + rot: -1.5707963267948966 rad + pos: -93.5,-8.5 parent: 2 - - uid: 25932 + - uid: 26247 components: - type: Transform rot: 3.141592653589793 rad - pos: 107.5,-88.5 + pos: -93.5,-8.5 parent: 2 - - uid: 25933 + - uid: 26248 components: - type: Transform rot: 3.141592653589793 rad - pos: 107.5,-85.5 + pos: -61.5,-116.5 parent: 2 - - uid: 25934 + - uid: 26249 components: - type: Transform - rot: 3.141592653589793 rad - pos: 107.5,-86.5 + rot: 1.5707963267948966 rad + pos: -60.5,-126.5 parent: 2 - - uid: 25935 + - uid: 26250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-77.5 + rot: -1.5707963267948966 rad + pos: -58.5,-126.5 parent: 2 - - uid: 25936 + - uid: 26251 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-83.5 + rot: -1.5707963267948966 rad + pos: -52.5,-124.5 parent: 2 - - uid: 25937 + - uid: 26252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-81.5 + rot: -1.5707963267948966 rad + pos: -46.5,-125.5 parent: 2 - - uid: 25938 + - uid: 26253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-80.5 + rot: 1.5707963267948966 rad + pos: -42.5,-128.5 parent: 2 - - uid: 25939 + - uid: 26254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-76.5 + rot: 1.5707963267948966 rad + pos: 95.5,-96.5 parent: 2 - - uid: 25940 + - uid: 26255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-76.5 + rot: -1.5707963267948966 rad + pos: 109.5,-62.5 parent: 2 - - uid: 25941 + - uid: 26256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-74.5 + pos: 109.5,-62.5 parent: 2 - - uid: 25942 + - uid: 26257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-72.5 + pos: 109.5,-65.5 parent: 2 - - uid: 25943 + - uid: 26258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-71.5 + rot: 1.5707963267948966 rad + pos: 109.5,-65.5 parent: 2 - - uid: 25944 + - uid: 26259 components: - type: Transform rot: 3.141592653589793 rad - pos: 110.5,-68.5 + pos: 110.5,-69.5 parent: 2 - - uid: 25945 + - uid: 26260 components: - type: Transform rot: 3.141592653589793 rad - pos: 110.5,-67.5 + pos: 109.5,-75.5 parent: 2 - - uid: 25946 + - uid: 26261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-66.5 + pos: 109.5,-75.5 parent: 2 - - uid: 25947 + - uid: 26262 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-63.5 + rot: -1.5707963267948966 rad + pos: 109.5,-75.5 parent: 2 - - uid: 25948 + - uid: 26263 components: - type: Transform rot: 3.141592653589793 rad - pos: 108.5,-62.5 + pos: 109.5,-84.5 parent: 2 - - uid: 25949 + - uid: 26264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 107.5,-62.5 + rot: -1.5707963267948966 rad + pos: 104.5,-93.5 parent: 2 - - uid: 25950 + - uid: 26265 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-26.5 + rot: 1.5707963267948966 rad + pos: 104.5,-93.5 parent: 2 - - uid: 25951 + - uid: 26266 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-90.5 + rot: 1.5707963267948966 rad + pos: 99.5,-97.5 parent: 2 - - uid: 25952 + - uid: 26267 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-90.5 + pos: 99.5,-97.5 parent: 2 - - uid: 25953 + - uid: 26268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,36.5 + rot: -1.5707963267948966 rad + pos: 95.5,-96.5 parent: 2 - - uid: 25954 + - uid: 26269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,34.5 + pos: 89.5,-86.5 parent: 2 - - uid: 25955 + - uid: 26270 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,31.5 + pos: 84.5,-82.5 parent: 2 - - uid: 25956 + - uid: 26271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,33.5 + pos: 87.5,-82.5 parent: 2 - - uid: 25957 + - uid: 26272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 112.5,-52.5 + pos: 86.5,-82.5 parent: 2 - - uid: 25958 + - uid: 26273 components: - type: Transform rot: 3.141592653589793 rad - pos: 114.5,-50.5 + pos: 45.5,35.5 parent: 2 - - uid: 25959 + - uid: 26274 components: - type: Transform rot: 3.141592653589793 rad - pos: 114.5,-49.5 + pos: 48.5,30.5 parent: 2 - - uid: 25960 + - uid: 26275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 115.5,-43.5 + rot: 1.5707963267948966 rad + pos: 46.5,34.5 parent: 2 - - uid: 25961 + - uid: 26276 components: - type: Transform rot: 3.141592653589793 rad - pos: 115.5,-44.5 + pos: 111.5,-37.5 parent: 2 - - uid: 25962 + - uid: 26277 components: - type: Transform rot: 3.141592653589793 rad - pos: 115.5,-47.5 + pos: 115.5,-45.5 parent: 2 - - uid: 25963 + - uid: 26278 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-35.5 + pos: 115.5,-46.5 parent: 2 - - uid: 25964 + - uid: 26279 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-14.5 + pos: 114.5,-48.5 parent: 2 - - uid: 25965 + - uid: 26280 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-18.5 + pos: 112.5,-51.5 parent: 2 - - uid: 25966 + - uid: 26281 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-19.5 + pos: -90.5,-26.5 parent: 2 - - uid: 25967 + - uid: 26282 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-23.5 + pos: -92.5,-20.5 parent: 2 - - uid: 25968 + - uid: 26283 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-24.5 + rot: -1.5707963267948966 rad + pos: -91.5,-24.5 parent: 2 - - uid: 25969 + - uid: 26284 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-28.5 + pos: -76.5,24.5 parent: 2 - - uid: 25970 + - uid: 26285 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-27.5 + pos: -88.5,24.5 parent: 2 - - uid: 25971 + - uid: 26286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-21.5 + rot: 1.5707963267948966 rad + pos: -78.5,26.5 parent: 2 - - uid: 25972 + - uid: 26287 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,-23.5 + pos: -79.5,27.5 parent: 2 - - uid: 25973 + - uid: 26288 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-2.5 + pos: -85.5,29.5 parent: 2 - - uid: 25974 + - uid: 26289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-4.5 + rot: 1.5707963267948966 rad + pos: -83.5,32.5 parent: 2 - - uid: 25975 + - uid: 26290 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-0.5 + pos: 68.5,-93.5 parent: 2 - - uid: 25976 + - uid: 26291 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,1.5 + pos: 69.5,-94.5 parent: 2 - - uid: 25977 + - uid: 26292 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,0.5 + pos: 83.5,-97.5 parent: 2 - - uid: 25978 + - uid: 26293 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-24.5 + pos: 74.5,-99.5 parent: 2 - - uid: 25979 + - uid: 26294 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-24.5 + rot: 1.5707963267948966 rad + pos: 75.5,-99.5 parent: 2 - - uid: 25980 + - uid: 26295 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-77.5 + rot: 1.5707963267948966 rad + pos: 79.5,-98.5 parent: 2 - - uid: 25981 + - uid: 26296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-77.5 + pos: 84.5,-91.5 parent: 2 - - uid: 25982 + - uid: 26297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,31.5 + rot: 1.5707963267948966 rad + pos: 85.5,-90.5 parent: 2 - - uid: 25983 + - uid: 26298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,22.5 + pos: 90.5,-91.5 parent: 2 - - uid: 25984 + - uid: 26299 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,23.5 + rot: 1.5707963267948966 rad + pos: 52.5,27.5 parent: 2 - - uid: 25985 + - uid: 26300 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,26.5 + rot: 1.5707963267948966 rad + pos: 78.5,13.5 parent: 2 - - uid: 25986 + - uid: 26301 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,30.5 + rot: 1.5707963267948966 rad + pos: 82.5,10.5 parent: 2 - - uid: 25987 + - uid: 26302 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,31.5 + pos: 90.5,1.5 parent: 2 - - uid: 25988 + - uid: 26303 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,22.5 + pos: 93.5,-3.5 parent: 2 - - uid: 25989 + - uid: 26304 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,32.5 + pos: 93.5,-7.5 parent: 2 - - uid: 25990 +- proto: GrilleDiagonal + entities: + - uid: 26305 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,32.5 + pos: -11.5,25.5 parent: 2 - - uid: 25991 + - uid: 26306 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,30.5 + pos: -10.5,26.5 parent: 2 - - uid: 25992 + - uid: 26307 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,28.5 + pos: -6.5,27.5 parent: 2 - - uid: 25993 + - uid: 26308 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,26.5 + pos: -3.5,28.5 parent: 2 - - uid: 25994 + - uid: 26309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,26.5 + rot: -1.5707963267948966 rad + pos: 4.5,28.5 parent: 2 - - uid: 25995 + - uid: 26310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,23.5 + rot: -1.5707963267948966 rad + pos: 7.5,27.5 parent: 2 - - uid: 25996 + - uid: 26311 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-109.5 + rot: -1.5707963267948966 rad + pos: 11.5,26.5 parent: 2 - - uid: 25997 + - uid: 26312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-109.5 + rot: -1.5707963267948966 rad + pos: 12.5,25.5 parent: 2 - - uid: 25998 + - uid: 26313 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-107.5 + rot: 1.5707963267948966 rad + pos: -75.5,-0.5 parent: 2 - - uid: 25999 + - uid: 26314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-107.5 + rot: -1.5707963267948966 rad + pos: 53.5,24.5 parent: 2 - - uid: 26000 + - uid: 26315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-75.5 + rot: -1.5707963267948966 rad + pos: 54.5,23.5 parent: 2 - - uid: 26001 + - uid: 40754 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-75.5 - parent: 2 - - uid: 26002 + pos: -0.5,5.5 + parent: 40666 + - uid: 40755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-75.5 - parent: 2 - - uid: 26003 + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 40666 + - uid: 41835 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-74.5 - parent: 2 - - uid: 26004 + pos: 2.5,5.5 + parent: 41669 + - uid: 41836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-74.5 - parent: 2 - - uid: 26005 + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 41669 +- proto: GrilleSpawner + entities: + - uid: 11730 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-89.5 + pos: -54.5,-125.5 parent: 2 - - uid: 26006 + - uid: 26316 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-99.5 + pos: -46.5,-73.5 parent: 2 - - uid: 26007 + - uid: 26317 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-99.5 + rot: -1.5707963267948966 rad + pos: 60.5,-95.5 parent: 2 - - uid: 26008 + - uid: 26318 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-98.5 + pos: 24.5,33.5 parent: 2 - - uid: 26009 + - uid: 26319 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-98.5 + rot: -1.5707963267948966 rad + pos: 62.5,-95.5 parent: 2 - - uid: 26010 + - uid: 26320 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-98.5 + rot: -1.5707963267948966 rad + pos: 59.5,-96.5 parent: 2 - - uid: 26011 + - uid: 26321 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-98.5 + rot: -1.5707963267948966 rad + pos: 59.5,-97.5 parent: 2 - - uid: 26012 + - uid: 26322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-98.5 + pos: 58.5,-45.5 parent: 2 - - uid: 26013 + - uid: 26323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-96.5 + pos: 59.5,-45.5 parent: 2 - - uid: 26014 + - uid: 26324 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-95.5 + pos: 64.5,-86.5 parent: 2 - - uid: 26015 + - uid: 26325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-98.5 + pos: -59.5,-89.5 parent: 2 - - uid: 26016 + - uid: 26326 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-92.5 + pos: -60.5,-91.5 parent: 2 - - uid: 26017 + - uid: 26328 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,-96.5 + pos: 7.5,-106.5 parent: 2 - - uid: 26018 + - uid: 26329 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,-95.5 + pos: 17.5,-106.5 parent: 2 - - uid: 26019 + - uid: 26331 components: - type: Transform rot: 3.141592653589793 rad - pos: 84.5,-93.5 + pos: 60.5,-46.5 parent: 2 - - uid: 26020 + - uid: 26334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-92.5 + pos: -58.5,-0.5 parent: 2 - - uid: 26021 + - uid: 26335 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-90.5 + pos: -58.5,-1.5 parent: 2 - - uid: 26022 + - uid: 26336 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-90.5 + pos: -58.5,-2.5 parent: 2 - - uid: 26023 + - uid: 26337 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-91.5 + pos: -62.5,-61.5 parent: 2 - - uid: 26024 + - uid: 26338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-89.5 + pos: -51.5,-93.5 parent: 2 - - uid: 26025 + - uid: 26339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-89.5 + pos: 11.5,-107.5 parent: 2 - - uid: 26026 + - uid: 26340 components: - type: Transform - pos: 56.5,-91.5 + pos: -47.5,19.5 parent: 2 - - uid: 26027 + - uid: 26341 components: - type: Transform - pos: 56.5,-90.5 + pos: -45.5,19.5 parent: 2 - - uid: 26028 + - uid: 26343 components: - type: Transform - pos: 56.5,-89.5 + pos: -46.5,19.5 parent: 2 - - uid: 26029 + - uid: 26344 components: - type: Transform - pos: 56.5,-88.5 + pos: -52.5,20.5 parent: 2 - - uid: 26030 + - uid: 26345 components: - type: Transform - pos: -37.5,-35.5 + pos: -42.5,21.5 parent: 2 - - uid: 26031 + - uid: 26346 components: - type: Transform - pos: -14.5,-10.5 + pos: -50.5,21.5 parent: 2 - - uid: 26032 + - uid: 26347 components: - type: Transform - pos: -13.5,-10.5 + pos: -50.5,19.5 parent: 2 - - uid: 26033 + - uid: 26348 components: - type: Transform - pos: 74.5,-6.5 + pos: -48.5,20.5 parent: 2 - - uid: 26034 + - uid: 26349 components: - type: Transform - pos: -12.5,-10.5 + pos: -44.5,20.5 parent: 2 - - uid: 26035 + - uid: 26350 components: - type: Transform - pos: -18.5,-12.5 + pos: -40.5,20.5 parent: 2 - - uid: 26036 + - uid: 26351 components: - type: Transform - pos: -18.5,-13.5 + pos: -42.5,19.5 parent: 2 - - uid: 26037 + - uid: 26352 components: - type: Transform - pos: 45.5,-5.5 + pos: 64.5,-91.5 parent: 2 - - uid: 26038 + - uid: 26353 components: - type: Transform - pos: -18.5,-14.5 + pos: 87.5,-13.5 parent: 2 - - uid: 26039 + - uid: 26354 components: - type: Transform - pos: -18.5,-15.5 + pos: -48.5,13.5 parent: 2 - - uid: 26040 + - uid: 26355 components: - type: Transform - pos: -18.5,-16.5 + pos: 79.5,-81.5 parent: 2 - - uid: 26041 + - uid: 26356 components: - type: Transform - pos: 90.5,-3.5 + pos: 86.5,-15.5 parent: 2 - - uid: 26042 + - uid: 26357 components: - type: Transform - pos: 90.5,-4.5 + pos: 24.5,29.5 parent: 2 - - uid: 26043 + - uid: 26358 components: - type: Transform - pos: 90.5,-6.5 + pos: 21.5,27.5 parent: 2 - - uid: 26044 + - uid: 26359 components: - type: Transform - pos: 90.5,-7.5 + pos: 1.5,32.5 parent: 2 - - uid: 26045 + - uid: 26360 components: - type: Transform - pos: 90.5,-5.5 + pos: 4.5,31.5 parent: 2 - - uid: 26046 + - uid: 26361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,9.5 + pos: -7.5,30.5 parent: 2 - - uid: 26047 + - uid: 26362 components: - type: Transform - pos: 4.5,-112.5 + rot: 3.141592653589793 rad + pos: -13.5,27.5 parent: 2 - - uid: 26048 + - uid: 26363 components: - type: Transform - pos: 62.5,-6.5 + pos: -14.5,26.5 parent: 2 - - uid: 26049 + - uid: 26364 components: - type: Transform - pos: 64.5,-6.5 + pos: -11.5,29.5 parent: 2 - - uid: 26050 + - uid: 26365 components: - type: Transform - pos: 77.5,-0.5 + pos: -31.5,21.5 parent: 2 - - uid: 26051 + - uid: 26366 components: - type: Transform - pos: 79.5,-0.5 + pos: -24.5,21.5 parent: 2 - - uid: 26052 + - uid: 26367 components: - type: Transform - pos: 81.5,-0.5 + pos: -19.5,22.5 parent: 2 - - uid: 26053 + - uid: 26368 components: - type: Transform - pos: 83.5,-0.5 + pos: -21.5,22.5 parent: 2 - - uid: 26054 + - uid: 26369 components: - type: Transform - pos: 85.5,-0.5 + pos: -58.5,17.5 parent: 2 - - uid: 26055 + - uid: 26370 components: - type: Transform - pos: 87.5,-0.5 + pos: -56.5,19.5 parent: 2 - - uid: 26056 + - uid: 26371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,11.5 + pos: -59.5,16.5 parent: 2 - - uid: 26057 + - uid: 26372 components: - type: Transform - pos: -37.5,20.5 + pos: -61.5,16.5 parent: 2 - - uid: 26058 + - uid: 26373 components: - type: Transform - pos: -95.5,-9.5 + pos: -78.5,-75.5 parent: 2 - - uid: 26059 + - uid: 26374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,-9.5 + pos: -83.5,-66.5 parent: 2 - - uid: 26060 + - uid: 26375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,-9.5 + pos: -83.5,-60.5 parent: 2 - - uid: 26061 + - uid: 26376 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,22.5 + pos: 59.5,-101.5 parent: 2 - - uid: 26062 + - uid: 26377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,24.5 + pos: 58.5,-105.5 parent: 2 - - uid: 26063 + - uid: 26378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,23.5 + pos: 59.5,-103.5 parent: 2 - - uid: 26064 + - uid: 26379 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,24.5 + pos: 30.5,39.5 parent: 2 - - uid: 26065 + - uid: 26380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,24.5 + pos: -69.5,16.5 parent: 2 - - uid: 26066 + - uid: 26381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,24.5 + pos: -62.5,15.5 parent: 2 - - uid: 26067 + - uid: 26382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,27.5 + pos: -49.5,-74.5 parent: 2 - - uid: 26068 + - uid: 26383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,27.5 + pos: -46.5,-74.5 parent: 2 - - uid: 26069 + - uid: 26384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,14.5 + rot: 3.141592653589793 rad + pos: -84.5,5.5 parent: 2 - - uid: 26070 + - uid: 26385 components: - type: Transform - pos: 46.5,-11.5 + rot: 3.141592653589793 rad + pos: -83.5,5.5 parent: 2 - - uid: 26071 + - uid: 26386 components: - type: Transform - pos: 56.5,-80.5 + rot: 3.141592653589793 rad + pos: -92.5,-4.5 parent: 2 - - uid: 26072 + - uid: 26387 components: - type: Transform - pos: 56.5,-82.5 + rot: 3.141592653589793 rad + pos: -93.5,-12.5 parent: 2 - - uid: 26073 + - uid: 26388 components: - type: Transform - pos: 59.5,-82.5 + pos: -63.5,-111.5 parent: 2 - - uid: 26074 + - uid: 26389 components: - type: Transform - pos: 59.5,-80.5 + pos: -48.5,-125.5 parent: 2 - - uid: 26075 + - uid: 26390 components: - type: Transform - pos: 93.5,-5.5 + pos: -57.5,-126.5 parent: 2 - - uid: 26076 + - uid: 26391 components: - type: Transform - pos: 52.5,-6.5 + pos: -42.5,-128.5 parent: 2 - - uid: 26077 + - uid: 26392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,14.5 + pos: -35.5,-128.5 parent: 2 - - uid: 26078 + - uid: 26393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,14.5 + pos: -32.5,-128.5 parent: 2 - - uid: 26079 + - uid: 26394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,14.5 + pos: -26.5,-120.5 parent: 2 - - uid: 26080 + - uid: 26395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,14.5 + pos: -28.5,-121.5 parent: 2 - - uid: 26081 + - uid: 26396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,13.5 + pos: -22.5,-113.5 parent: 2 - - uid: 26082 + - uid: 26397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,13.5 + pos: -22.5,-110.5 parent: 2 - - uid: 26083 + - uid: 26398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,10.5 + pos: 89.5,-90.5 parent: 2 - - uid: 26084 + - uid: 26399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,13.5 + pos: 82.5,-81.5 parent: 2 - - uid: 26085 + - uid: 26400 components: - type: Transform - pos: 4.5,-113.5 + pos: 101.5,-96.5 parent: 2 - - uid: 26086 + - uid: 26401 components: - type: Transform - pos: 7.5,-112.5 + pos: 110.5,-66.5 parent: 2 - - uid: 26087 + - uid: 26402 components: - type: Transform - pos: 7.5,-111.5 + rot: -1.5707963267948966 rad + pos: 26.5,36.5 parent: 2 - - uid: 26088 + - uid: 26403 components: - type: Transform - pos: 4.5,-109.5 + anchored: False + pos: 68.5,-90.5 parent: 2 - - uid: 26089 + - uid: 26404 components: - type: Transform - pos: 11.5,-111.5 + pos: 74.5,-74.5 parent: 2 - - uid: 26090 + - uid: 26405 components: - type: Transform - pos: 13.5,-110.5 + pos: 70.5,-74.5 parent: 2 - - uid: 26091 + - uid: 26406 components: - type: Transform - pos: 12.5,-111.5 + pos: 9.5,-113.5 parent: 2 - - uid: 26092 + - uid: 26407 components: - type: Transform - pos: 15.5,-113.5 + pos: 13.5,-113.5 parent: 2 - - uid: 26093 + - uid: 26408 components: - type: Transform - pos: 17.5,-113.5 + pos: 4.5,-110.5 parent: 2 - - uid: 26094 + - uid: 26410 components: - type: Transform - pos: 15.5,-109.5 + rot: 3.141592653589793 rad + pos: 92.5,-1.5 parent: 2 - - uid: 26095 + - uid: 43775 components: - type: Transform - pos: 16.5,-109.5 + pos: -52.5,-133.5 parent: 2 - - uid: 26096 + - uid: 43776 components: - type: Transform - pos: 8.5,-109.5 + pos: -55.5,-134.5 parent: 2 - - uid: 26097 + - uid: 43777 components: - type: Transform - pos: 9.5,-109.5 + pos: -52.5,-131.5 parent: 2 - - uid: 26098 + - uid: 43818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,12.5 + pos: -52.5,-132.5 parent: 2 - - uid: 26099 + - uid: 43822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,9.5 + pos: -56.5,-134.5 parent: 2 - - uid: 26100 + - uid: 43823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,10.5 + pos: -58.5,-132.5 parent: 2 - - uid: 26101 +- proto: GroundCannabisRainbow + entities: + - uid: 44286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,10.5 - parent: 2 - - uid: 26104 + parent: 44266 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GunSafe + entities: + - uid: 9953 components: - type: Transform - pos: 93.5,-6.5 + pos: 4.5,-59.5 parent: 2 - - uid: 26105 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9957 components: - type: Transform - pos: 93.5,-2.5 + pos: 3.5,-59.5 parent: 2 - - uid: 26106 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9988 components: - type: Transform - pos: 92.5,-0.5 + pos: 2.5,-59.5 parent: 2 - - uid: 26107 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 16307 components: + - type: MetaData + name: сейф капсульного пистолета - type: Transform - pos: 90.5,2.5 + pos: -68.5,-50.5 parent: 2 - - uid: 26108 + - type: AccessReader + access: + - - Service + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 16516 + - 19056 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 23276 components: - type: Transform - pos: 87.5,4.5 + pos: -7.5,-28.5 parent: 2 - - uid: 26109 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 29259 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 26412 components: + - type: MetaData + name: сейф для секретов - type: Transform - rot: 1.5707963267948966 rad - pos: 117.5,-37.5 + anchored: True + pos: -4.5,-8.5 parent: 2 - - uid: 26110 + - type: AccessReader + access: + - - Captain + - - HeadOfSecurity + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8978093 + - 7.139378 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26413 + - 1827 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Pullable + prevFixedRotation: True + - uid: 26414 components: + - type: MetaData + name: сейф с жетонами - type: Transform - rot: 1.5707963267948966 rad - pos: 118.5,-37.5 + pos: -59.5,11.5 parent: 2 - - uid: 26111 + - type: AccessReader + access: + - - HeadOfPersonnel + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8978151 + - 7.1394 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 29098 + - 26418 + - 26419 + - 26417 + - 26415 + - 26421 + - 26416 + - 26420 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 40879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 119.5,-37.5 - parent: 2 - - uid: 26112 + pos: 5.5,-11.5 + parent: 40828 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 40881 + - 40882 + - 40880 + - 40883 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 41318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 120.5,-37.5 - parent: 2 - - uid: 26113 + pos: -3.5,-6.5 + parent: 40828 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 41321 + - 41319 + - 41320 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeBaseSecure + entities: + - uid: 23421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 117.5,-41.5 + pos: -8.5,-51.5 parent: 2 - - uid: 26114 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23422 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 23424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 118.5,-41.5 + pos: -7.5,-51.5 parent: 2 - - uid: 26115 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23425 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeDisabler + entities: + - uid: 26425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 119.5,-41.5 + pos: 55.5,-20.5 parent: 2 - - uid: 26116 +- proto: GunSafeLaserCarbine + entities: + - uid: 26426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 120.5,-41.5 + pos: 62.5,-11.5 parent: 2 - - uid: 26117 +- proto: GunSafePistolMk58 + entities: + - uid: 26427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 124.5,-37.5 + pos: 65.5,-11.5 parent: 2 - - uid: 26118 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 16443 + - 26422 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeRifleLecter + entities: + - uid: 26428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 125.5,-37.5 + pos: 63.5,-17.5 parent: 2 - - uid: 26119 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 26429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 126.5,-37.5 + pos: 64.5,-17.5 parent: 2 - - uid: 26120 +- proto: Gyroscope + entities: + - uid: 40756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,-37.5 - parent: 2 - - uid: 26121 + pos: -1.5,-0.5 + parent: 40666 + - uid: 41837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 124.5,-41.5 - parent: 2 - - uid: 26122 + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 41669 +- proto: Handcuffs + entities: + - uid: 26431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 125.5,-41.5 + rot: 6.283185307179586 rad + pos: 52.60071,-17.486929 parent: 2 - - uid: 26123 + - uid: 26432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 126.5,-41.5 + rot: 6.283185307179586 rad + pos: 52.545673,-17.560314 parent: 2 - - uid: 26124 + - uid: 26433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,-41.5 + rot: 6.283185307179586 rad + pos: 52.619057,-17.52362 parent: 2 - - uid: 26125 + - uid: 26434 components: - type: Transform - pos: -15.5,2.5 + pos: -7.590296,1.7182901 parent: 2 - - uid: 26126 + - uid: 26435 components: - type: Transform - pos: -13.5,4.5 + pos: -2.5020196,13.503156 parent: 2 - - uid: 26127 + - uid: 26436 components: - type: Transform - pos: -17.5,2.5 + pos: 73.72027,-26.411335 parent: 2 - - uid: 26128 + - uid: 26437 components: - type: Transform - pos: -14.5,3.5 + pos: -47.30249,-46.404476 parent: 2 - - uid: 30198 + - uid: 26439 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-30.5 + pos: 42.548824,-11.543914 parent: 2 - - uid: 30338 +- proto: HandheldGPSBasic + entities: + - uid: 1384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-99.5 + pos: 56.336117,15.275301 parent: 2 - - uid: 30727 + - uid: 26441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-98.5 - parent: 2 - - uid: 33626 + parent: 26440 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,12.5 + pos: -2.3341408,17.567802 parent: 2 - - uid: 35531 + - uid: 43178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-98.5 + pos: -7.4132366,-100.477585 parent: 2 - - uid: 35532 +- proto: HandheldHealthAnalyzer + entities: + - uid: 26444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-98.5 + pos: 62.341415,-4.6432304 parent: 2 - - uid: 35534 + - uid: 26445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-77.5 + rot: 1.5707963267948966 rad + pos: -6.3343987,19.591106 parent: 2 - - uid: 35538 +- proto: HandheldHealthAnalyzerUnpowered + entities: + - uid: 26447 components: - type: Transform - pos: -5.5,-80.5 + pos: -68.47285,-49.354755 parent: 2 - - uid: 39042 + - uid: 26448 components: - type: Transform - pos: -51.5,10.5 + rot: 1.5707963267948966 rad + pos: -46.32156,-5.4472365 parent: 2 - - uid: 39804 + - uid: 26449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-30.5 + pos: 83.284225,-9.472714 parent: 2 - - uid: 40747 +- proto: HandHeldMassScanner + entities: + - uid: 41322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 40666 - - uid: 40748 + rot: 1.5707963267948966 rad + pos: -1.5011597,-6.9646606 + parent: 40828 +- proto: HandheldStationMap + entities: + - uid: 11635 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 40666 - - uid: 40749 + pos: 52.481827,-76.33526 + parent: 2 + - uid: 26451 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 40666 - - uid: 40750 + pos: 50.615925,-52.310795 + parent: 2 + - uid: 26452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 40666 - - uid: 40751 + rot: 1.5707963267948966 rad + pos: 9.431866,24.706774 + parent: 2 + - uid: 26453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 40666 - - uid: 40752 + pos: -31.679695,-95.45278 + parent: 2 + - uid: 26454 components: - type: Transform - pos: 4.5,2.5 - parent: 40666 - - uid: 40753 + rot: -1.5707963267948966 rad + pos: 5.534402,-103.27963 + parent: 2 + - uid: 26455 components: - type: Transform - pos: -3.5,2.5 - parent: 40666 - - uid: 41253 + pos: 66.536896,-26.568066 + parent: 2 + - uid: 32697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-15.5 - parent: 40828 - - uid: 41254 + pos: 32.5,43.5 + parent: 2 +- proto: HandLabeler + entities: + - uid: 26457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-14.5 - parent: 40828 - - uid: 41255 + pos: 67.05984,-27.312744 + parent: 2 + - uid: 26458 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-13.5 - parent: 40828 - - uid: 41256 + pos: -27.49639,-77.098885 + parent: 2 + - uid: 26459 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-13.5 - parent: 40828 - - uid: 41257 + pos: 50.990173,-53.741455 + parent: 2 + - uid: 26460 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-12.5 - parent: 40828 - - uid: 41258 + pos: 34.196903,-71.29056 + parent: 2 + - uid: 26461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 40828 - - uid: 41259 + pos: -35.393368,-27.351479 + parent: 2 + - uid: 26462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-11.5 - parent: 40828 - - uid: 41260 + pos: -57.473927,-32.84579 + parent: 2 +- proto: HappyHonk + entities: + - uid: 26463 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 40828 - - uid: 41261 + pos: 31.546932,4.9642363 + parent: 2 +- proto: HappyHonkMime + entities: + - uid: 9962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 40828 - - uid: 41262 + pos: 16.5,-47.5 + parent: 2 +- proto: HeadMoth + entities: + - uid: 26470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-9.5 - parent: 40828 - - uid: 41263 + pos: 65.5,-50.5 + parent: 2 +- proto: HeadReptilian + entities: + - uid: 26471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-8.5 - parent: 40828 - - uid: 41264 + rot: -1.5707963267948966 rad + pos: -64.8308,-32.5277 + parent: 2 +- proto: HeadSkeleton + entities: + - uid: 26472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 40828 - - uid: 41265 + pos: -66.48876,6.5341115 + parent: 2 + - uid: 26474 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 40828 - - uid: 41266 + parent: 26473 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: HeadSlime + entities: + - uid: 16256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-8.5 - parent: 40828 - - uid: 41267 + pos: 14.523035,-30.827236 + parent: 2 +- proto: HeadVox + entities: + - uid: 26479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-2.5 - parent: 40828 - - uid: 41268 + rot: 1.5707963267948966 rad + pos: 42.36527,-109.73952 + parent: 2 +- proto: HeatExchanger + entities: + - uid: 20430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-0.5 - parent: 40828 - - uid: 41269 + rot: -1.5707963267948966 rad + pos: -9.5,-58.5 + parent: 2 + - uid: 26480 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-4.5 - parent: 40828 - - uid: 41270 + rot: -1.5707963267948966 rad + pos: 59.5,-92.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 26481 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-5.5 - parent: 40828 - - uid: 41271 + rot: -1.5707963267948966 rad + pos: 62.5,-93.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: HeatExchangerBend + entities: + - uid: 20405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-6.5 - parent: 40828 - - uid: 41272 + pos: -10.5,-57.5 + parent: 2 + - uid: 20440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-7.5 - parent: 40828 - - uid: 41273 + rot: 1.5707963267948966 rad + pos: -8.5,-57.5 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 26482 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-10.5 - parent: 40828 - - uid: 41274 + pos: 63.5,-14.5 + parent: 2 + - uid: 26483 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-11.5 - parent: 40828 - - uid: 41275 + pos: 59.5,-18.5 + parent: 2 + - uid: 26484 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-12.5 - parent: 40828 - - uid: 41276 + pos: 53.5,-18.5 + parent: 2 + - uid: 41323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-13.5 + pos: 3.5,-9.5 parent: 40828 - - uid: 41277 +- proto: HighSecCentralCommandLocked + entities: + - uid: 41838 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-15.5 - parent: 40828 - - uid: 41278 + pos: 4.5,-9.5 + parent: 41669 +- proto: HighSecCommandLocked + entities: + - uid: 26486 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-15.5 - parent: 40828 - - uid: 41279 + pos: 99.5,-73.5 + parent: 2 + - uid: 26487 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-15.5 - parent: 40828 - - uid: 41280 + pos: 97.5,-73.5 + parent: 2 + - uid: 26488 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 40828 - - uid: 41281 + pos: 97.5,-77.5 + parent: 2 + - uid: 26489 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 40828 - - uid: 41282 + pos: 99.5,-77.5 + parent: 2 +- proto: HighSecDoor + entities: + - uid: 15445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-14.5 - parent: 40828 - - uid: 41283 + pos: 3.5,-39.5 + parent: 2 + - uid: 15468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-15.5 - parent: 40828 - - uid: 41284 + pos: 3.5,-40.5 + parent: 2 + - uid: 26490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-15.5 - parent: 40828 - - uid: 41285 + pos: 12.5,20.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + access: + - - Captain + - - ChiefEngineer + - - HeadOfSecurity + - - ResearchDirector + - uid: 26491 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-15.5 - parent: 40828 - - uid: 41286 + pos: -3.5,-6.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + access: + - - Captain + - - ChiefEngineer + - - HeadOfSecurity + - - ResearchDirector + - uid: 26492 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-13.5 - parent: 40828 - - uid: 41287 + pos: 27.5,-39.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + access: + - - ChiefEngineer + - uid: 26494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-12.5 - parent: 40828 - - uid: 41288 + pos: 38.5,-40.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + access: + - - ChiefEngineer + - uid: 26495 components: + - type: MetaData + desc: Только для НаучРука, ГСБ и Старшего инженера. + name: ядро ИИ - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-11.5 - parent: 40828 - - uid: 41289 + pos: 98.5,-85.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + access: + - - Captain + - - ChiefEngineer + - - HeadOfSecurity + - - ResearchDirector + - uid: 26496 components: + - type: MetaData + desc: Только для НаучРука, ГСБ и Старшего инженера. + name: ядро ИИ - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-10.5 - parent: 40828 - - uid: 41290 + pos: 98.5,-81.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + access: + - - Captain + - - ChiefEngineer + - - HeadOfSecurity + - - ResearchDirector + - uid: 26497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-7.5 - parent: 40828 - - uid: 41291 + pos: -1.5,-6.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + access: + - - Captain + - - ChiefEngineer + - - HeadOfSecurity + - - ResearchDirector + - uid: 26498 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-6.5 - parent: 40828 - - uid: 41292 + pos: 4.5,-7.5 + parent: 2 + - type: AccessReader + containerAccessProvider: null + access: + - - Captain + - - ChiefEngineer +- proto: HolofanProjector + entities: + - uid: 26503 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-5.5 - parent: 40828 - - uid: 41293 + pos: 38.471985,-52.303555 + parent: 2 + - uid: 26504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 40828 - - uid: 41294 + pos: 41.638515,-94.44738 + parent: 2 +- proto: HolopadAiBackupPower + entities: + - uid: 44292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-1.5 - parent: 40828 - - uid: 41297 + pos: 98.5,-63.5 + parent: 2 +- proto: HolopadAiChute + entities: + - uid: 44291 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-2.5 - parent: 40828 - - uid: 41298 + pos: 98.5,-69.5 + parent: 2 +- proto: HolopadAiCore + entities: + - uid: 29617 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-1.5 - parent: 40828 - - uid: 41299 + pos: 98.5,-89.5 + parent: 2 +- proto: HolopadAiEntrance + entities: + - uid: 44290 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-0.5 - parent: 40828 - - uid: 41300 + pos: 98.5,-79.5 + parent: 2 +- proto: HolopadAiUpload + entities: + - uid: 44293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,10.5 - parent: 40828 - - uid: 41301 + pos: 16.5,20.5 + parent: 2 +- proto: HolopadCargoBay + entities: + - uid: 44313 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,2.5 - parent: 40828 - - uid: 41302 + pos: 13.5,-98.5 + parent: 2 +- proto: HolopadCargoBayLongRange + entities: + - uid: 44371 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,3.5 - parent: 40828 - - uid: 41303 + pos: 14.5,-98.5 + parent: 2 +- proto: HolopadCargoBreakroom + entities: + - uid: 44317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,6.5 - parent: 40828 - - uid: 41304 + pos: -7.5,-87.5 + parent: 2 +- proto: HolopadCargoFront + entities: + - uid: 44315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,7.5 - parent: 40828 - - uid: 41305 + pos: 10.5,-82.5 + parent: 2 +- proto: HolopadCargoMailroom + entities: + - uid: 44316 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,8.5 - parent: 40828 - - uid: 41306 + pos: -2.5,-80.5 + parent: 2 +- proto: HolopadCargoSalvageBay + entities: + - uid: 44354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,10.5 - parent: 40828 - - uid: 41307 + pos: -7.5,-103.5 + parent: 2 +- proto: HolopadCommandBridge + entities: + - uid: 44305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,8.5 - parent: 40828 - - uid: 41308 + pos: 1.5,24.5 + parent: 2 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 44306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 40828 - - uid: 41309 + pos: -0.5,24.5 + parent: 2 +- proto: HolopadCommandCaptain + entities: + - uid: 44314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,6.5 - parent: 40828 - - uid: 41310 + pos: 10.5,13.5 + parent: 2 +- proto: HolopadCommandCe + entities: + - uid: 44311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 40828 - - uid: 41311 + pos: 55.5,-72.5 + parent: 2 +- proto: HolopadCommandCmo + entities: + - uid: 44312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 40828 - - uid: 41312 + pos: -35.5,-10.5 + parent: 2 +- proto: HolopadCommandHop + entities: + - uid: 44332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-10.5 - parent: 40828 - - uid: 41313 + pos: -4.5,9.5 + parent: 2 +- proto: HolopadCommandHos + entities: + - uid: 44333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-11.5 - parent: 40828 - - uid: 41314 + pos: 52.5,9.5 + parent: 2 +- proto: HolopadCommandLounge + entities: + - uid: 44307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-13.5 - parent: 40828 - - uid: 41315 + pos: -9.5,17.5 + parent: 2 +- proto: HolopadCommandMeetingRoom + entities: + - uid: 44308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-13.5 - parent: 40828 - - uid: 41316 + pos: 4.5,8.5 + parent: 2 +- proto: HolopadCommandQm + entities: + - uid: 44349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-12.5 - parent: 40828 - - uid: 41317 + pos: -1.5,-96.5 + parent: 2 +- proto: HolopadCommandRd + entities: + - uid: 44353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-10.5 - parent: 40828 - - uid: 41828 + pos: -37.5,-68.5 + parent: 2 +- proto: HolopadCommandVault + entities: + - uid: 44367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 41669 - - uid: 41829 + pos: -4.5,-6.5 + parent: 2 +- proto: HolopadEngineeringAME + entities: + - uid: 44294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 41669 - - uid: 41830 + pos: 38.5,-79.5 + parent: 2 +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 44301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,4.5 - parent: 41669 - - uid: 41831 + pos: 39.5,-48.5 + parent: 2 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 44300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 41669 - - uid: 41832 + pos: 39.5,-100.5 + parent: 2 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 44362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,5.5 - parent: 41669 - - uid: 41833 + pos: 49.5,-87.5 + parent: 2 +- proto: HolopadEngineeringBreakroom + entities: + - uid: 29615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,5.5 - parent: 41669 - - uid: 41834 + pos: 44.5,-73.5 + parent: 2 +- proto: HolopadEngineeringFront + entities: + - uid: 44327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,4.5 - parent: 41669 - - uid: 42361 + pos: 48.5,-48.5 + parent: 2 +- proto: HolopadEngineeringMain + entities: + - uid: 44328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,29.5 + pos: 50.5,-56.5 parent: 2 - - uid: 43328 +- proto: HolopadEngineeringPower + entities: + - uid: 44348 components: - type: Transform - pos: -52.5,10.5 + pos: 58.5,-55.5 parent: 2 - - uid: 43329 +- proto: HolopadEngineeringStorage + entities: + - uid: 44329 components: - type: Transform - pos: -50.5,10.5 + pos: 45.5,-64.5 parent: 2 - - uid: 43374 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 44364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-37.5 + pos: 93.5,-68.5 parent: 2 - - uid: 43375 +- proto: HolopadGeneralArrivals + entities: + - uid: 44297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-36.5 + pos: 82.5,-32.5 parent: 2 - - uid: 43816 +- proto: HolopadGeneralCryosleep + entities: + - uid: 44321 components: - type: Transform - pos: -58.5,-130.5 + pos: -35.5,-78.5 parent: 2 - - uid: 43817 +- proto: HolopadGeneralEvac + entities: + - uid: 44330 components: - type: Transform - pos: -58.5,-131.5 + pos: -73.5,-43.5 parent: 2 - - uid: 43819 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 44326 components: - type: Transform - pos: -58.5,-133.5 + pos: 0.5,16.5 parent: 2 - - uid: 43820 +- proto: HolopadGeneralLounge + entities: + - uid: 44339 components: - type: Transform - pos: -57.5,-133.5 + pos: 35.5,-1.5 parent: 2 - - uid: 43821 +- proto: HolopadGeneralTheater + entities: + - uid: 44365 components: - type: Transform - pos: -57.5,-134.5 + pos: 34.5,-11.5 parent: 2 - - uid: 43824 +- proto: HolopadGeneralTools + entities: + - uid: 44366 components: - type: Transform - pos: -54.5,-134.5 + pos: 68.5,-26.5 parent: 2 - - uid: 43825 +- proto: HolopadMedicalBreakroom + entities: + - uid: 44340 components: - type: Transform - pos: -53.5,-134.5 + pos: -39.5,-3.5 parent: 2 - - uid: 43826 +- proto: HolopadMedicalChemistry + entities: + - uid: 44319 components: - type: Transform - pos: -53.5,-133.5 + pos: -35.5,-32.5 parent: 2 - - uid: 43830 +- proto: HolopadMedicalCryopods + entities: + - uid: 44323 components: - type: Transform - pos: -52.5,-130.5 + pos: -35.5,-21.5 parent: 2 - - uid: 43831 +- proto: HolopadMedicalFront + entities: + - uid: 44341 components: - type: Transform - pos: -56.5,-127.5 + pos: -39.5,-38.5 parent: 2 - - uid: 43832 +- proto: HolopadMedicalMedbay + entities: + - uid: 44342 components: - type: Transform - pos: -56.5,-126.5 + pos: -47.5,-22.5 parent: 2 - - uid: 43833 +- proto: HolopadMedicalSurgery + entities: + - uid: 44361 components: - type: Transform - pos: -56.5,-125.5 + pos: -54.5,-20.5 parent: 2 - - uid: 43834 +- proto: HolopadMedicalVirology + entities: + - uid: 44368 components: - type: Transform - pos: -56.5,-124.5 + pos: -48.5,3.5 parent: 2 - - uid: 43835 +- proto: HolopadScienceAnomaly + entities: + - uid: 44295 components: - type: Transform - pos: -56.5,-123.5 + pos: -47.5,-85.5 parent: 2 - - uid: 43836 +- proto: HolopadScienceArtifactNorth + entities: + - uid: 44299 components: - type: Transform - pos: -56.5,-122.5 + pos: -61.5,-72.5 parent: 2 - - uid: 43837 +- proto: HolopadScienceArtifactSouth + entities: + - uid: 44298 components: - type: Transform - pos: -54.5,-122.5 + pos: -66.5,-77.5 parent: 2 - - uid: 43838 +- proto: HolopadScienceBreakroom + entities: + - uid: 44352 components: - type: Transform - pos: -54.5,-123.5 + pos: -43.5,-85.5 parent: 2 - - uid: 43839 +- proto: HolopadScienceFront + entities: + - uid: 44350 components: - type: Transform - pos: -54.5,-124.5 + pos: -37.5,-48.5 parent: 2 - - uid: 43841 +- proto: HolopadScienceRnd + entities: + - uid: 44355 components: - type: Transform - pos: -54.5,-126.5 + pos: -35.5,-63.5 parent: 2 - - uid: 43842 +- proto: HolopadScienceRobotics + entities: + - uid: 44351 components: - type: Transform - pos: -54.5,-127.5 + pos: -38.5,-53.5 parent: 2 - - uid: 43849 +- proto: HolopadSecurityArmory + entities: + - uid: 44370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-127.5 + pos: 56.5,-18.5 parent: 2 - - uid: 43850 +- proto: HolopadSecurityArrivalsCheckpoint + entities: + - uid: 44356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-126.5 + pos: 76.5,-28.5 parent: 2 - - uid: 44106 +- proto: HolopadSecurityBreakroom + entities: + - uid: 44357 components: - type: Transform - pos: -23.5,-108.5 + pos: 52.5,4.5 parent: 2 - - uid: 44107 +- proto: HolopadSecurityBrig + entities: + - uid: 44309 components: - type: Transform - pos: -22.5,-108.5 + pos: 44.5,-14.5 parent: 2 - - uid: 44108 +- proto: HolopadSecurityBrigMed + entities: + - uid: 44310 components: - type: Transform - pos: -21.5,-108.5 + pos: 63.5,-2.5 parent: 2 - - uid: 44109 +- proto: HolopadSecurityCourtroom + entities: + - uid: 44322 components: - type: Transform - pos: -20.5,-108.5 + pos: 67.5,-39.5 parent: 2 - - uid: 44110 +- proto: HolopadSecurityDetective + entities: + - uid: 44324 components: - type: Transform - pos: -19.5,-108.5 + pos: 39.5,-25.5 parent: 2 - - uid: 44111 +- proto: HolopadSecurityEvacCheckpoint + entities: + - uid: 44359 components: - type: Transform - pos: -18.5,-108.5 + pos: -66.5,-38.5 parent: 2 - - uid: 44147 +- proto: HolopadSecurityFront + entities: + - uid: 44358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-105.5 + pos: 48.5,-24.5 parent: 2 - - uid: 44148 +- proto: HolopadSecurityInterrogation + entities: + - uid: 44334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-105.5 + pos: 54.5,-9.5 parent: 2 - - uid: 44149 +- proto: HolopadSecurityLawyer + entities: + - uid: 44337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-105.5 + pos: -21.5,6.5 parent: 2 - - uid: 44172 +- proto: HolopadSecurityLockerRoom + entities: + - uid: 44360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-58.5 + pos: 56.5,-3.5 parent: 2 - - uid: 44173 +- proto: HolopadSecurityPerma + entities: + - uid: 44347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-57.5 + pos: 77.5,-7.5 parent: 2 - - uid: 44174 +- proto: HolopadSecurityWarden + entities: + - uid: 44296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-56.5 + pos: 49.5,-18.5 parent: 2 - - uid: 44177 +- proto: HolopadServiceBar + entities: + - uid: 44302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-55.5 + pos: 30.5,3.5 parent: 2 - - uid: 44186 +- proto: HolopadServiceBotany + entities: + - uid: 44303 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,21.5 + pos: 38.5,12.5 parent: 2 - - uid: 44187 +- proto: HolopadServiceBoxer + entities: + - uid: 44304 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,21.5 + pos: -22.5,-82.5 parent: 2 -- proto: GrilleBroken +- proto: HolopadServiceChapel entities: - - uid: 26129 + - uid: 44318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-91.5 + pos: 34.5,-64.5 parent: 2 - - uid: 26130 +- proto: HolopadServiceGameRoom + entities: + - uid: 44331 components: - type: Transform - pos: 63.5,-91.5 + pos: -31.5,12.5 parent: 2 - - uid: 26131 +- proto: HolopadServiceJanitor + entities: + - uid: 44335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-72.5 + pos: 7.5,-0.5 parent: 2 - - uid: 26132 +- proto: HolopadServiceKitchen + entities: + - uid: 44336 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,28.5 + pos: 28.5,9.5 parent: 2 - - uid: 26133 +- proto: HolopadServiceLibrary + entities: + - uid: 44338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-69.5 + pos: -30.5,5.5 parent: 2 - - uid: 26134 +- proto: HolopadServiceNewsroom + entities: + - uid: 29599 components: - type: Transform - pos: 85.5,-69.5 + pos: 27.5,-75.5 parent: 2 - - uid: 26135 +- proto: HolyHandGrenade + entities: + - uid: 12 components: + - type: MetaData + desc: 'Не содержит взрывчатых веществ. «Благослови, Господи, сию ручную державу, да помоги мне исполнить мечты мои!». ' + name: церковная держава - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-75.5 - parent: 2 - - uid: 26136 + parent: 5 + - type: Physics + canCollide: False + missingComponents: + - ExplodeOnTrigger + - Explosive + - OnUseTimerTrigger + - PointLight + - HiddenDescription + - Contraband +- proto: HospitalCurtains + entities: + - uid: 16298 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,-75.5 + pos: -20.5,13.5 parent: 2 - - uid: 26137 + - uid: 16299 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,-104.5 + pos: -21.5,13.5 parent: 2 - - uid: 26138 + - uid: 16432 components: - type: Transform - pos: 57.5,-106.5 + rot: -1.5707963267948966 rad + pos: -22.5,13.5 parent: 2 - - uid: 26139 + - uid: 26505 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,0.5 + pos: 32.5,-8.5 parent: 2 - - uid: 26140 + - uid: 26506 components: - type: Transform - pos: -56.5,0.5 + rot: 3.141592653589793 rad + pos: 36.5,-8.5 parent: 2 - - uid: 26141 + - uid: 26507 components: - type: Transform - pos: -56.5,-2.5 + rot: 3.141592653589793 rad + pos: 33.5,-8.5 parent: 2 - - uid: 26142 + - uid: 26508 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-1.5 + pos: -46.5,-22.5 parent: 2 - - uid: 26143 + - uid: 26509 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-107.5 + pos: -46.5,-25.5 parent: 2 - - uid: 26144 + - uid: 26512 components: - type: Transform - pos: 11.5,-107.5 + rot: 3.141592653589793 rad + pos: -46.5,-21.5 parent: 2 - - uid: 26145 + - uid: 26513 components: - type: Transform - pos: 13.5,-107.5 + pos: -53.5,-13.5 parent: 2 - - uid: 26146 + - uid: 26514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-107.5 + rot: 3.141592653589793 rad + pos: -90.5,-1.5 parent: 2 - - uid: 26148 + - uid: 26515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-106.5 + pos: -83.5,-11.5 parent: 2 - - uid: 26150 + - uid: 26516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-106.5 + pos: -83.5,-10.5 parent: 2 - - uid: 26151 + - uid: 26517 components: - type: Transform - pos: 81.5,-76.5 + pos: -83.5,-9.5 parent: 2 - - uid: 26152 + - uid: 26518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-78.5 + pos: -83.5,-7.5 parent: 2 - - uid: 26153 + - uid: 26519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,30.5 + pos: -76.5,-10.5 parent: 2 - - uid: 26154 + - uid: 26520 components: - type: Transform - pos: 10.5,30.5 + pos: -73.5,-8.5 parent: 2 - - uid: 26155 + - uid: 27676 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,32.5 + pos: 19.5,14.5 parent: 2 - - uid: 26156 +- proto: HospitalCurtainsOpen + entities: + - uid: 26521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,32.5 + pos: 78.5,-12.5 parent: 2 - - uid: 26157 + - uid: 26522 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,31.5 + pos: 35.5,-8.5 parent: 2 - - uid: 26158 + - uid: 26523 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,31.5 - parent: 2 - - uid: 26159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,28.5 + pos: 37.5,-8.5 parent: 2 - - uid: 26160 + - uid: 26524 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,28.5 - parent: 2 - - uid: 26161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,21.5 + pos: 34.5,-8.5 parent: 2 - - uid: 26162 + - uid: 26526 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,21.5 + pos: -46.5,-20.5 parent: 2 - - uid: 26163 + - uid: 26527 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,21.5 + pos: -46.5,-23.5 parent: 2 - - uid: 26164 + - uid: 26528 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,17.5 + pos: -46.5,-24.5 parent: 2 - - uid: 26165 + - uid: 26529 components: - type: Transform - pos: -81.5,-35.5 + pos: -53.5,-12.5 parent: 2 - - uid: 26166 + - uid: 26530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-35.5 + rot: 3.141592653589793 rad + pos: 57.5,-75.5 parent: 2 - - uid: 26167 + - uid: 26531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-34.5 + pos: -83.5,-8.5 parent: 2 - - uid: 26168 + - uid: 26532 components: - type: Transform - pos: -76.5,-79.5 + pos: -73.5,-9.5 parent: 2 - - uid: 26169 + - uid: 26533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-78.5 + pos: -73.5,-7.5 parent: 2 - - uid: 26170 + - uid: 26534 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,-79.5 + pos: 51.5,-25.5 parent: 2 - - uid: 26171 + - uid: 26535 components: - type: Transform - pos: -83.5,-63.5 + pos: 76.5,-12.5 parent: 2 - - uid: 26172 + - uid: 26536 components: - type: Transform - pos: -81.5,-55.5 + pos: 74.5,-12.5 parent: 2 - - uid: 26173 + - uid: 43208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-70.5 + pos: -3.5,-100.5 parent: 2 - - uid: 26174 +- proto: HotplateMachineCircuitboard + entities: + - uid: 20519 components: - type: Transform - pos: -81.5,-71.5 + pos: -8.530389,-63.580307 parent: 2 - - uid: 26175 +- proto: HydrogenChemistryBottle + entities: + - uid: 1989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-71.5 - parent: 2 - - uid: 26176 + parent: 1980 + - type: Physics + canCollide: False +- proto: hydroponicsSoil + entities: + - uid: 666 components: - type: Transform - pos: -82.5,-67.5 + rot: 3.141592653589793 rad + pos: 28.5,20.5 parent: 2 - - uid: 26177 + - uid: 11738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-63.5 + rot: 1.5707963267948966 rad + pos: 31.5,19.5 parent: 2 - - uid: 26178 + - uid: 13711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-60.5 + rot: 3.141592653589793 rad + pos: 31.5,21.5 parent: 2 - - uid: 26179 + - uid: 15101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-61.5 + rot: 3.141592653589793 rad + pos: 28.5,21.5 parent: 2 - - uid: 26180 + - uid: 19068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-58.5 + rot: 3.141592653589793 rad + pos: 31.5,20.5 parent: 2 - - uid: 26181 + - uid: 26542 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,-58.5 + pos: -73.5,-7.5 parent: 2 - - uid: 26182 + - uid: 26543 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,-57.5 + pos: -73.5,-8.5 parent: 2 - - uid: 26183 + - uid: 26544 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,-55.5 + pos: -73.5,-9.5 parent: 2 - - uid: 26184 + - uid: 26545 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-104.5 + pos: -75.5,-12.5 parent: 2 - - uid: 26185 + - uid: 26546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-93.5 + rot: 3.141592653589793 rad + pos: -76.5,-12.5 parent: 2 - - uid: 26186 + - uid: 35792 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-96.5 + rot: 1.5707963267948966 rad + pos: 28.5,19.5 parent: 2 - - uid: 26187 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 371 components: - type: Transform - pos: 27.5,-98.5 + pos: 29.106945,19.563984 parent: 2 - - uid: 26188 + - uid: 2568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-110.5 - parent: 2 - - uid: 26189 + parent: 2559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26548 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-110.5 + pos: -75.44913,-12.35248 parent: 2 - - uid: 26190 +- proto: HydroponicsToolScythe + entities: + - uid: 26549 components: - type: Transform - pos: 27.5,-105.5 + rot: 1.5707963267948966 rad + pos: -38.551037,16.645557 parent: 2 - - uid: 26191 +- proto: HydroponicsToolSpade + entities: + - uid: 2569 components: - type: Transform - pos: 28.5,-106.5 - parent: 2 - - uid: 26192 + parent: 2559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-106.5 + pos: -73.35629,-9.494815 parent: 2 - - uid: 26193 + - uid: 30820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-108.5 + rot: 3.141592653589793 rad + pos: 30.68507,20.532734 parent: 2 - - uid: 26194 +- proto: hydroponicsTray + entities: + - uid: 1874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-112.5 + rot: 3.141592653589793 rad + pos: 35.5,12.5 parent: 2 - - uid: 26195 + - uid: 2327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-110.5 + rot: 3.141592653589793 rad + pos: 37.5,14.5 parent: 2 - - uid: 26196 + - uid: 19655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-108.5 + rot: 3.141592653589793 rad + pos: 34.5,12.5 parent: 2 - - uid: 26197 + - uid: 26556 components: - type: Transform - pos: 55.5,-108.5 + pos: 39.5,23.5 parent: 2 - - uid: 26198 + - uid: 26558 components: - type: Transform - pos: 53.5,-110.5 + rot: 3.141592653589793 rad + pos: 37.5,12.5 parent: 2 - - uid: 26199 + - uid: 26559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-112.5 + rot: 3.141592653589793 rad + pos: 37.5,11.5 parent: 2 - - uid: 26200 + - uid: 26560 components: - type: Transform - pos: 49.5,-113.5 + rot: 3.141592653589793 rad + pos: 36.5,11.5 parent: 2 - - uid: 26201 + - uid: 26561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-113.5 + rot: 3.141592653589793 rad + pos: 36.5,12.5 parent: 2 - - uid: 26202 + - uid: 26564 components: - type: Transform - pos: 51.5,-113.5 + pos: 37.5,23.5 parent: 2 - - uid: 26203 + - uid: 26566 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-110.5 + rot: -1.5707963267948966 rad + pos: 37.5,21.5 parent: 2 - - uid: 26204 + - uid: 26567 components: - type: Transform - pos: 56.5,-106.5 + rot: -1.5707963267948966 rad + pos: 39.5,21.5 parent: 2 - - uid: 26205 + - uid: 26568 components: - type: Transform - pos: 30.5,-112.5 + pos: 88.5,-7.5 parent: 2 - - uid: 26206 + - uid: 26569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-114.5 + pos: 88.5,-6.5 parent: 2 - - uid: 26207 + - uid: 26570 components: - type: Transform - pos: 32.5,-114.5 + pos: 88.5,-5.5 parent: 2 - - uid: 26208 + - uid: 26572 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-114.5 - parent: 2 - - uid: 26209 - components: - - type: Transform - pos: 38.5,-114.5 + pos: 37.5,22.5 parent: 2 - - uid: 26210 + - uid: 26573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-114.5 + rot: 3.141592653589793 rad + pos: 39.5,22.5 parent: 2 - - uid: 26211 + - uid: 28686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-114.5 + rot: 3.141592653589793 rad + pos: 35.5,11.5 parent: 2 - - uid: 26212 + - uid: 28983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-114.5 + rot: 3.141592653589793 rad + pos: 34.5,13.5 parent: 2 - - uid: 26213 + - uid: 29114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-114.5 + rot: 3.141592653589793 rad + pos: 34.5,14.5 parent: 2 - - uid: 26214 + - uid: 29719 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-93.5 + pos: 37.5,13.5 parent: 2 - - uid: 26215 + - uid: 31337 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-112.5 + pos: 36.5,14.5 parent: 2 - - uid: 26216 + - uid: 31764 components: - type: Transform - pos: 27.5,-90.5 + rot: 3.141592653589793 rad + pos: 35.5,14.5 parent: 2 - - uid: 26217 + - uid: 31777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-90.5 + rot: 3.141592653589793 rad + pos: 35.5,13.5 parent: 2 - - uid: 26218 + - uid: 33135 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,27.5 + pos: 36.5,13.5 parent: 2 - - uid: 26219 + - uid: 33268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,28.5 + rot: 3.141592653589793 rad + pos: 34.5,11.5 parent: 2 - - uid: 26220 + - uid: 42388 components: - type: Transform rot: 3.141592653589793 rad - pos: 87.5,-68.5 + pos: 35.5,10.5 parent: 2 - - uid: 26221 + - uid: 42389 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,15.5 + pos: 36.5,10.5 parent: 2 - - uid: 26222 +- proto: HydroponicsTrayEmpty + entities: + - uid: 7435 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,16.5 + pos: -15.5,-33.5 parent: 2 - - uid: 26223 + - uid: 7507 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,16.5 + rot: 1.5707963267948966 rad + pos: -17.5,-35.5 parent: 2 - - uid: 26224 + - uid: 12253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,15.5 + rot: 1.5707963267948966 rad + pos: -17.5,-34.5 parent: 2 - - uid: 26225 + - uid: 15801 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,15.5 + pos: -15.5,-31.5 parent: 2 - - uid: 26226 + - uid: 15803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-95.5 + rot: 1.5707963267948966 rad + pos: -17.5,-33.5 parent: 2 - - uid: 26227 + - uid: 20018 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-94.5 + pos: -13.5,-31.5 parent: 2 - - uid: 26228 + - uid: 22912 components: - type: Transform - pos: -75.5,-81.5 + rot: 1.5707963267948966 rad + pos: -15.5,-32.5 parent: 2 - - uid: 26229 + - uid: 22913 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-88.5 + rot: 1.5707963267948966 rad + pos: -13.5,-30.5 parent: 2 - - uid: 26230 + - uid: 22914 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-97.5 + rot: 1.5707963267948966 rad + pos: -13.5,-32.5 parent: 2 - - uid: 26231 + - uid: 22915 components: - type: Transform - pos: -74.5,-102.5 + rot: 1.5707963267948966 rad + pos: -15.5,-30.5 parent: 2 - - uid: 26232 + - uid: 23105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-100.5 + rot: 1.5707963267948966 rad + pos: -17.5,-32.5 parent: 2 - - uid: 26233 +- proto: IceCrust + entities: + - uid: 23208 components: - type: Transform - pos: -60.5,-94.5 + pos: -8.5,-48.5 parent: 2 - - uid: 26234 + - uid: 23209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-94.5 + pos: -9.5,-47.5 parent: 2 - - uid: 26235 + - uid: 23210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-94.5 + pos: -9.5,-48.5 parent: 2 - - uid: 26236 + - uid: 23211 components: - type: Transform - pos: -93.5,-0.5 + pos: -10.5,-47.5 parent: 2 - - uid: 26237 + - uid: 23212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,-0.5 + pos: -7.5,-49.5 parent: 2 - - uid: 26238 + - uid: 23213 components: - type: Transform - pos: -92.5,-0.5 + pos: -7.5,-49.5 parent: 2 - - uid: 26239 +- proto: IDComputerCircuitboard + entities: + - uid: 26608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-0.5 + rot: 3.141592653589793 rad + pos: 37.53801,-41.496193 parent: 2 - - uid: 26240 +- proto: InflatableDoor + entities: + - uid: 26613 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,19.5 + pos: -78.5,-20.5 parent: 2 - - uid: 26241 + - uid: 26614 components: - type: Transform - pos: -89.5,19.5 + rot: 3.141592653589793 rad + pos: -79.5,-14.5 parent: 2 - - uid: 26242 +- proto: InflatableWall + entities: + - uid: 26617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,19.5 + rot: 1.5707963267948966 rad + pos: -24.5,-44.5 parent: 2 - - uid: 26243 + - uid: 26618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,11.5 + rot: 1.5707963267948966 rad + pos: -24.5,-43.5 parent: 2 - - uid: 26244 + - uid: 26620 components: - type: Transform rot: 1.5707963267948966 rad - pos: -74.5,18.5 + pos: -81.5,-19.5 parent: 2 - - uid: 26245 + - uid: 26621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-15.5 + pos: -43.5,2.5 parent: 2 - - uid: 26246 + - uid: 26622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-8.5 + pos: -50.5,2.5 parent: 2 - - uid: 26247 + - uid: 26623 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-8.5 + pos: -53.5,-7.5 parent: 2 - - uid: 26248 + - uid: 26626 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-116.5 + pos: -49.5,4.5 parent: 2 - - uid: 26249 + - uid: 26627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-126.5 + rot: 3.141592653589793 rad + pos: -50.5,-5.5 parent: 2 - - uid: 26250 + - uid: 26628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-126.5 + pos: -83.5,-15.5 parent: 2 - - uid: 26251 + - uid: 26629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-124.5 + pos: -75.5,7.5 parent: 2 - - uid: 26252 + - uid: 26630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-125.5 + pos: -72.5,-21.5 parent: 2 - - uid: 26253 + - uid: 26631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-128.5 + pos: -70.5,-10.5 parent: 2 - - uid: 26254 + - uid: 26632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 95.5,-96.5 + rot: 3.141592653589793 rad + pos: -79.5,1.5 parent: 2 - - uid: 26255 + - uid: 26633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 109.5,-62.5 + pos: -36.5,20.5 parent: 2 - - uid: 26256 + - uid: 26641 components: - type: Transform - pos: 109.5,-62.5 + pos: -23.5,-42.5 parent: 2 - - uid: 26257 + - uid: 27473 components: - type: Transform - pos: 109.5,-65.5 + pos: 22.5,-34.5 parent: 2 - - uid: 26258 + - uid: 27557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 109.5,-65.5 + pos: 22.5,-33.5 parent: 2 - - uid: 26259 + - uid: 27558 components: - type: Transform - rot: 3.141592653589793 rad - pos: 110.5,-69.5 + pos: 22.5,-32.5 parent: 2 - - uid: 26260 + - uid: 27559 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-75.5 + pos: 21.5,-33.5 parent: 2 - - uid: 26261 + - uid: 27560 components: - type: Transform - pos: 109.5,-75.5 + pos: 21.5,-32.5 parent: 2 - - uid: 26262 + - uid: 27561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 109.5,-75.5 + pos: 22.5,-31.5 parent: 2 - - uid: 26263 + - uid: 29233 components: - type: Transform rot: 3.141592653589793 rad - pos: 109.5,-84.5 + pos: -23.5,-43.5 parent: 2 - - uid: 26264 + - uid: 29234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-93.5 + rot: 3.141592653589793 rad + pos: -21.5,-42.5 parent: 2 - - uid: 26265 + - uid: 29235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 104.5,-93.5 + rot: 3.141592653589793 rad + pos: -20.5,-43.5 parent: 2 - - uid: 26266 + - uid: 29236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 99.5,-97.5 + rot: 3.141592653589793 rad + pos: -21.5,-43.5 parent: 2 - - uid: 26267 +- proto: IngotGold1 + entities: + - uid: 26660 components: - type: Transform - pos: 99.5,-97.5 + pos: -6.8590045,-8.252594 parent: 2 - - uid: 26268 + - uid: 26661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-96.5 + pos: -6.8902545,-8.502594 parent: 2 - - uid: 26269 +- proto: IngotSilver + entities: + - uid: 26662 components: - type: Transform - pos: 89.5,-86.5 + pos: -7.4725513,-8.326113 parent: 2 - - uid: 26270 +- proto: IngotSilver1 + entities: + - uid: 15668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-82.5 - parent: 2 - - uid: 26271 + parent: 15665 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15669 components: - type: Transform - pos: 87.5,-82.5 - parent: 2 - - uid: 26272 + parent: 15665 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15670 components: - type: Transform - pos: 86.5,-82.5 - parent: 2 - - uid: 26273 + parent: 15665 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Intellicard + entities: + - uid: 26663 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,35.5 + pos: 19.502789,21.587538 parent: 2 - - uid: 26274 + - type: WarpPoint + location: интелкарта +- proto: IntercomAll + entities: + - uid: 26664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,30.5 + pos: 0.5,23.5 parent: 2 - - uid: 26275 +- proto: IntercomCommand + entities: + - uid: 26665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,34.5 + rot: -1.5707963267948966 rad + pos: -7.5,13.5 parent: 2 - - uid: 26276 + - uid: 26666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 111.5,-37.5 + pos: 3.5,27.5 parent: 2 - - uid: 26277 + - uid: 26667 components: - type: Transform rot: 3.141592653589793 rad - pos: 115.5,-45.5 + pos: 5.5,5.5 parent: 2 - - uid: 26278 + - uid: 26668 components: - type: Transform - pos: 115.5,-46.5 + pos: -20.5,9.5 parent: 2 - - uid: 26279 +- proto: IntercomCommon + entities: + - uid: 26669 components: - type: Transform - pos: 114.5,-48.5 + rot: -1.5707963267948966 rad + pos: -69.5,-39.5 parent: 2 - - uid: 26280 + - uid: 26670 components: - type: Transform - pos: 112.5,-51.5 + pos: -72.5,-34.5 parent: 2 - - uid: 26281 + - uid: 26671 components: - type: Transform - pos: -90.5,-26.5 + rot: -1.5707963267948966 rad + pos: 34.5,-38.5 parent: 2 - - uid: 26282 + - uid: 26672 components: - type: Transform - pos: -92.5,-20.5 + pos: 6.5,-73.5 parent: 2 - - uid: 26283 + - uid: 26673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-24.5 + rot: 1.5707963267948966 rad + pos: -33.5,-47.5 parent: 2 - - uid: 26284 + - uid: 26674 components: - type: Transform - pos: -76.5,24.5 + pos: -8.5,5.5 parent: 2 - - uid: 26285 +- proto: IntercomElectronics + entities: + - uid: 26676 components: - type: Transform - pos: -88.5,24.5 + pos: 36.535313,-38.33921 parent: 2 - - uid: 26286 +- proto: IntercomEngineering + entities: + - uid: 26677 components: - type: Transform rot: 1.5707963267948966 rad - pos: -78.5,26.5 + pos: 42.5,-56.5 parent: 2 - - uid: 26287 + - uid: 26678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,27.5 + rot: 1.5707963267948966 rad + pos: 48.5,-91.5 parent: 2 - - uid: 26288 + - uid: 26679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,29.5 + rot: -1.5707963267948966 rad + pos: 51.5,-72.5 parent: 2 - - uid: 26289 + - uid: 26680 components: - type: Transform rot: 1.5707963267948966 rad - pos: -83.5,32.5 + pos: 35.5,-100.5 parent: 2 - - uid: 26290 + - uid: 26681 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-93.5 + pos: 65.5,-63.5 parent: 2 - - uid: 26291 +- proto: IntercomMedical + entities: + - uid: 26682 components: - type: Transform - pos: 69.5,-94.5 + pos: -38.5,-35.5 parent: 2 - - uid: 26292 + - uid: 26683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,-97.5 + pos: -45.5,-26.5 parent: 2 - - uid: 26293 + - uid: 26684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-99.5 + rot: 1.5707963267948966 rad + pos: -44.5,-4.5 parent: 2 - - uid: 26294 + - uid: 26685 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,-99.5 + pos: -52.5,-34.5 parent: 2 - - uid: 26295 +- proto: IntercomScience + entities: + - uid: 26686 components: - type: Transform rot: 1.5707963267948966 rad - pos: 79.5,-98.5 + pos: -45.5,-60.5 parent: 2 - - uid: 26296 + - uid: 26687 components: - type: Transform - pos: 84.5,-91.5 + rot: -1.5707963267948966 rad + pos: -41.5,-46.5 parent: 2 - - uid: 26297 + - uid: 26688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-90.5 + rot: -1.5707963267948966 rad + pos: -45.5,-70.5 parent: 2 - - uid: 26298 + - uid: 26689 components: - type: Transform - pos: 90.5,-91.5 + rot: -1.5707963267948966 rad + pos: -66.5,-64.5 parent: 2 - - uid: 26299 +- proto: IntercomSecurity + entities: + - uid: 26675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,27.5 + rot: -1.5707963267948966 rad + pos: 53.5,21.5 parent: 2 - - uid: 26300 + - uid: 26690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,13.5 + pos: 44.5,-21.5 parent: 2 - - uid: 26301 +- proto: IntercomService + entities: + - uid: 26691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,10.5 + rot: -1.5707963267948966 rad + pos: 38.5,-1.5 parent: 2 - - uid: 26302 + - uid: 26692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,1.5 + rot: 1.5707963267948966 rad + pos: 25.5,-0.5 parent: 2 - - uid: 26303 + - uid: 26693 components: - type: Transform - pos: 93.5,-3.5 + rot: 1.5707963267948966 rad + pos: 26.5,12.5 parent: 2 - - uid: 26304 + - uid: 26694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,-7.5 + rot: -1.5707963267948966 rad + pos: 39.5,14.5 parent: 2 -- proto: GrilleDiagonal +- proto: IntercomSupply entities: - - uid: 26305 + - uid: 26695 components: - type: Transform - pos: -11.5,25.5 + rot: 1.5707963267948966 rad + pos: 4.5,-101.5 parent: 2 - - uid: 26306 + - uid: 26696 components: - type: Transform - pos: -10.5,26.5 + pos: 2.5,-85.5 parent: 2 - - uid: 26307 + - uid: 26697 components: - type: Transform - pos: -6.5,27.5 + rot: -1.5707963267948966 rad + pos: 8.5,-81.5 parent: 2 - - uid: 26308 + - uid: 43190 components: - type: Transform - pos: -3.5,28.5 + pos: -8.5,-107.5 parent: 2 - - uid: 26309 +- proto: JanitorialTrolley + entities: + - uid: 26700 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,28.5 + pos: -6.5,-71.5 parent: 2 - - uid: 26310 + - uid: 32193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,27.5 + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 parent: 2 - - uid: 26311 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + mop_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26657 + trashbag_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26870 + bucket_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42036 + plunger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26571 + wetfloorsign_slot4: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26659 + wetfloorsign_slot3: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26734 + wetfloorsign_slot2: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26743 + wetfloorsign_slot1: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26762 + lightreplacer_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26807 + spraybottle_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26658 + - uid: 42050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,26.5 + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 parent: 2 - - uid: 26312 +- proto: JanitorServiceLight + entities: + - uid: 2545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,25.5 + rot: 3.141592653589793 rad + pos: -36.5,-49.5 parent: 2 - - uid: 26313 + - uid: 18648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -75.5,-0.5 + pos: -0.5,11.5 parent: 2 - - uid: 26314 + - uid: 20150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,24.5 + pos: -44.5,-42.5 parent: 2 - - uid: 26315 + - uid: 26701 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,23.5 + pos: 45.5,-45.5 parent: 2 - - uid: 40754 - components: - - type: Transform - pos: -0.5,5.5 - parent: 40666 - - uid: 40755 + - uid: 26702 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 40666 - - uid: 41835 + pos: 28.5,-6.5 + parent: 2 + - uid: 26704 components: - type: Transform - pos: 2.5,5.5 - parent: 41669 - - uid: 41836 + pos: -24.5,1.5 + parent: 2 + - uid: 26705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,5.5 - parent: 41669 -- proto: GrilleSpawner - entities: - - uid: 11730 + rot: 1.5707963267948966 rad + pos: -32.5,-35.5 + parent: 2 + - uid: 26708 components: - type: Transform - pos: -54.5,-125.5 + rot: 1.5707963267948966 rad + pos: -44.5,-45.5 parent: 2 - - uid: 26316 + - uid: 26709 components: - type: Transform - pos: -46.5,-73.5 + rot: 3.141592653589793 rad + pos: -33.5,-44.5 parent: 2 - - uid: 26317 + - uid: 26710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-95.5 + rot: 1.5707963267948966 rad + pos: -0.5,-78.5 parent: 2 - - uid: 26318 + - uid: 26711 components: - type: Transform - pos: 24.5,33.5 + rot: 1.5707963267948966 rad + pos: 43.5,-34.5 parent: 2 - - uid: 26319 + - uid: 26712 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,-95.5 + pos: 45.5,-29.5 parent: 2 - - uid: 26320 + - uid: 26713 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,-96.5 + pos: 38.5,-3.5 parent: 2 - - uid: 26321 + - uid: 31194 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,-97.5 + pos: -40.5,-34.5 parent: 2 - - uid: 26322 + - uid: 32241 components: - type: Transform - pos: 58.5,-45.5 + rot: 3.141592653589793 rad + pos: 9.5,-3.5 parent: 2 - - uid: 26323 + - uid: 33562 components: - type: Transform - pos: 59.5,-45.5 + rot: 3.141592653589793 rad + pos: 8.5,-3.5 parent: 2 - - uid: 26324 + - uid: 34156 components: - type: Transform - pos: 64.5,-86.5 + rot: 3.141592653589793 rad + pos: 6.5,-3.5 parent: 2 - - uid: 26325 + - uid: 34157 components: - type: Transform - pos: -59.5,-89.5 + rot: 3.141592653589793 rad + pos: 5.5,-3.5 parent: 2 - - uid: 26326 + - uid: 42062 components: - type: Transform - pos: -60.5,-91.5 + pos: 0.5,22.5 parent: 2 - - uid: 26328 + - uid: 42221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-106.5 + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 parent: 2 - - uid: 26329 + - uid: 42222 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-106.5 + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 parent: 2 - - uid: 26331 +- proto: JetpackBlue + entities: + - uid: 26714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-46.5 + pos: 46.5,-62.5 parent: 2 - - uid: 26332 +- proto: JetpackBlueFilled + entities: + - uid: 26715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,13.5 + pos: 57.494186,-82.422646 parent: 2 - - uid: 26333 +- proto: JetpackMini + entities: + - uid: 26716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,13.5 + pos: 54.5232,-96.30902 parent: 2 - - uid: 26334 + - uid: 26717 components: - type: Transform - pos: -58.5,-0.5 + pos: 111.52574,-46.458534 parent: 2 - - uid: 26335 + - uid: 43184 components: - type: Transform - pos: -58.5,-1.5 + pos: -10.5,-106.5 parent: 2 - - uid: 26336 +- proto: JetpackSecurity + entities: + - uid: 62 components: - type: Transform - pos: -58.5,-2.5 + pos: 66.48599,13.616083 parent: 2 - - uid: 26337 + - type: GasTank + toggleActionEntity: 63 + - type: Jetpack + toggleActionEntity: 64 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 64 + - 63 +- proto: JetpackSecurityFilled + entities: + - uid: 65 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-61.5 + rot: 6.283185307179586 rad + pos: 57.357067,-22.587494 parent: 2 - - uid: 26338 + - type: GasTank + toggleActionEntity: 66 + - type: Jetpack + toggleActionEntity: 67 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 67 + - 66 + - uid: 26718 components: - type: Transform - pos: -51.5,-93.5 + pos: 57.741734,-22.50916 parent: 2 - - uid: 26339 + - uid: 26719 components: - type: Transform - pos: 11.5,-107.5 + pos: 57.53861,-22.44666 parent: 2 - - uid: 26340 +- proto: JetpackVoidFilled + entities: + - uid: 41107 components: - type: Transform - pos: -47.5,19.5 - parent: 2 - - uid: 26341 + parent: 41103 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41114 components: - type: Transform - pos: -45.5,19.5 - parent: 2 - - uid: 26343 + parent: 41110 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41121 components: - type: Transform - pos: -46.5,19.5 - parent: 2 - - uid: 26344 + parent: 41117 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41128 components: - type: Transform - pos: -52.5,20.5 - parent: 2 - - uid: 26345 + parent: 41124 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41135 components: - type: Transform - pos: -42.5,21.5 - parent: 2 - - uid: 26346 + parent: 41131 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Jug + entities: + - uid: 1990 components: - type: Transform - pos: -50.5,21.5 - parent: 2 - - uid: 26347 + parent: 1980 + - type: Physics + canCollide: False + - uid: 1991 components: - type: Transform - pos: -50.5,19.5 + parent: 1980 + - type: Physics + canCollide: False +- proto: Jukebox + entities: + - uid: 26720 + components: + - type: Transform + pos: 34.5,7.5 parent: 2 - - uid: 26348 +- proto: KitchenElectricGrill + entities: + - uid: 26721 components: - type: Transform - pos: -48.5,20.5 + pos: 28.5,14.5 parent: 2 - - uid: 26349 +- proto: KitchenKnife + entities: + - uid: 26722 components: - type: Transform - pos: -44.5,20.5 + pos: 29.761024,11.77055 parent: 2 - - uid: 26350 + - uid: 26724 components: - type: Transform - pos: -40.5,20.5 + parent: 26723 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26725 + components: + - type: Transform + pos: 35.37294,-71.35835 parent: 2 - - uid: 26351 +- proto: KitchenMicrowave + entities: + - uid: 5077 components: - type: Transform - pos: -42.5,19.5 + pos: 26.5,8.5 parent: 2 - - uid: 26352 + - uid: 14861 components: - type: Transform - pos: 64.5,-91.5 + pos: -76.5,-7.5 parent: 2 - - uid: 26353 + - uid: 23246 components: - type: Transform - pos: 87.5,-13.5 + pos: -10.5,-34.5 parent: 2 - - uid: 26354 + - uid: 26726 components: - type: Transform - pos: -48.5,13.5 + pos: -43.5,-86.5 parent: 2 - - uid: 26355 + - uid: 26728 components: - type: Transform - pos: 79.5,-81.5 + pos: 46.5,-73.5 parent: 2 - - uid: 26356 + - uid: 26729 components: - type: Transform - pos: 86.5,-15.5 + pos: 61.5,-37.5 parent: 2 - - uid: 26357 + - uid: 26730 components: - type: Transform - pos: 24.5,29.5 + pos: -9.5,-88.5 parent: 2 - - uid: 26358 + - uid: 26731 components: - type: Transform - pos: 21.5,27.5 + pos: 53.5,-51.5 parent: 2 - - uid: 26359 + - uid: 26732 components: - type: Transform - pos: 1.5,32.5 + pos: -55.5,12.5 parent: 2 - - uid: 26360 + - uid: 26733 components: - type: Transform - pos: 4.5,31.5 + pos: -37.5,-3.5 parent: 2 - - uid: 26361 + - uid: 26735 components: - type: Transform - pos: -7.5,30.5 + pos: 50.5,3.5 parent: 2 - - uid: 26362 + - uid: 26736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,27.5 + pos: 89.5,-10.5 parent: 2 - - uid: 26363 + - uid: 26737 components: - type: Transform - pos: -14.5,26.5 + pos: -9.5,13.5 parent: 2 - - uid: 26364 + - uid: 42380 components: - type: Transform - pos: -11.5,29.5 + pos: 29.5,14.5 parent: 2 - - uid: 26365 +- proto: KitchenReagentGrinder + entities: + - uid: 26738 components: - type: Transform - pos: -31.5,21.5 + pos: -37.5,-34.5 parent: 2 - - uid: 26366 + - uid: 26739 components: - type: Transform - pos: -24.5,21.5 + pos: -76.5,-9.5 parent: 2 - - uid: 26367 + - uid: 26740 components: - type: Transform - pos: -19.5,22.5 + pos: -55.5,-0.5 parent: 2 - - uid: 26368 + - uid: 26742 components: - type: Transform - pos: -21.5,22.5 + pos: 29.5,12.5 parent: 2 - - uid: 26369 + - uid: 26744 components: - type: Transform - pos: -58.5,17.5 + pos: 22.5,1.5 parent: 2 - - uid: 26370 + - uid: 26745 components: - type: Transform - pos: -56.5,19.5 + pos: -53.5,-75.5 parent: 2 - - uid: 26371 + - uid: 26746 components: - type: Transform - pos: -59.5,16.5 + pos: 33.5,23.5 parent: 2 - - uid: 26372 + - uid: 41324 components: - type: Transform - pos: -61.5,16.5 + pos: -2.5,-12.5 + parent: 40828 +- proto: KitchenSpike + entities: + - uid: 26747 + components: + - type: Transform + pos: 23.5,14.5 parent: 2 - - uid: 26373 +- proto: KnifePlastic + entities: + - uid: 10037 components: - type: Transform - pos: -78.5,-75.5 + pos: -2.5,-59.5 parent: 2 - - uid: 26374 +- proto: KukriKnife + entities: + - uid: 10036 components: - type: Transform - pos: -83.5,-66.5 + pos: -2.5,-59.5 parent: 2 - - uid: 26375 +- proto: Lamp + entities: + - uid: 54 components: + - type: MetaData + name: волшебная лампа - type: Transform - pos: -83.5,-60.5 + pos: -41.37098,-99.313675 parent: 2 - - uid: 26376 + - type: HandheldLight + selfToggleActionEntity: 58 + toggleActionEntity: 57 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 55 + actions: !type:Container + showEnts: False + occludes: True + ents: + - 57 + - 58 + - type: Physics + canCollide: True + - type: ActionsContainer + - type: Actions + actions: + - 58 + - uid: 105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-101.5 + pos: -31.577393,8.612033 parent: 2 - - uid: 26377 + - type: HandheldLight + toggleActionEntity: 106 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 106 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 109 components: - type: Transform - pos: 58.5,-105.5 + pos: 39.553074,-26.375849 parent: 2 - - uid: 26378 + - type: HandheldLight + toggleActionEntity: 110 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 110 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 20013 components: - type: Transform - pos: 59.5,-103.5 + pos: 78.450455,4.63519 parent: 2 - - uid: 26379 + - uid: 26748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,39.5 + pos: 56.785122,15.621483 parent: 2 - - uid: 26380 + - uid: 26749 components: - type: Transform - pos: -69.5,16.5 + rot: 3.141592653589793 rad + pos: 51.49618,9.6562805 parent: 2 - - uid: 26381 + - uid: 26750 components: - type: Transform - pos: -62.5,15.5 + pos: 56.489525,-0.4086697 parent: 2 - - uid: 26382 + - type: HandheldLight + toggleActionEntity: 27240 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27240 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 26751 components: - type: Transform - pos: -49.5,-74.5 + rot: 3.141592653589793 rad + pos: 55.5,-4.5 parent: 2 - - uid: 26383 + - uid: 26753 components: - type: Transform - pos: -46.5,-74.5 + pos: -62.609993,-71.49693 parent: 2 - - uid: 26384 + - uid: 26754 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,5.5 + pos: -37.520256,3.586957 parent: 2 - - uid: 26385 + - uid: 26755 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,5.5 + pos: -55.444374,-7.3688416 parent: 2 - - uid: 26386 + - uid: 26756 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-4.5 + pos: 24.58624,-76.29226 parent: 2 - - uid: 26387 + - uid: 26757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-12.5 + pos: -53.518684,-48.100246 parent: 2 - - uid: 26388 + - type: HandheldLight + toggleActionEntity: 28116 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 28116 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 26758 components: - type: Transform - pos: -63.5,-111.5 + pos: -67.78054,-47.23861 parent: 2 - - uid: 26389 + - type: HandheldLight + toggleActionEntity: 27400 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 27400 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 26759 components: - type: Transform - pos: -48.5,-125.5 + pos: -57.563206,-38.405563 parent: 2 - - uid: 26390 + - uid: 26760 components: - type: Transform - pos: -57.5,-126.5 + pos: 46.49248,16.632973 parent: 2 - - uid: 26391 +- proto: LampGold + entities: + - uid: 95 components: - type: Transform - pos: -42.5,-128.5 + pos: 36.678036,-67.21557 parent: 2 - - uid: 26392 + - type: HandheldLight + toggleActionEntity: 96 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 96 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 107 components: - type: Transform - pos: -35.5,-128.5 + pos: 13.513687,16.437595 parent: 2 - - uid: 26393 + - type: HandheldLight + toggleActionEntity: 108 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 108 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 113 components: - type: Transform - pos: -32.5,-128.5 + pos: -34.553288,-7.330698 parent: 2 - - uid: 26394 + - type: HandheldLight + toggleActionEntity: 114 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 114 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 120 components: - type: Transform - pos: -26.5,-120.5 + pos: -11.525497,11.50857 parent: 2 - - uid: 26395 + - type: HandheldLight + toggleActionEntity: 121 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 121 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 26761 components: - type: Transform - pos: -28.5,-121.5 + pos: -16.5,5.5 parent: 2 - - uid: 26396 +- proto: LampInterrogator + entities: + - uid: 103 components: - type: Transform - pos: -22.5,-113.5 + pos: 51.51914,-9.259501 parent: 2 - - uid: 26397 + - type: HandheldLight + toggleActionEntity: 104 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 104 + - type: Physics + canCollide: True + - type: ActionsContainer +- proto: LandMineExplosive + entities: + - uid: 16396 components: - type: Transform - pos: -22.5,-110.5 + pos: 76.27763,-14.222469 parent: 2 - - uid: 26398 + - uid: 16421 components: - type: Transform - pos: 89.5,-90.5 + pos: 72.52763,-15.503719 parent: 2 - - uid: 26399 + - uid: 26763 components: - type: Transform - pos: 82.5,-81.5 + pos: -89.68935,-1.4331177 parent: 2 - - uid: 26400 + - uid: 26764 components: - type: Transform - pos: 101.5,-96.5 + pos: -74.88008,-65.27804 parent: 2 - - uid: 26401 +- proto: LandMineModular + entities: + - uid: 26765 components: - type: Transform - pos: 110.5,-66.5 + pos: -72.25352,-66.75768 parent: 2 - - uid: 26402 + - uid: 26766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,36.5 + pos: -70.84727,-64.67956 parent: 2 - - uid: 26403 + - uid: 26767 components: - type: Transform - anchored: False - pos: 68.5,-90.5 + pos: -73.92539,-63.101433 parent: 2 - - uid: 26404 +- proto: Lantern + entities: + - uid: 97 components: - type: Transform - pos: 74.5,-74.5 + pos: 36.61548,-64.2816 parent: 2 - - uid: 26405 + - type: HandheldLight + toggleActionEntity: 98 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 98 + - type: ActionsContainer + - uid: 111 components: - type: Transform - pos: 70.5,-74.5 + pos: 33.484238,-63.94874 parent: 2 - - uid: 26406 + - type: HandheldLight + toggleActionEntity: 112 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 112 + - type: ActionsContainer + - uid: 23489 components: - type: Transform - pos: 9.5,-113.5 + pos: -9.301543,-63.475563 parent: 2 - - uid: 26407 +- proto: LanternFlash + entities: + - uid: 101 components: - type: Transform - pos: 13.5,-113.5 + pos: 34.74378,-71.32181 parent: 2 - - uid: 26408 + - type: HandheldLight + toggleActionEntity: 102 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 102 + - type: ActionsContainer + - uid: 26768 components: - type: Transform - pos: 4.5,-110.5 + pos: -82.55063,-24.325563 parent: 2 - - uid: 26410 +- proto: LargeBeaker + entities: + - uid: 1992 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-1.5 + parent: 1980 + - type: Physics + canCollide: False + - uid: 26771 + components: + - type: Transform + pos: -55.46563,-13.170682 parent: 2 - - uid: 43775 + - uid: 26772 components: - type: Transform - pos: -52.5,-133.5 + pos: -34.649292,-21.959995 parent: 2 - - uid: 43776 + - uid: 26773 components: - type: Transform - pos: -55.5,-134.5 + pos: -45.360683,-10.721433 parent: 2 - - uid: 43777 + - uid: 26774 components: - type: Transform - pos: -52.5,-131.5 + pos: 29.956684,12.437808 parent: 2 - - uid: 43818 + - uid: 26775 components: - type: Transform - pos: -52.5,-132.5 + pos: 33.612232,23.321634 parent: 2 - - uid: 43822 +- proto: LauncherCreamPie + entities: + - uid: 19919 components: - type: Transform - pos: -56.5,-134.5 + parent: 19910 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26780 + components: + - type: Transform + parent: 1311 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LauncherSyringe + entities: + - uid: 26781 + components: + - type: Transform + pos: -45.56118,-6.307379 parent: 2 - - uid: 43823 + - type: WarpPoint + location: я-93 +- proto: LawyerPDA + entities: + - uid: 1376 components: - type: Transform - pos: -58.5,-132.5 + parent: 1372 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LeadChemistryBottle + entities: + - uid: 26782 + components: + - type: MetaData + desc: Что дед мороз мне подарит? + name: свинец + - type: Transform + pos: -57.70397,-89.29614 parent: 2 -- proto: GroundCannabisRainbow +- proto: LeavesCannabisDried entities: - - uid: 44286 + - uid: 43 + components: + - type: Transform + parent: 35 + - type: Stack + count: 5 + - type: Physics + canCollide: False +- proto: LeavesCannabisRainbow + entities: + - uid: 44267 components: - type: Transform parent: 44266 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: GunpetInstrument +- proto: LedLightBulb entities: - - uid: 26411 + - uid: 40758 + components: + - type: Transform + parent: 40757 + - type: LightBulb + color: '#0000FFFF' + - type: Physics + canCollide: False +- proto: Left4ZedChemistryBottle + entities: + - uid: 2562 + components: + - type: Transform + parent: 2561 + - type: Physics + canCollide: False + - uid: 26783 components: - - type: MetaData - name: микроволновая пушка - type: Transform - pos: 12.604113,-15.40472 + pos: 36.64995,23.117214 parent: 2 -- proto: GunSafe +- proto: LeftArmSkeleton entities: - - uid: 2435 + - uid: 26788 components: - type: Transform - pos: 12.5,-20.5 + pos: 65.5,-50.5 parent: 2 - - type: AccessReader - access: - - - NuclearOperative - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 2437 - - 2436 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 2469 +- proto: LeftArmSlime + entities: + - uid: 16258 components: - type: Transform - pos: -1.5,-32.5 + pos: 14.586128,-30.871368 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2470 - - 2471 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 16307 +- proto: LeftFootMoth + entities: + - uid: 26789 components: - - type: MetaData - name: сейф капсульного пистолета - type: Transform - pos: -68.5,-50.5 + rot: 1.5707963267948966 rad + pos: 107.40406,-71.27681 parent: 2 - - type: AccessReader - access: - - - Service - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 16516 - - 19056 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 26412 +- proto: LeftFootSkeleton + entities: + - uid: 26790 components: - - type: MetaData - name: сейф для секретов - type: Transform - anchored: True - pos: -4.5,-8.5 + pos: 65.5,-50.5 parent: 2 - - type: AccessReader - access: - - - Captain - - - HeadOfSecurity - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8978093 - - 7.139378 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26413 - - 1827 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Pullable - prevFixedRotation: True - - uid: 26414 +- proto: LeftFootSlime + entities: + - uid: 16252 components: - - type: MetaData - name: сейф с жетонами - type: Transform - pos: -59.5,11.5 + pos: 14.535654,-30.992832 parent: 2 - - type: AccessReader - access: - - - HeadOfPersonnel - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8978151 - - 7.1394 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 29098 - - 26418 - - 26419 - - 26417 - - 26415 - - 26421 - - 26416 - - 26420 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 26423 +- proto: LeftHandSkeleton + entities: + - uid: 26791 components: - type: Transform - pos: 8.5,-20.5 + pos: 65.5,-50.5 parent: 2 - - type: AccessReader - access: - - - Salvage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8978093 - - 7.139378 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26957 - - 26961 - - 26959 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 40879 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 40828 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 40881 - - 40882 - - 40880 - - 40883 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 41318 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 40828 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 41321 - - 41319 - - 41320 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: GunSafeDisabler +- proto: LeftHandSlime entities: - - uid: 26425 + - uid: 16264 components: - type: Transform - pos: 55.5,-20.5 + pos: 14.592438,-30.909191 parent: 2 -- proto: GunSafeLaserCarbine +- proto: LeftLegBorg entities: - - uid: 26426 + - uid: 26792 components: - type: Transform - pos: 62.5,-11.5 + pos: -86.09143,-9.851116 parent: 2 -- proto: GunSafePistolMk58 +- proto: LeftLegReptilian entities: - - uid: 26427 + - uid: 26799 components: - type: Transform - pos: 65.5,-11.5 + rot: -1.5707963267948966 rad + pos: -63.578598,-33.43395 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 16443 - - 26422 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: GunSafeRifleLecter +- proto: LeftLegSkeleton entities: - - uid: 26428 + - uid: 26800 components: - type: Transform - pos: 63.5,-17.5 + pos: 65.5,-50.5 parent: 2 -- proto: GunSafeSubMachineGunDrozd +- proto: LeftLegSlime entities: - - uid: 26429 + - uid: 16253 components: - type: Transform - pos: 64.5,-17.5 + pos: 14.529345,-30.942398 parent: 2 -- proto: Gyroscope - entities: - - uid: 40756 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 40666 - - uid: 41837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-9.5 - parent: 41669 -- proto: GyroscopeFlatpack +- proto: LegionnaireBonfire entities: - - uid: 26430 + - uid: 26801 components: + - type: MetaData + desc: Легион имя мне. - type: Transform - pos: -22.45288,-46.535347 + pos: 69.5,-49.5 parent: 2 -- proto: Handcuffs +- proto: LGBTQFlag entities: - - uid: 26431 - components: - - type: Transform - rot: 6.283185307179586 rad - pos: 52.60071,-17.486929 - parent: 2 - - uid: 26432 + - uid: 26804 components: - type: Transform - rot: 6.283185307179586 rad - pos: 52.545673,-17.560314 + pos: -67.5,5.5 parent: 2 - - uid: 26433 +- proto: LightBulbBroken + entities: + - uid: 26806 components: - type: Transform - rot: 6.283185307179586 rad - pos: 52.619057,-17.52362 + rot: 1.5707963267948966 rad + pos: -51.410088,-74.550186 parent: 2 - - uid: 26434 +- proto: Lighter + entities: + - uid: 26808 components: - type: Transform - pos: -7.590296,1.7182901 + pos: 8.601826,13.614818 parent: 2 - - uid: 26435 + - uid: 26809 components: - type: Transform - pos: -2.5020196,13.503156 + pos: 57.742687,15.597738 parent: 2 - - uid: 26436 +- proto: LightReplacer + entities: + - uid: 26807 components: - type: Transform - pos: 73.72027,-26.411335 - parent: 2 - - uid: 26437 + parent: 32193 + - type: Physics + canCollide: False + - uid: 26812 components: - type: Transform - pos: -47.30249,-46.404476 + rot: -1.5707963267948966 rad + pos: 67.522446,-29.444263 parent: 2 - - uid: 26439 + - uid: 26813 components: - type: Transform - pos: 42.548824,-11.543914 + rot: -1.5707963267948966 rad + pos: 42.70501,-66.38782 parent: 2 -- proto: HandheldGPSBasic +- proto: LightTubeCrystalGreen entities: - - uid: 1384 - components: - - type: Transform - pos: 56.336117,15.275301 - parent: 2 - - uid: 26441 + - uid: 42937 components: - type: Transform - parent: 26440 + parent: 42936 - type: Physics canCollide: False - - type: InsideEntityStorage - - uid: 26442 - components: - - type: Transform - pos: -2.3341408,17.567802 - parent: 2 - - uid: 43178 +- proto: LightTubeCrystalRed + entities: + - uid: 26815 components: - type: Transform - pos: -7.4132366,-100.477585 - parent: 2 -- proto: HandheldHealthAnalyzer - entities: - - uid: 26444 + parent: 26814 + - type: LightBulb + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26817 components: - type: Transform - pos: 62.341415,-4.6432304 - parent: 2 - - uid: 26445 + parent: 26816 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.3343987,19.591106 - parent: 2 - - uid: 26446 + parent: 26818 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26821 components: - type: Transform - pos: -1.5541707,-35.49254 - parent: 2 -- proto: HandheldHealthAnalyzerUnpowered - entities: - - uid: 26447 + parent: 26820 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26823 components: - type: Transform - pos: -68.47285,-49.354755 - parent: 2 - - uid: 26448 + parent: 26822 + - type: LightBulb + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.32156,-5.4472365 - parent: 2 - - uid: 26449 + parent: 26824 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26827 components: - type: Transform - pos: 83.284225,-9.472714 - parent: 2 -- proto: HandHeldMassScanner - entities: - - uid: 26450 + parent: 26826 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26829 components: - type: Transform - pos: 19.483318,-12.427057 - parent: 2 - - uid: 41322 + parent: 26828 + - type: LightBulb + lightRadius: 2 + - type: Physics + canCollide: False + - uid: 26831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5011597,-6.9646606 - parent: 40828 -- proto: HandheldStationMap - entities: - - uid: 11635 + parent: 26830 + - type: LightBulb + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26833 components: - type: Transform - pos: 52.481827,-76.33526 - parent: 2 - - uid: 26451 + parent: 26832 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.615925,-52.310795 - parent: 2 - - uid: 26452 + parent: 26834 + - type: LightBulb + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.431866,24.706774 - parent: 2 - - uid: 26453 + parent: 26836 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26839 components: - type: Transform - pos: -31.679695,-95.45278 - parent: 2 - - uid: 26454 + parent: 26838 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.534402,-103.27963 - parent: 2 - - uid: 26455 + parent: 26840 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26843 components: - type: Transform - pos: 66.536896,-26.568066 - parent: 2 - - uid: 26456 + parent: 26842 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26845 components: - type: Transform - pos: 16.484941,-27.410738 - parent: 2 - - uid: 32697 + parent: 16438 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26847 components: - type: Transform - pos: 32.5,43.5 - parent: 2 -- proto: HandLabeler - entities: - - uid: 26457 + parent: 26846 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26849 components: - type: Transform - pos: 67.05984,-27.312744 - parent: 2 - - uid: 26458 + parent: 26848 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26851 components: - type: Transform - pos: -27.49639,-77.098885 - parent: 2 - - uid: 26459 + parent: 26850 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26853 components: - type: Transform - pos: 50.990173,-53.741455 - parent: 2 - - uid: 26460 + parent: 26852 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26855 components: - type: Transform - pos: 34.196903,-71.29056 - parent: 2 - - uid: 26461 + parent: 26854 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26857 components: - type: Transform - pos: -35.393368,-27.351479 - parent: 2 - - uid: 26462 + parent: 26856 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26859 components: - type: Transform - pos: -57.473927,-32.84579 - parent: 2 -- proto: HappyHonk - entities: - - uid: 26463 + parent: 26858 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26861 components: - type: Transform - pos: 31.546932,4.9642363 - parent: 2 -- proto: HeadMoth - entities: - - uid: 26470 + parent: 26860 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26863 components: - type: Transform - pos: 65.5,-50.5 - parent: 2 -- proto: HeadReptilian - entities: - - uid: 26471 + parent: 26862 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.8308,-32.5277 - parent: 2 -- proto: HeadSkeleton - entities: - - uid: 26472 + parent: 26864 + - type: LightBulb + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26867 components: - type: Transform - pos: -66.48876,6.5341115 - parent: 2 - - uid: 26474 + parent: 26866 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 26869 components: - type: Transform - parent: 26473 + parent: 26868 + - type: LightBulb + lightRadius: 2 + lightEnergy: 1 - type: Physics canCollide: False - - type: InsideEntityStorage -- proto: HeadVox +- proto: LiquidNitrogenCanister entities: - - uid: 26479 + - uid: 26872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.36527,-109.73952 + pos: 36.5,-46.5 parent: 2 -- proto: HeatExchanger - entities: - - uid: 26480 + - uid: 26873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-92.5 + pos: -74.5,-27.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 26481 + - uid: 26874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-93.5 + pos: 95.5,-82.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: HighSecArmoryLocked +- proto: LiquidOxygenCanister entities: - - uid: 26482 + - uid: 26875 components: - type: Transform - pos: 63.5,-14.5 + pos: 36.5,-47.5 parent: 2 - - uid: 26483 + - uid: 26876 components: - type: Transform - pos: 59.5,-18.5 + pos: -75.5,-27.5 parent: 2 - - uid: 26484 + - uid: 26877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-18.5 + pos: 96.5,-82.5 parent: 2 - - uid: 41323 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 40828 -- proto: HighSecCentralCommandLocked +- proto: LiveLetLiveCircuitBoard entities: - - uid: 26485 + - uid: 26878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-32.5 + pos: 17.471539,18.571913 parent: 2 - - uid: 41838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-9.5 - parent: 41669 -- proto: HighSecCommandLocked +- proto: LockableButtonArmory entities: - - uid: 26486 - components: - - type: Transform - pos: 99.5,-73.5 - parent: 2 - - uid: 26487 - components: - - type: Transform - pos: 97.5,-73.5 - parent: 2 - - uid: 26488 - components: - - type: Transform - pos: 97.5,-77.5 - parent: 2 - - uid: 26489 + - uid: 26879 components: + - type: MetaData + desc: Эта кнопка открывает гермозатвор хранилища снаряжения красного кода. + name: Красный код - type: Transform - pos: 99.5,-77.5 + rot: -1.5707963267948966 rad + pos: 59.5,-15.5 parent: 2 -- proto: HighSecDoor - entities: - - uid: 26490 + - type: DeviceLinkSource + linkedPorts: + 2194: + - Pressed: Toggle + - uid: 26880 components: + - type: MetaData + desc: Эта кнопка открывает гермозатвор хранилища снаряжения синего кода. + name: Синий код - type: Transform - pos: 12.5,20.5 + rot: -1.5707963267948966 rad + pos: 59.5,-14.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - - - ChiefEngineer - - - HeadOfSecurity - - - ResearchDirector - - uid: 26491 + - type: DeviceLinkSource + linkedPorts: + 2184: + - Pressed: Toggle + - uid: 26881 components: + - type: MetaData + name: Снаряжение - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-6.5 + pos: 58.5,-16.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - - - ChiefEngineer - - - HeadOfSecurity - - - ResearchDirector - - uid: 26492 + - type: DeviceLinkSource + linkedPorts: + 2195: + - Pressed: Toggle + - uid: 26882 components: + - type: MetaData + name: блокировка камеры 1 - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-39.5 + rot: 1.5707963267948966 rad + pos: 41.5,3.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - ChiefEngineer - - uid: 26493 + - type: DeviceLinkSource + linkedPorts: + 2241: + - Pressed: Toggle + - uid: 26883 components: + - type: MetaData + name: блокировка камеры 4 - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-47.5 + rot: -1.5707963267948966 rad + pos: 45.5,2.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - - uid: 26494 + - type: DeviceLinkSource + linkedPorts: + 2243: + - Pressed: Toggle + - uid: 26884 components: + - type: MetaData + name: блокировка камеры 2 - type: Transform - pos: 38.5,-40.5 + rot: 1.5707963267948966 rad + pos: 41.5,6.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - ChiefEngineer - - uid: 26495 + - type: DeviceLinkSource + linkedPorts: + 2244: + - Pressed: Toggle + - uid: 26885 components: - type: MetaData - desc: Только для НаучРука, ГСБ и Старшего инженера. - name: ядро ИИ + name: блокировка камеры 5 - type: Transform - pos: 98.5,-85.5 + rot: -1.5707963267948966 rad + pos: 45.5,5.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - - - ChiefEngineer - - - HeadOfSecurity - - - ResearchDirector - - uid: 26496 + - type: DeviceLinkSource + linkedPorts: + 2245: + - Pressed: Toggle + - uid: 26886 components: - type: MetaData - desc: Только для НаучРука, ГСБ и Старшего инженера. - name: ядро ИИ + name: блокировка камеры 3 - type: Transform - pos: 98.5,-81.5 + rot: -1.5707963267948966 rad + pos: 45.5,-0.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - - - ChiefEngineer - - - HeadOfSecurity - - - ResearchDirector - - uid: 26497 + - type: DeviceLinkSource + linkedPorts: + 2242: + - Pressed: Toggle + - uid: 42934 components: + - type: MetaData + desc: Эта кнопка активирует сброс улик. + name: переключение очистки от улик - type: Transform - pos: -1.5,-6.5 + pos: 50.5,-7.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - - - ChiefEngineer - - - HeadOfSecurity - - - ResearchDirector - - uid: 26498 + - type: DeviceLinkSource + linkedPorts: + 42936: + - Pressed: Toggle + 27600: + - Pressed: Toggle +- proto: LockableButtonAtmospherics + entities: + - uid: 40851 components: + - type: MetaData + desc: Эта кнопка переключает ставни. + name: ставни - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-7.5 + rot: -1.5707963267948966 rad + pos: 56.5,-92.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Captain - - - ChiefEngineer - - uid: 26499 + - type: DeviceLinkSource + linkedPorts: + 40617: + - Pressed: Toggle + 40618: + - Pressed: Toggle + 40849: + - Pressed: Toggle + 40850: + - Pressed: Toggle + - uid: 40852 components: - type: MetaData - name: РОБОТОТЕХНИЧЕСКАЯ ЛАБОРАТОРИЯ + desc: Эта кнопка переключает ставни. + name: ставни - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-45.5 + rot: -1.5707963267948966 rad + pos: 56.5,-100.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - - uid: 26500 + - type: DeviceLinkSource + linkedPorts: + 39562: + - Pressed: Toggle + 32250: + - Pressed: Toggle + 32231: + - Pressed: Toggle + 32221: + - Pressed: Toggle + 40616: + - Pressed: Toggle + 39563: + - Pressed: Toggle + - uid: 41399 components: - type: MetaData - name: ГЕНОХРАНИЛИЩЕ + desc: Эта кнопка переключает гермозатворы. + name: гермозатворы - type: Transform - pos: -16.5,-41.5 + pos: 43.5,-84.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - - uid: 26501 + - type: DeviceLinkSource + linkedPorts: + 41327: + - Pressed: Toggle + 41326: + - Pressed: Toggle + - uid: 42065 components: + - type: MetaData + desc: Эта кнопка переключает ставни. + name: ставни - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-33.5 + pos: 42.5,-84.5 parent: 2 - - uid: 26502 + - type: DeviceLinkSource + linkedPorts: + 42068: + - Pressed: Toggle + 42067: + - Pressed: Toggle + 42066: + - Pressed: Toggle +- proto: LockableButtonBrig + entities: + - uid: 26887 components: + - type: MetaData + name: вызов уборщика - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-26.5 + pos: 41.5,-6.5 parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - NuclearOperative -- proto: HolofanProjector + - type: DeviceLinkSource + range: 300 + linkedPorts: + 26713: + - Pressed: Toggle + 26712: + - Pressed: Toggle + 33562: + - Pressed: Toggle +- proto: LockableButtonCaptain entities: - - uid: 26503 + - uid: 26888 components: + - type: MetaData + name: кнопка вызова ОБР - type: Transform - pos: 38.471985,-52.303555 + rot: 1.5707963267948966 rad + pos: 7.2179623,16.508371 parent: 2 - - uid: 26504 + - type: WirelessNetworkConnection + range: 1000 + - type: DeviceLinkSource + range: 1000 + linkedPorts: + 28502: + - Pressed: Toggle + 42070: + - Pressed: Open + - uid: 41325 components: - type: Transform - pos: 41.638515,-94.44738 - parent: 2 -- proto: HolopadAiBackupPower + rot: 1.5707963267948966 rad + pos: 3.517624,-6.217499 + parent: 40828 + - type: DeviceLinkSource + linkedPorts: + 40848: + - Pressed: Toggle +- proto: LockableButtonCargo entities: - - uid: 44292 + - uid: 32635 components: - type: Transform - pos: 98.5,-63.5 + rot: 1.5707963267948966 rad + pos: -1.5,-78.5 parent: 2 -- proto: HolopadAiChute + - type: WirelessNetworkConnection + range: 2000 + - type: DeviceLinkSource + range: 3000 + linkedPorts: + 26710: + - Pressed: Toggle + 42221: + - Pressed: Toggle +- proto: LockableButtonChapel entities: - - uid: 44291 + - uid: 26889 components: + - type: MetaData + desc: Эта кнопка закрывает ставни. + name: кнопка закрытия церкви - type: Transform - pos: 98.5,-69.5 + rot: -1.5707963267948966 rad + pos: 36.5,-64.5 parent: 2 -- proto: HolopadAiCore - entities: - - uid: 29617 + - type: DeviceLinkSource + linkedPorts: + 31087: + - Pressed: Toggle + 31088: + - Pressed: Toggle + 31090: + - Pressed: Toggle + 31089: + - Pressed: Toggle + 31092: + - Pressed: Toggle + 31091: + - Pressed: Toggle + - uid: 26890 components: + - type: MetaData + name: свет - type: Transform - pos: 98.5,-89.5 + rot: 3.141592653589793 rad + pos: 36.5,-66.5 parent: 2 -- proto: HolopadAiEntrance + - type: DeviceLinkSource + linkedPorts: + 28326: + - Pressed: Toggle + 28179: + - Pressed: Toggle + 28180: + - Pressed: Toggle +- proto: LockableButtonChemistry entities: - - uid: 44290 + - uid: 26891 components: + - type: MetaData + desc: Эта кнопка переключает ставни. + name: кнопка ставней - type: Transform - pos: 98.5,-79.5 + rot: 3.141592653589793 rad + pos: -36.28956,-32.024765 parent: 2 -- proto: HolopadAiUpload + - type: DeviceLinkSource + linkedPorts: + 31098: + - Pressed: Toggle + 31094: + - Pressed: Toggle + 31097: + - Pressed: Toggle + 31095: + - Pressed: Toggle + 31096: + - Pressed: Toggle + 31093: + - Pressed: Toggle +- proto: LockableButtonCommand entities: - - uid: 44293 + - uid: 26892 components: - type: Transform - pos: 16.5,20.5 + rot: -1.5707963267948966 rad + pos: 2.5,15.5 parent: 2 -- proto: HolopadCargoBay - entities: - - uid: 44313 + - type: DeviceLinkSource + linkedPorts: + 2143: + - Pressed: Toggle + - uid: 26893 components: - type: Transform - pos: 13.5,-98.5 + rot: 1.5707963267948966 rad + pos: -1.5,15.5 parent: 2 -- proto: HolopadCargoBayLongRange - entities: - - uid: 44371 + - type: DeviceLinkSource + linkedPorts: + 2142: + - Pressed: Toggle + - uid: 41839 components: + - type: MetaData + name: гермозатворы - type: Transform - pos: 14.5,-98.5 - parent: 2 -- proto: HolopadCargoBreakroom + rot: 1.5707963267948966 rad + pos: 2.5362701,2.5786743 + parent: 41669 + - type: DeviceLinkSource + linkedPorts: + 41688: + - Pressed: Toggle + 41687: + - Pressed: Toggle + 41684: + - Pressed: Toggle + 41683: + - Pressed: Toggle + 41686: + - Pressed: Toggle + 41685: + - Pressed: Toggle + 41689: + - Pressed: Toggle +- proto: LockableButtonEngineering entities: - - uid: 44317 + - uid: 32634 components: - type: Transform - pos: -7.5,-87.5 + rot: -1.5707963267948966 rad + pos: 46.5,-45.5 parent: 2 -- proto: HolopadCargoFront + - type: WirelessNetworkConnection + range: 2000 + - type: DeviceLinkSource + range: 3000 + linkedPorts: + 26701: + - Pressed: Toggle + 26711: + - Pressed: Toggle + 42222: + - Pressed: Toggle +- proto: LockableButtonHeadOfSecurity entities: - - uid: 44315 - components: - - type: Transform - pos: 10.5,-82.5 - parent: 2 -- proto: HolopadCargoMailroom - entities: - - uid: 44316 - components: - - type: Transform - pos: -2.5,-80.5 - parent: 2 -- proto: HolopadCargoSalvageBay - entities: - - uid: 44354 - components: - - type: Transform - pos: -7.5,-103.5 - parent: 2 -- proto: HolopadCommandBridge - entities: - - uid: 44305 - components: - - type: Transform - pos: 1.5,24.5 - parent: 2 -- proto: HolopadCommandBridgeLongRange - entities: - - uid: 44306 - components: - - type: Transform - pos: -0.5,24.5 - parent: 2 -- proto: HolopadCommandCaptain - entities: - - uid: 44314 - components: - - type: Transform - pos: 10.5,13.5 - parent: 2 -- proto: HolopadCommandCe - entities: - - uid: 44311 - components: - - type: Transform - pos: 55.5,-72.5 - parent: 2 -- proto: HolopadCommandCmo - entities: - - uid: 44312 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 2 -- proto: HolopadCommandHop - entities: - - uid: 44332 - components: - - type: Transform - pos: -4.5,9.5 - parent: 2 -- proto: HolopadCommandHos - entities: - - uid: 44333 - components: - - type: Transform - pos: 52.5,9.5 - parent: 2 -- proto: HolopadCommandLounge - entities: - - uid: 44307 - components: - - type: Transform - pos: -9.5,17.5 - parent: 2 -- proto: HolopadCommandMeetingRoom - entities: - - uid: 44308 - components: - - type: Transform - pos: 4.5,8.5 - parent: 2 -- proto: HolopadCommandQm - entities: - - uid: 44349 - components: - - type: Transform - pos: -1.5,-96.5 - parent: 2 -- proto: HolopadCommandRd - entities: - - uid: 44353 - components: - - type: Transform - pos: -37.5,-68.5 - parent: 2 -- proto: HolopadCommandVault - entities: - - uid: 44367 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 2 -- proto: HolopadEngineeringAME - entities: - - uid: 44294 - components: - - type: Transform - pos: 38.5,-79.5 - parent: 2 -- proto: HolopadEngineeringAtmosFront - entities: - - uid: 44301 - components: - - type: Transform - pos: 39.5,-48.5 - parent: 2 -- proto: HolopadEngineeringAtmosMain - entities: - - uid: 44300 - components: - - type: Transform - pos: 39.5,-100.5 - parent: 2 -- proto: HolopadEngineeringAtmosTeg - entities: - - uid: 44362 - components: - - type: Transform - pos: 49.5,-87.5 - parent: 2 -- proto: HolopadEngineeringBreakroom - entities: - - uid: 29615 - components: - - type: Transform - pos: 44.5,-73.5 - parent: 2 -- proto: HolopadEngineeringFront - entities: - - uid: 44327 - components: - - type: Transform - pos: 48.5,-48.5 - parent: 2 -- proto: HolopadEngineeringMain - entities: - - uid: 44328 - components: - - type: Transform - pos: 50.5,-56.5 - parent: 2 -- proto: HolopadEngineeringPower - entities: - - uid: 44348 - components: - - type: Transform - pos: 58.5,-55.5 - parent: 2 -- proto: HolopadEngineeringStorage - entities: - - uid: 44329 - components: - - type: Transform - pos: 45.5,-64.5 - parent: 2 -- proto: HolopadEngineeringTechVault - entities: - - uid: 44363 - components: - - type: Transform - pos: 38.5,-39.5 - parent: 2 -- proto: HolopadEngineeringTelecoms - entities: - - uid: 44364 - components: - - type: Transform - pos: 93.5,-68.5 - parent: 2 -- proto: HolopadGeneralArrivals - entities: - - uid: 44297 - components: - - type: Transform - pos: 82.5,-32.5 - parent: 2 -- proto: HolopadGeneralCryosleep - entities: - - uid: 44321 - components: - - type: Transform - pos: -35.5,-78.5 - parent: 2 -- proto: HolopadGeneralDisposals - entities: - - uid: 44325 - components: - - type: Transform - pos: 18.5,-77.5 - parent: 2 -- proto: HolopadGeneralEvac - entities: - - uid: 44330 - components: - - type: Transform - pos: -73.5,-43.5 - parent: 2 -- proto: HolopadGeneralEVAStorage - entities: - - uid: 44326 - components: - - type: Transform - pos: 0.5,16.5 - parent: 2 -- proto: HolopadGeneralLounge - entities: - - uid: 44339 - components: - - type: Transform - pos: 35.5,-1.5 - parent: 2 -- proto: HolopadGeneralTheater - entities: - - uid: 44365 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 2 -- proto: HolopadGeneralTools - entities: - - uid: 44366 - components: - - type: Transform - pos: 68.5,-26.5 - parent: 2 -- proto: HolopadMedicalBreakroom - entities: - - uid: 44340 - components: - - type: Transform - pos: -39.5,-3.5 - parent: 2 -- proto: HolopadMedicalChemistry - entities: - - uid: 44319 - components: - - type: Transform - pos: -35.5,-32.5 - parent: 2 -- proto: HolopadMedicalCryopods - entities: - - uid: 44323 - components: - - type: Transform - pos: -35.5,-21.5 - parent: 2 -- proto: HolopadMedicalFront - entities: - - uid: 44341 - components: - - type: Transform - pos: -39.5,-38.5 - parent: 2 -- proto: HolopadMedicalMedbay - entities: - - uid: 44342 - components: - - type: Transform - pos: -47.5,-22.5 - parent: 2 -- proto: HolopadMedicalMorgue - entities: - - uid: 44344 - components: - - type: Transform - pos: -55.5,-38.5 - parent: 2 -- proto: HolopadMedicalParamed - entities: - - uid: 44346 - components: - - type: Transform - pos: -54.5,-13.5 - parent: 2 -- proto: HolopadMedicalSurgery - entities: - - uid: 44361 - components: - - type: Transform - pos: -54.5,-20.5 - parent: 2 -- proto: HolopadMedicalVirology - entities: - - uid: 44368 - components: - - type: Transform - pos: -48.5,3.5 - parent: 2 -- proto: HolopadScienceAnomaly - entities: - - uid: 44295 - components: - - type: Transform - pos: -47.5,-85.5 - parent: 2 -- proto: HolopadScienceArtifactNorth - entities: - - uid: 44299 - components: - - type: Transform - pos: -61.5,-72.5 - parent: 2 -- proto: HolopadScienceArtifactSouth - entities: - - uid: 44298 - components: - - type: Transform - pos: -66.5,-77.5 - parent: 2 -- proto: HolopadScienceBreakroom - entities: - - uid: 44352 - components: - - type: Transform - pos: -43.5,-85.5 - parent: 2 -- proto: HolopadScienceFront - entities: - - uid: 44350 - components: - - type: Transform - pos: -37.5,-48.5 - parent: 2 -- proto: HolopadScienceRnd - entities: - - uid: 44355 - components: - - type: Transform - pos: -35.5,-63.5 - parent: 2 -- proto: HolopadScienceRobotics - entities: - - uid: 44351 - components: - - type: Transform - pos: -38.5,-53.5 - parent: 2 -- proto: HolopadSecurityArmory - entities: - - uid: 44370 - components: - - type: Transform - pos: 56.5,-18.5 - parent: 2 -- proto: HolopadSecurityArrivalsCheckpoint - entities: - - uid: 44356 - components: - - type: Transform - pos: 76.5,-28.5 - parent: 2 -- proto: HolopadSecurityBreakroom - entities: - - uid: 44357 - components: - - type: Transform - pos: 52.5,4.5 - parent: 2 -- proto: HolopadSecurityBrig - entities: - - uid: 44309 - components: - - type: Transform - pos: 44.5,-14.5 - parent: 2 -- proto: HolopadSecurityBrigMed - entities: - - uid: 44310 - components: - - type: Transform - pos: 63.5,-2.5 - parent: 2 -- proto: HolopadSecurityCourtroom - entities: - - uid: 44322 - components: - - type: Transform - pos: 67.5,-39.5 - parent: 2 -- proto: HolopadSecurityDetective - entities: - - uid: 44324 - components: - - type: Transform - pos: 39.5,-25.5 - parent: 2 -- proto: HolopadSecurityEvacCheckpoint - entities: - - uid: 44359 - components: - - type: Transform - pos: -66.5,-38.5 - parent: 2 -- proto: HolopadSecurityFront - entities: - - uid: 44358 - components: - - type: Transform - pos: 48.5,-24.5 - parent: 2 -- proto: HolopadSecurityInterrogation - entities: - - uid: 44334 - components: - - type: Transform - pos: 54.5,-9.5 - parent: 2 -- proto: HolopadSecurityLawyer - entities: - - uid: 44337 - components: - - type: Transform - pos: -21.5,6.5 - parent: 2 -- proto: HolopadSecurityLockerRoom - entities: - - uid: 44360 - components: - - type: Transform - pos: 56.5,-3.5 - parent: 2 -- proto: HolopadSecurityPerma - entities: - - uid: 44347 - components: - - type: Transform - pos: 77.5,-7.5 - parent: 2 -- proto: HolopadSecurityWarden - entities: - - uid: 44296 - components: - - type: Transform - pos: 49.5,-18.5 - parent: 2 -- proto: HolopadServiceBar - entities: - - uid: 44302 - components: - - type: Transform - pos: 30.5,3.5 - parent: 2 -- proto: HolopadServiceBotany - entities: - - uid: 44303 - components: - - type: Transform - pos: 38.5,12.5 - parent: 2 -- proto: HolopadServiceBoxer - entities: - - uid: 44304 - components: - - type: Transform - pos: -22.5,-82.5 - parent: 2 -- proto: HolopadServiceChapel - entities: - - uid: 44318 - components: - - type: Transform - pos: 34.5,-64.5 - parent: 2 -- proto: HolopadServiceClown - entities: - - uid: 44320 - components: - - type: Transform - pos: 37.5,-15.5 - parent: 2 -- proto: HolopadServiceGameRoom - entities: - - uid: 44331 - components: - - type: Transform - pos: -31.5,12.5 - parent: 2 -- proto: HolopadServiceJanitor - entities: - - uid: 44335 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 2 -- proto: HolopadServiceKitchen - entities: - - uid: 44336 - components: - - type: Transform - pos: 28.5,9.5 - parent: 2 -- proto: HolopadServiceLibrary - entities: - - uid: 44338 - components: - - type: Transform - pos: -30.5,5.5 - parent: 2 -- proto: HolopadServiceMime - entities: - - uid: 44343 - components: - - type: Transform - pos: 33.5,-15.5 - parent: 2 -- proto: HolopadServiceMusician - entities: - - uid: 24309 - components: - - type: Transform - pos: 29.5,-20.5 - parent: 2 -- proto: HolopadServiceNewsroom - entities: - - uid: 29599 - components: - - type: Transform - pos: 27.5,-75.5 - parent: 2 -- proto: HolopadServiceZookeeper - entities: - - uid: 44369 - components: - - type: Transform - pos: -65.5,-49.5 - parent: 2 -- proto: HolyHandGrenade - entities: - - uid: 12 - components: - - type: MetaData - desc: 'Не содержит взрывчатых веществ. «Благослови, Господи, сию ручную державу, да помоги мне исполнить мечты мои!». ' - name: церковная держава - - type: Transform - parent: 5 - - type: Physics - canCollide: False - missingComponents: - - ExplodeOnTrigger - - Explosive - - OnUseTimerTrigger - - PointLight - - HiddenDescription - - Contraband -- proto: HospitalCurtains - entities: - - uid: 26505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-8.5 - parent: 2 - - uid: 26506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-8.5 - parent: 2 - - uid: 26507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-8.5 - parent: 2 - - uid: 26508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-22.5 - parent: 2 - - uid: 26509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-25.5 - parent: 2 - - uid: 26512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-21.5 - parent: 2 - - uid: 26513 - components: - - type: Transform - pos: -53.5,-13.5 - parent: 2 - - uid: 26514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-1.5 - parent: 2 - - uid: 26515 - components: - - type: Transform - pos: -83.5,-11.5 - parent: 2 - - uid: 26516 - components: - - type: Transform - pos: -83.5,-10.5 - parent: 2 - - uid: 26517 - components: - - type: Transform - pos: -83.5,-9.5 - parent: 2 - - uid: 26518 - components: - - type: Transform - pos: -83.5,-7.5 - parent: 2 - - uid: 26519 - components: - - type: Transform - pos: -76.5,-10.5 - parent: 2 - - uid: 26520 - components: - - type: Transform - pos: -73.5,-8.5 - parent: 2 - - uid: 27676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,14.5 - parent: 2 -- proto: HospitalCurtainsOpen - entities: - - uid: 26521 - components: - - type: Transform - pos: 78.5,-12.5 - parent: 2 - - uid: 26522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-8.5 - parent: 2 - - uid: 26523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-8.5 - parent: 2 - - uid: 26524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-8.5 - parent: 2 - - uid: 26526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-20.5 - parent: 2 - - uid: 26527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-23.5 - parent: 2 - - uid: 26528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-24.5 - parent: 2 - - uid: 26529 - components: - - type: Transform - pos: -53.5,-12.5 - parent: 2 - - uid: 26530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-75.5 - parent: 2 - - uid: 26531 - components: - - type: Transform - pos: -83.5,-8.5 - parent: 2 - - uid: 26532 - components: - - type: Transform - pos: -73.5,-9.5 - parent: 2 - - uid: 26533 - components: - - type: Transform - pos: -73.5,-7.5 - parent: 2 - - uid: 26534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-25.5 - parent: 2 - - uid: 26535 - components: - - type: Transform - pos: 76.5,-12.5 - parent: 2 - - uid: 26536 - components: - - type: Transform - pos: 74.5,-12.5 - parent: 2 - - uid: 43208 - components: - - type: Transform - pos: -3.5,-100.5 - parent: 2 -- proto: HydrogenChemistryBottle - entities: - - uid: 1989 - components: - - type: Transform - parent: 1980 - - type: Physics - canCollide: False -- proto: hydroponicsSoil - entities: - - uid: 666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,20.5 - parent: 2 - - uid: 11738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,19.5 - parent: 2 - - uid: 13711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,21.5 - parent: 2 - - uid: 15101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,21.5 - parent: 2 - - uid: 19068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,20.5 - parent: 2 - - uid: 26542 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-7.5 - parent: 2 - - uid: 26543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-8.5 - parent: 2 - - uid: 26544 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-9.5 - parent: 2 - - uid: 26545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-12.5 - parent: 2 - - uid: 26546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-12.5 - parent: 2 - - uid: 35792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,19.5 - parent: 2 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 371 - components: - - type: Transform - pos: 29.106945,19.563984 - parent: 2 - - uid: 2568 - components: - - type: Transform - parent: 2559 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -75.44913,-12.35248 - parent: 2 -- proto: HydroponicsToolScythe - entities: - - uid: 26549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.551037,16.645557 - parent: 2 -- proto: HydroponicsToolSpade - entities: - - uid: 2569 - components: - - type: Transform - parent: 2559 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26551 - components: - - type: Transform - pos: -73.35629,-9.494815 - parent: 2 - - uid: 30820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.68507,20.532734 - parent: 2 -- proto: hydroponicsTray - entities: - - uid: 1874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,12.5 - parent: 2 - - uid: 2327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,14.5 - parent: 2 - - uid: 19655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,12.5 - parent: 2 - - uid: 26556 - components: - - type: Transform - pos: 39.5,23.5 - parent: 2 - - uid: 26558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,12.5 - parent: 2 - - uid: 26559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,11.5 - parent: 2 - - uid: 26560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,11.5 - parent: 2 - - uid: 26561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,12.5 - parent: 2 - - uid: 26564 - components: - - type: Transform - pos: 37.5,23.5 - parent: 2 - - uid: 26566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,21.5 - parent: 2 - - uid: 26567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,21.5 - parent: 2 - - uid: 26568 - components: - - type: Transform - pos: 88.5,-7.5 - parent: 2 - - uid: 26569 - components: - - type: Transform - pos: 88.5,-6.5 - parent: 2 - - uid: 26570 - components: - - type: Transform - pos: 88.5,-5.5 - parent: 2 - - uid: 26572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,22.5 - parent: 2 - - uid: 26573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,22.5 - parent: 2 - - uid: 28686 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,11.5 - parent: 2 - - uid: 28983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,13.5 - parent: 2 - - uid: 29114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,14.5 - parent: 2 - - uid: 29719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,13.5 - parent: 2 - - uid: 31337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,14.5 - parent: 2 - - uid: 31764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,14.5 - parent: 2 - - uid: 31777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,13.5 - parent: 2 - - uid: 33135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,13.5 - parent: 2 - - uid: 33268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,11.5 - parent: 2 - - uid: 42388 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,10.5 - parent: 2 - - uid: 42389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,10.5 - parent: 2 -- proto: HydroponicsTrayEmpty - entities: - - uid: 26574 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 2 - - uid: 26575 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 2 - - uid: 26576 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 2 - - uid: 26577 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 2 - - uid: 26578 - components: - - type: Transform - pos: -4.5,-16.5 - parent: 2 - - uid: 26579 - components: - - type: Transform - pos: -12.5,-15.5 - parent: 2 - - uid: 26580 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 2 - - uid: 26581 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 2 - - uid: 26582 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 2 - - uid: 26583 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 2 - - uid: 26584 - components: - - type: Transform - pos: -16.5,-15.5 - parent: 2 - - uid: 26585 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 2 - - uid: 26586 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 2 - - uid: 26587 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 2 - - uid: 26588 - components: - - type: Transform - pos: -0.5,-18.5 - parent: 2 - - uid: 26589 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 2 - - uid: 26590 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 2 - - uid: 26591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-16.5 - parent: 2 - - uid: 26592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-16.5 - parent: 2 - - uid: 26593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-16.5 - parent: 2 - - uid: 26594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-16.5 - parent: 2 - - uid: 26595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-14.5 - parent: 2 - - uid: 26596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-14.5 - parent: 2 - - uid: 26597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-14.5 - parent: 2 - - uid: 26598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-14.5 - parent: 2 -- proto: IceCrust - entities: - - uid: 26599 - components: - - type: Transform - pos: -18.5,-37.5 - parent: 2 - - uid: 26600 - components: - - type: Transform - pos: -18.5,-38.5 - parent: 2 - - uid: 26601 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 2 - - uid: 26602 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 2 - - uid: 26603 - components: - - type: Transform - pos: -14.5,-39.5 - parent: 2 - - uid: 26604 - components: - - type: Transform - pos: -14.5,-38.5 - parent: 2 - - uid: 26605 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 2 - - uid: 26606 - components: - - type: Transform - pos: -14.5,-35.5 - parent: 2 - - uid: 26607 - components: - - type: Transform - pos: -14.5,-36.5 - parent: 2 -- proto: IDComputerCircuitboard - entities: - - uid: 26608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.53801,-41.496193 - parent: 2 -- proto: InflatableDoor - entities: - - uid: 26610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-68.5 - parent: 2 - - uid: 26611 - components: - - type: Transform - pos: 22.5,-33.5 - parent: 2 - - uid: 26612 - components: - - type: Transform - pos: 22.5,-32.5 - parent: 2 - - uid: 26613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-20.5 - parent: 2 - - uid: 26614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-14.5 - parent: 2 - - uid: 26615 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 2 -- proto: InflatableWall - entities: - - uid: 26616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-68.5 - parent: 2 - - uid: 26617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-44.5 - parent: 2 - - uid: 26618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-43.5 - parent: 2 - - uid: 26619 - components: - - type: Transform - pos: 22.5,-31.5 - parent: 2 - - uid: 26620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-19.5 - parent: 2 - - uid: 26621 - components: - - type: Transform - pos: -43.5,2.5 - parent: 2 - - uid: 26622 - components: - - type: Transform - pos: -50.5,2.5 - parent: 2 - - uid: 26623 - components: - - type: Transform - pos: -53.5,-7.5 - parent: 2 - - uid: 26626 - components: - - type: Transform - pos: -49.5,4.5 - parent: 2 - - uid: 26627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-5.5 - parent: 2 - - uid: 26628 - components: - - type: Transform - pos: -83.5,-15.5 - parent: 2 - - uid: 26629 - components: - - type: Transform - pos: -75.5,7.5 - parent: 2 - - uid: 26630 - components: - - type: Transform - pos: -72.5,-21.5 - parent: 2 - - uid: 26631 - components: - - type: Transform - pos: -70.5,-10.5 - parent: 2 - - uid: 26632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,1.5 - parent: 2 - - uid: 26633 - components: - - type: Transform - pos: -36.5,20.5 - parent: 2 - - uid: 26634 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 2 - - uid: 26635 - components: - - type: Transform - pos: 5.5,-31.5 - parent: 2 - - uid: 26636 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 2 - - uid: 26637 - components: - - type: Transform - pos: 6.5,-32.5 - parent: 2 - - uid: 26638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-68.5 - parent: 2 - - uid: 26639 - components: - - type: Transform - pos: 4.5,-39.5 - parent: 2 - - uid: 26640 - components: - - type: Transform - pos: 5.5,-39.5 - parent: 2 - - uid: 26641 - components: - - type: Transform - pos: -23.5,-42.5 - parent: 2 - - uid: 26642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-31.5 - parent: 2 - - uid: 26643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-40.5 - parent: 2 - - uid: 26644 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 2 - - uid: 26645 - components: - - type: Transform - pos: 10.5,-36.5 - parent: 2 - - uid: 26646 - components: - - type: Transform - pos: 9.5,-43.5 - parent: 2 - - uid: 26647 - components: - - type: Transform - pos: 9.5,-41.5 - parent: 2 - - uid: 26648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-37.5 - parent: 2 - - uid: 26649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-37.5 - parent: 2 - - uid: 26650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-38.5 - parent: 2 - - uid: 26651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-40.5 - parent: 2 - - uid: 26652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-43.5 - parent: 2 - - uid: 26653 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-41.5 - parent: 2 - - uid: 26654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-40.5 - parent: 2 - - uid: 26655 - components: - - type: Transform - pos: 18.5,-42.5 - parent: 2 -- proto: InflatableWallStack1 - entities: - - uid: 26656 - components: - - type: Transform - pos: 0.03817773,-10.484029 - parent: 2 -- proto: IngotGold - entities: - - uid: 16249 - components: - - type: Transform - parent: 16248 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16252 - components: - - type: Transform - parent: 16251 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16255 - components: - - type: Transform - parent: 16254 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16258 - components: - - type: Transform - parent: 16257 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: IngotGold1 - entities: - - uid: 26660 - components: - - type: Transform - pos: -6.8590045,-8.252594 - parent: 2 - - uid: 26661 - components: - - type: Transform - pos: -6.8902545,-8.502594 - parent: 2 -- proto: IngotSilver - entities: - - uid: 26662 - components: - - type: Transform - pos: -7.4725513,-8.326113 - parent: 2 -- proto: IngotSilver1 - entities: - - uid: 15668 - components: - - type: Transform - parent: 15665 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15669 - components: - - type: Transform - parent: 15665 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15670 - components: - - type: Transform - parent: 15665 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Intellicard - entities: - - uid: 26663 - components: - - type: Transform - pos: 19.502789,21.587538 - parent: 2 - - type: WarpPoint - location: интелкарта -- proto: IntercomAll - entities: - - uid: 26664 - components: - - type: Transform - pos: 0.5,23.5 - parent: 2 -- proto: IntercomCommand - entities: - - uid: 26665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,13.5 - parent: 2 - - uid: 26666 - components: - - type: Transform - pos: 3.5,27.5 - parent: 2 - - uid: 26667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,5.5 - parent: 2 - - uid: 26668 - components: - - type: Transform - pos: -20.5,9.5 - parent: 2 -- proto: IntercomCommon - entities: - - uid: 26669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-39.5 - parent: 2 - - uid: 26670 - components: - - type: Transform - pos: -72.5,-34.5 - parent: 2 - - uid: 26671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-38.5 - parent: 2 - - uid: 26672 - components: - - type: Transform - pos: 6.5,-73.5 - parent: 2 - - uid: 26673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-47.5 - parent: 2 - - uid: 26674 - components: - - type: Transform - pos: -8.5,5.5 - parent: 2 -- proto: IntercomElectronics - entities: - - uid: 26676 - components: - - type: Transform - pos: 36.535313,-38.33921 - parent: 2 -- proto: IntercomEngineering - entities: - - uid: 26677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-56.5 - parent: 2 - - uid: 26678 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-91.5 - parent: 2 - - uid: 26679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-72.5 - parent: 2 - - uid: 26680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-100.5 - parent: 2 - - uid: 26681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-63.5 - parent: 2 -- proto: IntercomMedical - entities: - - uid: 26682 - components: - - type: Transform - pos: -38.5,-35.5 - parent: 2 - - uid: 26683 - components: - - type: Transform - pos: -45.5,-26.5 - parent: 2 - - uid: 26684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-4.5 - parent: 2 - - uid: 26685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-34.5 - parent: 2 -- proto: IntercomScience - entities: - - uid: 26686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-60.5 - parent: 2 - - uid: 26687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-46.5 - parent: 2 - - uid: 26688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-70.5 - parent: 2 - - uid: 26689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-64.5 - parent: 2 -- proto: IntercomSecurity - entities: - - uid: 26675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,21.5 - parent: 2 - - uid: 26690 - components: - - type: Transform - pos: 44.5,-21.5 - parent: 2 -- proto: IntercomService - entities: - - uid: 26691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-1.5 - parent: 2 - - uid: 26692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-0.5 - parent: 2 - - uid: 26693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,12.5 - parent: 2 - - uid: 26694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,14.5 - parent: 2 -- proto: IntercomSupply - entities: - - uid: 26695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-101.5 - parent: 2 - - uid: 26696 - components: - - type: Transform - pos: 2.5,-85.5 - parent: 2 - - uid: 26697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-81.5 - parent: 2 - - uid: 43190 - components: - - type: Transform - pos: -8.5,-107.5 - parent: 2 -- proto: JanitorialTrolley - entities: - - uid: 26700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-71.5 - parent: 2 - - uid: 32193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 2 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - mop_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 26657 - trashbag_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 26870 - bucket_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42036 - plunger_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 26571 - wetfloorsign_slot4: !type:ContainerSlot - showEnts: False - occludes: True - ent: 26659 - wetfloorsign_slot3: !type:ContainerSlot - showEnts: False - occludes: True - ent: 26734 - wetfloorsign_slot2: !type:ContainerSlot - showEnts: False - occludes: True - ent: 26743 - wetfloorsign_slot1: !type:ContainerSlot - showEnts: False - occludes: True - ent: 26762 - lightreplacer_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 26807 - spraybottle_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 26658 - - uid: 42050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 2 -- proto: JanitorServiceLight - entities: - - uid: 2545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-49.5 - parent: 2 - - uid: 18648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,11.5 - parent: 2 - - uid: 20150 - components: - - type: Transform - pos: -44.5,-42.5 - parent: 2 - - uid: 26701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-45.5 - parent: 2 - - uid: 26702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-6.5 - parent: 2 - - uid: 26704 - components: - - type: Transform - pos: -24.5,1.5 - parent: 2 - - uid: 26705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-35.5 - parent: 2 - - uid: 26708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-45.5 - parent: 2 - - uid: 26709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-44.5 - parent: 2 - - uid: 26710 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-78.5 - parent: 2 - - uid: 26711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-34.5 - parent: 2 - - uid: 26712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-29.5 - parent: 2 - - uid: 26713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-3.5 - parent: 2 - - uid: 31194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-34.5 - parent: 2 - - uid: 32241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-3.5 - parent: 2 - - uid: 33562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-3.5 - parent: 2 - - uid: 34156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-3.5 - parent: 2 - - uid: 34157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 2 - - uid: 42062 - components: - - type: Transform - pos: 0.5,22.5 - parent: 2 - - uid: 42221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 2 - - uid: 42222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 2 -- proto: JetpackBlue - entities: - - uid: 26714 - components: - - type: Transform - pos: 46.5,-62.5 - parent: 2 -- proto: JetpackBlueFilled - entities: - - uid: 26715 - components: - - type: Transform - pos: 57.494186,-82.422646 - parent: 2 -- proto: JetpackMini - entities: - - uid: 26716 - components: - - type: Transform - pos: 54.5232,-96.30902 - parent: 2 - - uid: 26717 - components: - - type: Transform - pos: 111.52574,-46.458534 - parent: 2 - - uid: 43184 - components: - - type: Transform - pos: -10.5,-106.5 - parent: 2 -- proto: JetpackSecurity - entities: - - uid: 62 - components: - - type: Transform - pos: 66.48599,13.616083 - parent: 2 - - type: GasTank - toggleActionEntity: 63 - - type: Jetpack - toggleActionEntity: 64 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 64 - - 63 -- proto: JetpackSecurityFilled - entities: - - uid: 65 - components: - - type: Transform - rot: 6.283185307179586 rad - pos: 57.357067,-22.587494 - parent: 2 - - type: GasTank - toggleActionEntity: 66 - - type: Jetpack - toggleActionEntity: 67 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 67 - - 66 - - uid: 26718 - components: - - type: Transform - pos: 57.741734,-22.50916 - parent: 2 - - uid: 26719 - components: - - type: Transform - pos: 57.53861,-22.44666 - parent: 2 -- proto: JetpackVoid - entities: - - uid: 15804 - components: - - type: Transform - parent: 15802 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: JetpackVoidFilled - entities: - - uid: 41107 - components: - - type: Transform - parent: 41103 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41114 - components: - - type: Transform - parent: 41110 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41121 - components: - - type: Transform - parent: 41117 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41128 - components: - - type: Transform - parent: 41124 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41135 - components: - - type: Transform - parent: 41131 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Jug - entities: - - uid: 1990 - components: - - type: Transform - parent: 1980 - - type: Physics - canCollide: False - - uid: 1991 - components: - - type: Transform - parent: 1980 - - type: Physics - canCollide: False -- proto: Jukebox - entities: - - uid: 26720 - components: - - type: Transform - pos: 34.5,7.5 - parent: 2 -- proto: KitchenElectricGrill - entities: - - uid: 26721 - components: - - type: Transform - pos: 28.5,14.5 - parent: 2 -- proto: KitchenKnife - entities: - - uid: 26722 - components: - - type: Transform - pos: 29.761024,11.77055 - parent: 2 - - uid: 26724 - components: - - type: Transform - parent: 26723 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26725 - components: - - type: Transform - pos: 35.37294,-71.35835 - parent: 2 -- proto: KitchenMicrowave - entities: - - uid: 5077 - components: - - type: Transform - pos: 26.5,8.5 - parent: 2 - - uid: 14861 - components: - - type: Transform - pos: -76.5,-7.5 - parent: 2 - - uid: 26726 - components: - - type: Transform - pos: -43.5,-86.5 - parent: 2 - - uid: 26728 - components: - - type: Transform - pos: 46.5,-73.5 - parent: 2 - - uid: 26729 - components: - - type: Transform - pos: 61.5,-37.5 - parent: 2 - - uid: 26730 - components: - - type: Transform - pos: -9.5,-88.5 - parent: 2 - - uid: 26731 - components: - - type: Transform - pos: 53.5,-51.5 - parent: 2 - - uid: 26732 - components: - - type: Transform - pos: -55.5,12.5 - parent: 2 - - uid: 26733 - components: - - type: Transform - pos: -37.5,-3.5 - parent: 2 - - uid: 26735 - components: - - type: Transform - pos: 50.5,3.5 - parent: 2 - - uid: 26736 - components: - - type: Transform - pos: 89.5,-10.5 - parent: 2 - - uid: 26737 - components: - - type: Transform - pos: -9.5,13.5 - parent: 2 - - uid: 42380 - components: - - type: Transform - pos: 29.5,14.5 - parent: 2 -- proto: KitchenReagentGrinder - entities: - - uid: 26738 - components: - - type: Transform - pos: -37.5,-34.5 - parent: 2 - - uid: 26739 - components: - - type: Transform - pos: -76.5,-9.5 - parent: 2 - - uid: 26740 - components: - - type: Transform - pos: -55.5,-0.5 - parent: 2 - - uid: 26741 - components: - - type: Transform - pos: -3.5,-71.5 - parent: 2 - - uid: 26742 - components: - - type: Transform - pos: 29.5,12.5 - parent: 2 - - uid: 26744 - components: - - type: Transform - pos: 22.5,1.5 - parent: 2 - - uid: 26745 - components: - - type: Transform - pos: -53.5,-75.5 - parent: 2 - - uid: 26746 - components: - - type: Transform - pos: 33.5,23.5 - parent: 2 - - uid: 41324 - components: - - type: Transform - pos: -2.5,-12.5 - parent: 40828 -- proto: KitchenSpike - entities: - - uid: 26747 - components: - - type: Transform - pos: 23.5,14.5 - parent: 2 -- proto: Lamp - entities: - - uid: 54 - components: - - type: MetaData - name: волшебная лампа - - type: Transform - pos: -41.37098,-99.313675 - parent: 2 - - type: HandheldLight - selfToggleActionEntity: 58 - toggleActionEntity: 57 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 55 - actions: !type:Container - showEnts: False - occludes: True - ents: - - 57 - - 58 - - type: Physics - canCollide: True - - type: ActionsContainer - - type: Actions - actions: - - 58 - - uid: 105 - components: - - type: Transform - pos: -31.577393,8.612033 - parent: 2 - - type: HandheldLight - toggleActionEntity: 106 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 106 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 109 - components: - - type: Transform - pos: 39.553074,-26.375849 - parent: 2 - - type: HandheldLight - toggleActionEntity: 110 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 110 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 20013 - components: - - type: Transform - pos: 78.450455,4.63519 - parent: 2 - - uid: 26748 - components: - - type: Transform - pos: 56.785122,15.621483 - parent: 2 - - uid: 26749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.49618,9.6562805 - parent: 2 - - uid: 26750 - components: - - type: Transform - pos: 56.489525,-0.4086697 - parent: 2 - - type: HandheldLight - toggleActionEntity: 27240 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 27240 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 26751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-4.5 - parent: 2 - - uid: 26753 - components: - - type: Transform - pos: -62.609993,-71.49693 - parent: 2 - - uid: 26754 - components: - - type: Transform - pos: -37.520256,3.586957 - parent: 2 - - uid: 26755 - components: - - type: Transform - pos: -55.444374,-7.3688416 - parent: 2 - - uid: 26756 - components: - - type: Transform - pos: 24.58624,-76.29226 - parent: 2 - - uid: 26757 - components: - - type: Transform - pos: -53.518684,-48.100246 - parent: 2 - - type: HandheldLight - toggleActionEntity: 28116 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 28116 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 26758 - components: - - type: Transform - pos: -67.78054,-47.23861 - parent: 2 - - type: HandheldLight - toggleActionEntity: 27400 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 27400 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 26759 - components: - - type: Transform - pos: -57.563206,-38.405563 - parent: 2 - - uid: 26760 - components: - - type: Transform - pos: 46.49248,16.632973 - parent: 2 -- proto: LampGold - entities: - - uid: 95 - components: - - type: Transform - pos: 36.678036,-67.21557 - parent: 2 - - type: HandheldLight - toggleActionEntity: 96 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 96 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 107 - components: - - type: Transform - pos: 13.513687,16.437595 - parent: 2 - - type: HandheldLight - toggleActionEntity: 108 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 108 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 113 - components: - - type: Transform - pos: -34.553288,-7.330698 - parent: 2 - - type: HandheldLight - toggleActionEntity: 114 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 114 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 120 - components: - - type: Transform - pos: -11.525497,11.50857 - parent: 2 - - type: HandheldLight - toggleActionEntity: 121 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 121 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 26761 - components: - - type: Transform - pos: -16.5,5.5 - parent: 2 -- proto: LampInterrogator - entities: - - uid: 103 - components: - - type: Transform - pos: 51.51914,-9.259501 - parent: 2 - - type: HandheldLight - toggleActionEntity: 104 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 104 - - type: Physics - canCollide: True - - type: ActionsContainer -- proto: LandMineExplosive - entities: - - uid: 26763 - components: - - type: Transform - pos: -89.68935,-1.4331177 - parent: 2 - - uid: 26764 - components: - - type: Transform - pos: -74.88008,-65.27804 - parent: 2 -- proto: LandMineModular - entities: - - uid: 26765 - components: - - type: Transform - pos: -72.25352,-66.75768 - parent: 2 - - uid: 26766 - components: - - type: Transform - pos: -70.84727,-64.67956 - parent: 2 - - uid: 26767 - components: - - type: Transform - pos: -73.92539,-63.101433 - parent: 2 -- proto: Lantern - entities: - - uid: 97 - components: - - type: Transform - pos: 36.61548,-64.2816 - parent: 2 - - type: HandheldLight - toggleActionEntity: 98 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 98 - - type: ActionsContainer - - uid: 111 - components: - - type: Transform - pos: 33.484238,-63.94874 - parent: 2 - - type: HandheldLight - toggleActionEntity: 112 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 112 - - type: ActionsContainer -- proto: LanternFlash - entities: - - uid: 101 - components: - - type: Transform - pos: 34.74378,-71.32181 - parent: 2 - - type: HandheldLight - toggleActionEntity: 102 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 102 - - type: ActionsContainer - - uid: 26768 - components: - - type: Transform - pos: -82.55063,-24.325563 - parent: 2 -- proto: LargeBeaker - entities: - - uid: 1992 - components: - - type: Transform - parent: 1980 - - type: Physics - canCollide: False - - uid: 26769 - components: - - type: Transform - pos: -19.574066,-25.433702 - parent: 2 - - uid: 26770 - components: - - type: Transform - pos: -19.363129,-25.199327 - parent: 2 - - uid: 26771 - components: - - type: Transform - pos: -55.46563,-13.170682 - parent: 2 - - uid: 26772 - components: - - type: Transform - pos: -34.649292,-21.959995 - parent: 2 - - uid: 26773 - components: - - type: Transform - pos: -45.360683,-10.721433 - parent: 2 - - uid: 26774 - components: - - type: Transform - pos: 29.956684,12.437808 - parent: 2 - - uid: 26775 - components: - - type: Transform - pos: 33.612232,23.321634 - parent: 2 - - uid: 26776 - components: - - type: Transform - pos: -6.8147693,-34.35171 - parent: 2 - - uid: 26777 - components: - - type: Transform - pos: -6.9866443,-34.242336 - parent: 2 - - uid: 26778 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.7007656,-35.606224 - parent: 2 - - uid: 26779 - components: - - type: Transform - pos: -11.488715,-39.018528 - parent: 2 -- proto: LauncherCreamPie - entities: - - uid: 19919 - components: - - type: Transform - parent: 19910 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26780 - components: - - type: Transform - parent: 1311 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: LauncherSyringe - entities: - - uid: 26781 - components: - - type: Transform - pos: -45.56118,-6.307379 - parent: 2 -- proto: LawyerPDA - entities: - - uid: 1376 - components: - - type: Transform - parent: 1372 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: LeadChemistryBottle - entities: - - uid: 26782 - components: - - type: MetaData - desc: Что дед мороз мне подарит? - name: свинец - - type: Transform - pos: -57.70397,-89.29614 - parent: 2 -- proto: LeavesCannabisDried - entities: - - uid: 43 - components: - - type: Transform - parent: 35 - - type: Stack - count: 5 - - type: Physics - canCollide: False -- proto: LeavesCannabisRainbow - entities: - - uid: 44267 - components: - - type: Transform - parent: 44266 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: LedLightBulb - entities: - - uid: 40758 - components: - - type: Transform - parent: 40757 - - type: LightBulb - color: '#0000FFFF' - - type: Physics - canCollide: False -- proto: Left4ZedChemistryBottle - entities: - - uid: 2562 - components: - - type: Transform - parent: 2561 - - type: Physics - canCollide: False - - uid: 26783 - components: - - type: Transform - pos: 36.64995,23.117214 - parent: 2 -- proto: LeftArmBorg - entities: - - uid: 26784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.723213,-45.703697 - parent: 2 - - uid: 26785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.270088,-45.547447 - parent: 2 - - uid: 26786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.426338,-46.188072 - parent: 2 - - uid: 26787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.660713,-46.094322 - parent: 2 -- proto: LeftArmSkeleton - entities: - - uid: 26788 - components: - - type: Transform - pos: 65.5,-50.5 - parent: 2 -- proto: LeftFootMoth - entities: - - uid: 26789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 107.40406,-71.27681 - parent: 2 -- proto: LeftFootSkeleton - entities: - - uid: 26790 - components: - - type: Transform - pos: 65.5,-50.5 - parent: 2 -- proto: LeftHandSkeleton - entities: - - uid: 26791 - components: - - type: Transform - pos: 65.5,-50.5 - parent: 2 -- proto: LeftLegBorg - entities: - - uid: 26792 - components: - - type: Transform - pos: -86.09143,-9.851116 - parent: 2 - - uid: 26793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.548025,-29.466383 - parent: 2 - - uid: 26794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.1574,-29.247633 - parent: 2 - - uid: 26795 - components: - - type: Transform - pos: -17.862097,-45.621193 - parent: 2 - - uid: 26796 - components: - - type: Transform - pos: -17.113838,-45.219322 - parent: 2 - - uid: 26797 - components: - - type: Transform - pos: -17.098213,-45.359947 - parent: 2 - - uid: 26798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.410713,-45.219322 - parent: 2 -- proto: LeftLegReptilian - entities: - - uid: 26799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.578598,-33.43395 - parent: 2 -- proto: LeftLegSkeleton - entities: - - uid: 26800 - components: - - type: Transform - pos: 65.5,-50.5 - parent: 2 -- proto: LegionnaireBonfire - entities: - - uid: 26801 - components: - - type: MetaData - desc: Легион имя мне. - - type: Transform - pos: 69.5,-49.5 - parent: 2 -- proto: LGBTQFlag - entities: - - uid: 26804 - components: - - type: Transform - pos: -67.5,5.5 - parent: 2 -- proto: LightBulbBroken - entities: - - uid: 26806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.410088,-74.550186 - parent: 2 -- proto: Lighter - entities: - - uid: 26808 - components: - - type: Transform - pos: 8.601826,13.614818 - parent: 2 - - uid: 26809 - components: - - type: Transform - pos: 57.742687,15.597738 - parent: 2 -- proto: LightHeadBorg - entities: - - uid: 26464 - components: - - type: Transform - pos: 11.7199,-27.544508 - parent: 2 - - uid: 26465 - components: - - type: Transform - pos: -20.566963,-53.306625 - parent: 2 - - uid: 26466 - components: - - type: Transform - pos: -20.348213,-53.19725 - parent: 2 - - uid: 26467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.035713,-45.453697 - parent: 2 - - uid: 26468 - components: - - type: Transform - pos: -20.238838,-53.619125 - parent: 2 - - uid: 26469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.551338,-53.744125 - parent: 2 - - uid: 26810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.12615,-29.497633 - parent: 2 - - uid: 26811 - components: - - type: Transform - pos: -16.486774,-45.63583 - parent: 2 -- proto: LightReplacer - entities: - - uid: 26807 - components: - - type: Transform - parent: 32193 - - type: Physics - canCollide: False - - uid: 26812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.522446,-29.444263 - parent: 2 - - uid: 26813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.70501,-66.38782 - parent: 2 -- proto: LightTubeCrystalGreen - entities: - - uid: 42937 - components: - - type: Transform - parent: 42936 - - type: Physics - canCollide: False -- proto: LightTubeCrystalRed - entities: - - uid: 26815 - components: - - type: Transform - parent: 26814 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26817 - components: - - type: Transform - parent: 26816 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26819 - components: - - type: Transform - parent: 26818 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26821 - components: - - type: Transform - parent: 26820 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26823 - components: - - type: Transform - parent: 26822 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26825 - components: - - type: Transform - parent: 26824 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26827 - components: - - type: Transform - parent: 26826 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26829 - components: - - type: Transform - parent: 26828 - - type: LightBulb - lightRadius: 2 - - type: Physics - canCollide: False - - uid: 26831 - components: - - type: Transform - parent: 26830 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26833 - components: - - type: Transform - parent: 26832 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26835 - components: - - type: Transform - parent: 26834 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26837 - components: - - type: Transform - parent: 26836 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26839 - components: - - type: Transform - parent: 26838 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26841 - components: - - type: Transform - parent: 26840 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26843 - components: - - type: Transform - parent: 26842 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26845 - components: - - type: Transform - parent: 16438 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26847 - components: - - type: Transform - parent: 26846 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26849 - components: - - type: Transform - parent: 26848 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26851 - components: - - type: Transform - parent: 26850 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26853 - components: - - type: Transform - parent: 26852 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26855 - components: - - type: Transform - parent: 26854 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26857 - components: - - type: Transform - parent: 26856 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26859 - components: - - type: Transform - parent: 26858 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26861 - components: - - type: Transform - parent: 26860 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26863 - components: - - type: Transform - parent: 26862 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26865 - components: - - type: Transform - parent: 26864 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26867 - components: - - type: Transform - parent: 26866 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 26869 - components: - - type: Transform - parent: 26868 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False -- proto: LiquidNitrogenCanister - entities: - - uid: 26872 - components: - - type: Transform - pos: 36.5,-46.5 - parent: 2 - - uid: 26873 - components: - - type: Transform - pos: -74.5,-27.5 - parent: 2 - - uid: 26874 - components: - - type: Transform - pos: 95.5,-82.5 - parent: 2 -- proto: LiquidOxygenCanister - entities: - - uid: 26875 - components: - - type: Transform - pos: 36.5,-47.5 - parent: 2 - - uid: 26876 - components: - - type: Transform - pos: -75.5,-27.5 - parent: 2 - - uid: 26877 - components: - - type: Transform - pos: 96.5,-82.5 - parent: 2 -- proto: LiveLetLiveCircuitBoard - entities: - - uid: 26878 - components: - - type: Transform - pos: 17.471539,18.571913 - parent: 2 -- proto: LockableButtonArmory - entities: - - uid: 26879 - components: - - type: MetaData - desc: Эта кнопка открывает гермозатвор хранилища снаряжения красного кода. - name: Красный код - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2194: - - Pressed: Toggle - - uid: 26880 - components: - - type: MetaData - desc: Эта кнопка открывает гермозатвор хранилища снаряжения синего кода. - name: Синий код - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-14.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2184: - - Pressed: Toggle - - uid: 26881 - components: - - type: MetaData - name: Снаряжение - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-16.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2195: - - Pressed: Toggle - - uid: 26882 - components: - - type: MetaData - name: блокировка камеры 1 - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,3.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2241: - - Pressed: Toggle - - uid: 26883 - components: - - type: MetaData - name: блокировка камеры 4 - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,2.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2243: - - Pressed: Toggle - - uid: 26884 - components: - - type: MetaData - name: блокировка камеры 2 - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,6.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2244: - - Pressed: Toggle - - uid: 26885 - components: - - type: MetaData - name: блокировка камеры 5 - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2245: - - Pressed: Toggle - - uid: 26886 - components: - - type: MetaData - name: блокировка камеры 3 - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-0.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2242: - - Pressed: Toggle - - uid: 42934 - components: - - type: MetaData - desc: Эта кнопка активирует сброс улик. - name: переключение очистки от улик - - type: Transform - pos: 50.5,-7.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 42936: - - Pressed: Toggle - 27600: - - Pressed: Toggle -- proto: LockableButtonAtmospherics - entities: - - uid: 40851 - components: - - type: MetaData - desc: Эта кнопка переключает ставни. - name: ставни - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-92.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 40617: - - Pressed: Toggle - 40618: - - Pressed: Toggle - 40849: - - Pressed: Toggle - 40850: - - Pressed: Toggle - - uid: 40852 - components: - - type: MetaData - desc: Эта кнопка переключает ставни. - name: ставни - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-100.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 39562: - - Pressed: Toggle - 32250: - - Pressed: Toggle - 32231: - - Pressed: Toggle - 32221: - - Pressed: Toggle - 40616: - - Pressed: Toggle - 39563: - - Pressed: Toggle - - uid: 41399 - components: - - type: MetaData - desc: Эта кнопка переключает гермозатворы. - name: гермозатворы - - type: Transform - pos: 43.5,-84.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 41327: - - Pressed: Toggle - 41326: - - Pressed: Toggle - - uid: 42065 - components: - - type: MetaData - desc: Эта кнопка переключает ставни. - name: ставни - - type: Transform - pos: 42.5,-84.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 42068: - - Pressed: Toggle - 42067: - - Pressed: Toggle - 42066: - - Pressed: Toggle -- proto: LockableButtonBrig - entities: - - uid: 26887 - components: - - type: MetaData - name: вызов уборщика - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-6.5 - parent: 2 - - type: DeviceLinkSource - range: 300 - linkedPorts: - 26713: - - Pressed: Toggle - 26712: - - Pressed: Toggle - 33562: - - Pressed: Toggle -- proto: LockableButtonCaptain - entities: - - uid: 26888 - components: - - type: MetaData - name: кнопка вызова ОБР - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.2179623,16.508371 - parent: 2 - - type: WirelessNetworkConnection - range: 1000 - - type: DeviceLinkSource - range: 1000 - linkedPorts: - 28502: - - Pressed: Toggle - 42070: - - Pressed: Open - - uid: 41325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.517624,-6.217499 - parent: 40828 - - type: DeviceLinkSource - linkedPorts: - 40848: - - Pressed: Toggle -- proto: LockableButtonCargo - entities: - - uid: 32635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-78.5 - parent: 2 - - type: WirelessNetworkConnection - range: 2000 - - type: DeviceLinkSource - range: 3000 - linkedPorts: - 26710: - - Pressed: Toggle - 42221: - - Pressed: Toggle -- proto: LockableButtonChapel - entities: - - uid: 26889 - components: - - type: MetaData - desc: Эта кнопка закрывает ставни. - name: кнопка закрытия церкви - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-64.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31087: - - Pressed: Toggle - 31088: - - Pressed: Toggle - 31090: - - Pressed: Toggle - 31089: - - Pressed: Toggle - 31092: - - Pressed: Toggle - 31091: - - Pressed: Toggle - - uid: 26890 - components: - - type: MetaData - name: свет - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-66.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 28326: - - Pressed: Toggle - 28179: - - Pressed: Toggle - 28180: - - Pressed: Toggle -- proto: LockableButtonChemistry - entities: - - uid: 26891 - components: - - type: MetaData - desc: Эта кнопка переключает ставни. - name: кнопка ставней - - type: Transform - rot: 3.141592653589793 rad - pos: -36.28956,-32.024765 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 31098: - - Pressed: Toggle - 31094: - - Pressed: Toggle - 31097: - - Pressed: Toggle - 31095: - - Pressed: Toggle - 31096: - - Pressed: Toggle - 31093: - - Pressed: Toggle -- proto: LockableButtonCommand - entities: - - uid: 26892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2143: - - Pressed: Toggle - - uid: 26893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2142: - - Pressed: Toggle - - uid: 41839 - components: - - type: MetaData - name: гермозатворы - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5362701,2.5786743 - parent: 41669 - - type: DeviceLinkSource - linkedPorts: - 41688: - - Pressed: Toggle - 41687: - - Pressed: Toggle - 41684: - - Pressed: Toggle - 41683: - - Pressed: Toggle - 41686: - - Pressed: Toggle - 41685: - - Pressed: Toggle - 41689: - - Pressed: Toggle -- proto: LockableButtonEngineering - entities: - - uid: 32634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-45.5 - parent: 2 - - type: WirelessNetworkConnection - range: 2000 - - type: DeviceLinkSource - range: 3000 - linkedPorts: - 26701: - - Pressed: Toggle - 26711: - - Pressed: Toggle - 42222: - - Pressed: Toggle -- proto: LockableButtonHeadOfSecurity - entities: - - uid: 26894 + - uid: 26894 components: - type: MetaData name: кнопка вызова ОБР @@ -197849,37 +188631,6 @@ entities: - Pressed: Toggle 26709: - Pressed: Toggle -- proto: LockableButtonSalvage - entities: - - uid: 26895 - components: - - type: MetaData - name: послать калибровочный сигнал - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-51.5 - parent: 2 - - type: AccessReader - access: - - - NuclearOperative - - - Salvage - - type: DeviceLinkSource - linkedPorts: - 2209: - - Pressed: Open - - uid: 26896 - components: - - type: MetaData - name: начать синхронизацию - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-23.5 - parent: 2 - - type: DeviceLinkSource - range: 10000 - linkedPorts: - 2211: - - Pressed: Open - proto: LockableButtonSecurity entities: - uid: 26897 @@ -198071,46 +188822,6 @@ entities: showEnts: False occludes: True ent: null -- proto: LockerBooze - entities: - - uid: 18743 - components: - - type: Transform - pos: -4.5,-71.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8977377 - - 7.139109 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18745 - - 18746 - - 18744 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerBoozeFilled entities: - uid: 26903 @@ -198135,31 +188846,6 @@ entities: - type: Transform pos: 35.5,18.5 parent: 2 -- proto: LockerBotanistLoot - entities: - - uid: 26908 - components: - - type: Transform - pos: -10.5,-26.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerBrigmedic entities: - uid: 2475 @@ -198223,47 +188909,6 @@ entities: - type: Transform pos: 16.5,13.5 parent: 2 -- proto: LockerChemistry - entities: - - uid: 15846 - components: - - type: Transform - anchored: True - pos: 3.5,-9.5 - parent: 2 - - type: Physics - bodyType: Static - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 15847 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Pullable - prevFixedRotation: True - proto: LockerChemistryFilled entities: - uid: 26910 @@ -198348,8 +188993,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.8977377 + - 7.139109 - 0 - 0 - 0 @@ -198413,6 +189058,8 @@ entities: showEnts: False occludes: True ent: null + - type: WarpPoint + location: я-44 - uid: 19910 components: - type: Transform @@ -198535,9 +189182,9 @@ entities: showEnts: False occludes: True ents: - - 15757 - - 15758 - 15759 + - 15758 + - 15757 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -198810,56 +189457,19 @@ entities: parent: 2 - proto: LockerFreezer entities: - - uid: 18779 - components: - - type: Transform - pos: 25.5,14.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 234.99739 - 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: - - 18783 - - 18782 - - 18781 - - 18780 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18852 + - uid: 16134 components: - type: Transform - pos: -20.5,-19.5 + pos: -12.5,-36.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14673 + temperature: 293.1465 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -198876,21 +189486,23 @@ entities: showEnts: False occludes: True ents: - - 18853 + - 16136 + - 10093 + - 11728 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 19903 + - uid: 18779 components: - type: Transform - pos: -19.5,-19.5 + pos: 25.5,14.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14673 + temperature: 234.99739 moles: - 1.8856695 - 7.0937095 @@ -198910,7 +189522,10 @@ entities: showEnts: False occludes: True ents: - - 19904 + - 18783 + - 18782 + - 18781 + - 18780 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -199622,6 +190237,42 @@ entities: - 0 - 0 - 0 +- proto: LockerSalvageSpecialist + entities: + - uid: 23804 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 23805 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerSalvageSpecialistFilled entities: - uid: 2377 @@ -199847,6 +190498,11 @@ entities: parent: 2 - proto: LockerSteel entities: + - uid: 9985 + components: + - type: Transform + pos: -1.5,-59.5 + parent: 2 - uid: 10147 components: - type: MetaData @@ -199891,40 +190547,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 15479 - components: - - type: Transform - pos: 15.5,-21.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 15480 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerWallMedical entities: - uid: 40860 @@ -200108,27 +190730,23 @@ entities: parent: 2 - proto: LogicEmptyCircuit entities: - - uid: 42324 + - uid: 23615 components: - type: Transform - pos: -17.040825,-53.69011 + pos: 1.3743762,-45.400673 parent: 2 - proto: LogicGateAnd entities: - - uid: 26992 + - uid: 19997 components: - type: Transform - pos: -9.303374,-51.572456 + pos: 6.5,-56.5 + parent: 2 + - uid: 20449 + components: + - type: Transform + pos: -5.5,-56.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - range: 3000 - linkedPorts: - 31210: - - Output: Trigger - - type: WirelessNetworkConnection - range: 2000 - uid: 42072 components: - type: Transform @@ -200142,37 +190760,6 @@ entities: - Output: Trigger 42073: - Output: Open -- proto: LogicGateNor - entities: - - uid: 42333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.553448,-48.37683 - parent: 2 -- proto: LogicGateOr - entities: - - uid: 42334 - components: - - type: Transform - pos: -12.475323,-54.53308 - parent: 2 -- proto: LogicGateXnor - entities: - - uid: 42332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.349592,-47.32453 - parent: 2 -- proto: LogicGateXor - entities: - - uid: 42331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.552717,-47.496407 - parent: 2 - proto: LogProbeCartridge entities: - uid: 1377 @@ -200259,16 +190846,6 @@ entities: - type: Transform pos: 53.5,-48.5 parent: 2 - - uid: 27003 - components: - - type: Transform - pos: 5.5,-46.5 - parent: 2 - - uid: 27004 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 2 - uid: 27005 components: - type: Transform @@ -200325,15 +190902,10 @@ entities: parent: 2 - proto: LootSpawnerMaterialsHighValue entities: - - uid: 27011 - components: - - type: Transform - pos: 14.5,-48.5 - parent: 2 - - uid: 27012 + - uid: 14698 components: - type: Transform - pos: -5.5,-54.5 + pos: -12.5,-26.5 parent: 2 - proto: LootSpawnerMaterialsHighValueConstruction entities: @@ -200357,11 +190929,6 @@ entities: - type: Transform pos: 74.5,-50.5 parent: 2 - - uid: 27016 - components: - - type: Transform - pos: -1.5,-51.5 - parent: 2 - proto: LootSpawnerMaterialsSurplus entities: - uid: 17699 @@ -200436,6 +191003,11 @@ entities: parent: 2 - proto: LootSpawnerMedicalClassy entities: + - uid: 23583 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 - uid: 27029 components: - type: Transform @@ -200451,21 +191023,6 @@ entities: - type: Transform pos: -54.5,0.5 parent: 2 - - uid: 27032 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 2 - - uid: 27033 - components: - - type: Transform - pos: 3.5,-61.5 - parent: 2 - - uid: 27034 - components: - - type: Transform - pos: 13.5,-48.5 - parent: 2 - uid: 42367 components: - type: Transform @@ -200480,20 +191037,30 @@ entities: parent: 2 - proto: LootSpawnerRandomCrateEngineering entities: - - uid: 27036 + - uid: 24913 components: - type: Transform - pos: -9.5,-46.5 + pos: -15.5,-52.5 parent: 2 - proto: LootSpawnerRandomCrateSecurity entities: - - uid: 16266 + - uid: 9964 components: - type: Transform - pos: 8.5,-61.5 + pos: 17.5,-45.5 parent: 2 - proto: LootSpawnerSecurity entities: + - uid: 23449 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - uid: 23546 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 - uid: 39423 components: - type: Transform @@ -200584,64 +191151,50 @@ entities: parent: 2 - proto: MachineFrame entities: - - uid: 16588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,23.5 - parent: 2 - - uid: 23665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,24.5 - parent: 2 - - uid: 27049 + - uid: 12234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-14.5 + pos: -11.5,-41.5 parent: 2 - - uid: 27050 + - uid: 15855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-13.5 + pos: -13.5,-40.5 parent: 2 - - uid: 27051 + - uid: 16157 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-15.5 + pos: 17.5,-32.5 parent: 2 - - uid: 27052 + - uid: 16248 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-16.5 + pos: 17.5,-33.5 parent: 2 - - uid: 27053 + - uid: 16588 components: - type: Transform - pos: -58.5,-17.5 + rot: 1.5707963267948966 rad + pos: 44.5,23.5 parent: 2 - - uid: 27054 + - uid: 18268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-18.5 + rot: 3.141592653589793 rad + pos: -7.5,-63.5 parent: 2 - - uid: 27055 + - uid: 23665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 + rot: 1.5707963267948966 rad + pos: 44.5,24.5 parent: 2 - - uid: 27056 + - uid: 27053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-14.5 + pos: -58.5,-17.5 parent: 2 - uid: 27057 components: @@ -200697,36 +191250,6 @@ entities: - type: Transform pos: 104.5,-68.5 parent: 2 - - uid: 27067 - components: - - type: Transform - pos: -18.5,-50.5 - parent: 2 - - uid: 27068 - components: - - type: Transform - pos: -17.5,-47.5 - parent: 2 - - uid: 27069 - components: - - type: Transform - pos: 8.5,-46.5 - parent: 2 - - uid: 27070 - components: - - type: Transform - pos: 11.5,-46.5 - parent: 2 - - uid: 27071 - components: - - type: Transform - pos: 8.5,-48.5 - parent: 2 - - uid: 27072 - components: - - type: Transform - pos: -7.5,-38.5 - parent: 2 - uid: 32352 components: - type: Transform @@ -200744,6 +191267,11 @@ entities: parent: 2 - proto: MachineFrameDestroyed entities: + - uid: 24200 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 - uid: 27073 components: - type: Transform @@ -200766,10 +191294,19 @@ entities: - type: Transform pos: 64.55751,-19.446735 parent: 2 - - uid: 27076 +- proto: MagazineBoxCaselessRifleBig + entities: + - uid: 29824 + components: + - type: Transform + pos: 62.479134,-19.356644 + parent: 2 +- proto: MagazineBoxLightRifleBig + entities: + - uid: 29816 components: - type: Transform - pos: 12.630977,-19.490175 + pos: 62.55726,-19.466019 parent: 2 - proto: MagazineBoxRifle entities: @@ -200780,6 +191317,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: MagazineBoxRifleBig + entities: + - uid: 29817 + components: + - type: Transform + pos: 62.52601,-19.387894 + parent: 2 - proto: MagazineLightRifle entities: - uid: 27077 @@ -200808,10 +191352,10 @@ entities: - type: InsideEntityStorage - proto: MagazineLightRifleMaxim entities: - - uid: 27079 + - uid: 23608 components: - type: Transform - pos: 8.505977,-22.47455 + pos: -0.48755038,-25.376152 parent: 2 - proto: MagazinePistol entities: @@ -200834,6 +191378,13 @@ entities: - type: Transform pos: 61.708096,9.5842905 parent: 2 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 9963 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 2 - proto: MagazineRifle entities: - uid: 40882 @@ -201539,6 +192090,34 @@ entities: parent: 2 - proto: MaterialBones1 entities: + - uid: 23280 + components: + - type: Transform + pos: 12.684036,-28.466934 + parent: 2 + - uid: 23429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.833094,-28.615871 + parent: 2 + - uid: 23505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5347652,-44.287605 + parent: 2 + - uid: 23506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.045004,-44.287605 + parent: 2 + - uid: 23507 + components: + - type: Transform + pos: -3.2792377,-44.50037 + parent: 2 - uid: 27177 components: - type: Transform @@ -201564,67 +192143,56 @@ entities: - type: Transform pos: -53.596252,-18.574131 parent: 2 -- proto: MaterialDurathread +- proto: MaterialCloth10 entities: - - uid: 27181 + - uid: 20339 components: - type: Transform - pos: -5.381781,8.612462 + pos: -9.254715,-46.225597 parent: 2 -- proto: MaterialGunpowder - entities: - - uid: 27182 + - uid: 23378 components: - type: Transform - pos: -57.47855,-91.2867 + pos: -10.602024,-49.154438 parent: 2 - - uid: 27183 + - uid: 23379 components: - type: Transform - pos: -57.41605,-91.14607 + pos: -10.680149,-49.466938 parent: 2 -- proto: MaterialToothSharkminnow1 +- proto: MaterialDurathread entities: - - uid: 27184 + - uid: 27181 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.707739,-28.657364 + pos: -5.381781,8.612462 parent: 2 -- proto: MaterialToothSpaceCarp1 +- proto: MaterialGoliathHide1 entities: - - uid: 27185 - components: - - type: Transform - pos: 8.379614,-28.376114 - parent: 2 - - uid: 27186 - components: - - type: Transform - pos: 8.488989,-28.422989 - parent: 2 - - uid: 27187 + - uid: 23582 components: - type: Transform - pos: 8.551489,-28.360489 + rot: 3.141592653589793 rad + pos: 9.5,-43.5 parent: 2 - - uid: 27188 +- proto: MaterialGunpowder + entities: + - uid: 27182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.332739,-28.704239 + pos: -57.47855,-91.2867 parent: 2 - - uid: 27189 + - uid: 27183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.238989,-28.532364 + pos: -57.41605,-91.14607 parent: 2 - - uid: 27190 +- proto: MaterialPyrotton + entities: + - uid: 19143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.488989,-28.579239 + pos: -14.515781,-36.537457 parent: 2 - proto: MaterialWoodPlank1 entities: @@ -201659,6 +192227,31 @@ entities: - type: Transform pos: 103.5,-47.5 parent: 2 + - uid: 9937 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 14642 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 2 + - uid: 14651 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 2 + - uid: 16246 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 23571 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 2 - uid: 27197 components: - type: Transform @@ -201709,13 +192302,6 @@ entities: - type: Transform pos: 75.5,1.5 parent: 2 -- proto: MechEquipmentGrabber - entities: - - uid: 27207 - components: - - type: Transform - pos: -20.424871,-61.475033 - parent: 2 - proto: MedalCase entities: - uid: 27208 @@ -201810,11 +192396,6 @@ entities: rot: 3.141592653589793 rad pos: -6.602462,13.537646 parent: 2 - - uid: 27228 - components: - - type: Transform - pos: -1.4672513,-34.506245 - parent: 2 - uid: 41330 components: - type: Transform @@ -202048,13 +192629,6 @@ entities: - 2584 - proto: MedkitBurnFilled entities: - - uid: 15293 - components: - - type: Transform - parent: 15292 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 27230 components: - type: Transform @@ -202113,6 +192687,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 16136 + components: + - type: Transform + parent: 16134 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 41331 components: - type: Transform @@ -202125,13 +192706,6 @@ entities: parent: 41669 - proto: MedkitFilled entities: - - uid: 16228 - components: - - type: Transform - parent: 16226 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 27232 components: - type: Transform @@ -202184,6 +192758,11 @@ entities: rot: 3.141592653589793 rad pos: -33.546227,-107.30916 parent: 2 + - uid: 29169 + components: + - type: Transform + pos: 1.5,-68.5 + parent: 2 - uid: 43183 components: - type: Transform @@ -202405,6 +192984,16 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: Memorial + entities: + - uid: 14635 + components: + - type: MetaData + desc: 'Станция создана по проекту Mota. Кураторы карты: 1. Mota 2. Resoid. Также участвовали: Satus, Begorrchi, Tiferi, Zvizdun, RatIRL, Fanifaer, Kvart789, Relk' + name: памятник архитекторам Astra + - type: Transform + pos: 54.5,-38.5 + parent: 2 - proto: MetalFoamGrenade entities: - uid: 27254 @@ -202464,13 +193053,6 @@ entities: - type: Transform pos: 35.515884,-9.537717 parent: 2 -- proto: Milkalyzer - entities: - - uid: 27258 - components: - - type: Transform - pos: -20.588402,-21.946007 - parent: 2 - proto: MindShieldImplanter entities: - uid: 2487 @@ -202484,11 +193066,6 @@ entities: - type: InsideEntityStorage - proto: MineralScanner entities: - - uid: 27259 - components: - - type: Transform - pos: 15.396231,-29.394201 - parent: 2 - uid: 43177 components: - type: Transform @@ -202510,29 +193087,15 @@ entities: parent: 2 - proto: MiningWindow entities: - - uid: 27263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-54.5 - parent: 2 - - uid: 27264 + - uid: 24215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-53.5 + pos: 14.5,-8.5 parent: 2 - - uid: 27265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-54.5 - parent: 2 - - uid: 27266 + - uid: 26582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-53.5 + pos: -12.5,-8.5 parent: 2 - proto: MiniSyringe entities: @@ -202568,17 +193131,6 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-92.5 parent: 2 - - uid: 27271 - components: - - type: MetaData - name: зеркальце - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: -14.092231,-27.466223 - parent: 2 - - type: Item - inhandVisuals: {} - uid: 27272 components: - type: Transform @@ -202663,11 +193215,6 @@ entities: parent: 2 - proto: MMI entities: - - uid: 27287 - components: - - type: Transform - pos: -17.351639,-54.3246 - parent: 2 - uid: 27288 components: - type: Transform @@ -202749,6 +193296,26 @@ entities: parent: 40828 - proto: ModularReceiver entities: + - uid: 23369 + components: + - type: Transform + pos: -8.529453,-46.49839 + parent: 2 + - uid: 23380 + components: + - type: Transform + pos: -11.237486,-49.154438 + parent: 2 + - uid: 23381 + components: + - type: Transform + pos: -11.346861,-49.373188 + parent: 2 + - uid: 23382 + components: + - type: Transform + pos: -11.378111,-49.591938 + parent: 2 - uid: 44256 components: - type: Transform @@ -202771,6 +193338,11 @@ entities: showEnts: False occludes: True ent: 27468 + - uid: 23469 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 - proto: MopItem entities: - uid: 2554 @@ -202780,6 +193352,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 23470 + components: + - type: Transform + pos: 8.441368,-57.48822 + parent: 2 - uid: 26657 components: - type: Transform @@ -202973,11 +193550,6 @@ entities: - type: Transform pos: 40.5,13.5 parent: 2 - - uid: 27325 - components: - - type: Transform - pos: -18.5,-56.5 - parent: 2 - proto: Mousetrap entities: - uid: 27326 @@ -203023,11 +193595,24 @@ entities: - type: Transform pos: -87.5,-11.5 parent: 2 - - uid: 27334 + - uid: 29216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.52328396,-70.29429 + pos: -0.5,-70.5 + parent: 2 +- proto: MusicalLungInstrument + entities: + - uid: 10057 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 +- proto: MusicBoxInstrument + entities: + - uid: 10056 + components: + - type: Transform + pos: 3.5,-47.5 parent: 2 - proto: MusicianPDA entities: @@ -203441,10 +194026,15 @@ entities: parent: 2 - proto: NukeDiskFake entities: + - uid: 23611 + components: + - type: Transform + pos: -0.6438004,-26.438652 + parent: 2 - uid: 27386 components: - type: Transform - pos: -9.2673025,-7.040256 + pos: -5.443759,-2.4707575 parent: 2 - proto: NutimovCircuitBoard entities: @@ -203453,6 +194043,13 @@ entities: - type: Transform pos: 15.479378,22.5946 parent: 2 +- proto: OcarinaInstrument + entities: + - uid: 19771 + components: + - type: Transform + pos: 9.533574,-25.428013 + parent: 2 - proto: Ointment entities: - uid: 2573 @@ -203493,6 +194090,11 @@ entities: canCollide: False - proto: OperatingTable entities: + - uid: 12533 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 2 - uid: 27388 components: - type: Transform @@ -203535,6 +194137,11 @@ entities: parent: 2 - proto: OpporozidoneBeakerSmall entities: + - uid: 12229 + components: + - type: Transform + pos: 8.485265,-24.391865 + parent: 2 - uid: 27396 components: - type: Transform @@ -203564,21 +194171,6 @@ entities: - type: Transform pos: -4.5,-88.5 parent: 2 - - uid: 27401 - components: - - type: Transform - pos: -21.5,-61.5 - parent: 2 - - uid: 27402 - components: - - type: Transform - pos: -21.5,-62.5 - parent: 2 - - uid: 27403 - components: - - type: Transform - pos: -2.5,-57.5 - parent: 2 - proto: OreProcessor entities: - uid: 19570 @@ -203586,6 +194178,13 @@ entities: - type: Transform pos: -5.5,-91.5 parent: 2 +- proto: OrganArachnidEyes + entities: + - uid: 18879 + components: + - type: Transform + pos: 16.331486,-36.315342 + parent: 2 - proto: OrganArachnidHeart entities: - uid: 16214 @@ -203604,8 +194203,20 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: OrganDionaBrain + entities: + - uid: 19138 + components: + - type: Transform + pos: 0.4972917,-25.45475 + parent: 2 - proto: OrganDionaEyes entities: + - uid: 19772 + components: + - type: Transform + pos: 17.34711,-36.330967 + parent: 2 - uid: 27405 components: - type: Transform @@ -203613,6 +194224,11 @@ entities: parent: 2 - proto: OrganHumanAppendix entities: + - uid: 12231 + components: + - type: Transform + pos: 11.309075,-30.764137 + parent: 2 - uid: 16216 components: - type: Transform @@ -203620,13 +194236,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: OrganHumanBrain - entities: - - uid: 27406 - components: - - type: Transform - pos: -4.0133886,-40.97168 - parent: 2 - proto: OrganHumanEars entities: - uid: 16217 @@ -203638,6 +194247,11 @@ entities: - type: InsideEntityStorage - proto: OrganHumanEyes entities: + - uid: 16251 + components: + - type: Transform + pos: 14.928347,-30.332127 + parent: 2 - uid: 27407 components: - type: Transform @@ -203672,15 +194286,7 @@ entities: - uid: 27411 components: - type: Transform - pos: -64.62623,-24.98179 - parent: 2 -- proto: OrganHumanLungs - entities: - - uid: 27412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -64.124985,-33.18395 + pos: -64.58478,-24.5017 parent: 2 - proto: OrganHumanTongue entities: @@ -203691,6 +194297,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: OrganSlimesLungs + entities: + - uid: 16249 + components: + - type: Transform + pos: 15.581363,-30.332127 + parent: 2 - proto: OxygenCanister entities: - uid: 27413 @@ -203813,6 +194426,11 @@ entities: - type: Transform pos: 55.5,-21.5 parent: 2 + - uid: 29318 + components: + - type: Transform + pos: 1.5,-69.5 + parent: 2 - uid: 38996 components: - type: Transform @@ -203825,13 +194443,6 @@ entities: parent: 2 - proto: OxygenTankFilled entities: - - uid: 118 - components: - - type: Transform - parent: 115 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 2489 components: - type: Transform @@ -203921,40 +194532,11 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-66.5 parent: 2 - - uid: 27439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-42.5 - parent: 2 - uid: 41845 components: - type: Transform pos: 7.5,2.5 parent: 41669 -- proto: PaintingCafeTerraceAtNight - entities: - - uid: 27440 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-40.5 - parent: 2 -- proto: PaintingEmpty - entities: - - uid: 27441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-41.5 - parent: 2 -- proto: PaintingHelloWorld - entities: - - uid: 27442 - components: - - type: Transform - pos: 17.5,-38.5 - parent: 2 - proto: PaintingMonkey entities: - uid: 27443 @@ -203962,51 +194544,6 @@ entities: - type: Transform pos: 22.473017,10.19018 parent: 2 - - uid: 27444 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-40.5 - parent: 2 -- proto: PaintingMoony - entities: - - uid: 27445 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 2 -- proto: PaintingNightHawks - entities: - - uid: 27446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-40.5 - parent: 2 -- proto: PaintingOldGuitarist - entities: - - uid: 27447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-42.5 - parent: 2 -- proto: PaintingOlympia - entities: - - uid: 27448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-40.5 - parent: 2 -- proto: PaintingPersistenceOfMemory - entities: - - uid: 27449 - components: - - type: Transform - pos: 17.5,-40.5 - parent: 2 - proto: PaintingPrayerHands entities: - uid: 27450 @@ -204015,20 +194552,6 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-62.5 parent: 2 - - uid: 27451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-40.5 - parent: 2 -- proto: PaintingRedBlueYellow - entities: - - uid: 27452 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-38.5 - parent: 2 - proto: PaintingSadClown entities: - uid: 27453 @@ -204036,12 +194559,6 @@ entities: - type: Transform pos: 38.5,-14.5 parent: 2 - - uid: 27454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-38.5 - parent: 2 - proto: PaintingSaturn entities: - uid: 27455 @@ -204050,12 +194567,6 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-66.5 parent: 2 - - uid: 27456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-42.5 - parent: 2 - proto: PaintingSkeletonBoof entities: - uid: 27457 @@ -204063,12 +194574,6 @@ entities: - type: Transform pos: 70.5,-46.5 parent: 2 - - uid: 27458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-42.5 - parent: 2 - proto: PaintingSkeletonCigarette entities: - uid: 27460 @@ -204076,12 +194581,6 @@ entities: - type: Transform pos: 65.5,-47.5 parent: 2 - - uid: 27461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-39.5 - parent: 2 - uid: 27462 components: - type: Transform @@ -204112,45 +194611,6 @@ entities: - type: Transform pos: 39.5,11.5 parent: 2 -- proto: PaintingSleepingGypsy - entities: - - uid: 27469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-42.5 - parent: 2 -- proto: PaintingTheGreatWave - entities: - - uid: 27470 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 - parent: 2 -- proto: PaintingTheKiss - entities: - - uid: 27471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-40.5 - parent: 2 -- proto: PaintingTheScream - entities: - - uid: 27472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-38.5 - parent: 2 -- proto: PaintingTheSonOfMan - entities: - - uid: 27473 - components: - - type: Transform - pos: 17.5,-42.5 - parent: 2 - proto: PaladinCircuitBoard entities: - uid: 27474 @@ -204431,6 +194891,20 @@ entities: [color=#ff0000][italic]СЕКРЕТНО: Только для капитана, ГСБ и сотрудников СБ. Копирование запрещено. - type: Physics canCollide: False + - uid: 23478 + components: + - type: Transform + pos: 9.273214,-55.45223 + parent: 2 + - type: Paper + content: >- + ИС-035 - Трагедия о повешенном миме + + Класс объекта: Опасный + + Особые условия содржания: ДАННЫЕ УДАЛЕНЫ + + Описание: ДАННЫЕ УДАЛЕНЫ - uid: 26413 components: - type: Transform @@ -204976,74 +195450,6 @@ entities: rot: -1.5707963267948966 rad pos: -28.527176,-113.35243 parent: 2 - - uid: 27557 - components: - - type: Transform - pos: -11.688484,-39.449905 - parent: 2 - - type: Paper - content: "Протокол 4415\nНовые образцы полученные без помощи Apox-6 стали покрываться язвами голубого цвета. Кожа стала приобретать синий оттенок. Генетический анализ показал инородные генетические последовательности. " - - uid: 27558 - components: - - type: Transform - pos: -5.426367,-29.630838 - parent: 2 - - type: Paper - content: >- - Протокол 4398 - - Образцы стали проявлять признаки агрессии. Возможно побочное действие использования технологии Apox-6. - - uid: 27559 - components: - - type: Transform - pos: 11.535598,-48.056534 - parent: 2 - - type: Paper - stampState: paper_stamp-hos - stampedBy: - - stampedColor: '#CC0000FF' - stampedName: DSE UEG - content: >2- - - Уважаемый капитан станции Vasilisk! Благодарим вас за ваши усилия по локализации биологической угрозы. К сожалению отправка отряда ради вашего спасения невозможна, в связи с высокой активностью организованных пиратских группировок в вашем секторе. - - - Примите наши извинения за доставленные неудобства. - - uid: 27560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.4228978,-38.361145 - parent: 2 - - type: Paper - content: "Протокол 4416\r\nСотрудники отдела снабжения поступили в медицинский блок с обширными поражениями рук и посинением кожи. " - - uid: 27561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.7299113,-36.27495 - parent: 2 - - type: Paper - content: "Протокол 4432\nГенетические исследования были остановлены. Попытки уничтожить образцы не увенчались успехом. " - - uid: 27562 - components: - - type: Transform - pos: -19.534334,-29.354733 - parent: 2 - - type: Paper - content: >2+ - - - - - Пока моё убежище окружают эти отвратительные животные, капитан похоже спрятался в резервной рубке, вход в неё спрятан за шкафом в галерее, и они его не скоро найдут. - - - Все кроме меня и капитана потеряли свою человечность и теперь похожи на монстров. - - - Надежды на спасение нет... нас ждёт та же участь... - - uid: 27563 components: - type: Transform @@ -205125,18 +195531,6 @@ entities: [bullet]доксарубиксадон [2] editingDisabled: True - - uid: 27569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.292738,-21.438 - parent: 2 - - type: Paper - content: > - Экспериментальный квантовый дестабилизационно-дислокационный транспондер телепортирует случайные вещи в радиусе 400 парсек на платформу перед вами. Требуется начать синхронизацию и послать калибровочный сигнал с резервного пульта. - - - Осторожно. Погрешность платформы перед вами около 500 метров. - uid: 27867 components: - type: Transform @@ -210978,6 +201372,11 @@ entities: parent: 2 - proto: PaperCaptainsThoughts entities: + - uid: 23496 + components: + - type: Transform + pos: 4.3480196,-31.49025 + parent: 2 - uid: 27582 components: - type: Transform @@ -211017,111 +201416,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.63809,13.955755 parent: 2 - - uid: 27589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.340697,-22.686184 - parent: 2 - - uid: 27590 - components: - - type: Transform - pos: 14.434447,-22.451809 - parent: 2 -- proto: PaperCargoInvoice - entities: - - uid: 16250 - components: - - type: Transform - parent: 16248 - - type: Paper - stampState: paper_stamp-cap - stampedBy: - - stampedColor: '#3681BBFF' - stampedName: UEG - - stampedColor: '#CC0000FF' - stampedName: DSE UEG - content: "[color=tan]░░░░░░░░░░░░░░░░░░░[/color] [bold][color=#A6A600] WAYBILL [/color][/bold] \r\n[color=tan]░░░░░░░▓▓▓▓█░░░░░░░[/color] [head=2][color=#FFC200] United[/color][/head]\r\n[color=tan]░░░░░███▓█████░░░░░[/color] [head=2][color=#FFC200] Government [/color][/head]\r\n[color=tan]░░░░██▓▓▓▓▓▓▓██░░░░[/color] [head=2][color=#FFC200] of the earth[/color][/head]\r\n[color=tan]░░░██▓██▓▓██▓▓▓▓░░░[/color] [color=black][head=1]――――――[/head] \r\n[color=tan]░█░████▓▓▓▓▓▓█▓▓░█░[/color] [head=3]FROM:[/head][color=#1E3F70][italic]0.0.0 Sun Earth[/italic][/color]\r\n[color=tan]██░░██▓▓▓▓▓▓▓██░░██[/color] \n[color=tan]███░░█▓██▓▓▓█▓░░███[/color] [head=3]SEND TO:[/head][color=#1E3F70][italic] 443.34.33[/italic][/color]\r\n[color=tan]░███░░░█▓▓▓▓░░░███░[/color] [color=#1E3F70][italic][/italic][/color][color=#1E3F70][italic] G900 Vasilisk[/italic][/color]\r \r\n[color=tan]░░░███░░░░░░░███░░░[/color] [head=3]Codes:[/head][color=#1E3F70] [italic] era L2950.0[/italic][/color]\r\n[color=tan]░░░░████[color=#FFC200][head=1]UEG[/head][color=tan]████░░░░[/color][color=black][head=1]――――――[/head]\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head][head=2]\r\nGOVERNMENT PROPERTY\n[/head][head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n[bold]Sent date:[/bold]\r\n[color=#1E3F70][italic]22:00; 15/09/2963[/italic][/color]\r\n[bold]Sender:[/bold] \r\n[color=#1E3F70][italic]Directorate of Special Expeditions[/italic][/color]\r\n\r\n[bold]Recipient:[/bold] \r\n[color=#1E3F70][italic]Vasilisk Project[/italic][/color]\n[head=1]―――――――――――――[/head]\n\n\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n [color=#565A5A][bolditalic]Place for seals[/bolditalic][/color]\n\n" - - type: Physics - canCollide: False - - uid: 16253 - components: - - type: Transform - parent: 16251 - - type: Paper - stampState: paper_stamp-cap - stampedBy: - - stampedColor: '#3681BBFF' - stampedName: UEG - - stampedColor: '#CC0000FF' - stampedName: DSE UEG - content: "[color=tan]░░░░░░░░░░░░░░░░░░░[/color] [bold][color=#A6A600] WAYBILL [/color][/bold] \r\n[color=tan]░░░░░░░▓▓▓▓█░░░░░░░[/color] [head=2][color=#FFC200] United[/color][/head]\r\n[color=tan]░░░░░███▓█████░░░░░[/color] [head=2][color=#FFC200] Government [/color][/head]\r\n[color=tan]░░░░██▓▓▓▓▓▓▓██░░░░[/color] [head=2][color=#FFC200] of the earth[/color][/head]\r\n[color=tan]░░░██▓██▓▓██▓▓▓▓░░░[/color] [color=black][head=1]――――――[/head] \r\n[color=tan]░█░████▓▓▓▓▓▓█▓▓░█░[/color] [head=3]FROM:[/head][color=#1E3F70][italic]0.0.0 Sun Earth[/italic][/color]\r\n[color=tan]██░░██▓▓▓▓▓▓▓██░░██[/color] \n[color=tan]███░░█▓██▓▓▓█▓░░███[/color] [head=3]SEND TO:[/head][color=#1E3F70][italic] 443.34.33[/italic][/color]\r\n[color=tan]░███░░░█▓▓▓▓░░░███░[/color] [color=#1E3F70][italic][/italic][/color][color=#1E3F70][italic] G900 Vasilisk[/italic][/color]\r \r\n[color=tan]░░░███░░░░░░░███░░░[/color] [head=3]Codes:[/head][color=#1E3F70] [italic] era L2950.0[/italic][/color]\r\n[color=tan]░░░░████[color=#FFC200][head=1]UEG[/head][color=tan]████░░░░[/color][color=black][head=1]――――――[/head]\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head][head=2]\r\nGOVERNMENT PROPERTY\n[/head][head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n[bold]Sent date:[/bold]\r\n[color=#1E3F70][italic]22:00; 15/09/2963[/italic][/color]\r\n[bold]Sender:[/bold] \r\n[color=#1E3F70][italic]Directorate of Special Expeditions[/italic][/color]\r\n\r\n[bold]Recipient:[/bold] \r\n[color=#1E3F70][italic]Vasilisk Project[/italic][/color]\n[head=1]―――――――――――――[/head]\n\n\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n [color=#565A5A][bolditalic]Place for seals[/bolditalic][/color]\n\n" - - type: Physics - canCollide: False - - uid: 16256 - components: - - type: Transform - parent: 16254 - - type: Paper - stampState: paper_stamp-cap - stampedBy: - - stampedColor: '#3681BBFF' - stampedName: UEG - - stampedColor: '#CC0000FF' - stampedName: DSE UEG - content: "[color=tan]░░░░░░░░░░░░░░░░░░░[/color] [bold][color=#A6A600] WAYBILL [/color][/bold] \r\n[color=tan]░░░░░░░▓▓▓▓█░░░░░░░[/color] [head=2][color=#FFC200] United[/color][/head]\r\n[color=tan]░░░░░███▓█████░░░░░[/color] [head=2][color=#FFC200] Government [/color][/head]\r\n[color=tan]░░░░██▓▓▓▓▓▓▓██░░░░[/color] [head=2][color=#FFC200] of the earth[/color][/head]\r\n[color=tan]░░░██▓██▓▓██▓▓▓▓░░░[/color] [color=black][head=1]――――――[/head] \r\n[color=tan]░█░████▓▓▓▓▓▓█▓▓░█░[/color] [head=3]FROM:[/head][color=#1E3F70][italic]0.0.0 Sun Earth[/italic][/color]\r\n[color=tan]██░░██▓▓▓▓▓▓▓██░░██[/color] \n[color=tan]███░░█▓██▓▓▓█▓░░███[/color] [head=3]SEND TO:[/head][color=#1E3F70][italic] 443.34.33[/italic][/color]\r\n[color=tan]░███░░░█▓▓▓▓░░░███░[/color] [color=#1E3F70][italic][/italic][/color][color=#1E3F70][italic] G900 Vasilisk[/italic][/color]\r \r\n[color=tan]░░░███░░░░░░░███░░░[/color] [head=3]Codes:[/head][color=#1E3F70] [italic] era L2950.0[/italic][/color]\r\n[color=tan]░░░░████[color=#FFC200][head=1]UEG[/head][color=tan]████░░░░[/color][color=black][head=1]――――――[/head]\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head][head=2]\r\nGOVERNMENT PROPERTY\n[/head][head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n[bold]Sent date:[/bold]\r\n[color=#1E3F70][italic]22:00; 15/09/2963[/italic][/color]\r\n[bold]Sender:[/bold] \r\n[color=#1E3F70][italic]Directorate of Special Expeditions[/italic][/color]\r\n\r\n[bold]Recipient:[/bold] \r\n[color=#1E3F70][italic]Vasilisk Project[/italic][/color]\n[head=1]―――――――――――――[/head]\n\n\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n [color=#565A5A][bolditalic]Place for seals[/bolditalic][/color]\n\n" - - type: Physics - canCollide: False - - uid: 16259 - components: - - type: Transform - parent: 16257 - - type: Paper - stampState: paper_stamp-cap - stampedBy: - - stampedColor: '#3681BBFF' - stampedName: UEG - - stampedColor: '#CC0000FF' - stampedName: DSE UEG - content: "[color=tan]░░░░░░░░░░░░░░░░░░░[/color] [bold][color=#A6A600] WAYBILL [/color][/bold] \r\n[color=tan]░░░░░░░▓▓▓▓█░░░░░░░[/color] [head=2][color=#FFC200] United[/color][/head]\r\n[color=tan]░░░░░███▓█████░░░░░[/color] [head=2][color=#FFC200] Government [/color][/head]\r\n[color=tan]░░░░██▓▓▓▓▓▓▓██░░░░[/color] [head=2][color=#FFC200] of the earth[/color][/head]\r\n[color=tan]░░░██▓██▓▓██▓▓▓▓░░░[/color] [color=black][head=1]――――――[/head] \r\n[color=tan]░█░████▓▓▓▓▓▓█▓▓░█░[/color] [head=3]FROM:[/head][color=#1E3F70][italic]0.0.0 Sun Earth[/italic][/color]\r\n[color=tan]██░░██▓▓▓▓▓▓▓██░░██[/color] \n[color=tan]███░░█▓██▓▓▓█▓░░███[/color] [head=3]SEND TO:[/head][color=#1E3F70][italic] 443.34.33[/italic][/color]\r\n[color=tan]░███░░░█▓▓▓▓░░░███░[/color] [color=#1E3F70][italic][/italic][/color][color=#1E3F70][italic] G900 Vasilisk[/italic][/color]\r \r\n[color=tan]░░░███░░░░░░░███░░░[/color] [head=3]Codes:[/head][color=#1E3F70] [italic] era L2950.0[/italic][/color]\r\n[color=tan]░░░░████[color=#FFC200][head=1]UEG[/head][color=tan]████░░░░[/color][color=black][head=1]――――――[/head]\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head][head=2]\r\nGOVERNMENT PROPERTY\n[/head][head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n[bold]Sent date:[/bold]\r\n[color=#1E3F70][italic]22:00; 15/09/2963[/italic][/color]\r\n[bold]Sender:[/bold] \r\n[color=#1E3F70][italic]Directorate of Special Expeditions[/italic][/color]\r\n\r\n[bold]Recipient:[/bold] \r\n[color=#1E3F70][italic]Vasilisk Project[/italic][/color]\n[head=1]―――――――――――――[/head]\n\n\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n [color=#565A5A][bolditalic]Place for seals[/bolditalic][/color]\n\n" - - type: Physics - canCollide: False - - uid: 16288 - components: - - type: Transform - parent: 16287 - - type: Paper - stampState: paper_stamp-cap - stampedBy: - - stampedColor: '#3681BBFF' - stampedName: UEG - - stampedColor: '#CC0000FF' - stampedName: DSE UEG - content: "[color=tan]░░░░░░░░░░░░░░░░░░░[/color] [bold][color=#A6A600] WAYBILL [/color][/bold] \r\n[color=tan]░░░░░░░▓▓▓▓█░░░░░░░[/color] [head=2][color=#FFC200] United[/color][/head]\r\n[color=tan]░░░░░███▓█████░░░░░[/color] [head=2][color=#FFC200] Government [/color][/head]\r\n[color=tan]░░░░██▓▓▓▓▓▓▓██░░░░[/color] [head=2][color=#FFC200] of the earth[/color][/head]\r\n[color=tan]░░░██▓██▓▓██▓▓▓▓░░░[/color] [color=black][head=1]――――――[/head] \r\n[color=tan]░█░████▓▓▓▓▓▓█▓▓░█░[/color] [head=3]FROM:[/head][color=#1E3F70][italic]0.0.0 Sun Earth[/italic][/color]\r\n[color=tan]██░░██▓▓▓▓▓▓▓██░░██[/color] \n[color=tan]███░░█▓██▓▓▓█▓░░███[/color] [head=3]SEND TO:[/head][color=#1E3F70][italic] 443.34.33[/italic][/color]\r\n[color=tan]░███░░░█▓▓▓▓░░░███░[/color] [color=#1E3F70][italic][/italic][/color][color=#1E3F70][italic] G900 Vasilisk[/italic][/color]\r \r\n[color=tan]░░░███░░░░░░░███░░░[/color] [head=3]Codes:[/head][color=#1E3F70] [italic] era L2950.0[/italic][/color]\r\n[color=tan]░░░░████[color=#FFC200][head=1]UEG[/head][color=tan]████░░░░[/color][color=black][head=1]――――――[/head]\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head][head=2]\r\nGOVERNMENT PROPERTY\n[/head][head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n[bold]Sent date:[/bold]\r\n[color=#1E3F70][italic]22:00; 15/09/2963[/italic][/color]\r\n[bold]Sender:[/bold] \r\n[color=#1E3F70][italic]Directorate of Special Expeditions[/italic][/color]\r\n\r\n[bold]Recipient:[/bold] \r\n[color=#1E3F70][italic]Vasilisk Project[/italic][/color]\n[head=1]―――――――――――――[/head]\n\n\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n [color=#565A5A][bolditalic]Place for seals[/bolditalic][/color]\n\n" - - type: Physics - canCollide: False - - uid: 16291 - components: - - type: Transform - parent: 16290 - - type: Paper - stampState: paper_stamp-cap - stampedBy: - - stampedColor: '#3681BBFF' - stampedName: UEG - - stampedColor: '#CC0000FF' - stampedName: DSE UEG - content: "[color=tan]░░░░░░░░░░░░░░░░░░░[/color] [bold][color=#A6A600] WAYBILL [/color][/bold] \r\n[color=tan]░░░░░░░▓▓▓▓█░░░░░░░[/color] [head=2][color=#FFC200] United[/color][/head]\r\n[color=tan]░░░░░███▓█████░░░░░[/color] [head=2][color=#FFC200] Government [/color][/head]\r\n[color=tan]░░░░██▓▓▓▓▓▓▓██░░░░[/color] [head=2][color=#FFC200] of the earth[/color][/head]\r\n[color=tan]░░░██▓██▓▓██▓▓▓▓░░░[/color] [color=black][head=1]――――――[/head] \r\n[color=tan]░█░████▓▓▓▓▓▓█▓▓░█░[/color] [head=3]FROM:[/head][color=#1E3F70][italic]0.0.0 Sun Earth[/italic][/color]\r\n[color=tan]██░░██▓▓▓▓▓▓▓██░░██[/color] \n[color=tan]███░░█▓██▓▓▓█▓░░███[/color] [head=3]SEND TO:[/head][color=#1E3F70][italic] 443.34.33[/italic][/color]\r\n[color=tan]░███░░░█▓▓▓▓░░░███░[/color] [color=#1E3F70][italic][/italic][/color][color=#1E3F70][italic] G900 Vasilisk[/italic][/color]\r \r\n[color=tan]░░░███░░░░░░░███░░░[/color] [head=3]Codes:[/head][color=#1E3F70] [italic] era L2950.0[/italic][/color]\r\n[color=tan]░░░░████[color=#FFC200][head=1]UEG[/head][color=tan]████░░░░[/color][color=black][head=1]――――――[/head]\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head][head=2]\r\nGOVERNMENT PROPERTY\n[/head][head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n[bold]Sent date:[/bold]\r\n[color=#1E3F70][italic]22:00; 15/09/2963[/italic][/color]\r\n[bold]Sender:[/bold] \r\n[color=#1E3F70][italic]Directorate of Special Expeditions[/italic][/color]\r\n\r\n[bold]Recipient:[/bold] \r\n[color=#1E3F70][italic]Vasilisk Project[/italic][/color]\n[head=1]―――――――――――――[/head]\n\n\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n [color=#565A5A][bolditalic]Place for seals[/bolditalic][/color]\n\n" - - type: Physics - canCollide: False -- proto: PaperDoor - entities: - - uid: 27591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-24.5 - parent: 2 - proto: PaperOffice entities: - uid: 27592 @@ -211198,26 +201492,6 @@ entities: Срочники - Забыли свой номер - - - uid: 27596 - components: - - type: Transform - pos: 20.451714,-17.492172 - parent: 2 - - type: Paper - content: >- - Отчёт поставок - - 2.2.29 4 специальных ящика от ОПЗ - - 2.3.29 2 оружейных ящика от ОПЗ - - 2.4.29 7 тонн необработанной руды от Gefest - - 2.5.29 3 контейнера от NanoTrasen - - 2.6.29 3 контейнера от Conarex - - 2.7.29 особый груз без накладных - proto: PaperScrap entities: - uid: 27597 @@ -211252,6 +201526,19 @@ entities: - type: Transform pos: 64.5,-60.5 parent: 2 +- proto: ParticleAcceleratorEmitterFore + entities: + - uid: 14721 + components: + - type: MetaData + name: ЛУЧ СМЕРТИ + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-20.5 + parent: 2 + missingComponents: + - ParticleAcceleratorEmitter + - ParticleAcceleratorPart - proto: ParticleAcceleratorEmitterForeUnfinished entities: - uid: 42461 @@ -211291,12 +201578,33 @@ entities: parent: 2 - proto: ParticleAcceleratorFuelChamber entities: + - uid: 15145 + components: + - type: MetaData + name: топливная камера ЛУЧА СМЕРТИ + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-22.5 + parent: 2 - uid: 27606 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-59.5 parent: 2 +- proto: ParticleAcceleratorPowerBox + entities: + - uid: 14720 + components: + - type: MetaData + name: силовая установка ЛУЧА СМЕРТИ + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-21.5 + parent: 2 + missingComponents: + - ParticleAcceleratorPowerBox + - ParticleAcceleratorPart - proto: ParticleAcceleratorPowerBoxUnfinished entities: - uid: 27607 @@ -211334,6 +201642,11 @@ entities: parent: 40828 - proto: PartRodMetal1 entities: + - uid: 12209 + components: + - type: Transform + pos: -3.3590202,-19.536882 + parent: 2 - uid: 27615 components: - type: Transform @@ -211400,24 +201713,6 @@ entities: - type: Transform pos: -85.493996,0.65355086 parent: 2 - - uid: 27627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5863404,-24.63628 - parent: 2 - - uid: 27628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.7425904,-24.651905 - parent: 2 - - uid: 27629 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.6332154,-24.88628 - parent: 2 - proto: PartRodMetal10 entities: - uid: 27630 @@ -211485,6 +201780,8 @@ entities: rot: -1.5707963267948966 rad pos: 0.6359317,27.496674 parent: 2 + - type: WarpPoint + location: я-12 - uid: 27639 components: - type: Transform @@ -211588,17 +201885,17 @@ entities: - type: Transform pos: 52.612278,-9.527596 parent: 2 - - uid: 27660 + - uid: 29260 components: - type: Transform - pos: -18.945475,-28.844828 + pos: -30.590828,-112.39365 parent: 2 - proto: PenExploding entities: - uid: 27661 components: - type: Transform - pos: -30.615345,-112.339836 + pos: 48.358765,23.149218 parent: 2 - proto: PersonalAI entities: @@ -211639,12 +201936,6 @@ entities: parent: 2 - proto: PetCarrier entities: - - uid: 27670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-22.5 - parent: 2 - uid: 27671 components: - type: Transform @@ -212001,109 +202292,564 @@ entities: parent: 46 - type: Physics canCollide: False -- proto: PinionAirlock +- proto: PinpointerNuclear entities: - - uid: 27683 + - uid: 27690 components: - type: Transform - pos: 2.5,-47.5 + pos: 8.972797,13.591203 parent: 2 - - uid: 27684 + - uid: 43379 + components: + - type: Transform + parent: 41096 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlasmaCanister + entities: + - uid: 27694 components: - type: Transform - pos: -9.5,-29.5 + pos: 31.5,-93.5 parent: 2 - - uid: 27685 + - uid: 27695 components: - type: Transform - pos: -9.5,-30.5 + pos: -48.5,-59.5 parent: 2 -- proto: PinionAirlockGlass + - uid: 27696 + components: + - type: Transform + pos: 38.5,-49.5 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional entities: - - uid: 27686 + - uid: 7088 components: - type: Transform - pos: 6.5,-52.5 + rot: -1.5707963267948966 rad + pos: -1.5,-48.5 parent: 2 - - uid: 27687 + - uid: 7089 components: - type: Transform - pos: 5.5,-52.5 + rot: -1.5707963267948966 rad + pos: -1.5,-47.5 parent: 2 - - uid: 27688 + - uid: 7097 components: - type: Transform - pos: 3.5,-52.5 + rot: -1.5707963267948966 rad + pos: 2.5,-47.5 parent: 2 - - type: Door - secondsUntilStateChange: -190826.28 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - uid: 27689 + - uid: 7099 components: - type: Transform - pos: 2.5,-52.5 + rot: -1.5707963267948966 rad + pos: 2.5,-48.5 parent: 2 - - type: Door - secondsUntilStateChange: -190827.02 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True -- proto: PinpointerNuclear - entities: - - uid: 27690 + - uid: 7369 components: - type: Transform - pos: 8.972797,13.591203 + rot: 1.5707963267948966 rad + pos: 2.5,-62.5 parent: 2 - - uid: 43379 + - uid: 7370 components: - type: Transform - parent: 41096 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PirateFlag - entities: - - uid: 27691 + rot: 1.5707963267948966 rad + pos: 2.5,-61.5 + parent: 2 + - uid: 7371 components: - type: Transform - pos: 8.5,-13.5 + pos: 3.5,-60.5 parent: 2 - - uid: 27692 + - uid: 7372 components: - type: Transform - pos: 12.5,-13.5 + rot: 1.5707963267948966 rad + pos: -1.5,-61.5 parent: 2 -- proto: PirateHandyFlag - entities: - - uid: 27693 + - uid: 7373 components: - type: Transform - pos: 10.70426,-24.148893 + rot: 1.5707963267948966 rad + pos: -1.5,-62.5 parent: 2 -- proto: PlasmaCanister - entities: - - uid: 27694 + - uid: 7374 components: - type: Transform - pos: 31.5,-93.5 + pos: -2.5,-60.5 parent: 2 - - uid: 27695 + - uid: 7382 components: - type: Transform - pos: -48.5,-59.5 + rot: -1.5707963267948966 rad + pos: -0.5,-56.5 parent: 2 - - uid: 27696 + - uid: 7386 components: - type: Transform - pos: 38.5,-49.5 + rot: 1.5707963267948966 rad + pos: 1.5,-54.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-54.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-54.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-55.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-55.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-54.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-54.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-60.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-62.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-61.5 + parent: 2 + - uid: 7396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-61.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-62.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-60.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-56.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - uid: 7415 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + pos: -8.5,-52.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + pos: -7.5,-52.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-52.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-52.5 + parent: 2 + - uid: 7525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-46.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-47.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-47.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-46.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-55.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-50.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-50.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + pos: -13.5,-50.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + pos: -15.5,-50.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-47.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-48.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-47.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-48.5 + parent: 2 + - uid: 9939 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 10010 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 2 + - uid: 10011 + components: + - type: Transform + pos: -10.5,-50.5 + parent: 2 + - uid: 10012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-50.5 + parent: 2 + - uid: 10013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-50.5 + parent: 2 + - uid: 10039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-50.5 + parent: 2 + - uid: 10077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-43.5 + parent: 2 + - uid: 10086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 2 + - uid: 12216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-23.5 + parent: 2 + - uid: 12259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-42.5 + parent: 2 + - uid: 12260 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-29.5 + parent: 2 + - uid: 15847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-55.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-55.5 + parent: 2 + - uid: 15882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-31.5 + parent: 2 + - uid: 15883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 2 + - uid: 15900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-31.5 + parent: 2 + - uid: 15901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 2 + - uid: 16293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-55.5 + parent: 2 + - uid: 16508 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 2 + - uid: 16514 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 2 + - uid: 18251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 2 + - uid: 18252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-23.5 + parent: 2 + - uid: 18253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 2 + - uid: 18254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 2 + - uid: 18260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 2 + - uid: 18261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 2 + - uid: 19828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-29.5 + parent: 2 + - uid: 20027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 2 + - uid: 20052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-30.5 + parent: 2 + - uid: 20338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 2 + - uid: 23278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-51.5 + parent: 2 + - uid: 23291 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 2 + - uid: 23292 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 2 + - uid: 23433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 2 + - uid: 23442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 2 + - uid: 23443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-24.5 + parent: 2 + - uid: 23444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 + - uid: 23445 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 23446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 2 + - uid: 23448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 + - uid: 23461 + components: + - type: Transform + pos: 12.5,-55.5 + parent: 2 + - uid: 23556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-29.5 + parent: 2 + - uid: 23559 + components: + - type: Transform + pos: -14.5,-29.5 parent: 2 -- proto: PlasmaReinforcedWindowDirectional - entities: - uid: 27697 components: - type: Transform @@ -212221,6 +202967,18 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-3.5 parent: 2 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 16509 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 2 + - uid: 23279 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 - proto: PlasmaWindoorSecureChemistryLocked entities: - uid: 27714 @@ -212247,6 +203005,12 @@ entities: parent: 2 - proto: PlasmaWindoorSecureScienceLocked entities: + - uid: 23459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-55.5 + parent: 2 - uid: 27719 components: - type: Transform @@ -212391,79 +203155,22 @@ entities: - type: Transform pos: 41.5,-69.5 parent: 2 -- proto: PlasticFlapsClear +- proto: PlastitaniumWindowIndestructible entities: - - uid: 27739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-25.5 - parent: 2 - - uid: 27740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 2 - - uid: 27741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-25.5 - parent: 2 - - uid: 27742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-20.5 - parent: 2 -- proto: PlastitaniumWindow - entities: - - uid: 27743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-31.5 - parent: 2 - - uid: 27744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-32.5 - parent: 2 - - uid: 27745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-31.5 - parent: 2 - - type: AntiAnomalyZone - zoneRadius: 20 - - uid: 27746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-31.5 - parent: 2 - - uid: 27747 + - uid: 17712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-16.5 + pos: -0.5,-16.5 parent: 2 -- proto: PlastitaniumWindowDiagonal - entities: - - uid: 27748 + - uid: 17713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-15.5 + pos: 1.5,-16.5 parent: 2 - - uid: 27749 + - uid: 17714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-17.5 + pos: 0.5,-16.5 parent: 2 - proto: PlayerStationAi entities: @@ -212472,15 +203179,6 @@ entities: - type: Transform pos: 98.5,-88.5 parent: 2 -- proto: PlayerStationAiEmpty - entities: - - uid: 27751 - components: - - type: MetaData - name: древний ИИ - - type: Transform - pos: 15.5,-16.5 - parent: 2 - proto: Plunger entities: - uid: 26571 @@ -212552,6 +203250,20 @@ entities: - type: Transform pos: -26.5,-115.5 parent: 2 +- proto: PlushieLizardInversed + entities: + - uid: 23256 + components: + - type: Transform + pos: 17.512989,-57.445877 + parent: 2 +- proto: PlushieLizardMirrored + entities: + - uid: 20002 + components: + - type: Transform + pos: -15.332737,-55.509674 + parent: 2 - proto: PlushieNar entities: - uid: 27765 @@ -212630,11 +203342,38 @@ entities: - type: InsideEntityStorage - proto: PlushieSpaceLizard entities: + - uid: 12258 + components: + - type: Transform + pos: -14.410862,-55.540924 + parent: 2 + - uid: 18269 + components: + - type: Transform + pos: -17.383453,-30.390007 + parent: 2 - uid: 27774 components: - type: Transform pos: -36.339783,-86.55919 parent: 2 +- proto: PlushieXeno + entities: + - uid: 10001 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 2 + - uid: 10059 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 2 + - uid: 10060 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 2 - proto: PonderingOrb entities: - uid: 27776 @@ -212687,6 +203426,11 @@ entities: parent: 2 - proto: PortableGeneratorJrPacman entities: + - uid: 15073 + components: + - type: Transform + pos: -12.5,-61.5 + parent: 2 - uid: 27785 components: - type: Transform @@ -212837,12 +203581,6 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-93.5 parent: 2 - - uid: 27812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-35.5 - parent: 2 - proto: PosterContrabandBorgFancy entities: - uid: 27813 @@ -212850,18 +203588,6 @@ entities: - type: Transform pos: -36.5,-56.5 parent: 2 - - uid: 27814 - components: - - type: Transform - pos: -21.5,-50.5 - parent: 2 -- proto: PosterContrabandBorgFancyv2 - entities: - - uid: 27815 - components: - - type: Transform - pos: -21.5,-53.5 - parent: 2 - proto: PosterContrabandClown entities: - uid: 27816 @@ -212942,11 +203668,24 @@ entities: parent: 2 - proto: PosterContrabandLustyExomorph entities: + - uid: 15003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 2 - uid: 27825 components: - type: Transform pos: 38.5,-71.5 parent: 2 +- proto: PosterContrabandMaskedMen + entities: + - uid: 23370 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 2 - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 27826 @@ -212970,11 +203709,24 @@ entities: parent: 2 - proto: PosterContrabandSpaceCube entities: + - uid: 7352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-40.5 + parent: 2 - uid: 27829 components: - type: Transform pos: 33.5,-18.5 parent: 2 +- proto: PosterContrabandSyndicatePistol + entities: + - uid: 23289 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 2 - proto: PosterContrabandTheBigGasTruth entities: - uid: 27830 @@ -212985,6 +203737,18 @@ entities: parent: 2 - proto: PosterContrabandUnreadableAnnouncement entities: + - uid: 14715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-38.5 + parent: 2 + - uid: 27689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-37.5 + parent: 2 - uid: 43340 components: - type: Transform @@ -213016,11 +203780,6 @@ entities: - type: Transform pos: -45.5,-62.5 parent: 2 - - uid: 27834 - components: - - type: Transform - pos: 17.5,-35.5 - parent: 2 - proto: PosterLegitAnatomyPoster entities: - uid: 27835 @@ -213342,16 +204101,6 @@ entities: canCollide: False - proto: PottedPlant0 entities: - - uid: 27871 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 2 - - uid: 27872 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 2 - uid: 27873 components: - type: Transform @@ -213376,6 +204125,11 @@ entities: parent: 2 - proto: PottedPlant10 entities: + - uid: 10033 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 - uid: 27877 components: - type: Transform @@ -213429,10 +204183,10 @@ entities: parent: 2 - proto: PottedPlant14 entities: - - uid: 27885 + - uid: 10005 components: - type: Transform - pos: -3.5,-17.5 + pos: -3.5,-55.5 parent: 2 - uid: 27886 components: @@ -213492,20 +204246,8 @@ entities: - type: Transform pos: -70.5,-45.5 parent: 2 -- proto: PottedPlant19 - entities: - - uid: 27896 - components: - - type: Transform - pos: 20.5,-28.5 - parent: 2 - proto: PottedPlant2 entities: - - uid: 27897 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 2 - uid: 27898 components: - type: Transform @@ -213518,6 +204260,11 @@ entities: parent: 2 - proto: PottedPlant21 entities: + - uid: 10008 + components: + - type: Transform + pos: -3.5,-53.5 + parent: 2 - uid: 27900 components: - type: Transform @@ -213533,13 +204280,18 @@ entities: - type: Transform pos: 56.5,-7.5 parent: 2 - - uid: 27903 +- proto: PottedPlant22 + entities: + - uid: 10067 components: - type: Transform - pos: -1.5,-26.5 + pos: 1.5,-49.5 + parent: 2 + - uid: 10068 + components: + - type: Transform + pos: -0.5,-48.5 parent: 2 -- proto: PottedPlant22 - entities: - uid: 27904 components: - type: Transform @@ -213564,42 +204316,6 @@ entities: - type: Transform pos: 29.5,-75.5 parent: 2 -- proto: PottedPlant27 - entities: - - uid: 27908 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 2 -- proto: PottedPlant28 - entities: - - uid: 27909 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 2 - - uid: 27910 - components: - - type: Transform - pos: 18.5,-35.5 - parent: 2 -- proto: PottedPlant29 - entities: - - uid: 27911 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 2 - - uid: 27912 - components: - - type: Transform - pos: -9.5,-12.5 - parent: 2 - - uid: 27913 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 2 - proto: PottedPlant3 entities: - uid: 27914 @@ -213607,13 +204323,6 @@ entities: - type: Transform pos: 3.5,6.5 parent: 2 -- proto: PottedPlant30 - entities: - - uid: 27915 - components: - - type: Transform - pos: 14.5,-35.5 - parent: 2 - proto: PottedPlant4 entities: - uid: 27916 @@ -213630,33 +204339,25 @@ entities: parent: 2 - proto: PottedPlant6 entities: - - uid: 27918 - components: - - type: Transform - pos: -65.5,9.5 - parent: 2 -- proto: PottedPlant8 - entities: - - uid: 27919 - components: - - type: Transform - pos: -7.5,-12.5 - parent: 2 - - uid: 27920 + - uid: 10009 components: - type: Transform - pos: -6.5,-12.5 + pos: -4.5,-53.5 parent: 2 - - uid: 27921 + - uid: 27918 components: - type: Transform - pos: -5.5,-12.5 + pos: -65.5,9.5 parent: 2 - - uid: 27922 +- proto: PottedPlant7 + entities: + - uid: 9972 components: - type: Transform - pos: -4.5,-12.5 + pos: -5.5,-53.5 parent: 2 +- proto: PottedPlant8 + entities: - uid: 27923 components: - type: Transform @@ -213669,6 +204370,11 @@ entities: parent: 2 - proto: PottedPlantAlt0 entities: + - uid: 10032 + components: + - type: Transform + pos: -5.5,-52.5 + parent: 2 - uid: 27925 components: - type: Transform @@ -213698,10 +204404,10 @@ entities: parent: 2 - proto: PottedPlantAlt2 entities: - - uid: 27930 + - uid: 10002 components: - type: Transform - pos: 3.5,-22.5 + pos: -3.5,-57.5 parent: 2 - uid: 27931 components: @@ -213716,6 +204422,11 @@ entities: ent: 27932 - proto: PottedPlantAlt3 entities: + - uid: 10006 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 2 - uid: 27933 components: - type: Transform @@ -213746,33 +204457,19 @@ entities: - type: Transform pos: -39.5,-57.5 parent: 2 - - uid: 27939 - components: - - type: Transform - pos: 3.5,-29.5 - parent: 2 - proto: PottedPlantAlt5 entities: - - uid: 15899 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 15900 - - uid: 27941 + - uid: 27943 components: - type: Transform - pos: -14.5,-11.5 + pos: -66.5,-45.5 parent: 2 - - uid: 27943 +- proto: PottedPlantAlt6 + entities: + - uid: 10003 components: - type: Transform - pos: -66.5,-45.5 + pos: -3.5,-56.5 parent: 2 - proto: PottedPlantAlt7 entities: @@ -213781,21 +204478,6 @@ entities: - type: Transform pos: 52.5,-5.5 parent: 2 - - uid: 27946 - components: - - type: Transform - pos: -12.5,-11.5 - parent: 2 - - uid: 27947 - components: - - type: Transform - pos: -15.5,-11.5 - parent: 2 - - uid: 27948 - components: - - type: Transform - pos: -16.5,-11.5 - parent: 2 - proto: PottedPlantAlt8 entities: - uid: 27949 @@ -213815,11 +204497,6 @@ entities: - type: Transform pos: 54.5,7.5 parent: 2 - - uid: 27951 - components: - - type: Transform - pos: -2.5,-12.5 - parent: 2 - uid: 27952 components: - type: Transform @@ -213832,6 +204509,31 @@ entities: parent: 2 - proto: PottedPlantRandom entities: + - uid: 15293 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 2 + - uid: 15439 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 2 + - uid: 15440 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 2 + - uid: 15441 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 2 + - uid: 15442 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 2 - uid: 16160 components: - type: Transform @@ -214096,11 +204798,6 @@ entities: parent: 2 - proto: PottedPlantRD entities: - - uid: 28014 - components: - - type: Transform - pos: -7.5,-19.5 - parent: 2 - uid: 28015 components: - type: MetaData @@ -214150,10 +204847,10 @@ entities: parent: 41669 - proto: PowerCellAntiqueProto entities: - - uid: 28018 + - uid: 23490 components: - type: Transform - pos: -15.361511,-52.11536 + pos: 11.624416,-31.51051 parent: 2 - proto: PowerCellHigh entities: @@ -214167,13 +204864,6 @@ entities: - type: Transform pos: 2.360878,2.53125 parent: 40666 -- proto: PowerCellHyper - entities: - - uid: 28019 - components: - - type: Transform - pos: -18.846472,-46.121193 - parent: 2 - proto: PowerCellPotato entities: - uid: 55 @@ -214199,6 +204889,11 @@ entities: - type: Transform pos: 4.5,-4.5 parent: 2 + - uid: 23373 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 - uid: 28020 components: - type: Transform @@ -214254,11 +204949,6 @@ entities: - type: Transform pos: -56.5,-40.5 parent: 2 - - uid: 28031 - components: - - type: Transform - pos: -15.5,-52.5 - parent: 2 - uid: 28032 components: - type: Transform @@ -214325,6 +205015,373 @@ entities: rot: 1.5707963267948966 rad pos: 93.5,-52.5 parent: 2 + - uid: 7461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-27.5 + parent: 2 + - uid: 9938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-54.5 + parent: 2 + - uid: 12227 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 2 + - uid: 14911 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 15519 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 15520 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - uid: 15540 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - uid: 15569 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-52.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-52.5 + parent: 2 + - uid: 15603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-46.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-47.5 + parent: 2 + - uid: 15612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-52.5 + parent: 2 + - uid: 15613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-57.5 + parent: 2 + - uid: 15614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-54.5 + parent: 2 + - uid: 15638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-48.5 + parent: 2 + - uid: 15656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-47.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-27.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 15784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-44.5 + parent: 2 + - uid: 15787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-42.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-42.5 + parent: 2 + - uid: 15804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-28.5 + parent: 2 + - uid: 15812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-31.5 + parent: 2 + - uid: 15824 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-43.5 + parent: 2 + - uid: 15842 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 15844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-36.5 + parent: 2 + - uid: 15845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-40.5 + parent: 2 + - uid: 15867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-41.5 + parent: 2 + - uid: 16492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-37.5 + parent: 2 + - uid: 23403 + components: + - type: Transform + pos: 15.5,-49.5 + parent: 2 + - uid: 23423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-58.5 + parent: 2 + - uid: 23474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-55.5 + parent: 2 + - uid: 23494 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 23516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-58.5 + parent: 2 + - uid: 23517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-58.5 + parent: 2 + - uid: 23518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-54.5 + parent: 2 + - uid: 23519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-33.5 + parent: 2 + - uid: 23520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-52.5 + parent: 2 + - uid: 23521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-35.5 + parent: 2 + - uid: 23524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 2 + - uid: 23525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 2 + - uid: 23526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 2 + - uid: 23527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-28.5 + parent: 2 + - uid: 23528 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 23530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-37.5 + parent: 2 + - uid: 23531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 2 + - uid: 23532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-35.5 + parent: 2 + - uid: 23533 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 23534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-30.5 + parent: 2 + - uid: 23535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-36.5 + parent: 2 + - uid: 23536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-36.5 + parent: 2 + - uid: 23537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-36.5 + parent: 2 + - uid: 23538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-39.5 + parent: 2 + - uid: 23539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-43.5 + parent: 2 + - uid: 23540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-46.5 + parent: 2 + - uid: 23541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-49.5 + parent: 2 + - uid: 23542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-41.5 + parent: 2 + - uid: 23543 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 2 + - uid: 23544 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 2 + - uid: 24773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-35.5 + parent: 2 - uid: 27385 components: - type: Transform @@ -214533,6 +205590,12 @@ entities: parent: 2 - proto: Poweredlight entities: + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 - uid: 2512 components: - type: Transform @@ -216787,12 +207850,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-13.5 parent: 2 - - uid: 28413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-16.5 - parent: 2 - proto: PoweredlightEmpty entities: - uid: 16438 @@ -217234,279 +208291,11 @@ entities: powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 28414 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 2 - - uid: 28415 - components: - - type: Transform - pos: 3.5,-50.5 - parent: 2 - - uid: 28416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-64.5 - parent: 2 - - uid: 28417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-61.5 - parent: 2 - - uid: 28418 - components: - - type: Transform - pos: -17.5,-42.5 - parent: 2 - - uid: 28419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 2 - - uid: 28420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-35.5 - parent: 2 - - uid: 28421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-63.5 - parent: 2 - - uid: 28422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-64.5 - parent: 2 - - uid: 28423 - components: - - type: Transform - pos: -9.5,-38.5 - parent: 2 - - uid: 28424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-29.5 - parent: 2 - - uid: 28425 - components: - - type: Transform - pos: -8.5,-32.5 - parent: 2 - - uid: 28426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-28.5 - parent: 2 - - uid: 28427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-36.5 - parent: 2 - - uid: 28428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-25.5 - parent: 2 - - uid: 28429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-44.5 - parent: 2 - - uid: 28430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-39.5 - parent: 2 - - uid: 28431 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 2 - - uid: 28432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-41.5 - parent: 2 - - uid: 28433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-48.5 - parent: 2 - - uid: 28434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-28.5 - parent: 2 - - uid: 28435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-15.5 - parent: 2 - - uid: 28436 - components: - - type: Transform - pos: 8.5,-53.5 - parent: 2 - - uid: 28437 - components: - - type: Transform - pos: 10.5,-46.5 - parent: 2 - - uid: 28438 - components: - - type: Transform - pos: 9.5,-34.5 - parent: 2 - - uid: 28439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-42.5 - parent: 2 - - uid: 28440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-54.5 - parent: 2 - - uid: 28441 - components: - - type: Transform - pos: -19.5,-45.5 - parent: 2 - - uid: 28442 - components: - - type: Transform - pos: 17.5,-48.5 - parent: 2 - - uid: 28443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-62.5 - parent: 2 - - uid: 28444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-54.5 - parent: 2 - - uid: 28445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-44.5 - parent: 2 - - uid: 28446 - components: - - type: Transform - pos: -13.5,-56.5 - parent: 2 - - uid: 28447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-26.5 - parent: 2 - - uid: 28448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-42.5 - parent: 2 - uid: 28449 components: - type: Transform pos: -61.5,-16.5 parent: 2 - - uid: 28450 - components: - - type: Transform - pos: -3.5,-56.5 - parent: 2 - - uid: 28451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-46.5 - parent: 2 - - uid: 28452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-54.5 - parent: 2 - - uid: 28453 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 2 - - uid: 28454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-29.5 - parent: 2 - - uid: 28455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-29.5 - parent: 2 - - uid: 28456 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-24.5 - parent: 2 - - uid: 28457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 - parent: 2 - - uid: 28458 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-27.5 - parent: 2 - - uid: 28459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-49.5 - parent: 2 - - uid: 28460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-50.5 - parent: 2 - - uid: 28461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-52.5 - parent: 2 - uid: 42936 components: - type: Transform @@ -217580,22 +208369,12 @@ entities: parent: 2 - type: PoweredLight on: False - - uid: 28462 - components: - - type: Transform - pos: -10.5,-12.5 - parent: 2 - uid: 28463 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-27.5 parent: 2 - - uid: 28464 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 2 - uid: 28465 components: - type: Transform @@ -217674,6 +208453,27 @@ entities: parent: 2 - proto: PoweredLightPostSmall entities: + - uid: 16642 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 16647 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 26499 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 26583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 2 - uid: 28468 components: - type: Transform @@ -217881,17 +208681,6 @@ entities: parent: 2 - type: PoweredLight on: False - - uid: 28503 - components: - - type: Transform - pos: 10.5,-12.5 - parent: 2 - - uid: 28504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-25.5 - parent: 2 - uid: 28505 components: - type: Transform @@ -217914,6 +208703,42 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-100.5 parent: 2 + - uid: 24774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-45.5 + parent: 2 + - uid: 24775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-39.5 + parent: 2 + - uid: 24777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-47.5 + parent: 2 + - uid: 24778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-36.5 + parent: 2 + - uid: 24779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-28.5 + parent: 2 + - uid: 24780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-46.5 + parent: 2 - uid: 25571 components: - type: Transform @@ -218693,12 +209518,6 @@ entities: - type: Transform pos: 78.5,-26.5 parent: 2 - - uid: 28650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-47.5 - parent: 2 - uid: 28651 components: - type: Transform @@ -219454,6 +210273,17 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,5.5 parent: 2 + - uid: 29211 + components: + - type: Transform + pos: -3.5,-68.5 + parent: 2 + - uid: 29232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-65.5 + parent: 2 - uid: 32243 components: - type: Transform @@ -219559,6 +210389,49 @@ entities: powerLoad: 0 - type: DamageOnInteract isDamageActive: False +- proto: PoweredWarmSmallLight + entities: + - uid: 24770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-56.5 + parent: 2 + - uid: 24771 + components: + - type: Transform + pos: 57.5,-49.5 + parent: 2 + - uid: 24772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-42.5 + parent: 2 + - uid: 24799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-84.5 + parent: 2 + - uid: 24800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-84.5 + parent: 2 + - uid: 24801 + components: + - type: Transform + pos: 54.5,-46.5 + parent: 2 +- proto: PowerSensor + entities: + - uid: 18266 + components: + - type: Transform + pos: -7.5877733,-50.1111 + parent: 2 - proto: PrefilledSyringe entities: - uid: 52 @@ -219591,26 +210464,6 @@ entities: - type: Transform pos: 37.452923,2.4793482 parent: 2 - - uid: 24709 - components: - - type: Transform - pos: 19.498938,14.442265 - parent: 2 - - uid: 25179 - components: - - type: Transform - pos: -17.457043,-12.524753 - parent: 2 - - uid: 26475 - components: - - type: Transform - pos: -16.485426,20.624804 - parent: 2 - - uid: 27608 - components: - - type: Transform - pos: -55.51513,-91.442764 - parent: 2 - uid: 27611 components: - type: Transform @@ -219627,15 +210480,13 @@ entities: - type: Transform pos: -41.552677,-98.53101 parent: 2 - - uid: 43639 - components: - - type: Transform - pos: 69.567955,-37.450817 - parent: 2 - - uid: 44249 +- proto: PressureControlledValve + entities: + - uid: 20441 components: - type: Transform - pos: 72.47154,-15.498541 + rot: 3.141592653589793 rad + pos: -11.5,-53.5 parent: 2 - proto: PrintedDocumentApplicationAccess entities: @@ -219783,6 +210634,13 @@ entities: - type: Transform pos: -39.5,-46.5 parent: 2 +- proto: ProximitySensor + entities: + - uid: 18271 + components: + - type: Transform + pos: -8.572148,-49.39235 + parent: 2 - proto: PsychBed entities: - uid: 28813 @@ -219841,6 +210699,11 @@ entities: - type: Transform pos: -70.5,-0.5 parent: 2 + - uid: 1351 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 2 - uid: 2014 components: - type: Transform @@ -219851,11 +210714,77 @@ entities: - type: Transform pos: -8.5,-98.5 parent: 2 + - uid: 7568 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-46.5 + parent: 2 + - uid: 9951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-59.5 + parent: 2 + - uid: 9984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-59.5 + parent: 2 + - uid: 10048 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 2 + - uid: 10049 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 2 + - uid: 10090 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 - uid: 12458 components: - type: Transform pos: -68.5,-15.5 parent: 2 + - uid: 14563 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 14680 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 2 + - uid: 14701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-43.5 + parent: 2 + - uid: 14702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-43.5 + parent: 2 + - uid: 14703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-43.5 + parent: 2 - uid: 15796 components: - type: Transform @@ -219867,16 +210796,59 @@ entities: - type: Transform pos: -55.5,-80.5 parent: 2 + - uid: 16507 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 2 - uid: 19751 components: - type: Transform pos: -4.5,-91.5 parent: 2 + - uid: 20006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-68.5 + parent: 2 + - uid: 23400 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 2 + - uid: 23430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-32.5 + parent: 2 + - uid: 23431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 2 + - uid: 23624 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 - uid: 24622 components: - type: Transform pos: 103.5,-50.5 parent: 2 + - uid: 24910 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 26574 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 - uid: 28820 components: - type: Transform @@ -220012,31 +210984,11 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-38.5 parent: 2 - - uid: 28844 - components: - - type: Transform - pos: 12.5,-21.5 - parent: 2 - uid: 28845 components: - type: Transform pos: 64.5,-19.5 parent: 2 - - uid: 28846 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 2 - - uid: 28847 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 2 - - uid: 28848 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 2 - uid: 28849 components: - type: Transform @@ -220054,11 +211006,6 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,13.5 parent: 2 - - uid: 28852 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 2 - uid: 28853 components: - type: Transform @@ -220071,11 +211018,6 @@ entities: rot: 3.141592653589793 rad pos: 61.5,-11.5 parent: 2 - - uid: 28855 - components: - - type: Transform - pos: -19.5,-27.5 - parent: 2 - uid: 28856 components: - type: Transform @@ -220594,11 +211536,6 @@ entities: - type: Transform pos: 59.5,-62.5 parent: 2 - - uid: 28949 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 2 - uid: 28950 components: - type: Transform @@ -220634,11 +211571,6 @@ entities: - type: Transform pos: 38.5,-83.5 parent: 2 - - uid: 28957 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 2 - uid: 28958 components: - type: Transform @@ -220806,47 +211738,11 @@ entities: - type: Transform pos: 71.5,-49.5 parent: 2 - - uid: 28992 - components: - - type: Transform - pos: 8.5,-15.5 - parent: 2 - - uid: 28993 - components: - - type: Transform - pos: 8.5,-23.5 - parent: 2 - - uid: 28994 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 2 - - uid: 28995 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 2 - uid: 28996 components: - type: Transform pos: -7.5,-4.5 parent: 2 - - uid: 28997 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 2 - - uid: 28998 - components: - - type: Transform - pos: -11.5,-35.5 - parent: 2 - - uid: 28999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-40.5 - parent: 2 - uid: 29000 components: - type: Transform @@ -220860,30 +211756,14 @@ entities: - uid: 29002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,19.5 - parent: 2 - - uid: 29003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,20.5 - parent: 2 - - uid: 29004 - components: - - type: Transform - pos: 20.5,-43.5 - parent: 2 - - uid: 29005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-36.5 + rot: 1.5707963267948966 rad + pos: -19.5,19.5 parent: 2 - - uid: 29006 + - uid: 29003 components: - type: Transform - pos: -5.5,-46.5 + rot: 1.5707963267948966 rad + pos: -19.5,20.5 parent: 2 - uid: 29007 components: @@ -220891,12 +211771,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-82.5 parent: 2 - - uid: 29008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-49.5 - parent: 2 - uid: 29009 components: - type: Transform @@ -220908,11 +211782,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,20.5 parent: 2 - - uid: 29011 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 2 - uid: 29012 components: - type: Transform @@ -221080,6 +211949,11 @@ entities: parent: 2 - proto: RadiationCollectorFullTank entities: + - uid: 19764 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 - uid: 29013 components: - type: Transform @@ -221126,232 +212000,339 @@ entities: - type: Transform pos: 2.7629585,2.780283 parent: 40666 -- proto: RadiumChemistryVial +- proto: Railing entities: - - uid: 29020 + - uid: 375 components: - type: Transform - pos: -19.411299,-34.266617 + rot: -1.5707963267948966 rad + pos: 23.5,-42.5 parent: 2 -- proto: Railing - entities: - - uid: 2379 + - uid: 824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,42.5 + rot: -1.5707963267948966 rad + pos: 23.5,-35.5 parent: 2 - - uid: 4609 + - uid: 825 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-109.5 + pos: 23.5,-36.5 parent: 2 - - uid: 27260 + - uid: 1237 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,42.5 + pos: 23.5,-37.5 parent: 2 - - uid: 28817 + - uid: 1350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,19.5 + rot: -1.5707963267948966 rad + pos: 23.5,-38.5 parent: 2 - - uid: 29021 + - uid: 2379 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,18.5 + pos: 35.5,42.5 parent: 2 - - uid: 29022 + - uid: 4609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,17.5 + rot: -1.5707963267948966 rad + pos: -11.5,-109.5 parent: 2 - - uid: 29023 + - uid: 7562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 89.5,-81.5 + pos: 8.5,-46.5 parent: 2 - - uid: 29024 + - uid: 7563 + components: + - type: Transform + pos: 9.5,-46.5 + parent: 2 + - uid: 9942 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-43.5 + pos: 4.5,-56.5 parent: 2 - - uid: 29025 + - uid: 9943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-57.5 + parent: 2 + - uid: 9948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-57.5 + parent: 2 + - uid: 9955 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-44.5 + pos: 3.5,-59.5 parent: 2 - - uid: 29026 + - uid: 9956 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-44.5 + pos: -2.5,-59.5 parent: 2 - - uid: 29027 + - uid: 9969 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,18.5 + pos: 6.5,-52.5 parent: 2 - - uid: 29028 + - uid: 9974 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,17.5 + pos: 4.5,-55.5 parent: 2 - - uid: 29029 + - uid: 9975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-41.5 + rot: 3.141592653589793 rad + pos: 5.5,-53.5 parent: 2 - - uid: 29030 + - uid: 9976 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-42.5 + pos: 4.5,-54.5 parent: 2 - - uid: 29031 + - uid: 9977 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-43.5 + pos: -5.5,-52.5 parent: 2 - - uid: 29032 + - uid: 9979 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-44.5 + pos: -4.5,-53.5 parent: 2 - - uid: 29033 + - uid: 9980 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-42.5 + pos: -3.5,-54.5 parent: 2 - - uid: 29034 + - uid: 9981 components: - type: Transform - pos: 8.5,-8.5 + rot: 1.5707963267948966 rad + pos: -3.5,-55.5 parent: 2 - - uid: 29035 + - uid: 9982 components: - type: Transform - pos: 7.5,-8.5 + rot: 1.5707963267948966 rad + pos: -5.5,-51.5 parent: 2 - - uid: 29036 + - uid: 9983 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-29.5 + pos: -3.5,-56.5 parent: 2 - - uid: 29037 + - uid: 9996 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-27.5 + pos: 16.5,-47.5 parent: 2 - - uid: 29038 + - uid: 9997 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-27.5 + pos: 16.5,-46.5 parent: 2 - - uid: 29039 + - uid: 9998 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-27.5 + pos: 16.5,-45.5 parent: 2 - - uid: 29040 + - uid: 9999 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-27.5 + pos: 6.5,-51.5 parent: 2 - - uid: 29041 + - uid: 10000 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-29.5 + pos: -15.5,-49.5 parent: 2 - - uid: 29042 + - uid: 10041 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-27.5 + pos: 2.5,-51.5 parent: 2 - - uid: 29043 + - uid: 10042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-51.5 + parent: 2 + - uid: 10091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-41.5 + parent: 2 + - uid: 14663 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-27.5 + pos: 11.5,-27.5 parent: 2 - - uid: 29044 + - uid: 14664 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-27.5 + pos: 12.5,-27.5 parent: 2 - - uid: 29045 + - uid: 14722 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-27.5 + pos: 14.5,-27.5 parent: 2 - - uid: 29046 + - uid: 14730 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-27.5 + pos: 15.5,-27.5 parent: 2 - - uid: 29047 + - uid: 23432 components: - type: Transform - pos: -16.5,-29.5 + rot: -1.5707963267948966 rad + pos: 23.5,-39.5 parent: 2 - - uid: 29048 + - uid: 23437 components: - type: Transform - pos: -15.5,-29.5 + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 parent: 2 - - uid: 29049 + - uid: 24116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-43.5 + parent: 2 + - uid: 24120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 2 + - uid: 27260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,42.5 + parent: 2 + - uid: 28817 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-27.5 + pos: 18.5,19.5 parent: 2 - - uid: 29050 + - uid: 29021 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-27.5 + pos: 69.5,18.5 parent: 2 - - uid: 29051 + - uid: 29022 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-27.5 + pos: 69.5,17.5 parent: 2 - - uid: 29052 + - uid: 29023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 89.5,-81.5 + parent: 2 + - uid: 29024 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-29.5 + pos: 29.5,-43.5 parent: 2 - - uid: 29053 + - uid: 29025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-44.5 + parent: 2 + - uid: 29026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-44.5 + parent: 2 + - uid: 29027 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-29.5 + pos: 67.5,18.5 + parent: 2 + - uid: 29028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,17.5 + parent: 2 + - uid: 29030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-42.5 + parent: 2 + - uid: 29031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-43.5 + parent: 2 + - uid: 29032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-44.5 + parent: 2 + - uid: 29033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-42.5 + parent: 2 + - uid: 29034 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 29035 + components: + - type: Transform + pos: 7.5,-8.5 parent: 2 - uid: 29054 components: @@ -221812,164 +212793,6 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,-48.5 parent: 2 - - uid: 29150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 2 - - uid: 29151 - components: - - type: Transform - pos: 3.5,-25.5 - parent: 2 - - uid: 29152 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 2 - - uid: 29153 - components: - - type: Transform - pos: -1.5,-29.5 - parent: 2 - - uid: 29154 - components: - - type: Transform - pos: -2.5,-29.5 - parent: 2 - - uid: 29155 - components: - - type: Transform - pos: -3.5,-29.5 - parent: 2 - - uid: 29156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-30.5 - parent: 2 - - uid: 29157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-30.5 - parent: 2 - - uid: 29158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-28.5 - parent: 2 - - uid: 29159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-24.5 - parent: 2 - - uid: 29160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-24.5 - parent: 2 - - uid: 29161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-24.5 - parent: 2 - - uid: 29162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-24.5 - parent: 2 - - uid: 29163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-24.5 - parent: 2 - - uid: 29164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-23.5 - parent: 2 - - uid: 29165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 2 - - uid: 29166 - components: - - type: Transform - pos: -3.5,-25.5 - parent: 2 - - uid: 29167 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 2 - - uid: 29168 - components: - - type: Transform - pos: -1.5,-25.5 - parent: 2 - - uid: 29169 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 2 - - uid: 29170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-26.5 - parent: 2 - - uid: 29171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-28.5 - parent: 2 - - uid: 29172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-26.5 - parent: 2 - - uid: 29173 - components: - - type: Transform - pos: 2.5,-25.5 - parent: 2 - - uid: 29174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-21.5 - parent: 2 - - uid: 29175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-23.5 - parent: 2 - - uid: 29176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-25.5 - parent: 2 - - uid: 29177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-27.5 - parent: 2 - uid: 29178 components: - type: Transform @@ -222004,22 +212827,6 @@ entities: - type: Transform pos: 80.5,-2.5 parent: 2 - - uid: 29184 - components: - - type: Transform - pos: -21.5,-45.5 - parent: 2 - - uid: 29185 - components: - - type: Transform - pos: -20.5,-45.5 - parent: 2 - - uid: 29186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-46.5 - parent: 2 - uid: 29187 components: - type: Transform @@ -222056,12 +212863,6 @@ entities: rot: 3.141592653589793 rad pos: 81.5,-7.5 parent: 2 - - uid: 29193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-49.5 - parent: 2 - uid: 29194 components: - type: Transform @@ -222079,393 +212880,11 @@ entities: - type: Transform pos: 81.5,-2.5 parent: 2 - - uid: 29197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-48.5 - parent: 2 - uid: 29198 components: - type: Transform pos: 82.5,-2.5 parent: 2 - - uid: 29199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-36.5 - parent: 2 - - uid: 29200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-36.5 - parent: 2 - - uid: 29201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-36.5 - parent: 2 - - uid: 29202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-36.5 - parent: 2 - - uid: 29203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-36.5 - parent: 2 - - uid: 29204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-36.5 - parent: 2 - - uid: 29205 - components: - - type: Transform - pos: 8.5,-43.5 - parent: 2 - - uid: 29206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-36.5 - parent: 2 - - uid: 29207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-36.5 - parent: 2 - - uid: 29208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-36.5 - parent: 2 - - uid: 29209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-36.5 - parent: 2 - - uid: 29210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-36.5 - parent: 2 - - uid: 29211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-36.5 - parent: 2 - - uid: 29212 - components: - - type: Transform - pos: 7.5,-36.5 - parent: 2 - - uid: 29213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 2 - - uid: 29214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-38.5 - parent: 2 - - uid: 29215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-39.5 - parent: 2 - - uid: 29216 - components: - - type: Transform - pos: 7.5,-40.5 - parent: 2 - - uid: 29217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-42.5 - parent: 2 - - uid: 29218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-43.5 - parent: 2 - - uid: 29219 - components: - - type: Transform - pos: 9.5,-43.5 - parent: 2 - - uid: 29220 - components: - - type: Transform - pos: 10.5,-43.5 - parent: 2 - - uid: 29221 - components: - - type: Transform - pos: 11.5,-43.5 - parent: 2 - - uid: 29222 - components: - - type: Transform - pos: 12.5,-43.5 - parent: 2 - - uid: 29223 - components: - - type: Transform - pos: 13.5,-43.5 - parent: 2 - - uid: 29224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-35.5 - parent: 2 - - uid: 29225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 2 - - uid: 29226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 2 - - uid: 29227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-35.5 - parent: 2 - - uid: 29228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 2 - - uid: 29229 - components: - - type: Transform - pos: 14.5,-35.5 - parent: 2 - - uid: 29230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 2 - - uid: 29231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-35.5 - parent: 2 - - uid: 29232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-35.5 - parent: 2 - - uid: 29233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 2 - - uid: 29234 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 2 - - uid: 29235 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 2 - - uid: 29236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-35.5 - parent: 2 - - uid: 29237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-35.5 - parent: 2 - - uid: 29238 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-35.5 - parent: 2 - - uid: 29239 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 2 - - uid: 29240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-35.5 - parent: 2 - - uid: 29241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-35.5 - parent: 2 - - uid: 29242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-35.5 - parent: 2 - - uid: 29243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-35.5 - parent: 2 - - uid: 29244 - components: - - type: Transform - pos: 18.5,-35.5 - parent: 2 - - uid: 29245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-44.5 - parent: 2 - - uid: 29246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-44.5 - parent: 2 - - uid: 29247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-44.5 - parent: 2 - - uid: 29248 - components: - - type: Transform - pos: 12.5,-44.5 - parent: 2 - - uid: 29249 - components: - - type: Transform - pos: 10.5,-44.5 - parent: 2 - - uid: 29250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-44.5 - parent: 2 - - uid: 29251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-44.5 - parent: 2 - - uid: 29252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-44.5 - parent: 2 - - uid: 29253 - components: - - type: Transform - pos: 8.5,-44.5 - parent: 2 - - uid: 29254 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-44.5 - parent: 2 - - uid: 29255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-44.5 - parent: 2 - - uid: 29256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-44.5 - parent: 2 - - uid: 29257 - components: - - type: Transform - pos: 7.5,-43.5 - parent: 2 - - uid: 29258 - components: - - type: Transform - pos: 14.5,-43.5 - parent: 2 - - uid: 29259 - components: - - type: Transform - pos: 15.5,-43.5 - parent: 2 - - uid: 29260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-44.5 - parent: 2 - - uid: 29261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-44.5 - parent: 2 - - uid: 29262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-44.5 - parent: 2 - - uid: 29263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-44.5 - parent: 2 - - uid: 29264 - components: - - type: Transform - pos: 14.5,-44.5 - parent: 2 - uid: 29265 components: - type: Transform @@ -222598,12 +213017,94 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,43.5 parent: 2 + - uid: 2595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-49.5 + parent: 2 - uid: 4608 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-110.5 parent: 2 + - uid: 7482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-49.5 + parent: 2 + - uid: 9986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-59.5 + parent: 2 + - uid: 9987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-59.5 + parent: 2 + - uid: 10025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-53.5 + parent: 2 + - uid: 10026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-53.5 + parent: 2 + - uid: 10083 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 12278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-11.5 + parent: 2 + - uid: 17709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 2 + - uid: 24897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 2 + - uid: 26485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-8.5 + parent: 2 + - uid: 26575 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 26576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 2 - uid: 29266 components: - type: Transform @@ -222679,17 +213180,6 @@ entities: rot: -1.5707963267948966 rad pos: 88.5,-80.5 parent: 2 - - uid: 29279 - components: - - type: Transform - pos: 1.5,-29.5 - parent: 2 - - uid: 29280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-36.5 - parent: 2 - uid: 32362 components: - type: Transform @@ -222704,6 +213194,33 @@ entities: parent: 2 - proto: RailingCornerSmall entities: + - uid: 9952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-59.5 + parent: 2 + - uid: 9954 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 2 + - uid: 9973 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 2 + - uid: 9978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-53.5 + parent: 2 + - uid: 23392 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 - uid: 29281 components: - type: Transform @@ -222745,29 +213262,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 2 - - uid: 29288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 2 - - uid: 29289 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 2 - - uid: 29290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 2 - - uid: 29291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-14.5 - parent: 2 - uid: 29293 components: - type: Transform @@ -222838,47 +213332,6 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-76.5 parent: 2 - - uid: 29307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-25.5 - parent: 2 - - uid: 29308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-29.5 - parent: 2 - - uid: 29309 - components: - - type: Transform - pos: -1.5,-31.5 - parent: 2 - - uid: 29310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-29.5 - parent: 2 - - uid: 29311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-24.5 - parent: 2 - - uid: 29312 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-25.5 - parent: 2 - - uid: 29313 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-45.5 - parent: 2 - uid: 29314 components: - type: Transform @@ -222902,11 +213355,6 @@ entities: rot: -1.5707963267948966 rad pos: 78.5,-7.5 parent: 2 - - uid: 29318 - components: - - type: Transform - pos: -19.5,-49.5 - parent: 2 - uid: 29319 components: - type: Transform @@ -223125,14 +213573,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-1.5 parent: 40828 -- proto: RandomAnomalyInjectorSpawner - entities: - - uid: 29347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-50.5 - parent: 2 - proto: RandomArtifactSpawner entities: - uid: 29350 @@ -223140,11 +213580,6 @@ entities: - type: Transform pos: -73.5,-77.5 parent: 2 - - uid: 29351 - components: - - type: Transform - pos: -15.5,-62.5 - parent: 2 - proto: RandomBoard entities: - uid: 42322 @@ -223181,6 +213616,11 @@ entities: parent: 2 - proto: RandomDrinkGlass entities: + - uid: 29209 + components: + - type: Transform + pos: -3.5,-72.5 + parent: 2 - uid: 29356 components: - type: Transform @@ -223196,11 +213636,6 @@ entities: - type: Transform pos: 29.5,-74.5 parent: 2 - - uid: 29359 - components: - - type: Transform - pos: -3.5,-73.5 - parent: 2 - uid: 29360 components: - type: Transform @@ -223233,6 +213668,11 @@ entities: parent: 2 - proto: RandomDrinkSoda entities: + - uid: 23592 + components: + - type: Transform + pos: -5.5,-43.5 + parent: 2 - uid: 29370 components: - type: Transform @@ -224547,6 +214987,13 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-12.5 parent: 40828 +- proto: RandomScienceCorpseSpawner + entities: + - uid: 14624 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 2 - proto: RandomSoap entities: - uid: 29591 @@ -225740,27 +216187,21 @@ entities: parent: 18798 - type: Physics canCollide: False -- proto: ReagentGrinderIndustrial +- proto: ReagentContainerOliveoil entities: - - uid: 29816 + - uid: 15868 components: - type: Transform - pos: -17.5,-25.5 + pos: -6.4237847,-36.20618 parent: 2 -- proto: ReagentSlimeSpawner +- proto: Recycler entities: - - uid: 29817 - components: - - type: Transform - pos: -5.5,-35.5 - parent: 2 - - uid: 29818 + - uid: 19742 components: - type: Transform - pos: -4.5,-39.5 + rot: 1.5707963267948966 rad + pos: -2.5,-68.5 parent: 2 -- proto: Recycler - entities: - uid: 29819 components: - type: Transform @@ -225793,78 +216234,8 @@ entities: - type: Transform pos: 2.5,-96.5 parent: 2 - - uid: 29823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-41.5 - parent: 2 - - uid: 29824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-24.5 - parent: 2 - - uid: 29825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-37.5 - parent: 2 - - uid: 29826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-13.5 - parent: 2 - - uid: 29827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-14.5 - parent: 2 - - uid: 29828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-22.5 - parent: 2 - - uid: 29829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-37.5 - parent: 2 - - uid: 29830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-26.5 - parent: 2 - - uid: 29831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-46.5 - parent: 2 - - uid: 29832 - components: - - type: Transform - pos: 1.5,-42.5 - parent: 2 - - uid: 29833 - components: - - type: Transform - pos: 2.5,-42.5 - parent: 2 - proto: ReinforcedPlasmaWindow entities: - - uid: 29834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-50.5 - parent: 2 - uid: 29835 components: - type: Transform @@ -226342,12 +216713,6 @@ entities: - type: Transform pos: 90.5,-7.5 parent: 2 - - uid: 29923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-51.5 - parent: 2 - proto: ReinforcedUraniumWindow entities: - uid: 29924 @@ -226741,6 +217106,21 @@ entities: parent: 2 - proto: ReinforcedWindow entities: + - uid: 118 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 - uid: 2380 components: - type: Transform @@ -226840,6 +217220,16 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-30.5 parent: 2 + - uid: 23621 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 2 + - uid: 23622 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 2 - uid: 25781 components: - type: Transform @@ -226886,30 +217276,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-124.5 parent: 2 - - uid: 29996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-26.5 - parent: 2 - - uid: 29997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-25.5 - parent: 2 - - uid: 29998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-10.5 - parent: 2 - - uid: 29999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-27.5 - parent: 2 - uid: 30000 components: - type: Transform @@ -226949,132 +217315,6 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,16.5 parent: 2 - - uid: 30007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-28.5 - parent: 2 - - uid: 30008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-13.5 - parent: 2 - - uid: 30009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 2 - - uid: 30010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 2 - - uid: 30011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-11.5 - parent: 2 - - uid: 30012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-10.5 - parent: 2 - - uid: 30013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-14.5 - parent: 2 - - uid: 30014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 2 - - uid: 30015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-16.5 - parent: 2 - - uid: 30016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-10.5 - parent: 2 - - uid: 30017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-10.5 - parent: 2 - - uid: 30018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-10.5 - parent: 2 - - uid: 30019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-11.5 - parent: 2 - - uid: 30020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-11.5 - parent: 2 - - uid: 30021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-13.5 - parent: 2 - - uid: 30022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-11.5 - parent: 2 - - uid: 30023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-11.5 - parent: 2 - - uid: 30024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-14.5 - parent: 2 - - uid: 30025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-15.5 - parent: 2 - - uid: 30026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 2 - - uid: 30027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 2 - uid: 30028 components: - type: Transform @@ -229624,26 +219864,40 @@ entities: parent: 2 - proto: ResearchAndDevelopmentServerMachineCircuitboard entities: - - uid: 30500 + - uid: 29258 + components: + - type: Transform + parent: 15817 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ResearchDisk10000 + entities: + - uid: 23603 components: - type: Transform - pos: 18.489466,-19.488842 + pos: -10.5,-38.5 parent: 2 -- proto: RevolverCapGun +- proto: ResearchDisk5000 entities: - - uid: 30501 + - uid: 23613 components: - - type: MetaData - name: крутая пушка - type: Transform - pos: 8.476364,-23.366163 + pos: 1.5280746,-24.485527 parent: 2 -- proto: RevolverCapGunFake +- proto: Retractor entities: - - uid: 30502 + - uid: 19794 components: - type: Transform - pos: 2.5,-22.5 + pos: 14.457987,-36.538673 + parent: 2 +- proto: ReverseCymbalsInstrument + entities: + - uid: 23602 + components: + - type: Transform + pos: -0.57904947,-25.659346 parent: 2 - proto: RGBStaff entities: @@ -229654,30 +219908,30 @@ entities: parent: 2 - proto: RifleStock entities: - - uid: 44258 + - uid: 23359 components: - type: Transform - pos: -71.338974,-2.4210052 + pos: -7.9200783,-46.482765 parent: 2 -- proto: RightArmBorg - entities: - - uid: 30504 + - uid: 23371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.430656,-45.663193 + pos: -9.429625,-49.529438 parent: 2 - - uid: 30505 + - uid: 23372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.727531,-45.194443 + pos: -9.414,-49.310688 parent: 2 - - uid: 30506 + - uid: 23383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.711906,-45.428818 + pos: -9.378111,-49.404438 + parent: 2 + - uid: 44258 + components: + - type: Transform + pos: -71.338974,-2.4210052 parent: 2 - proto: RightArmSkeleton entities: @@ -229686,44 +219940,47 @@ entities: - type: Transform pos: 65.5,-50.5 parent: 2 -- proto: RightFootSkeleton +- proto: RightArmSlime entities: - - uid: 30508 + - uid: 16257 components: - type: Transform - pos: 65.5,-50.5 + pos: 14.472561,-30.883976 parent: 2 -- proto: RightHandSkeleton +- proto: RightFootSkeleton entities: - - uid: 30509 + - uid: 30508 components: - type: Transform pos: 65.5,-50.5 parent: 2 -- proto: RightLegBorg +- proto: RightFootSlime entities: - - uid: 30510 + - uid: 16255 components: - type: Transform - pos: -85.12268,-9.882366 + pos: 14.529345,-30.992832 parent: 2 - - uid: 30511 +- proto: RightHandSkeleton + entities: + - uid: 30509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.383781,-45.335068 + pos: 65.5,-50.5 parent: 2 - - uid: 30512 +- proto: RightHandSlime + entities: + - uid: 16259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.696281,-45.569443 + pos: 14.466251,-30.928104 parent: 2 - - uid: 30513 +- proto: RightLegBorg + entities: + - uid: 30510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.758781,-45.288193 + pos: -85.12268,-9.882366 parent: 2 - proto: RightLegReptilian entities: @@ -229740,6 +219997,13 @@ entities: - type: Transform pos: 65.5,-50.5 parent: 2 +- proto: RightLegSlime + entities: + - uid: 16250 + components: + - type: Transform + pos: 14.523035,-30.942398 + parent: 2 - proto: RiotBulletShield entities: - uid: 41384 @@ -229896,392 +220160,344 @@ entities: - type: Transform pos: 0.4520731,-95.5867 parent: 2 -- proto: SalvageCanisterSpawner - entities: - - uid: 30536 - components: - - type: Transform - pos: -5.5,-56.5 - parent: 2 - - uid: 30537 - components: - - type: Transform - pos: -6.5,-51.5 - parent: 2 -- proto: SalvageHumanCorpseSpawner - entities: - - uid: 25191 - components: - - type: Transform - pos: 71.5,-15.5 - parent: 2 -- proto: SalvageLootSpawner - entities: - - uid: 30538 - components: - - type: Transform - pos: 13.5,-46.5 - parent: 2 - - uid: 30539 - components: - - type: Transform - pos: -11.5,-56.5 - parent: 2 -- proto: SalvageMagnet +- proto: SalvageFleshSpawner entities: - - uid: 32249 - components: - - type: Transform - pos: -10.5,-110.5 - parent: 2 -- proto: SalvageMaterialCrateSpawner - entities: - - uid: 30541 - components: - - type: Transform - pos: -13.5,-83.5 - parent: 2 - - uid: 30542 - components: - - type: Transform - pos: 4.5,-87.5 - parent: 2 - - uid: 30543 - components: - - type: Transform - pos: 10.5,-60.5 - parent: 2 - - uid: 30544 + - uid: 9941 components: - type: Transform - pos: 19.5,-49.5 + pos: 15.5,-51.5 parent: 2 -- proto: SalvageMobSpawner - entities: - - uid: 30545 + - uid: 14671 components: - type: Transform - pos: 15.5,-25.5 + pos: 16.5,-52.5 parent: 2 -- proto: SalvageMobSpawner75 - entities: - - uid: 30546 + - uid: 15731 components: - type: Transform - pos: -6.5,-44.5 + pos: 5.5,-34.5 parent: 2 - - uid: 30547 + - uid: 15732 components: - type: Transform - pos: -16.5,-43.5 + pos: 6.5,-33.5 parent: 2 - - uid: 30548 + - uid: 16439 components: - type: Transform - pos: 6.5,-14.5 + pos: 15.5,-36.5 parent: 2 -- proto: SalvageSpawnerEquipment - entities: - - uid: 30549 + - uid: 19824 components: - type: Transform - pos: -8.5,-49.5 + pos: -1.5,-29.5 parent: 2 - - uid: 30550 + - uid: 19825 components: - type: Transform - pos: 7.5,-44.5 + pos: 1.5,-28.5 parent: 2 -- proto: SalvageSpawnerEquipmentValuable - entities: - - uid: 30551 + - uid: 19826 components: - type: Transform - pos: 0.5,-40.5 + pos: 2.5,-30.5 parent: 2 - - uid: 30552 + - uid: 19827 components: - type: Transform - pos: 15.5,-44.5 + pos: 0.5,-27.5 parent: 2 -- proto: SalvageSpawnerMobMiningAsteroid - entities: - - uid: 30553 + - uid: 23404 components: - type: Transform - pos: 9.5,-48.5 + pos: 15.5,-50.5 parent: 2 -- proto: SalvageSpawnerScrapCommon - entities: - - uid: 30554 + - uid: 23405 components: - type: Transform - pos: -18.5,-43.5 + pos: 14.5,-50.5 parent: 2 - - uid: 30555 + - uid: 23475 components: - type: Transform - pos: 3.5,-44.5 + rot: -1.5707963267948966 rad + pos: 1.5,-29.5 parent: 2 - - uid: 30556 + - uid: 23476 components: - type: Transform - pos: 14.5,-18.5 + pos: 0.5,-28.5 parent: 2 - - uid: 30557 + - uid: 23477 components: - type: Transform - pos: 19.5,-26.5 + pos: -0.5,-28.5 parent: 2 - - uid: 30558 + - uid: 23479 components: - type: Transform - pos: 8.5,-31.5 + pos: -6.5,-23.5 parent: 2 - - uid: 30559 + - uid: 23480 components: - type: Transform - pos: 5.5,-27.5 + pos: -5.5,-23.5 parent: 2 - - uid: 30560 + - uid: 23481 components: - type: Transform - pos: 5.5,-14.5 + pos: -0.5,-21.5 parent: 2 - - uid: 30561 + - uid: 23482 components: - type: Transform - pos: -0.5,-13.5 + pos: -1.5,-21.5 parent: 2 - - uid: 30562 + - uid: 23483 components: - type: Transform - pos: -14.5,-14.5 + pos: -6.5,-41.5 parent: 2 - - uid: 30563 + - uid: 23484 components: - type: Transform - pos: -3.5,-36.5 + pos: -4.5,-40.5 parent: 2 - - uid: 30564 + - uid: 23485 components: - type: Transform - pos: -8.5,-38.5 + pos: -3.5,-39.5 parent: 2 - - uid: 30565 + - uid: 23486 components: - type: Transform - pos: -8.5,-41.5 + pos: -3.5,-38.5 parent: 2 - - uid: 30566 + - uid: 23487 components: - type: Transform - pos: -7.5,-40.5 + pos: -2.5,-40.5 parent: 2 - - uid: 30567 + - uid: 23488 components: - type: Transform - pos: 0.5,-56.5 + pos: -2.5,-41.5 parent: 2 - - uid: 30568 + - uid: 23492 components: - type: Transform - pos: 0.5,-58.5 + pos: -7.5,-34.5 parent: 2 - - uid: 30569 + - uid: 23493 components: - type: Transform - pos: 0.5,-57.5 + pos: -9.5,-35.5 parent: 2 - - uid: 30570 + - uid: 23497 components: - type: Transform - pos: -2.5,-56.5 + pos: 12.5,-32.5 parent: 2 - - uid: 30571 + - uid: 23498 components: - type: Transform - pos: -1.5,-64.5 + pos: 11.5,-38.5 parent: 2 - - uid: 30572 + - uid: 23499 components: - type: Transform - pos: -3.5,-64.5 + pos: 12.5,-39.5 parent: 2 - - uid: 30573 + - uid: 23500 components: - type: Transform - pos: -15.5,-58.5 + pos: 10.5,-39.5 parent: 2 - - uid: 30574 + - uid: 23501 components: - type: Transform - pos: -18.5,-59.5 + pos: 10.5,-35.5 parent: 2 - - uid: 30575 + - uid: 23502 components: - type: Transform - pos: 2.5,-30.5 + pos: 16.5,-31.5 parent: 2 - - uid: 42233 + - uid: 23503 components: - type: Transform - pos: -3.5,-15.5 + pos: 8.5,-33.5 parent: 2 - - uid: 42245 + - uid: 23508 components: - type: Transform - pos: -10.5,-41.5 + pos: 14.5,-33.5 parent: 2 - - uid: 42246 + - uid: 23509 components: - type: Transform - pos: -2.5,-34.5 + pos: 8.5,-30.5 parent: 2 - - uid: 42247 + - uid: 23510 components: - type: Transform - pos: 2.5,-36.5 + pos: 7.5,-25.5 parent: 2 - - uid: 42248 + - uid: 23512 components: - type: Transform - pos: 0.5,-34.5 + pos: 9.5,-27.5 parent: 2 - - uid: 42249 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 23468 components: - type: Transform - pos: 1.5,-36.5 + rot: 3.141592653589793 rad + pos: 13.5,-55.5 parent: 2 - - uid: 42257 + - uid: 23572 components: - type: Transform - pos: 18.5,-44.5 + pos: 4.5,-33.5 parent: 2 - - uid: 42258 + - uid: 25191 components: - type: Transform - pos: 17.5,-45.5 + pos: 71.5,-15.5 parent: 2 - - uid: 42259 +- proto: SalvageLootSpawner + entities: + - uid: 23391 components: - type: Transform - pos: 6.5,-54.5 + pos: -4.5,-43.5 parent: 2 - - uid: 42260 + - uid: 28852 components: - type: Transform - pos: 7.5,-53.5 + pos: 5.5,-40.5 parent: 2 - - uid: 42261 +- proto: SalvageMagnet + entities: + - uid: 14553 components: - type: Transform - pos: 8.5,-53.5 + pos: 13.5,-11.5 parent: 2 - - uid: 42262 + - uid: 14588 components: - type: Transform - pos: -1.5,-59.5 + pos: 15.5,-11.5 parent: 2 - - uid: 42263 + - uid: 24853 components: - type: Transform - pos: -1.5,-60.5 + pos: -11.5,-11.5 parent: 2 - - uid: 42264 + - uid: 24860 components: - type: Transform - pos: -9.5,-64.5 + pos: -13.5,-11.5 parent: 2 - - uid: 42267 + - uid: 32249 components: - type: Transform - pos: 1.5,-65.5 + pos: -10.5,-110.5 parent: 2 - - uid: 42268 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 16290 components: - type: Transform - pos: 7.5,-61.5 + pos: 12.5,-42.5 parent: 2 - - uid: 42272 + - uid: 30541 components: - type: Transform - pos: 18.5,-54.5 + pos: -13.5,-83.5 parent: 2 - - uid: 42273 + - uid: 30542 components: - type: Transform - pos: -0.5,-54.5 + pos: 4.5,-87.5 parent: 2 - - uid: 42274 +- proto: SalvageSpawnerEquipment + entities: + - uid: 28464 components: - type: Transform - pos: -0.5,-57.5 + pos: 12.5,-36.5 parent: 2 - - uid: 42275 + - uid: 28504 components: - type: Transform - pos: -5.5,-60.5 + pos: 5.5,-26.5 parent: 2 - - uid: 42276 + - uid: 28650 components: - type: Transform - pos: -17.5,-49.5 + pos: -11.5,-27.5 parent: 2 - - uid: 42277 + - uid: 28724 components: - type: Transform - pos: -13.5,-53.5 + pos: -12.5,-38.5 parent: 2 - - uid: 42278 + - uid: 28748 components: - type: Transform - pos: -12.5,-52.5 + pos: -13.5,-49.5 parent: 2 - - uid: 42279 + - uid: 28816 components: - type: Transform - pos: -12.5,-51.5 + pos: -11.5,-55.5 parent: 2 - - uid: 42280 + - uid: 28844 components: - type: Transform - pos: -16.5,-51.5 + pos: -9.5,-53.5 parent: 2 - - uid: 42281 + - uid: 28846 components: - type: Transform - pos: -16.5,-49.5 + pos: -7.5,-55.5 parent: 2 - - uid: 42325 + - uid: 28847 components: - type: Transform - pos: 2.5,-54.5 + pos: -3.5,-49.5 parent: 2 - - uid: 42326 + - uid: 28848 components: - type: Transform - pos: 0.5,-52.5 + pos: 2.5,-29.5 parent: 2 - - uid: 42327 +- proto: SalvageSpawnerMobMiningAsteroid + entities: + - uid: 12245 components: - type: Transform - pos: 4.5,-43.5 + pos: -9.5,-26.5 parent: 2 - - uid: 42328 +- proto: SalvageSpawnerScrapCommon + entities: + - uid: 28455 components: - type: Transform - pos: -12.5,-44.5 + pos: -6.5,-40.5 parent: 2 - - uid: 42329 + - uid: 28456 components: - type: Transform - pos: -16.5,-42.5 + pos: -7.5,-39.5 parent: 2 - - uid: 42330 + - uid: 42267 components: - type: Transform - pos: -18.5,-42.5 + anchored: False + pos: 1.5,-65.5 parent: 2 - uid: 44094 components: @@ -230295,315 +220511,317 @@ entities: parent: 2 - proto: SalvageSpawnerScrapCommon75 entities: - - uid: 30576 - components: - - type: Transform - pos: -10.5,-43.5 - parent: 2 - - uid: 30577 + - uid: 18739 components: - type: Transform - pos: -7.5,-43.5 + rot: 1.5707963267948966 rad + pos: -8.5,-35.5 parent: 2 - - uid: 30578 + - uid: 23281 components: - type: Transform - pos: -3.5,-43.5 + rot: 1.5707963267948966 rad + pos: -10.5,-27.5 parent: 2 - - uid: 30579 + - uid: 23283 components: - type: Transform - pos: 0.5,-43.5 + rot: 1.5707963267948966 rad + pos: -12.5,-28.5 parent: 2 - - uid: 30580 + - uid: 23287 components: - type: Transform - pos: -10.5,-23.5 + rot: 1.5707963267948966 rad + pos: 16.5,-33.5 parent: 2 - - uid: 30581 + - uid: 23288 components: - type: Transform - pos: 19.5,-13.5 + rot: 1.5707963267948966 rad + pos: 13.5,-32.5 parent: 2 - - uid: 30582 + - uid: 23398 components: - type: Transform - pos: 20.5,-18.5 + rot: -1.5707963267948966 rad + pos: -10.5,-40.5 parent: 2 - - uid: 30583 + - uid: 23399 components: - type: Transform - pos: 20.5,-16.5 + rot: -1.5707963267948966 rad + pos: -0.5,-39.5 parent: 2 - - uid: 30584 + - uid: 28031 components: - type: Transform - pos: 19.5,-22.5 + pos: -1.5,-54.5 parent: 2 - - uid: 30585 + - uid: 28413 components: - type: Transform - pos: 14.5,-30.5 + pos: -2.5,-53.5 parent: 2 - - uid: 30586 + - uid: 28414 components: - type: Transform - pos: 11.5,-33.5 + pos: 1.5,-53.5 parent: 2 - - uid: 30587 + - uid: 28415 components: - type: Transform - pos: 15.5,-33.5 + pos: 3.5,-55.5 parent: 2 - - uid: 30588 + - uid: 28416 components: - type: Transform - pos: 5.5,-22.5 + pos: -0.5,-58.5 parent: 2 - - uid: 30589 + - uid: 28417 components: - type: Transform - pos: 6.5,-18.5 + pos: 2.5,-57.5 parent: 2 - - uid: 30590 + - uid: 28418 components: - type: Transform - pos: 3.5,-20.5 + pos: 5.5,-47.5 parent: 2 - - uid: 30591 + - uid: 28419 components: - type: Transform - pos: 3.5,-15.5 + pos: 8.5,-48.5 parent: 2 - - uid: 30592 + - uid: 28420 components: - type: Transform - pos: -9.5,-15.5 + pos: 11.5,-50.5 parent: 2 - - uid: 30593 + - uid: 28421 components: - type: Transform - pos: -14.5,-21.5 + pos: 11.5,-47.5 parent: 2 - - uid: 30594 + - uid: 28422 components: - type: Transform - pos: -9.5,-38.5 + pos: 15.5,-46.5 parent: 2 - - uid: 30595 + - uid: 28423 components: - type: Transform - pos: -9.5,-33.5 + pos: 14.5,-45.5 parent: 2 - - uid: 30596 + - uid: 28424 components: - type: Transform - pos: -6.5,-32.5 + pos: 14.5,-43.5 parent: 2 - - uid: 30597 + - uid: 28425 components: - type: Transform - pos: -4.5,-32.5 + pos: 15.5,-39.5 parent: 2 - - uid: 30598 + - uid: 28426 components: - type: Transform - pos: -1.5,-62.5 + pos: 9.5,-42.5 parent: 2 - - uid: 30599 + - uid: 28427 components: - type: Transform - pos: -6.5,-61.5 + pos: 7.5,-44.5 parent: 2 - - uid: 30600 + - uid: 28428 components: - type: Transform - pos: -13.5,-61.5 + pos: 10.5,-34.5 parent: 2 - - uid: 30601 + - uid: 28429 components: - type: Transform - pos: -14.5,-59.5 + pos: 10.5,-33.5 parent: 2 - - uid: 30602 + - uid: 28430 components: - type: Transform - pos: -20.5,-60.5 + pos: 5.5,-37.5 parent: 2 - - uid: 30603 + - uid: 28431 components: - type: Transform - pos: -20.5,-59.5 + pos: 4.5,-36.5 parent: 2 - - uid: 30604 + - uid: 28432 components: - type: Transform - pos: 5.5,-53.5 + pos: 8.5,-27.5 parent: 2 - - uid: 30605 + - uid: 28433 components: - type: Transform - pos: 12.5,-53.5 + pos: 13.5,-27.5 parent: 2 - - uid: 30606 + - uid: 28434 components: - type: Transform - pos: 20.5,-56.5 + pos: 11.5,-26.5 parent: 2 - - uid: 30607 + - uid: 28435 components: - type: Transform - pos: 18.5,-51.5 + pos: 2.5,-27.5 parent: 2 - - uid: 30608 + - uid: 28436 components: - type: Transform - pos: 20.5,-57.5 + pos: 2.5,-23.5 parent: 2 - - uid: 30609 + - uid: 28437 components: - type: Transform - pos: -5.5,-48.5 + pos: 0.5,-23.5 parent: 2 - - uid: 30610 + - uid: 28438 components: - type: Transform - pos: -7.5,-47.5 + pos: -1.5,-27.5 parent: 2 - - uid: 30611 + - uid: 28439 components: - type: Transform - pos: -6.5,-53.5 + pos: -0.5,-27.5 parent: 2 - - uid: 30612 + - uid: 28440 components: - type: Transform - pos: -5.5,-28.5 + pos: -5.5,-29.5 parent: 2 - - uid: 30613 + - uid: 28441 components: - type: Transform - pos: 5.5,-16.5 + pos: -4.5,-31.5 parent: 2 - - uid: 30614 + - uid: 28442 components: - type: Transform - pos: 6.5,-25.5 + pos: -5.5,-34.5 parent: 2 - - uid: 30615 + - uid: 28443 components: - type: Transform - pos: 11.5,-32.5 + pos: -5.5,-35.5 parent: 2 - - uid: 42234 + - uid: 28444 components: - type: Transform - pos: -0.5,-17.5 + pos: -4.5,-36.5 parent: 2 - - uid: 42235 + - uid: 28445 components: - type: Transform - pos: 0.5,-20.5 + pos: -5.5,-38.5 parent: 2 - - uid: 42236 + - uid: 28446 components: - type: Transform - pos: -6.5,-18.5 + pos: -11.5,-31.5 parent: 2 - - uid: 42237 + - uid: 28447 components: - type: Transform - pos: -7.5,-17.5 + pos: -7.5,-36.5 parent: 2 - - uid: 42238 + - uid: 28448 components: - type: Transform - pos: -11.5,-18.5 + pos: -16.5,-34.5 parent: 2 - - uid: 42239 + - uid: 28450 components: - type: Transform - pos: -16.5,-16.5 + pos: -14.5,-31.5 parent: 2 - - uid: 42240 + - uid: 28451 components: - type: Transform - pos: -19.5,-23.5 + pos: -13.5,-39.5 parent: 2 - - uid: 42241 + - uid: 28452 components: - type: Transform - pos: -16.5,-22.5 + pos: -14.5,-46.5 parent: 2 - - uid: 42244 + - uid: 28453 components: - type: Transform - pos: -10.5,-35.5 + pos: -13.5,-48.5 parent: 2 - - uid: 42250 + - uid: 28454 components: - type: Transform - pos: 2.5,-38.5 + pos: -10.5,-46.5 parent: 2 - - uid: 42251 + - uid: 29651 components: - type: Transform - pos: 1.5,-40.5 + pos: -4.5,-47.5 parent: 2 - - uid: 42252 + - uid: 29740 components: - type: Transform - pos: 0.5,-39.5 + pos: 4.5,-48.5 parent: 2 - - uid: 42253 + - uid: 29818 components: - type: Transform - pos: 8.5,-39.5 + pos: -4.5,-48.5 parent: 2 - - uid: 42254 + - uid: 29823 components: - type: Transform - pos: 9.5,-38.5 + pos: -3.5,-48.5 parent: 2 - - uid: 42255 + - uid: 29825 components: - type: Transform - pos: 9.5,-40.5 + pos: 5.5,-49.5 parent: 2 - - uid: 42266 + - uid: 29826 components: - type: Transform - pos: -7.5,-59.5 + pos: 4.5,-49.5 parent: 2 - - uid: 42269 + - uid: 29827 components: - type: Transform - pos: 18.5,-62.5 + pos: 6.5,-48.5 parent: 2 - - uid: 42270 + - uid: 29828 components: - type: Transform - pos: 17.5,-53.5 + pos: 9.5,-51.5 parent: 2 - - uid: 42271 + - uid: 29829 components: - type: Transform - pos: 17.5,-54.5 + pos: 12.5,-51.5 parent: 2 - - uid: 42282 + - uid: 29830 components: - type: Transform - pos: -12.5,-49.5 + pos: 8.5,-44.5 parent: 2 - - uid: 42285 + - uid: 29831 components: - type: Transform - pos: -20.5,-47.5 + pos: 6.5,-43.5 parent: 2 - - uid: 42286 + - uid: 29832 components: - type: Transform - pos: -19.5,-52.5 + pos: -13.5,-47.5 parent: 2 - uid: 43365 components: @@ -230632,366 +220850,320 @@ entities: parent: 2 - proto: SalvageSpawnerScrapValuable entities: - - uid: 16890 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 2 - - uid: 30616 - components: - - type: Transform - pos: -10.5,-24.5 - parent: 2 - - uid: 30617 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 2 - - uid: 30618 + - uid: 28018 components: - type: Transform - pos: 15.5,-27.5 + pos: -13.5,-43.5 parent: 2 - - uid: 30619 + - uid: 28019 components: - type: Transform - pos: -2.5,-20.5 + pos: -8.5,-40.5 parent: 2 - - uid: 32636 + - uid: 28459 components: - type: Transform - pos: 6.5,-29.5 + pos: 6.5,-26.5 parent: 2 - - uid: 34960 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 23396 components: - type: Transform - pos: -0.5,-30.5 + rot: -1.5707963267948966 rad + pos: -4.5,-39.5 parent: 2 - - uid: 42228 + - uid: 23397 components: - type: Transform - pos: 5.5,-42.5 + rot: -1.5707963267948966 rad + pos: -1.5,-41.5 parent: 2 - - uid: 42232 + - uid: 23471 components: - type: Transform - pos: -5.5,-23.5 + rot: -1.5707963267948966 rad + pos: 9.5,-44.5 parent: 2 - - uid: 42256 + - uid: 23472 components: - type: Transform - pos: 12.5,-41.5 + rot: -1.5707963267948966 rad + pos: 8.5,-41.5 parent: 2 -- proto: SalvageSpawnerScrapValuable75 - entities: - - uid: 30620 + - uid: 23473 components: - type: Transform - pos: 2.5,-40.5 + rot: -1.5707963267948966 rad + pos: 14.5,-40.5 parent: 2 - - uid: 30621 + - uid: 28014 components: - type: Transform - pos: -6.5,-40.5 + pos: -14.5,-47.5 parent: 2 - - uid: 30622 + - uid: 28017 components: - type: Transform - pos: -11.5,-30.5 + pos: -5.5,-48.5 parent: 2 - - uid: 30623 + - uid: 28457 components: - type: Transform - pos: 16.5,-15.5 + pos: -4.5,-37.5 parent: 2 - - uid: 30624 + - uid: 28458 components: - type: Transform - pos: 20.5,-29.5 + pos: -1.5,-23.5 parent: 2 - - uid: 30625 + - uid: 29833 components: - type: Transform - pos: -17.5,-13.5 + pos: -14.5,-45.5 parent: 2 - - uid: 30626 + - uid: 29834 components: - type: Transform - pos: -3.5,-12.5 + pos: -14.5,-48.5 parent: 2 - - uid: 30627 + - uid: 29923 components: - type: Transform - pos: -17.5,-24.5 + pos: -10.5,-47.5 parent: 2 - - uid: 30628 + - uid: 29996 components: - type: Transform - pos: -1.5,-36.5 + pos: -10.5,-48.5 parent: 2 - - uid: 30629 + - uid: 29997 components: - type: Transform - pos: -6.5,-38.5 + pos: -7.5,-48.5 parent: 2 - - uid: 30630 + - uid: 29998 components: - type: Transform - pos: 16.5,-59.5 + pos: -8.5,-54.5 parent: 2 - - uid: 30631 + - uid: 29999 components: - type: Transform - pos: 9.5,-57.5 + pos: -8.5,-55.5 parent: 2 - - uid: 30632 + - uid: 30007 components: - type: Transform - pos: -1.5,-48.5 + pos: -10.5,-55.5 parent: 2 - uid: 33759 components: - type: Transform pos: 85.5,-53.5 parent: 2 - - uid: 42225 - components: - - type: Transform - pos: 2.5,-34.5 - parent: 2 - - uid: 42229 - components: - - type: Transform - pos: -5.5,-44.5 - parent: 2 - - uid: 42242 +- proto: SalvageSpawnerTreasure + entities: + - uid: 23589 components: - type: Transform - pos: -11.5,-28.5 + pos: -3.5,-20.5 parent: 2 - - uid: 42243 + - uid: 23590 components: - type: Transform pos: -9.5,-32.5 parent: 2 - - uid: 42265 - components: - - type: Transform - pos: -17.5,-59.5 - parent: 2 - - uid: 42283 - components: - - type: Transform - pos: -21.5,-48.5 - parent: 2 - - uid: 42284 + - uid: 28462 components: - type: Transform - pos: -20.5,-46.5 + pos: -16.5,-43.5 parent: 2 -- proto: SalvageSpawnerTreasure - entities: - uid: 30633 components: - type: Transform pos: 30.5,-82.5 parent: 2 - - uid: 30634 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 2 - - uid: 30635 - components: - - type: Transform - pos: 13.5,-55.5 - parent: 2 - - uid: 30636 +- proto: SalvageSpawnerTreasureValuable + entities: + - uid: 23585 components: - type: Transform - pos: 7.5,-63.5 + pos: 5.5,-42.5 parent: 2 - - uid: 30637 + - uid: 23586 components: - type: Transform - pos: -9.5,-47.5 + pos: 0.5,-45.5 parent: 2 - - uid: 30638 + - uid: 23587 components: - type: Transform - pos: 9.5,-44.5 + pos: -0.5,-37.5 parent: 2 -- proto: SalvageSpawnerTreasureValuable - entities: - - uid: 30639 + - uid: 23588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-45.5 + pos: -1.5,-30.5 parent: 2 - - uid: 30640 + - uid: 28460 components: - type: Transform - pos: -8.5,-21.5 + pos: 0.5,-19.5 parent: 2 - - uid: 30641 + - uid: 28461 components: - type: Transform - pos: -8.5,-27.5 + pos: -14.5,-28.5 parent: 2 - - uid: 30642 + - uid: 28503 components: - type: Transform - pos: 9.5,-29.5 + pos: 15.5,-52.5 parent: 2 - - uid: 30643 + - uid: 30008 components: - type: Transform - pos: 12.5,-25.5 + pos: -8.5,-59.5 parent: 2 - - uid: 30644 + - uid: 30009 components: - type: Transform - pos: 12.5,-58.5 + pos: -10.5,-59.5 parent: 2 - - uid: 30645 + - uid: 30010 components: - type: Transform - pos: -13.5,-54.5 + pos: -11.5,-57.5 parent: 2 - - uid: 30646 + - uid: 30016 components: - type: Transform - pos: 11.5,-44.5 + pos: 11.5,-39.5 parent: 2 - - uid: 30647 + - uid: 30017 components: - type: Transform - pos: 19.5,-35.5 + pos: 9.5,-41.5 parent: 2 - - uid: 30648 +- proto: Saw + entities: + - uid: 30652 components: - type: Transform - pos: -19.5,-28.5 + pos: -23.331028,12.404118 parent: 2 - - uid: 30649 +- proto: SawAdvanced + entities: + - uid: 16266 components: - type: Transform - pos: -20.5,-20.5 + pos: 16.291164,-30.473972 parent: 2 - - uid: 30650 +- proto: SawElectric + entities: + - uid: 30653 components: - type: Transform - pos: -17.5,-17.5 + rot: -1.5707963267948966 rad + pos: -53.497505,-20.12178 parent: 2 - - uid: 30651 + - uid: 30654 components: - type: Transform - pos: 14.5,-14.5 + pos: -54.5,-40.5 parent: 2 - - uid: 42310 +- proto: SawImprov + entities: + - uid: 9961 components: - type: Transform - pos: -12.5,-53.5 + pos: 17.5,-46.5 parent: 2 - - uid: 42311 +- proto: Scalpel + entities: + - uid: 19071 components: - type: Transform - pos: 10.5,-29.5 + pos: 14.578117,-36.367992 parent: 2 - - uid: 42312 + - uid: 30656 components: - type: Transform - pos: 9.5,-28.5 + rot: 3.141592653589793 rad + pos: -54.562984,-74.67941 parent: 2 - - uid: 42313 + - uid: 30657 components: - type: Transform - pos: 19.5,-44.5 + rot: 1.5707963267948966 rad + pos: -53.752502,-20.183098 parent: 2 - - uid: 42314 +- proto: ScalpelAdvanced + entities: + - uid: 30658 components: - type: Transform - pos: 16.5,-36.5 + pos: -65.34498,-24.184916 parent: 2 - - uid: 42315 +- proto: ScalpelLaser + entities: + - uid: 16265 components: - type: Transform - pos: 20.5,-42.5 + pos: 16.461515,-30.176098 parent: 2 - - uid: 42316 +- proto: ScalpelShiv + entities: + - uid: 27932 components: - type: Transform - pos: 20.5,-36.5 - parent: 2 - - uid: 42317 + parent: 27931 + - type: Physics + canCollide: False +- proto: ScrapAirlock1 + entities: + - uid: 7478 components: - type: Transform - pos: 17.5,-46.5 + rot: 1.5707963267948966 rad + pos: -9.50244,-29.691586 parent: 2 - - uid: 42318 + - uid: 7495 components: - type: Transform - pos: 19.5,-46.5 + rot: 3.141592653589793 rad + pos: 7.7440596,-36.48781 parent: 2 -- proto: Saw - entities: - - uid: 30652 + - uid: 14641 components: - type: Transform - pos: -23.331028,12.404118 + pos: 7.211709,-36.46653 parent: 2 -- proto: SawElectric - entities: - - uid: 30653 + - uid: 19845 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.497505,-20.12178 + pos: -9.566322,-29.117119 parent: 2 - - uid: 30654 - components: - - type: Transform - pos: -54.5,-40.5 - parent: 2 -- proto: Scalpel - entities: - - uid: 30656 + - uid: 20376 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.562984,-74.67941 + pos: -6.248143,-31.541294 parent: 2 - - uid: 30657 + - uid: 20380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.752502,-20.183098 + pos: -6.7592,-31.541294 parent: 2 -- proto: ScalpelAdvanced +- proto: ScrapBucket entities: - - uid: 30658 + - uid: 14677 components: - type: Transform - pos: -65.34498,-24.184916 + pos: 4.457902,-37.55187 parent: 2 -- proto: ScalpelShiv - entities: - - uid: 27932 - components: - - type: Transform - parent: 27931 - - type: Physics - canCollide: False - - uid: 30660 - components: - - type: Transform - parent: 30659 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ScrapBucket - entities: - uid: 30661 components: - type: Transform @@ -231027,30 +221199,16 @@ entities: rot: -1.5707963267948966 rad pos: -57.333366,-20.596882 parent: 2 - - uid: 30667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.766434,-45.40118 - parent: 2 - proto: ScrapCanister1 entities: - - uid: 15197 + - uid: 23460 components: - type: Transform - parent: 15196 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: -1.5707963267948966 rad + pos: 14.5,-51.5 + parent: 2 - proto: ScrapCanister2 entities: - - uid: 15198 - components: - - type: Transform - parent: 15196 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 30668 components: - type: Transform @@ -231071,11 +221229,6 @@ entities: - type: Transform pos: 20.500097,-78.43573 parent: 2 - - uid: 30672 - components: - - type: Transform - pos: 11.426223,-48.525284 - parent: 2 - uid: 30673 components: - type: Transform @@ -231083,13 +221236,6 @@ entities: parent: 2 - proto: ScrapFireExtinguisher entities: - - uid: 119 - components: - - type: Transform - parent: 115 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 30674 components: - type: Transform @@ -231115,87 +221261,39 @@ entities: - type: Transform pos: 20.45942,-79.495346 parent: 2 -- proto: ScrapGlass +- proto: ScrapGeneratorFrame entities: - - uid: 30677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.4699,-27.528883 - parent: 2 - - uid: 30678 - components: - - type: Transform - pos: 11.506023,-29.345423 - parent: 2 - - uid: 30679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.673025,-28.591383 - parent: 2 - - uid: 30680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.7824,-29.513258 - parent: 2 - - uid: 30681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.548025,-27.419508 - parent: 2 - - uid: 30682 - components: - - type: Transform - pos: -18.703934,-52.541805 - parent: 2 - - uid: 30683 - components: - - type: Transform - pos: -18.516434,-52.073055 - parent: 2 - - uid: 30684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.375809,-51.30743 - parent: 2 - - uid: 30685 + - uid: 14684 components: - type: Transform - pos: -18.830847,-49.699318 + pos: -16.5,-36.5 parent: 2 - - uid: 30686 + - uid: 16291 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.391434,-53.15118 + pos: 12.5,-38.5 parent: 2 - - uid: 30687 + - uid: 16292 components: - type: Transform - pos: -18.846472,-46.168068 + pos: 13.5,-38.5 parent: 2 - - uid: 30688 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.469559,-46.30743 - parent: 2 - - uid: 30689 +- proto: ScrapGeneratorPlasmaLeaking + entities: + - uid: 15799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.844559,-46.760555 + pos: 14.5,-52.5 parent: 2 - - uid: 30690 +- proto: ScrapGeneratorUranium + entities: + - uid: 14673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.844559,-47.135555 + pos: -11.5,-43.5 parent: 2 +- proto: ScrapGlass + entities: - uid: 30691 components: - type: Transform @@ -231203,21 +221301,13 @@ entities: parent: 2 - proto: ScrapIntercom entities: - - uid: 30692 + - uid: 23394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.469559,-52.61993 + pos: -7.6776543,-40.426334 parent: 2 - proto: ScrapJetpack entities: - - uid: 15801 - components: - - type: Transform - parent: 15799 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 43170 components: - type: Transform @@ -231236,11 +221326,6 @@ entities: - type: Transform pos: -46.733677,-2.5892725 parent: 2 - - uid: 30695 - components: - - type: Transform - pos: -7.1269045,-35.218124 - parent: 2 - uid: 30696 components: - type: Transform @@ -231268,32 +221353,12 @@ entities: rot: -1.5707963267948966 rad pos: -46.327427,4.702978 parent: 2 - - uid: 30700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.516434,-50.58868 - parent: 2 - - uid: 30701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.594559,-51.198055 - parent: 2 - uid: 30702 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.515722,-80.46698 parent: 2 -- proto: ScrapPAIGold - entities: - - uid: 30703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.4067135,-51.55743 - parent: 2 - proto: ScrapSteel entities: - uid: 30704 @@ -231303,54 +221368,27 @@ entities: parent: 2 - proto: ScrapTube entities: - - uid: 30705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.57467,-3.163485 - parent: 2 - - uid: 30706 - components: - - type: Transform - pos: -48.746544,2.28964 - parent: 2 - - uid: 30707 - components: - - type: Transform - pos: -18.237505,-33.873817 - parent: 2 - - uid: 30708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.686209,-38.370293 - parent: 2 - - uid: 30709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.8413906,-35.05935 - parent: 2 - - uid: 30710 + - uid: 16211 components: - type: Transform - pos: -6.9507656,-35.4656 + rot: 3.141592653589793 rad + pos: 11.646855,-34.43036 parent: 2 - - uid: 30711 + - uid: 16221 components: - type: Transform - pos: -2.1367316,-38.515892 + pos: 11.284857,-34.49419 parent: 2 - - uid: 30712 + - uid: 30705 components: - type: Transform - pos: -1.2321386,-38.81543 + rot: 1.5707963267948966 rad + pos: -50.57467,-3.163485 parent: 2 - - uid: 30713 + - uid: 30706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.738715,-39.518528 + pos: -48.746544,2.28964 parent: 2 - proto: Screen entities: @@ -231699,6 +221737,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 23357 + components: + - type: Transform + pos: -7.4274044,-46.389015 + parent: 2 - uid: 30767 components: - type: Transform @@ -231745,11 +221788,6 @@ entities: - type: Transform pos: -57.50823,-89.7867 parent: 2 - - uid: 30776 - components: - - type: Transform - pos: -18.532417,-54.15476 - parent: 2 - uid: 43140 components: - type: Transform @@ -231760,6 +221798,13 @@ entities: - type: Transform pos: -71.588974,-2.2022552 parent: 2 +- proto: SeashellInstrument + entities: + - uid: 23574 + components: + - type: Transform + pos: -11.965896,-38.342144 + parent: 2 - proto: SecurityTechFab entities: - uid: 30777 @@ -231769,15 +221814,15 @@ entities: parent: 2 - proto: SeedExtractor entities: - - uid: 28530 + - uid: 23251 components: - type: Transform - pos: 33.5,15.5 + pos: -15.5,-34.5 parent: 2 - - uid: 30778 + - uid: 28530 components: - type: Transform - pos: -10.5,-12.5 + pos: 33.5,15.5 parent: 2 - uid: 30779 components: @@ -231786,64 +221831,41 @@ entities: parent: 2 - proto: SeismicCharge entities: - - uid: 26957 - components: - - type: Transform - parent: 26423 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26959 - components: - - type: Transform - parent: 26423 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26961 + - uid: 23805 components: - type: Transform - parent: 26423 + parent: 23804 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ShardCrystalBlue +- proto: SentientSlimesCore entities: - - uid: 30796 + - uid: 19080 components: - type: Transform - pos: -19.476284,-32.55245 + pos: 5.5167713,-27.202534 parent: 2 -- proto: ShardCrystalCyan +- proto: ShardCrystalBlue entities: - - uid: 30797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.491909,-33.55245 - parent: 2 - - uid: 30798 + - uid: 19077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.523159,-33.30245 + pos: 17.593742,-34.571117 parent: 2 -- proto: ShardCrystalGreen +- proto: ShardCrystalRandom entities: - - uid: 30799 + - uid: 18560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.491909,-34.380573 + pos: 13.687492,-36.430492 parent: 2 - - uid: 30800 +- proto: ShardGlass + entities: + - uid: 12215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.538784,-34.2087 + pos: 1.6482788,-18.014174 parent: 2 -- proto: ShardGlass - entities: - uid: 30801 components: - type: Transform @@ -231966,82 +221988,12 @@ entities: - type: Transform pos: -83.542496,0.20621294 parent: 2 - - uid: 30830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.4820156,-36.37185 - parent: 2 - - uid: 30831 - components: - - type: Transform - pos: -6.5132656,-35.5281 - parent: 2 - - uid: 30832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.4195156,-35.49685 - parent: 2 - - uid: 30833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.6070156,-34.699974 - parent: 2 - - uid: 30834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.4976406,-35.9656 - parent: 2 - - uid: 30835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.4351406,-36.387474 - parent: 2 - - uid: 30836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.2788906,-34.699974 - parent: 2 - - uid: 30837 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.9976406,-35.543724 - parent: 2 - - uid: 30838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.3413906,-36.3406 - parent: 2 -- proto: ShardGlassClockwork +- proto: ShardGlassPlasma entities: - - uid: 30839 - components: - - type: Transform - pos: -3.5394654,-24.44878 - parent: 2 - - uid: 30840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.3519654,-23.745655 - parent: 2 - - uid: 30841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.3832154,-24.495655 - parent: 2 - - uid: 30842 + - uid: 12190 components: - type: Transform - pos: -2.7582154,-24.07378 + pos: -3.6342087,-19.390114 parent: 2 - proto: ShardGlassReinforced entities: @@ -232073,6 +222025,25 @@ entities: - type: Transform pos: -49.95662,-3.721847 parent: 2 +- proto: SheetBrass1 + entities: + - uid: 12202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.2961926,-19.436728 + parent: 2 + - uid: 12219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.4280239,-18.739582 + parent: 2 + - uid: 12220 + components: + - type: Transform + pos: 2.1251678,-19.840336 + parent: 2 - proto: SheetGlass entities: - uid: 30848 @@ -232156,15 +222127,20 @@ entities: - type: Transform pos: 67.446106,-26.844027 parent: 2 -- proto: Sheetifier +- proto: SheetPGlass1 entities: - - uid: 30860 + - uid: 7586 components: - type: Transform - pos: -16.5,-21.5 + pos: 4.5102386,-20.362448 parent: 2 - proto: SheetPlasma entities: + - uid: 7552 + components: + - type: Transform + pos: -14.504304,-38.4695 + parent: 2 - uid: 30861 components: - type: Transform @@ -232399,6 +222375,11 @@ entities: parent: 2 - proto: SheetSteel1 entities: + - uid: 18257 + components: + - type: Transform + pos: -8.310703,-46.24839 + parent: 2 - uid: 30890 components: - type: Transform @@ -232481,6 +222462,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 23376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.112273,-49.310688 + parent: 2 + - uid: 23377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.190398,-49.498188 + parent: 2 - uid: 30902 components: - type: Transform @@ -232516,11 +222509,6 @@ entities: - type: Transform pos: -69.051704,-67.88417 parent: 2 - - uid: 30909 - components: - - type: Transform - pos: -0.5737078,-71.20553 - parent: 2 - proto: SheetUranium entities: - uid: 42080 @@ -232610,18 +222598,44 @@ entities: - 18728 - 18726 - 18723 - - uid: 30910 + - uid: 29203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,17.5 + pos: -2.5,-70.5 parent: 2 -- proto: ShelfChemistry - entities: - - uid: 30911 + - type: Storage + storedItems: + 29204: + position: 0,0 + _rotation: South + 29205: + position: 1,0 + _rotation: South + 29206: + position: 2,0 + _rotation: South + 29207: + position: 3,0 + _rotation: South + 29208: + position: 4,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 29204 + - 29205 + - 29206 + - 29207 + - 29208 + - uid: 30910 components: - type: Transform - pos: -2.5,-33.5 + rot: 1.5707963267948966 rad + pos: -11.5,17.5 parent: 2 - proto: ShelfChemistryChemistrySecure entities: @@ -232937,57 +222951,22 @@ entities: parent: 30922 - type: Physics canCollide: False -- proto: ShippingContainerBlank - entities: - - uid: 30928 - components: - - type: Transform - pos: -16.5,-56.5 - parent: 2 - - uid: 30929 - components: - - type: Transform - pos: -13.5,-57.5 - parent: 2 - - uid: 30930 - components: - - type: Transform - pos: 10.5,-61.5 - parent: 2 - - uid: 30931 - components: - - type: Transform - pos: 18.5,-59.5 - parent: 2 - - uid: 30932 - components: - - type: Transform - pos: 18.5,-60.5 - parent: 2 -- proto: ShippingContainerConarex +- proto: ShellShotgunImprovised entities: - - uid: 30933 - components: - - type: Transform - pos: 7.5,-56.5 - parent: 2 - - uid: 30934 + - uid: 19999 components: - type: Transform - pos: 7.5,-55.5 + rot: 3.141592653589793 rad + pos: -11.2640085,-26.387836 parent: 2 - - uid: 30935 + - uid: 20000 components: - type: Transform - pos: 17.5,-56.5 + rot: 3.141592653589793 rad + pos: -11.2640085,-26.600601 parent: 2 - proto: ShippingContainerCybersun entities: - - uid: 30936 - components: - - type: Transform - pos: 2.5,-56.5 - parent: 2 - uid: 30937 components: - type: Transform @@ -233000,54 +222979,6 @@ entities: - type: Transform pos: 14.5,-90.5 parent: 2 -- proto: ShippingContainerGorlex - entities: - - uid: 30939 - components: - - type: Transform - pos: 8.5,-59.5 - parent: 2 - - uid: 30940 - components: - - type: Transform - pos: 10.5,-55.5 - parent: 2 - - uid: 30941 - components: - - type: Transform - pos: 2.5,-57.5 - parent: 2 - - uid: 30942 - components: - - type: Transform - pos: 11.5,-56.5 - parent: 2 -- proto: ShippingContainerGorlexRed - entities: - - uid: 30943 - components: - - type: Transform - pos: 4.5,-55.5 - parent: 2 -- proto: ShippingContainerInterdyne - entities: - - uid: 30944 - components: - - type: Transform - pos: 3.5,-59.5 - parent: 2 - - uid: 30945 - components: - - type: Transform - pos: 3.5,-58.5 - parent: 2 -- proto: ShippingContainerKosmologistika - entities: - - uid: 30946 - components: - - type: Transform - pos: 1.5,-60.5 - parent: 2 - proto: ShippingContainerNakamura entities: - uid: 30947 @@ -233057,63 +222988,11 @@ entities: parent: 2 - proto: ShippingContainerNanotrasen entities: - - uid: 30948 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 2 - - uid: 30949 - components: - - type: Transform - pos: 14.5,-53.5 - parent: 2 - - uid: 30950 - components: - - type: Transform - pos: 14.5,-57.5 - parent: 2 - - uid: 30951 - components: - - type: Transform - pos: 14.5,-58.5 - parent: 2 - - uid: 30952 - components: - - type: Transform - pos: 14.5,-59.5 - parent: 2 - - uid: 30953 - components: - - type: Transform - pos: 0.5,-62.5 - parent: 2 - - uid: 30954 - components: - - type: Transform - pos: -8.5,-57.5 - parent: 2 - uid: 30955 components: - type: Transform pos: 10.5,-89.5 parent: 2 - - uid: 30956 - components: - - type: Transform - pos: -17.5,-61.5 - parent: 2 - - uid: 30957 - components: - - type: Transform - pos: 17.5,-49.5 - parent: 2 -- proto: ShippingContainerVitezstvi - entities: - - uid: 30958 - components: - - type: Transform - pos: 1.5,-61.5 - parent: 2 - proto: ShotGunCabinetFilled entities: - uid: 30959 @@ -233145,34 +223024,6 @@ entities: - type: Transform pos: 34.49214,30.562294 parent: 2 -- proto: ShowcaseRobot - entities: - - uid: 30962 - components: - - type: Transform - pos: -13.5,-48.5 - parent: 2 -- proto: ShowcaseRobotAntique - entities: - - uid: 30963 - components: - - type: Transform - pos: -15.5,-48.5 - parent: 2 -- proto: ShowcaseRobotMarauder - entities: - - uid: 30964 - components: - - type: Transform - pos: -11.5,-48.5 - parent: 2 -- proto: ShowcaseRobotWhite - entities: - - uid: 30965 - components: - - type: Transform - pos: -14.5,-48.5 - parent: 2 - proto: ShuttersNormal entities: - uid: 30966 @@ -234108,6 +223959,16 @@ entities: parent: 2 - proto: ShuttersRadiationOpen entities: + - uid: 16504 + components: + - type: Transform + pos: -8.5,-52.5 + parent: 2 + - uid: 16505 + components: + - type: Transform + pos: -7.5,-52.5 + parent: 2 - uid: 31117 components: - type: Transform @@ -234336,6 +224197,16 @@ entities: parent: 2 - proto: SignalButton entities: + - uid: 12236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-58.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7434: + - Pressed: Toggle - uid: 18535 components: - type: Transform @@ -234562,48 +224433,6 @@ entities: - Pressed: Toggle 31068: - Pressed: Toggle - - uid: 31135 - components: - - type: MetaData - name: путь к оружейной - - type: Transform - pos: 20.48664,-15.196688 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2185: - - Pressed: Toggle - - uid: 31136 - components: - - type: MetaData - name: ставни - - type: Transform - pos: 15.503534,-12.20219 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2197: - - Pressed: Toggle - 2198: - - Pressed: Toggle - 2199: - - Pressed: Toggle - 2200: - - Pressed: Toggle - 2201: - - Pressed: Toggle - 2202: - - Pressed: Toggle - 2203: - - Pressed: Toggle - 2204: - - Pressed: Toggle - 2205: - - Pressed: Toggle - 2206: - - Pressed: Toggle - 2207: - - Pressed: Toggle - uid: 31137 components: - type: MetaData @@ -234800,6 +224629,22 @@ entities: - Pressed: Toggle - proto: SignalButtonDirectional entities: + - uid: 1362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-43.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 24233: + - Pressed: Toggle + 24234: + - Pressed: Toggle + 1359: + - Pressed: Toggle + 1361: + - Pressed: Toggle - uid: 21313 components: - type: Transform @@ -234822,6 +224667,54 @@ entities: - Pressed: Toggle 26727: - Pressed: Toggle + - uid: 23558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-43.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10076: + - Pressed: Toggle + 10075: + - Pressed: Toggle + 10074: + - Pressed: Toggle + 10073: + - Pressed: Toggle + - uid: 27687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1367: + - Pressed: Toggle + 1370: + - Pressed: Toggle + 1369: + - Pressed: Toggle + 1366: + - Pressed: Toggle + - uid: 29254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-43.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10070: + - Pressed: Toggle + 10071: + - Pressed: Toggle + 10072: + - Pressed: Toggle + 24776: + - Pressed: Toggle - uid: 31142 components: - type: MetaData @@ -235680,40 +225573,6 @@ entities: - Pressed: Trigger - proto: SignalTimer entities: - - uid: 31210 - components: - - type: Transform - pos: -8.5,-51.5 - parent: 2 - - type: DeviceLinkSource - range: 3000 - linkedPorts: - 18974: - - Timer: Trigger - 18975: - - Timer: Trigger - 42202: - - Timer: Trigger - 27103: - - Timer: Trigger - 38568: - - Timer: Trigger - - type: DeviceLinkSink - invokeCounter: 1 - missingComponents: - - ApcPowerReceiver - - uid: 31211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 2 - - type: SignalTimer - delay: 1 - - type: DeviceLinkSink - invokeCounter: 1 - missingComponents: - - ApcPowerReceiver - uid: 43022 components: - type: Transform @@ -235933,12 +225792,6 @@ entities: - type: Transform pos: -58.5,-27.5 parent: 2 - - uid: 31232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-34.5 - parent: 2 - uid: 31233 components: - type: Transform @@ -235951,14 +225804,6 @@ entities: - type: Transform pos: 3.5,5.5 parent: 2 -- proto: SignCryogenics - entities: - - uid: 31235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-37.5 - parent: 2 - proto: SignCryogenicsMed entities: - uid: 31236 @@ -235971,12 +225816,6 @@ entities: - type: Transform pos: -39.5,-19.5 parent: 2 - - uid: 31238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-41.5 - parent: 2 - proto: SignDirectionalBridge entities: - uid: 31239 @@ -236339,6 +226178,11 @@ entities: parent: 2 - proto: SignDirectionalSalvage entities: + - uid: 26594 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 - uid: 31290 components: - type: Transform @@ -236529,6 +226373,16 @@ entities: parent: 2 - proto: SignElectricalMed entities: + - uid: 30012 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 2 + - uid: 30015 + components: + - type: Transform + pos: -8.5,-60.5 + parent: 2 - uid: 31320 components: - type: Transform @@ -236676,8 +226530,30 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-0.5 parent: 2 +- proto: SignMagnetics + entities: + - uid: 14590 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 25877 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 - proto: SignMagneticsMed entities: + - uid: 16228 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 26502 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 - uid: 43348 components: - type: Transform @@ -236711,6 +226587,14 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-4.5 parent: 2 +- proto: SignMemetic + entities: + - uid: 23467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-54.5 + parent: 2 - proto: SignMorgue entities: - uid: 31342 @@ -236803,8 +226687,25 @@ entities: - type: Transform pos: -57.5,-45.5 parent: 2 +- proto: SignRadiation + entities: + - uid: 30013 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 2 - proto: SignRadiationMed entities: + - uid: 16503 + components: + - type: Transform + pos: -9.5,-50.5 + parent: 2 + - uid: 30014 + components: + - type: Transform + pos: -10.5,-60.5 + parent: 2 - uid: 31355 components: - type: Transform @@ -236876,14 +226777,20 @@ entities: - type: Transform pos: -41.5,-55.5 parent: 2 - - uid: 31364 +- proto: SignSalvage + entities: + - uid: 18878 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-45.5 + pos: -0.5,-73.5 + parent: 2 + - uid: 26593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-44.5 parent: 2 -- proto: SignSalvage - entities: - uid: 27086 components: - type: Transform @@ -237054,6 +226961,13 @@ entities: - type: Transform pos: 0.5,-3.5 parent: 40828 +- proto: SignShock + entities: + - uid: 30011 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 2 - proto: SignSmoking entities: - uid: 43350 @@ -237063,11 +226977,6 @@ entities: parent: 2 - proto: SignSomethingOld entities: - - uid: 31381 - components: - - type: Transform - pos: 6.5,-36.5 - parent: 2 - uid: 43336 components: - type: Transform @@ -237080,19 +226989,6 @@ entities: rot: 1.5707963267948966 rad pos: 88.5,-54.5 parent: 2 -- proto: SignSomethingOld2 - entities: - - uid: 31382 - components: - - type: Transform - pos: 9.5,-30.5 - parent: 2 - - uid: 43338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-52.5 - parent: 2 - proto: SignSpace entities: - uid: 31383 @@ -237217,56 +227113,6 @@ entities: rot: 3.141592653589793 rad pos: -52.5,-69.5 parent: 2 -- proto: SignZomlab - entities: - - uid: 31400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-33.5 - parent: 2 -- proto: SilverOre1 - entities: - - uid: 31401 - components: - - type: Transform - pos: -20.519638,-58.623688 - parent: 2 - - uid: 31402 - components: - - type: Transform - pos: -20.613388,-58.795563 - parent: 2 - - uid: 31403 - components: - - type: Transform - pos: -19.754013,-58.311188 - parent: 2 - - uid: 31404 - components: - - type: Transform - pos: -21.785263,-59.358063 - parent: 2 - - uid: 31405 - components: - - type: Transform - pos: -19.207138,-58.608063 - parent: 2 - - uid: 31406 - components: - - type: Transform - pos: -18.394638,-57.295563 - parent: 2 - - uid: 31407 - components: - - type: Transform - pos: -18.504013,-57.920563 - parent: 2 - - uid: 31408 - components: - - type: Transform - pos: -20.472763,-58.295563 - parent: 2 - proto: SilverRing entities: - uid: 31409 @@ -237360,11 +227206,11 @@ entities: parent: 2 - proto: SinkEmpty entities: - - uid: 31422 + - uid: 23257 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-25.5 + pos: -10.5,-36.5 parent: 2 - proto: SinkStemlessWater entities: @@ -237465,6 +227311,12 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,15.5 parent: 2 + - uid: 29210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-71.5 + parent: 2 - uid: 31436 components: - type: Transform @@ -237564,6 +227416,16 @@ entities: parent: 2 - proto: SMESAdvanced entities: + - uid: 14686 + components: + - type: Transform + pos: -10.5,-51.5 + parent: 2 + - uid: 14739 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 2 - uid: 30865 components: - type: Transform @@ -237744,16 +227606,6 @@ entities: - type: Transform pos: -5.5,-4.5 parent: 2 - - uid: 31484 - components: - - type: Transform - pos: -3.5,-47.5 - parent: 2 - - uid: 31485 - components: - - type: Transform - pos: -9.5,-48.5 - parent: 2 - uid: 31486 components: - type: Transform @@ -237783,18 +227635,6 @@ entities: - type: Transform pos: 38.488438,-38.479836 parent: 2 -- proto: SmokeGrenade - entities: - - uid: 31490 - components: - - type: Transform - pos: 8.628214,-16.242386 - parent: 2 - - uid: 31491 - components: - - type: Transform - pos: 8.362589,-16.35176 - parent: 2 - proto: SmokingPipeFilledTobacco entities: - uid: 31492 @@ -237849,6 +227689,12 @@ entities: canCollide: False - proto: SodaDispenser entities: + - uid: 19985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-72.5 + parent: 2 - uid: 27614 components: - type: Transform @@ -238914,16 +228760,8 @@ entities: pos: 80.5,5.5 parent: 2 - type: Door - secondsUntilStateChange: -2803.9397 + secondsUntilStateChange: -66109.03 state: Opening - - uid: 31675 - components: - - type: MetaData - name: самая обычная стена - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-117.5 - parent: 2 - proto: SpaceCash100 entities: - uid: 1791 @@ -238945,13 +228783,15 @@ entities: - type: Transform pos: -66.40726,-7.1659994 parent: 2 -- proto: SpaceHeaterAnchored +- proto: SpaceCash5000 entities: - - uid: 31678 + - uid: 7494 components: - type: Transform - pos: -19.5,-40.5 - parent: 2 + parent: 9970 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SpacemenFigureSpawner entities: - uid: 31679 @@ -238959,133 +228799,6 @@ entities: - type: Transform pos: -36.5,3.5 parent: 2 -- proto: SpaceQuartz1 - entities: - - uid: 31680 - components: - - type: Transform - pos: -5.6660423,-59.43951 - parent: 2 - - uid: 31681 - components: - - type: Transform - pos: -5.3066673,-59.361385 - parent: 2 - - uid: 31682 - components: - - type: Transform - pos: -5.2597923,-59.361385 - parent: 2 - - uid: 31683 - components: - - type: Transform - pos: -6.4316673,-58.392635 - parent: 2 - - uid: 31684 - components: - - type: Transform - pos: -6.4472923,-58.65826 - parent: 2 - - uid: 31685 - components: - - type: Transform - pos: -6.4316673,-58.798885 - parent: 2 - - uid: 31686 - components: - - type: Transform - pos: -6.4316673,-58.87701 - parent: 2 - - uid: 31687 - components: - - type: Transform - pos: -6.2910423,-59.705135 - parent: 2 - - uid: 31688 - components: - - type: Transform - pos: -6.0566673,-59.65826 - parent: 2 - - uid: 31689 - components: - - type: Transform - pos: -3.5722923,-58.53326 - parent: 2 - - uid: 31690 - components: - - type: Transform - pos: -3.1504173,-58.43951 - parent: 2 - - uid: 31691 - components: - - type: Transform - pos: -2.9629173,-58.361385 - parent: 2 - - uid: 31692 - components: - - type: Transform - pos: -3.2285423,-60.28326 - parent: 2 - - uid: 31693 - components: - - type: Transform - pos: -3.2285423,-60.28326 - parent: 2 - - uid: 31694 - components: - - type: Transform - pos: -4.1347923,-60.31451 - parent: 2 - - uid: 31695 - components: - - type: Transform - pos: -4.9316673,-60.93951 - parent: 2 - - uid: 31696 - components: - - type: Transform - pos: -2.5722923,-59.25201 - parent: 2 - - uid: 31697 - components: - - type: Transform - pos: -7.1504173,-58.048885 - parent: 2 - - uid: 31698 - components: - - type: Transform - pos: -7.4160423,-57.12701 - parent: 2 - - uid: 31699 - components: - - type: Transform - pos: -6.6216874,-56.6744 - parent: 2 - - uid: 31700 - components: - - type: Transform - pos: -6.2310624,-56.6119 - parent: 2 - - uid: 31701 - components: - - type: Transform - pos: -5.7310624,-56.658775 - parent: 2 - - uid: 31702 - components: - - type: Transform - pos: -4.8404374,-56.6119 - parent: 2 - - uid: 31703 - components: - - type: Transform - pos: -4.4810624,-56.315025 - parent: 2 - - uid: 31704 - components: - - type: Transform - pos: -3.9654374,-56.45565 - parent: 2 - proto: SpaceVillainArcadeFilled entities: - uid: 31705 @@ -239116,36 +228829,27 @@ entities: rot: 1.5707963267948966 rad pos: 85.5,-6.5 parent: 2 -- proto: SpawnFloorTrapBear +- proto: SpawnMechRipley entities: - - uid: 31710 + - uid: 23567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-58.5 + rot: 3.141592653589793 rad + pos: -16.5,-47.5 parent: 2 -- proto: SpawnFloorTrapCarp +- proto: SpawnMobAdultSlimesBlue entities: - - uid: 31711 + - uid: 23591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-53.5 + pos: -7.5,-56.5 parent: 2 -- proto: SpawnFloorTrapKangaroo +- proto: SpawnMobAdultSlimesYellowAngry entities: - - uid: 31712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-61.5 - parent: 2 -- proto: SpawnMechRipley - entities: - - uid: 31713 + - uid: 19832 components: - type: Transform - pos: -19.5,-61.5 + pos: -11.5,-58.5 parent: 2 - proto: SpawnMobAlexander entities: @@ -239161,13 +228865,6 @@ entities: - type: Transform pos: 38.5,12.5 parent: 2 -- proto: SpawnMobBear - entities: - - uid: 31715 - components: - - type: Transform - pos: -8.5,-26.5 - parent: 2 - proto: SpawnMobBoxingKangaroo entities: - uid: 12790 @@ -239176,42 +228873,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-103.5 parent: 2 -- proto: SpawnMobCarp - entities: - - uid: 31717 - components: - - type: Transform - pos: -2.5,-27.5 - parent: 2 - - uid: 31718 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 2 - - uid: 31719 - components: - - type: Transform - pos: 6.5,-26.5 - parent: 2 - - uid: 31720 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 -- proto: SpawnMobCarpHolo - entities: - - uid: 31721 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 2 -- proto: SpawnMobCarpMagic - entities: - - uid: 31722 - components: - - type: Transform - pos: -22.5,-47.5 - parent: 2 - proto: SpawnMobCatFloppa entities: - uid: 31723 @@ -239231,20 +228892,6 @@ entities: - type: Transform pos: 0.5,30.5 parent: 2 -- proto: SpawnMobCleanBot - entities: - - uid: 31726 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 2 -- proto: SpawnMobCobraSalvage - entities: - - uid: 31727 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 2 - proto: SpawnMobCockroach entities: - uid: 42433 @@ -239257,31 +228904,6 @@ entities: - type: Transform pos: 75.5,-10.5 parent: 2 - - uid: 42435 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 2 - - uid: 42436 - components: - - type: Transform - pos: -19.5,-24.5 - parent: 2 - - uid: 42437 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 2 - - uid: 42438 - components: - - type: Transform - pos: -15.5,-22.5 - parent: 2 - - uid: 42439 - components: - - type: Transform - pos: -17.5,-28.5 - parent: 2 - proto: SpawnMobCorgi entities: - uid: 31728 @@ -239335,37 +228957,6 @@ entities: - type: Transform pos: 11.5,-81.5 parent: 2 -- proto: SpawnMobKangaroo - entities: - - uid: 31732 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 2 -- proto: SpawnMobKangarooSalvage - entities: - - uid: 31733 - components: - - type: Transform - pos: -8.5,-22.5 - parent: 2 -- proto: SpawnMobLuminousPerson - entities: - - uid: 31734 - components: - - type: Transform - pos: -16.5,-19.5 - parent: 2 - - uid: 31735 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 2 - - uid: 31736 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 2 - proto: SpawnMobMcGriff entities: - uid: 31737 @@ -239425,28 +229016,6 @@ entities: - type: Transform pos: -50.5,-73.5 parent: 2 -- proto: SpawnMobParrot - entities: - - uid: 31746 - components: - - type: Transform - pos: 11.5,-27.5 - parent: 2 -- proto: SpawnMobPurpleSnake - entities: - - uid: 31748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-46.5 - parent: 2 -- proto: SpawnMobShark - entities: - - uid: 31749 - components: - - type: Transform - pos: -10.5,-39.5 - parent: 2 - proto: SpawnMobShiva entities: - uid: 31750 @@ -239461,14 +229030,6 @@ entities: - type: Transform pos: -29.5,6.5 parent: 2 -- proto: SpawnMobSmallPurpleSnake - entities: - - uid: 31752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-37.5 - parent: 2 - proto: SpawnMobSmile entities: - uid: 31753 @@ -239478,24 +229039,37 @@ entities: parent: 2 - proto: SpawnMobSpaceCobra entities: - - uid: 31754 + - uid: 12241 components: - type: Transform - pos: 13.5,-39.5 + pos: 11.5,-46.5 + parent: 2 + - uid: 23269 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 2 + - uid: 23511 + components: + - type: Transform + pos: -2.5,-55.5 + parent: 2 + - uid: 23522 + components: + - type: Transform + pos: 12.5,-26.5 parent: 2 - proto: SpawnMobSpaceSpider entities: - - uid: 31755 + - uid: 23523 components: - type: Transform - pos: -2.5,-22.5 + pos: -3.5,-47.5 parent: 2 -- proto: SpawnMobSpiderSalvage - entities: - - uid: 31756 + - uid: 23529 components: - type: Transform - pos: -16.5,-40.5 + pos: -12.5,-42.5 parent: 2 - proto: SpawnMobWalter entities: @@ -239875,45958 +229449,46375 @@ entities: - type: Transform pos: 67.5,-28.5 parent: 2 - - uid: 31822 + - uid: 31822 + components: + - type: Transform + pos: 63.5,-26.5 + parent: 2 +- proto: SpawnPointPilot + entities: + - uid: 31823 + components: + - type: Transform + pos: 58.5,14.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 31824 + components: + - type: Transform + pos: -52.5,-48.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 31825 + components: + - type: Transform + pos: -1.5,-98.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 31826 + components: + - type: Transform + pos: 25.5,-75.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 31827 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - uid: 31828 + components: + - type: Transform + pos: -52.5,-58.5 + parent: 2 + - uid: 31829 + components: + - type: Transform + pos: -44.5,-88.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 31830 + components: + - type: Transform + pos: -35.5,-69.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 38077 + components: + - type: Transform + pos: -6.5,-94.5 + parent: 2 + - uid: 39451 + components: + - type: Transform + pos: -6.5,-95.5 + parent: 2 + - uid: 39532 + components: + - type: Transform + pos: -6.5,-96.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 31834 + components: + - type: Transform + pos: -49.5,-82.5 + parent: 2 + - uid: 31835 + components: + - type: Transform + pos: -68.5,-65.5 + parent: 2 + - uid: 31836 + components: + - type: Transform + pos: -38.5,-62.5 + parent: 2 + - uid: 31837 + components: + - type: Transform + pos: -39.5,-53.5 + parent: 2 + - uid: 31838 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 31839 + components: + - type: Transform + pos: -43.5,-85.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 31841 + components: + - type: Transform + pos: -49.5,-49.5 + parent: 2 + - uid: 31842 + components: + - type: Transform + pos: 73.5,-27.5 + parent: 2 + - uid: 31843 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 31844 + components: + - type: Transform + pos: 47.5,9.5 + parent: 2 + - uid: 31846 + components: + - type: Transform + pos: 71.5,-12.5 + parent: 2 + - uid: 32572 + components: + - type: Transform + pos: -7.5,-80.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 27516 + components: + - type: Transform + pos: -8.5,-78.5 + parent: 2 + - uid: 31847 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 31848 + components: + - type: Transform + pos: 77.5,-29.5 + parent: 2 + - uid: 31849 + components: + - type: Transform + pos: -47.5,-47.5 + parent: 2 + - uid: 31850 + components: + - type: Transform + pos: -66.5,-39.5 + parent: 2 + - uid: 31852 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 31853 + components: + - type: Transform + pos: 63.5,4.5 + parent: 2 + - uid: 31854 + components: + - type: Transform + pos: 64.5,4.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 31172 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 31855 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 31857 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 31858 + components: + - type: Transform + pos: 37.5,5.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 31859 + components: + - type: Transform + pos: 50.5,-55.5 + parent: 2 + - uid: 31860 + components: + - type: Transform + pos: 52.5,-51.5 + parent: 2 + - uid: 31861 + components: + - type: Transform + pos: 51.5,-82.5 + parent: 2 + - uid: 31862 + components: + - type: Transform + pos: 50.5,-82.5 + parent: 2 + - uid: 31863 + components: + - type: Transform + pos: 49.5,-82.5 + parent: 2 + - uid: 31864 + components: + - type: Transform + pos: 48.5,-82.5 + parent: 2 +- proto: SpawnPointSurgeon + entities: + - uid: 44144 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 31865 + components: + - type: Transform + pos: 40.5,-83.5 + parent: 2 + - uid: 31866 + components: + - type: Transform + pos: 49.5,-54.5 + parent: 2 + - uid: 31867 + components: + - type: Transform + pos: 49.5,-52.5 + parent: 2 + - uid: 31868 + components: + - type: Transform + pos: 52.5,-53.5 + parent: 2 + - uid: 31869 + components: + - type: Transform + pos: 51.5,-55.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 27738 + components: + - type: Transform + pos: 48.5,-20.5 + parent: 2 +- proto: SpawnPointZookeeper + entities: + - uid: 31871 + components: + - type: Transform + pos: -66.5,-48.5 + parent: 2 +- proto: SpeedLoaderMagnum + entities: + - uid: 31872 + components: + - type: Transform + pos: 48.552704,16.57993 + parent: 2 +- proto: SpeedLoaderMagnumPractice + entities: + - uid: 31873 + components: + - type: Transform + pos: 59.489346,7.606823 + parent: 2 +- proto: SpiderWeb + entities: + - uid: 31888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,20.5 + parent: 2 + - uid: 31889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,19.5 + parent: 2 + - uid: 43160 + components: + - type: Transform + pos: -2.5,-104.5 + parent: 2 + - uid: 43161 + components: + - type: Transform + pos: -2.5,-103.5 + parent: 2 + - uid: 43162 + components: + - type: Transform + pos: -1.5,-103.5 + parent: 2 + - uid: 43163 + components: + - type: Transform + pos: -1.5,-102.5 + parent: 2 + - uid: 43166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-104.5 + parent: 2 +- proto: SpoonPlastic + entities: + - uid: 31908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.44861,-6.764276 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 26658 + components: + - type: Transform + parent: 32193 + - type: Physics + canCollide: False +- proto: SprayPainter + entities: + - uid: 31910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.494995,-26.842003 + parent: 2 + - uid: 31911 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 31912 + components: + - type: Transform + pos: -66.54268,-52.468018 + parent: 2 +- proto: SS13Memorial + entities: + - uid: 31913 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 +- proto: StairStage + entities: + - uid: 14662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 2 +- proto: StairWood + entities: + - uid: 31921 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - uid: 31922 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 31923 + components: + - type: Transform + pos: -44.5,-25.5 + parent: 2 + - uid: 31924 + components: + - type: Transform + pos: 62.5,-4.5 + parent: 2 + - uid: 31925 + components: + - type: Transform + pos: -44.5,-24.5 + parent: 2 + - uid: 31926 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 31927 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 2 + - uid: 31928 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - uid: 31929 + components: + - type: Transform + pos: -48.5,-35.5 + parent: 2 + - uid: 41418 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 40828 + - uid: 41886 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 41669 +- proto: StationAiUploadCircuitboard + entities: + - uid: 31930 + components: + - type: Transform + pos: 39.52277,-41.403046 + parent: 2 +- proto: StationAiUploadComputer + entities: + - uid: 31766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,20.5 + parent: 2 +- proto: StationAnchorOff + entities: + - uid: 31932 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 26912 + components: + - type: Transform + parent: 26911 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: StationMap + entities: + - uid: 31933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-26.5 + parent: 2 + - uid: 31934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 90.5,-42.5 + parent: 2 + - uid: 31935 + components: + - type: Transform + pos: 59.5,-30.5 + parent: 2 + - uid: 31936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-43.5 + parent: 2 + - uid: 31937 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 2 + - uid: 31938 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 31939 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 31940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-5.5 + parent: 2 + - uid: 31941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 2 + - uid: 31942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-45.5 + parent: 2 + - uid: 31943 + components: + - type: Transform + pos: -61.5,-41.5 + parent: 2 + - uid: 31944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-57.5 + parent: 2 + - uid: 31945 + components: + - type: Transform + pos: -29.5,-79.5 + parent: 2 + - uid: 31946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-85.5 + parent: 2 + - uid: 31947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-63.5 + parent: 2 + - uid: 31948 + components: + - type: Transform + pos: -14.5,-70.5 + parent: 2 + - uid: 31949 components: - type: Transform - pos: 63.5,-26.5 + pos: 2.5,-73.5 parent: 2 -- proto: SpawnPointPilot - entities: - - uid: 31823 + - uid: 31950 components: - type: Transform - pos: 58.5,14.5 + rot: 3.141592653589793 rad + pos: 25.5,-72.5 parent: 2 -- proto: SpawnPointPsychologist - entities: - - uid: 31824 + - uid: 31951 components: - type: Transform - pos: -52.5,-48.5 + rot: 1.5707963267948966 rad + pos: 30.5,-51.5 parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 31825 + - uid: 31952 components: - type: Transform - pos: -1.5,-98.5 + rot: 1.5707963267948966 rad + pos: 42.5,-57.5 parent: 2 -- proto: SpawnPointReporter - entities: - - uid: 31826 + - uid: 31953 components: - type: Transform - pos: 25.5,-75.5 + rot: -1.5707963267948966 rad + pos: 31.5,-16.5 parent: 2 -- proto: SpawnPointResearchAssistant - entities: - - uid: 31827 + - uid: 31954 components: - type: Transform - pos: -39.5,-48.5 + pos: 61.5,-6.5 parent: 2 - - uid: 31828 + - uid: 31955 components: - type: Transform - pos: -52.5,-58.5 + rot: -1.5707963267948966 rad + pos: 46.5,-20.5 parent: 2 - - uid: 31829 + - uid: 31956 components: - type: Transform - pos: -44.5,-88.5 + rot: -1.5707963267948966 rad + pos: 113.5,-39.5 parent: 2 -- proto: SpawnPointResearchDirector +- proto: StationMapAssembly entities: - - uid: 31830 + - uid: 44099 components: - type: Transform - pos: -35.5,-69.5 + rot: 1.5707963267948966 rad + pos: -29.5,-101.5 parent: 2 -- proto: SpawnPointSalvageSpecialist +- proto: StatueBananiumClown entities: - - uid: 38077 + - uid: 31958 components: - type: Transform - pos: -6.5,-94.5 + pos: -51.5,-108.5 parent: 2 - - uid: 39451 +- proto: StatueVenusBlue + entities: + - uid: 31960 components: - type: Transform - pos: -6.5,-95.5 + pos: 10.5,24.5 parent: 2 - - uid: 39532 +- proto: StatueVenusRed + entities: + - uid: 31962 components: - type: Transform - pos: -6.5,-96.5 + pos: -9.5,24.5 parent: 2 -- proto: SpawnPointScientist +- proto: SteelBench entities: - - uid: 31834 + - uid: 31964 components: - type: Transform - pos: -49.5,-82.5 + pos: -70.5,-53.5 parent: 2 - - uid: 31835 + - uid: 31966 components: - type: Transform - pos: -68.5,-65.5 + pos: -74.5,-53.5 parent: 2 - - uid: 31836 + - uid: 31967 components: - type: Transform - pos: -38.5,-62.5 + pos: -71.5,-53.5 parent: 2 - - uid: 31837 + - uid: 31968 components: - type: Transform - pos: -39.5,-53.5 + pos: -75.5,-53.5 parent: 2 - - uid: 31838 + - uid: 31970 components: - type: Transform - pos: -40.5,-47.5 + rot: -1.5707963267948966 rad + pos: 26.5,-82.5 parent: 2 - - uid: 31839 + - uid: 31971 components: - type: Transform - pos: -43.5,-85.5 + rot: 1.5707963267948966 rad + pos: 24.5,-82.5 parent: 2 -- proto: SpawnPointSecurityCadet - entities: - - uid: 31841 + - uid: 31972 components: - type: Transform - pos: -49.5,-49.5 + rot: 1.5707963267948966 rad + pos: 72.5,-3.5 parent: 2 - - uid: 31842 + - uid: 31973 components: - type: Transform - pos: 73.5,-27.5 + rot: -1.5707963267948966 rad + pos: 75.5,-3.5 parent: 2 - - uid: 31843 + - uid: 31974 components: - type: Transform - pos: 34.5,-4.5 + rot: -1.5707963267948966 rad + pos: 75.5,-1.5 parent: 2 - - uid: 31844 + - uid: 31975 components: - type: Transform - pos: 47.5,9.5 + rot: 1.5707963267948966 rad + pos: 47.5,-10.5 parent: 2 - - uid: 31846 + - uid: 31976 components: - type: Transform - pos: 71.5,-12.5 + rot: 1.5707963267948966 rad + pos: 72.5,-1.5 parent: 2 - - uid: 32572 + - uid: 31977 components: - type: Transform - pos: -7.5,-80.5 + rot: 1.5707963267948966 rad + pos: 47.5,-8.5 parent: 2 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 27516 + - uid: 31978 components: - type: Transform - pos: -8.5,-78.5 + rot: -1.5707963267948966 rad + pos: 48.5,-8.5 parent: 2 - - uid: 31847 + - uid: 31979 components: - type: Transform - pos: -5.5,1.5 + rot: -1.5707963267948966 rad + pos: 48.5,-10.5 parent: 2 - - uid: 31848 +- proto: SteelOre1 + entities: + - uid: 43362 components: - type: Transform - pos: 77.5,-29.5 + pos: -6.474345,-89.49801 parent: 2 - - uid: 31849 + - uid: 43363 components: - type: Transform - pos: -47.5,-47.5 + pos: -6.52122,-89.31051 parent: 2 - - uid: 31850 +- proto: Stool + entities: + - uid: 2395 components: - type: Transform - pos: -66.5,-39.5 + pos: 36.5,9.5 parent: 2 - - uid: 31852 + - uid: 16330 components: - type: Transform - pos: 62.5,4.5 + rot: 1.5707963267948966 rad + pos: 86.5,-51.5 parent: 2 - - uid: 31853 + - uid: 21612 components: - type: Transform - pos: 63.5,4.5 + rot: -1.5707963267948966 rad + pos: -8.5,-95.5 parent: 2 - - uid: 31854 + - uid: 21619 components: - type: Transform - pos: 64.5,4.5 + rot: -1.5707963267948966 rad + pos: -8.5,-96.5 parent: 2 -- proto: SpawnPointServiceWorker - entities: - - uid: 31172 + - uid: 22514 components: - type: Transform - pos: 30.5,17.5 + rot: -1.5707963267948966 rad + pos: -8.5,-93.5 parent: 2 - - uid: 31855 + - uid: 26562 components: - type: Transform - pos: 32.5,-0.5 + rot: -1.5707963267948966 rad + pos: 82.5,-48.5 parent: 2 - - uid: 31857 + - uid: 26565 components: - type: Transform - pos: 35.5,-6.5 + pos: 85.5,-54.5 parent: 2 - - uid: 31858 + - uid: 29349 components: - type: Transform - pos: 37.5,5.5 + pos: 35.5,9.5 parent: 2 -- proto: SpawnPointStationEngineer - entities: - - uid: 31859 + - uid: 32000 components: - type: Transform - pos: 50.5,-55.5 + rot: -1.5707963267948966 rad + pos: 86.022156,-6.260051 parent: 2 - - uid: 31860 + - uid: 32001 components: - type: Transform - pos: 52.5,-51.5 + pos: -63.5,10.5 parent: 2 - - uid: 31861 + - uid: 32002 components: - type: Transform - pos: 51.5,-82.5 + rot: 3.141592653589793 rad + pos: -63.5,11.5 parent: 2 - - uid: 31862 + - uid: 32003 components: - type: Transform - pos: 50.5,-82.5 + pos: -62.5,10.5 parent: 2 - - uid: 31863 + - uid: 32004 components: - type: Transform - pos: 49.5,-82.5 + pos: -64.5,10.5 parent: 2 - - uid: 31864 + - uid: 32005 components: - type: Transform - pos: 48.5,-82.5 + rot: 1.5707963267948966 rad + pos: 36.709076,0.60289204 parent: 2 -- proto: SpawnPointSurgeon - entities: - - uid: 44144 + - uid: 32006 components: - type: Transform - pos: -52.5,-18.5 + pos: 37.5,-16.5 parent: 2 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 31865 + - uid: 32007 components: - type: Transform - pos: 40.5,-83.5 + rot: 3.141592653589793 rad + pos: -64.5,11.5 parent: 2 - - uid: 31866 + - uid: 32008 components: - type: Transform - pos: 49.5,-54.5 + rot: 3.141592653589793 rad + pos: -62.5,11.5 parent: 2 - - uid: 31867 + - uid: 32009 components: - type: Transform - pos: 49.5,-52.5 + rot: 1.5707963267948966 rad + pos: 83.890396,-6.369869 parent: 2 - - uid: 31868 + - uid: 32457 components: - type: Transform - pos: 52.5,-53.5 + rot: 1.5707963267948966 rad + pos: 85.5,-49.5 parent: 2 - - uid: 31869 + - uid: 42216 components: - type: Transform - pos: 51.5,-55.5 + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 parent: 2 -- proto: SpawnPointWarden +- proto: StoolBar entities: - - uid: 27738 + - uid: 19991 components: - type: Transform - pos: 48.5,-20.5 + pos: -4.5,-71.5 parent: 2 -- proto: SpawnPointZookeeper - entities: - - uid: 31871 + - uid: 29200 components: - type: Transform - pos: -66.5,-48.5 + pos: -3.5,-71.5 parent: 2 -- proto: SpeedLoaderMagnum - entities: - - uid: 31872 + - uid: 29201 components: - type: Transform - pos: 48.552704,16.57993 + rot: 3.141592653589793 rad + pos: -4.5,-73.5 parent: 2 -- proto: SpeedLoaderMagnumPractice - entities: - - uid: 31873 + - uid: 29202 components: - type: Transform - pos: 59.489346,7.606823 + rot: 3.141592653589793 rad + pos: -3.5,-73.5 parent: 2 -- proto: SpiderWeb - entities: - - uid: 31874 + - uid: 32010 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-22.5 + pos: -9.5,16.5 parent: 2 - - uid: 31875 + - uid: 32011 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-22.5 + pos: -8.5,16.5 parent: 2 - - uid: 31876 + - uid: 32012 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-23.5 + pos: 51.5,3.5 parent: 2 - - uid: 31877 + - uid: 32013 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-23.5 + pos: 52.5,3.5 parent: 2 - - uid: 31878 + - uid: 32014 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-23.5 + rot: -1.5707963267948966 rad + pos: 44.5,-74.5 parent: 2 - - uid: 31879 + - uid: 32015 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-22.5 + rot: -1.5707963267948966 rad + pos: 44.5,-75.5 parent: 2 - - uid: 31880 + - uid: 32016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-25.5 + rot: -1.5707963267948966 rad + pos: 29.5,4.5 parent: 2 - - uid: 31881 + - uid: 32017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-26.5 + rot: -1.5707963267948966 rad + pos: 29.5,2.5 parent: 2 - - uid: 31882 + - uid: 32018 components: - type: Transform - pos: -11.5,-50.5 + rot: -1.5707963267948966 rad + pos: 29.5,3.5 parent: 2 - - uid: 31883 + - uid: 32019 components: - type: Transform - pos: -20.5,-50.5 + rot: -1.5707963267948966 rad + pos: 29.5,1.5 parent: 2 - - uid: 31884 + - uid: 32023 components: - type: Transform - pos: -17.5,-45.5 + rot: -1.5707963267948966 rad + pos: -25.5,-94.5 parent: 2 - - uid: 31885 + - uid: 32024 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-54.5 + rot: -1.5707963267948966 rad + pos: -25.5,-93.5 + parent: 2 + - uid: 32025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-92.5 parent: 2 - - uid: 31886 + - uid: 32026 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-53.5 + pos: -44.5,-83.5 parent: 2 - - uid: 31887 + - uid: 32027 components: - type: Transform - pos: -20.5,-52.5 + rot: 1.5707963267948966 rad + pos: -44.5,-84.5 parent: 2 - - uid: 31888 + - uid: 43972 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,20.5 + pos: -23.5,-103.5 parent: 2 - - uid: 31889 + - uid: 43973 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,19.5 + pos: -22.5,-103.5 parent: 2 - - uid: 31890 + - uid: 43974 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-27.5 + pos: -21.5,-103.5 parent: 2 - - uid: 31891 + - uid: 43975 components: - type: Transform - pos: -4.5,-25.5 + rot: -1.5707963267948966 rad + pos: -19.5,-101.5 parent: 2 - - uid: 31892 + - uid: 43976 components: - type: Transform - pos: -3.5,-24.5 + rot: -1.5707963267948966 rad + pos: -19.5,-102.5 parent: 2 - - uid: 31893 +- proto: StorageCanister + entities: + - uid: 16287 components: - type: Transform - pos: -1.5,-24.5 + pos: 11.5,-40.5 parent: 2 - - uid: 31894 + - uid: 32028 components: - type: Transform - pos: -0.5,-25.5 + pos: -46.5,-58.5 parent: 2 - - uid: 31895 + - uid: 32029 components: - type: Transform - pos: -1.5,-25.5 + pos: 41.5,-91.5 parent: 2 - - uid: 31896 + - uid: 32030 components: - type: Transform - pos: -2.5,-24.5 + pos: 41.5,-90.5 parent: 2 - - uid: 31897 + - uid: 32031 components: - type: Transform - pos: -3.5,-25.5 + pos: 41.5,-89.5 parent: 2 - - uid: 31898 + - uid: 32032 components: - type: Transform - pos: -4.5,-24.5 + pos: 36.5,-50.5 parent: 2 - - uid: 31899 + - uid: 32033 components: - type: Transform - pos: -4.5,-25.5 + pos: 37.5,-50.5 parent: 2 - - uid: 31900 + - uid: 32034 components: - type: Transform - pos: -5.5,-26.5 + pos: 38.5,-50.5 parent: 2 - - uid: 31901 + - uid: 32035 components: - type: Transform - pos: -4.5,-22.5 + pos: 34.5,-48.5 parent: 2 - - uid: 31902 + - uid: 32036 components: - type: Transform - pos: -4.5,-22.5 + pos: -36.5,-23.5 parent: 2 - - uid: 31903 + - uid: 32037 components: - type: Transform - pos: -5.5,-21.5 + pos: -69.5,-20.5 parent: 2 - - uid: 31904 + - uid: 32038 components: - type: Transform - pos: -5.5,-22.5 + pos: 18.5,-76.5 parent: 2 - - uid: 31905 + - uid: 32039 components: - type: Transform - pos: 0.5,-24.5 + pos: -62.5,-74.5 parent: 2 - - uid: 31906 + - uid: 32040 components: - type: Transform - pos: 0.5,-25.5 + pos: -72.5,-27.5 parent: 2 - - uid: 31907 + - uid: 32041 components: - type: Transform - pos: 2.5,-24.5 + pos: -71.5,-27.5 parent: 2 - - uid: 42287 + - uid: 32042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-40.5 + pos: 100.5,-84.5 parent: 2 - - uid: 42288 + - uid: 32043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-39.5 + pos: -49.5,-56.5 parent: 2 - - uid: 42289 + - uid: 32044 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-39.5 + pos: -53.5,-60.5 parent: 2 - - uid: 42290 +- proto: StrangePill + entities: + - uid: 32045 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-38.5 + pos: -18.301134,18.654554 parent: 2 - - uid: 42291 + - uid: 32046 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-35.5 + pos: -18.09801,18.560804 parent: 2 - - uid: 42292 + - uid: 32047 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-35.5 + pos: -17.988634,18.88893 parent: 2 - - uid: 42293 +- proto: Stunbaton + entities: + - uid: 23414 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-35.5 + pos: -1.667934,-34.350006 parent: 2 - - uid: 42294 + - uid: 23415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-34.5 + pos: -1.542934,-34.443756 parent: 2 - - uid: 42295 + - uid: 23416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-32.5 + pos: -1.417934,-34.55313 parent: 2 - - uid: 42296 + - uid: 32048 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-31.5 + pos: 57.46068,-19.418554 parent: 2 - - uid: 43160 + - uid: 32049 components: - type: Transform - pos: -2.5,-104.5 + pos: 52.419567,-17.399994 parent: 2 - - uid: 43161 + - uid: 32050 components: - type: Transform - pos: -2.5,-103.5 + pos: 52.700817,-17.509369 parent: 2 - - uid: 43162 + - uid: 32051 components: - type: Transform - pos: -1.5,-103.5 + pos: 52.544567,-17.493744 parent: 2 - - uid: 43163 + - uid: 32052 components: - type: Transform - pos: -1.5,-102.5 + pos: 57.570053,-19.49668 parent: 2 - - uid: 43166 + - uid: 32053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-104.5 + pos: 57.351303,-19.37168 parent: 2 -- proto: SpoonPlastic +- proto: SubstationBasic entities: - - uid: 31908 + - uid: 16501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.44861,-6.764276 + pos: -7.5,-53.5 parent: 2 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 26658 + - uid: 32054 components: - type: Transform - parent: 32193 - - type: Physics - canCollide: False - - uid: 31909 + pos: -4.5,-4.5 + parent: 2 + - uid: 32055 components: - type: Transform - pos: -15.147467,-50.176872 + pos: 67.5,-12.5 parent: 2 -- proto: SprayPainter - entities: - - uid: 31910 + - uid: 32056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.494995,-26.842003 + pos: 27.5,-35.5 parent: 2 - - uid: 31911 + - uid: 32057 components: - type: Transform - pos: 21.5,19.5 + pos: 60.5,-56.5 parent: 2 - - uid: 31912 + - uid: 32058 components: - type: Transform - pos: -66.54268,-52.468018 + pos: -61.5,-16.5 parent: 2 -- proto: SS13Memorial - entities: - - uid: 31913 + - uid: 32059 components: + - type: MetaData + name: Солнечные панели СЗ - type: Transform - pos: 27.5,28.5 + pos: -70.5,11.5 + parent: 2 + - uid: 32060 + components: + - type: MetaData + name: Инженерный Ю + - type: Transform + pos: 35.5,-80.5 parent: 2 - - uid: 31914 + - uid: 32061 components: + - type: MetaData + name: Подстанция питания теслы 2 - type: Transform - pos: 15.5,-35.5 + pos: 69.5,-63.5 parent: 2 -- proto: StairStageDark - entities: - - uid: 31915 + - uid: 32062 components: + - type: MetaData + name: Подстанция питания теслы 1 - type: Transform - pos: 0.5,-47.5 + pos: 69.5,-55.5 parent: 2 - - uid: 31916 + - uid: 32063 components: + - type: MetaData + name: мостик - type: Transform - pos: 0.5,-49.5 + pos: 11.5,6.5 parent: 2 - - uid: 31917 + - uid: 32064 components: + - type: MetaData + name: Солнечные панели ЮЗ - type: Transform - pos: 0.5,-51.5 + pos: -56.5,-85.5 parent: 2 - - uid: 31918 + - uid: 32065 components: + - type: MetaData + name: РнД В - type: Transform - pos: 0.5,-46.5 + pos: -41.5,-89.5 parent: 2 - - uid: 31919 + - uid: 32066 components: + - type: MetaData + name: Хранилище плат - type: Transform - pos: 0.5,-48.5 + pos: 41.5,-40.5 parent: 2 - - uid: 31920 + - uid: 32067 components: + - type: MetaData + name: Утилизаторная - type: Transform - pos: 0.5,-50.5 + pos: -11.5,-87.5 parent: 2 -- proto: StairWood - entities: - - uid: 31921 + - uid: 32068 components: + - type: MetaData + name: РнД З и отбытие - type: Transform - pos: -29.5,2.5 + pos: -68.5,-53.5 parent: 2 - - uid: 31922 + - uid: 32069 components: + - type: MetaData + name: Техи инженерия - type: Transform - pos: -30.5,2.5 + pos: 53.5,-46.5 parent: 2 -- proto: StasisBed - entities: - - uid: 31923 + - uid: 32070 components: + - type: MetaData + name: Бриг - type: Transform - pos: -44.5,-25.5 + pos: 32.5,-24.5 parent: 2 - - uid: 31924 + - uid: 32071 components: + - type: MetaData + name: сервис - type: Transform - pos: 62.5,-4.5 + pos: 21.5,18.5 parent: 2 - - uid: 31925 + - uid: 32072 components: + - type: MetaData + name: прибытие - type: Transform - pos: -44.5,-24.5 + pos: 79.5,-24.5 parent: 2 - - uid: 31926 + - uid: 32073 components: + - type: MetaData + name: Снабжение - type: Transform - pos: -47.5,-5.5 + pos: 19.5,-86.5 parent: 2 - - uid: 31927 + - uid: 32074 components: + - type: MetaData + name: Жилой отсек - type: Transform - pos: -45.5,-5.5 + pos: -41.5,-91.5 parent: 2 - - uid: 31928 + - uid: 32075 components: - type: Transform - pos: -55.5,-18.5 + pos: 54.5,-86.5 parent: 2 - - uid: 31929 + - uid: 32076 components: + - type: MetaData + name: Солнечные панели ЮВ - type: Transform - pos: -48.5,-35.5 + pos: 63.5,-67.5 parent: 2 - - uid: 41418 + - uid: 32077 components: + - type: MetaData + name: Мед С и библиотека - type: Transform - pos: -4.5,-8.5 - parent: 40828 - - uid: 41886 + pos: -35.5,9.5 + parent: 2 + - uid: 32078 components: + - type: MetaData + name: Тех тоннели СЗ - type: Transform - pos: 6.5,-1.5 - parent: 41669 -- proto: StationAiUploadCircuitboard - entities: - - uid: 31930 + pos: -65.5,4.5 + parent: 2 + - uid: 32079 components: + - type: MetaData + name: тех тоннели ЮЗ - type: Transform - pos: 39.52277,-41.403046 + pos: -42.5,-110.5 parent: 2 -- proto: StationAiUploadComputer - entities: - - uid: 31766 + - uid: 32080 components: + - type: MetaData + name: Спутник ИИ - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,20.5 + pos: 96.5,-64.5 parent: 2 -- proto: StationAnchorOff - entities: - - uid: 31932 + - uid: 32081 components: - type: Transform - pos: 8.5,-7.5 + pos: 5.5,-6.5 parent: 2 -- proto: StationEfficiencyCircuitBoard - entities: - - uid: 26912 + - uid: 32086 components: - type: Transform - parent: 26911 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: StationMap + pos: 44.5,15.5 + parent: 2 + - uid: 41419 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 40828 +- proto: SubstationMachineCircuitboard entities: - - uid: 31933 + - uid: 16159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-26.5 + pos: -55.53286,-83.50286 parent: 2 - - uid: 31934 + - uid: 32087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-42.5 + pos: 40.519688,-38.40171 parent: 2 - - uid: 31935 + - uid: 32088 components: - type: Transform - pos: 59.5,-30.5 + pos: 95.5,-80.5 parent: 2 - - uid: 31936 +- proto: SubstationWallBasic + entities: + - uid: 40779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-43.5 - parent: 2 - - uid: 31937 + pos: 3.5,-0.5 + parent: 40666 + - uid: 41887 components: - type: Transform - pos: 33.5,-30.5 - parent: 2 - - uid: 31938 + pos: 6.5,-7.5 + parent: 41669 +- proto: SuitStorageAtmos + entities: + - uid: 32089 components: - type: Transform - pos: 21.5,0.5 + pos: 47.5,-93.5 parent: 2 - - uid: 31939 + - uid: 32090 components: - type: Transform - pos: 4.5,5.5 + pos: 47.5,-94.5 parent: 2 - - uid: 31940 + - uid: 32091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-5.5 + pos: 47.5,-95.5 parent: 2 - - uid: 31941 +- proto: SuitStorageBase + entities: + - uid: 15695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-24.5 + pos: -5.5,13.5 parent: 2 - - uid: 31942 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + 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: + - 15699 + - 15696 + - 15698 + - 15697 + - uid: 41103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-45.5 - parent: 2 - - uid: 31943 + pos: 3.5,-11.5 + parent: 40828 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 41105 + - 41107 + - 41109 + - 41106 + - 41104 + - 41108 + - uid: 41110 components: - type: Transform - pos: -61.5,-41.5 - parent: 2 - - uid: 31944 + pos: 4.5,-8.5 + parent: 40828 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 41114 + - 41113 + - 41112 + - 41116 + - 41115 + - 41111 + - uid: 41117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-57.5 - parent: 2 - - uid: 31945 + pos: 5.5,-8.5 + parent: 40828 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 41119 + - 41121 + - 41120 + - 41118 + - 41122 + - 41123 + - uid: 41124 components: - type: Transform - pos: -29.5,-79.5 - parent: 2 - - uid: 31946 + pos: 6.5,-8.5 + parent: 40828 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 41128 + - 41125 + - 41126 + - 41127 + - 41130 + - 41129 + - uid: 41131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-85.5 + pos: 3.5,-12.5 + parent: 40828 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 41134 + - 41133 + - 41136 + - 41132 + - 41137 + - 41135 + - uid: 41138 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 40828 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 41140 + - 41142 + - 41139 + - 41143 + - 41141 +- proto: SuitStorageBasic + entities: + - uid: 32092 + components: + - type: Transform + pos: -68.5,-71.5 parent: 2 - - uid: 31947 +- proto: SuitStorageCaptain + entities: + - uid: 12676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-63.5 + pos: 17.5,13.5 parent: 2 - - uid: 31948 +- proto: SuitStorageCE + entities: + - uid: 26440 components: - type: Transform - pos: -14.5,-70.5 + pos: 53.5,-76.5 parent: 2 - - uid: 31949 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 26441 +- proto: SuitStorageCMO + entities: + - uid: 15620 components: - type: Transform - pos: 2.5,-73.5 + pos: -36.5,-12.5 parent: 2 - - uid: 31950 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 15621 + - 15622 +- proto: SuitStorageEngi + entities: + - uid: 32094 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-72.5 + pos: 53.5,-78.5 parent: 2 - - uid: 31951 + - uid: 32095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-51.5 + pos: 53.5,-79.5 parent: 2 - - uid: 31952 + - uid: 32096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-57.5 + pos: -5.5,17.5 parent: 2 - - uid: 31953 + - uid: 32097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-16.5 + pos: 53.5,-80.5 parent: 2 - - uid: 31954 + - uid: 32098 components: - type: Transform - pos: 61.5,-6.5 + pos: 54.5,-78.5 parent: 2 - - uid: 31955 + - uid: 32099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-20.5 + pos: 53.5,-81.5 parent: 2 - - uid: 31956 + - uid: 32100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 113.5,-39.5 + pos: 54.5,-80.5 parent: 2 -- proto: StationMapAssembly - entities: - - uid: 31957 + - uid: 32101 components: - type: Transform - pos: -11.5,-45.5 + pos: 54.5,-79.5 parent: 2 - - uid: 44099 + - uid: 32102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-101.5 + pos: 54.5,-81.5 parent: 2 -- proto: StatueBananiumClown - entities: - - uid: 31958 + - uid: 32103 components: - type: Transform - pos: -51.5,-108.5 + pos: 42.5,-64.5 parent: 2 - - uid: 31959 + - uid: 32104 components: - type: Transform - pos: 8.5,-34.5 + pos: 48.5,-63.5 parent: 2 -- proto: StatueVenusBlue +- proto: SuitStorageEVA entities: - - uid: 31960 - components: - - type: Transform - pos: 10.5,24.5 - parent: 2 - - uid: 31961 + - uid: 19736 components: - type: Transform - pos: 7.5,-41.5 + pos: -21.5,-40.5 parent: 2 -- proto: StatueVenusRed - entities: - - uid: 31962 + - uid: 23441 components: - type: Transform - pos: -9.5,24.5 + pos: -21.5,-39.5 parent: 2 - - uid: 31963 + - uid: 32105 components: - type: Transform - pos: 7.5,-38.5 + pos: 4.5,13.5 parent: 2 -- proto: SteelBench - entities: - - uid: 31964 + - uid: 32106 components: - type: Transform - pos: -70.5,-53.5 + pos: 4.5,17.5 parent: 2 - - uid: 31966 + - uid: 32107 components: - type: Transform - pos: -74.5,-53.5 + pos: 42.5,31.5 parent: 2 - - uid: 31967 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 32108 components: - type: Transform - pos: -71.5,-53.5 + pos: -89.5,-19.5 parent: 2 - - uid: 31968 + - uid: 32109 components: - type: Transform - pos: -75.5,-53.5 + pos: 5.5,17.5 parent: 2 - - uid: 31970 + - uid: 32110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-82.5 + pos: 3.5,17.5 parent: 2 - - uid: 31971 + - uid: 32111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-82.5 + pos: 3.5,13.5 parent: 2 - - uid: 31972 + - uid: 32112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-3.5 + pos: 5.5,13.5 parent: 2 - - uid: 31973 +- proto: SuitStorageEVAAlternate + entities: + - uid: 32113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-3.5 + pos: -12.5,18.5 parent: 2 - - uid: 31974 + - uid: 32114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-1.5 + pos: -12.5,17.5 parent: 2 - - uid: 31975 + - uid: 32115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-10.5 + pos: -2.5,15.5 parent: 2 - - uid: 31976 + - uid: 32116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-1.5 + pos: -3.5,15.5 parent: 2 - - uid: 31977 + - uid: 32117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-8.5 + pos: -5.5,15.5 parent: 2 - - uid: 31978 +- proto: SuitStorageEVAEmergency + entities: + - uid: 32118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-8.5 + pos: -57.5,3.5 parent: 2 - - uid: 31979 + - uid: 32119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-10.5 + pos: -58.5,-5.5 parent: 2 -- proto: SteelOre1 +- proto: SuitStorageEVAPrisoner entities: - - uid: 31980 + - uid: 32120 components: - type: Transform - pos: -5.7129173,-62.59576 + pos: 73.5,5.5 parent: 2 - - uid: 31981 + - uid: 32121 components: - type: Transform - pos: -5.5410423,-62.28326 + pos: 73.5,7.5 parent: 2 - - uid: 31982 + - uid: 32122 components: - type: Transform - pos: -5.4785423,-62.59576 + pos: 73.5,6.5 parent: 2 - - uid: 31983 +- proto: SuitStorageHOS + entities: + - uid: 32123 components: - type: Transform - pos: -6.7597923,-62.486385 + pos: 51.5,13.5 parent: 2 - - uid: 31984 +- proto: SuitStorageNTSRA + entities: + - uid: 32124 components: - type: Transform - pos: -6.4316673,-62.830135 + pos: -6.5,15.5 parent: 2 - - uid: 31985 +- proto: SuitStorageRD + entities: + - uid: 32125 components: - type: Transform - pos: -6.3691673,-62.580135 + pos: -34.5,-67.5 parent: 2 - - uid: 31986 +- proto: SuitStorageSalv + entities: + - uid: 32126 components: - type: Transform - pos: -6.3066673,-62.361385 + pos: -3.5,17.5 parent: 2 - - uid: 31987 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 43108 components: - type: Transform - pos: -2.6191673,-62.423885 + pos: -5.5,-98.5 parent: 2 - - uid: 31988 + - uid: 43109 components: - type: Transform - pos: -2.8222923,-62.78326 + pos: -5.5,-99.5 parent: 2 - - uid: 31989 + - uid: 43110 components: - type: Transform - pos: -3.4941673,-63.58014 + pos: -5.5,-100.5 parent: 2 - - uid: 31990 +- proto: SuitStorageSec + entities: + - uid: 15822 components: - type: Transform - pos: -3.5566673,-63.298885 + pos: 61.5,13.5 parent: 2 - - uid: 31991 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14676 + moles: + - 1.8968438 + - 7.1357455 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15823 + - type: Pullable + prevFixedRotation: True + - uid: 32130 components: - type: Transform - pos: -3.4004173,-63.34576 + pos: 55.5,-24.5 parent: 2 - - uid: 31992 + - uid: 32131 components: - type: Transform - pos: -3.5254173,-61.548885 + pos: 57.5,-25.5 parent: 2 - - uid: 31993 + - uid: 32132 components: - type: Transform - pos: -4.2441673,-61.75201 + pos: 57.5,-23.5 parent: 2 - - uid: 31994 + - uid: 32133 components: - type: Transform - pos: -8.462917,-63.564514 + pos: 57.5,-24.5 parent: 2 - - uid: 31995 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 32134 components: - type: Transform - pos: -8.462917,-63.31451 + pos: 55.5,-23.5 parent: 2 - - uid: 31996 + - uid: 32135 components: - type: Transform - pos: -8.462917,-63.267635 + pos: 55.5,-25.5 parent: 2 - - uid: 31997 + - uid: 32136 components: - type: Transform - pos: -7.7441673,-62.56451 + pos: -3.5,13.5 parent: 2 - - uid: 31998 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 32137 components: - type: Transform - pos: -7.5097923,-62.53326 + pos: 62.5,13.5 parent: 2 - - uid: 43362 + - uid: 32138 components: - type: Transform - pos: -6.474345,-89.49801 + pos: 75.5,6.5 parent: 2 - - uid: 43363 + - uid: 32139 components: - type: Transform - pos: -6.52122,-89.31051 + pos: 75.5,7.5 parent: 2 -- proto: StimkitFilled +- proto: SuitStorageWarden entities: - - uid: 31999 + - uid: 32140 components: - type: Transform - pos: -11.519527,-40.407787 + pos: 51.5,-23.5 parent: 2 -- proto: Stool +- proto: SurveillanceCameraCommand entities: - - uid: 2395 + - uid: 32141 components: - type: Transform - pos: 36.5,9.5 + pos: 7.5,19.5 parent: 2 - - uid: 16330 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик В + - uid: 32142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-51.5 + rot: -1.5707963267948966 rad + pos: 15.5,5.5 parent: 2 - - uid: 21612 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мастерская + - uid: 32143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-95.5 + rot: 3.141592653589793 rad + pos: -5.5,11.5 parent: 2 - - uid: 21619 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Офис ГП + - uid: 32144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-96.5 + rot: 3.141592653589793 rad + pos: 6.5,11.5 parent: 2 - - uid: 22514 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Конференц-зал + - uid: 32145 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-93.5 + pos: -0.5,12.5 parent: 2 - - uid: 26562 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Коридор мостика + - uid: 32146 components: - type: Transform rot: -1.5707963267948966 rad - pos: 82.5,-48.5 + pos: -6.5,16.5 parent: 2 - - uid: 26565 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Хранилище EVA + - uid: 32147 components: - type: Transform - pos: 85.5,-54.5 + pos: -6.5,19.5 parent: 2 - - uid: 29349 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик З + - uid: 32148 components: - type: Transform - pos: 35.5,9.5 + rot: 3.141592653589793 rad + pos: 1.5,27.5 parent: 2 - - uid: 32000 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик С + - uid: 32149 components: - type: Transform rot: -1.5707963267948966 rad - pos: 86.022156,-6.260051 - parent: 2 - - uid: 32001 - components: - - type: Transform - pos: -63.5,10.5 - parent: 2 - - uid: 32002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,11.5 + pos: -24.5,4.5 parent: 2 - - uid: 32003 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Кабинет АВД + - uid: 32150 components: - type: Transform - pos: -62.5,10.5 + rot: 1.5707963267948966 rad + pos: 5.5,14.5 parent: 2 - - uid: 32004 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Доп хранилище EVA + - uid: 32151 components: - type: Transform - pos: -64.5,10.5 + rot: -1.5707963267948966 rad + pos: 7.5,15.5 parent: 2 - - uid: 32005 + - type: SurveillanceCamera + id: Кабинет капитана + - uid: 32152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.709076,0.60289204 + rot: 3.141592653589793 rad + pos: 96.5,-86.5 parent: 2 - - uid: 32006 + - type: SurveillanceCamera + id: Ядро ИИ + - uid: 32153 components: - type: Transform - pos: 37.5,-16.5 + pos: -39.5,-70.5 parent: 2 - - uid: 32007 + - type: SurveillanceCamera + id: НР + - uid: 32155 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,11.5 + pos: 14.5,22.5 parent: 2 - - uid: 32008 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Загрузка ИИ + - uid: 32156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,11.5 + pos: 19.5,18.5 parent: 2 - - uid: 32009 + - uid: 32157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.890396,-6.369869 + rot: -1.5707963267948966 rad + pos: -14.5,18.5 parent: 2 - - uid: 32457 + - uid: 32158 components: - type: Transform rot: 1.5707963267948966 rad - pos: 85.5,-49.5 + pos: 90.5,-81.5 parent: 2 - - uid: 42216 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Вход спутник + - uid: 32159 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-4.5 + pos: -4.5,-7.5 parent: 2 -- proto: StoolBar - entities: - - uid: 32010 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: хранилище + - uid: 32160 components: - type: Transform - pos: -9.5,16.5 + rot: 1.5707963267948966 rad + pos: -13.5,6.5 parent: 2 - - uid: 32011 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Офис представителя + - uid: 44182 components: - type: Transform - pos: -8.5,16.5 + rot: 3.141592653589793 rad + pos: 57.5,-68.5 parent: 2 - - uid: 32012 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Кабинет СИ + - uid: 44265 components: - type: Transform - pos: 51.5,3.5 + rot: 1.5707963267948966 rad + pos: -34.5,-73.5 parent: 2 - - uid: 32013 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Серверная РНД +- proto: SurveillanceCameraEngineering + entities: + - uid: 32161 components: - type: Transform - pos: 52.5,3.5 + rot: -1.5707963267948966 rad + pos: 55.5,-53.5 parent: 2 - - uid: 32014 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: энергохранилище + - uid: 32162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-74.5 + rot: 3.141592653589793 rad + pos: 98.5,-78.5 parent: 2 - - uid: 32015 + - type: SurveillanceCamera + id: Коридор спутника + - uid: 32163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-75.5 + pos: 95.5,-84.5 parent: 2 - - uid: 32016 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Атмосферика ядра + - uid: 32164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,4.5 + rot: 3.141592653589793 rad + pos: 77.5,-48.5 parent: 2 - - uid: 32017 + - type: SurveillanceCamera + id: Комната наблюдения теслы + - uid: 32165 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,2.5 + pos: 49.5,-90.5 parent: 2 - - uid: 32018 + - type: SurveillanceCamera + id: ТЭГ + - uid: 32166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,3.5 + pos: 52.5,-84.5 parent: 2 - - uid: 32019 + - type: SurveillanceCamera + id: Раздевалка инженеров + - uid: 32167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 + pos: 49.5,-60.5 parent: 2 - - uid: 32023 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Основной зал + - uid: 32169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-94.5 + rot: 1.5707963267948966 rad + pos: 50.5,-72.5 parent: 2 - - uid: 32024 + - type: SurveillanceCamera + id: Южный коридор + - uid: 32170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-93.5 + rot: 1.5707963267948966 rad + pos: 40.5,-50.5 parent: 2 - - uid: 32025 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Приёмная атмосии + - uid: 32171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-92.5 + pos: 37.5,-39.5 parent: 2 - - uid: 32026 + - type: SurveillanceCamera + id: Хранилище плат + - uid: 32172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-83.5 + rot: 3.141592653589793 rad + pos: 39.5,-77.5 parent: 2 - - uid: 32027 + - type: SurveillanceCamera + id: ДАМ + - uid: 32173 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-84.5 + pos: 98.5,-84.5 parent: 2 - - uid: 43972 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Коридор к ядру + - uid: 32174 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-103.5 + pos: 100.5,-82.5 parent: 2 - - uid: 43973 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Охлаждение ядра + - uid: 32175 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-103.5 + rot: -1.5707963267948966 rad + pos: 91.5,-69.5 parent: 2 - - uid: 43974 + - type: SurveillanceCamera + id: Телекоммуникация + - uid: 32176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-103.5 + rot: 1.5707963267948966 rad + pos: 99.5,-70.5 parent: 2 - - uid: 43975 + - type: SurveillanceCamera + id: Коридор телекомов + - uid: 32177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-101.5 + rot: 1.5707963267948966 rad + pos: 105.5,-69.5 parent: 2 - - uid: 43976 + - type: SurveillanceCamera + id: 'Маршрутизаторы ' + - uid: 32178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-102.5 + rot: 1.5707963267948966 rad + pos: 100.5,-75.5 parent: 2 -- proto: StorageCanister - entities: - - uid: 32028 + - type: SurveillanceCamera + id: Охранный коридор спутника + - uid: 32179 components: - type: Transform - pos: -46.5,-58.5 + rot: 3.141592653589793 rad + pos: 38.5,-85.5 parent: 2 - - uid: 32029 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Север атмосия + - uid: 32180 components: - type: Transform - pos: 41.5,-91.5 + pos: 48.5,-103.5 parent: 2 - - uid: 32030 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Юг атмосия + - uid: 32181 components: - type: Transform - pos: 41.5,-90.5 + pos: 36.5,-103.5 parent: 2 - - uid: 32031 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Воздух атмосия + - uid: 32182 components: - type: Transform - pos: 41.5,-89.5 + rot: 3.141592653589793 rad + pos: 43.5,-92.5 parent: 2 - - uid: 32032 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Центр атмосия + - uid: 32183 components: - type: Transform - pos: 36.5,-50.5 + pos: 77.5,-66.5 parent: 2 - - uid: 32033 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Тесла + - uid: 32184 components: - type: Transform - pos: 37.5,-50.5 + rot: 1.5707963267948966 rad + pos: 81.5,-56.5 parent: 2 - - uid: 32034 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Тесла + - uid: 32185 components: - type: Transform - pos: 38.5,-50.5 + pos: 98.5,-64.5 parent: 2 - - uid: 32035 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Питание Спутника + - uid: 32186 components: - type: Transform - pos: 34.5,-48.5 + rot: 3.141592653589793 rad + pos: 46.5,-62.5 parent: 2 - - uid: 32036 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Инженерный склад + - uid: 32187 components: - type: Transform - pos: -36.5,-23.5 + rot: 3.141592653589793 rad + pos: 82.5,-69.5 parent: 2 - - uid: 32037 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Путь к спутнику + - uid: 32188 components: - type: Transform - pos: -69.5,-20.5 + rot: 3.141592653589793 rad + pos: 72.5,-69.5 parent: 2 - - uid: 32038 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Путь к спутнику + - uid: 32189 components: - type: Transform - pos: 18.5,-76.5 + pos: 58.5,-82.5 parent: 2 - - uid: 32039 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Выход космос инж + - uid: 32190 components: - type: Transform - pos: -62.5,-74.5 + rot: -1.5707963267948966 rad + pos: 107.5,-64.5 parent: 2 - - uid: 32040 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Подход к спутнику справа + - uid: 32191 components: - type: Transform - pos: -72.5,-27.5 + pos: 25.5,-38.5 parent: 2 - - uid: 32041 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: гравиген + - uid: 32192 components: - type: Transform - pos: -71.5,-27.5 + rot: -1.5707963267948966 rad + pos: 25.5,-41.5 parent: 2 - - uid: 32042 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: гравиген + - uid: 32194 components: - type: Transform - pos: 100.5,-84.5 + rot: -1.5707963267948966 rad + pos: 104.5,-20.5 parent: 2 - - uid: 32043 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Верфь + - uid: 32195 components: - type: Transform - pos: -49.5,-56.5 + rot: 1.5707963267948966 rad + pos: 47.5,-89.5 parent: 2 - - uid: 32044 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Шлюз атмосы + - uid: 32196 components: - type: Transform - pos: -53.5,-60.5 + rot: 3.141592653589793 rad + pos: 56.5,-58.5 parent: 2 -- proto: StrangePill - entities: - - uid: 32045 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Коридор к УЧ + - uid: 32197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.301134,18.654554 + pos: 68.5,-60.5 parent: 2 - - uid: 32046 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: УЧ + - uid: 32198 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.09801,18.560804 + pos: 41.5,-83.5 parent: 2 - - uid: 32047 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: подход к ДАМ + - uid: 42206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.988634,18.88893 + rot: -1.5707963267948966 rad + pos: 66.5,-65.5 parent: 2 -- proto: Stunbaton - entities: - - uid: 32048 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Шлюз тесла Ю + - uid: 42207 components: - type: Transform - pos: 57.46068,-19.418554 + rot: -1.5707963267948966 rad + pos: 65.5,-52.5 parent: 2 - - uid: 32049 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Шлюз тесла С + - uid: 42465 components: - type: Transform - pos: 52.419567,-17.399994 + rot: 1.5707963267948966 rad + pos: 51.5,-47.5 parent: 2 - - uid: 32050 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Ресепшн Инженерия + - uid: 43373 components: - type: Transform - pos: 52.700817,-17.509369 + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 parent: 2 - - uid: 32051 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Якорь + - uid: 44254 components: - type: Transform - pos: 52.544567,-17.493744 + rot: 1.5707963267948966 rad + pos: 46.5,-105.5 parent: 2 - - uid: 32052 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Шлюз атмостехники +- proto: SurveillanceCameraGeneral + entities: + - uid: 25470 components: - type: Transform - pos: 57.570053,-19.49668 + rot: 3.141592653589793 rad + pos: 26.5,-27.5 parent: 2 - - uid: 32053 + - uid: 30018 components: - type: Transform - pos: 57.351303,-19.37168 + rot: -1.5707963267948966 rad + pos: -0.5,-11.5 parent: 2 -- proto: SubstationBasic - entities: - - uid: 32054 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Обзорное окно + - uid: 30019 components: - type: Transform - pos: -4.5,-4.5 + rot: 1.5707963267948966 rad + pos: 23.5,-42.5 parent: 2 - - uid: 32055 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Правый рукав + - uid: 30197 components: - type: Transform - pos: 67.5,-12.5 + pos: 25.5,-33.5 parent: 2 - - uid: 32056 + - uid: 32201 components: - type: Transform - pos: 27.5,-35.5 + rot: 3.141592653589793 rad + pos: 15.5,-71.5 parent: 2 - - uid: 32057 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: очередная камера в коридоре + - uid: 32202 components: - type: Transform - pos: 60.5,-56.5 + rot: -1.5707963267948966 rad + pos: 31.5,-47.5 parent: 2 - - uid: 32058 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Очередная камера + - uid: 32205 components: - type: Transform - pos: -61.5,-16.5 + pos: -31.5,-98.5 parent: 2 - - uid: 32059 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Раздевалка жилого отсека + - uid: 32206 components: - type: MetaData - name: Солнечные панели СЗ + name: камера - type: Transform - pos: -70.5,11.5 + rot: 1.5707963267948966 rad + pos: -17.5,-85.5 parent: 2 - - uid: 32060 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Спортзал + - uid: 32208 components: - - type: MetaData - name: Инженерный Ю - type: Transform - pos: 35.5,-80.5 + rot: 1.5707963267948966 rad + pos: -27.5,-75.5 parent: 2 - - uid: 32061 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Доп склад инструментов + - uid: 32209 components: - - type: MetaData - name: Подстанция питания теслы 2 - type: Transform - pos: 69.5,-63.5 + pos: 91.5,-41.5 parent: 2 - - uid: 32062 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Прибытие Ю + - uid: 32210 components: - - type: MetaData - name: Подстанция питания теслы 1 - type: Transform - pos: 69.5,-55.5 + pos: 92.5,-23.5 parent: 2 - - uid: 32063 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Прибытие С + - uid: 32211 components: - - type: MetaData - name: мостик - type: Transform - pos: 11.5,6.5 + rot: -1.5707963267948966 rad + pos: 28.5,-20.5 parent: 2 - - uid: 32064 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Основной коридор З + - uid: 32212 components: - - type: MetaData - name: Солнечные панели ЮЗ - type: Transform - pos: -56.5,-85.5 + pos: 17.5,-0.5 parent: 2 - - uid: 32065 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Основной коридор СВ + - uid: 32213 components: - - type: MetaData - name: РнД В - type: Transform - pos: -41.5,-89.5 + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 parent: 2 - - uid: 32066 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Основной коридор СЗ + - uid: 32214 components: - - type: MetaData - name: Хранилище плат - type: Transform - pos: 41.5,-40.5 + rot: 1.5707963267948966 rad + pos: -70.5,-40.5 parent: 2 - - uid: 32067 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Отбытие + - uid: 32215 components: - - type: MetaData - name: Утилизаторная - type: Transform - pos: -11.5,-87.5 + rot: -1.5707963267948966 rad + pos: -29.5,-61.5 parent: 2 - - uid: 32068 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Основной коридор ЮЗ + - uid: 32216 components: - - type: MetaData - name: РнД З и отбытие - type: Transform - pos: -68.5,-53.5 + rot: -1.5707963267948966 rad + pos: -30.5,2.5 parent: 2 - - uid: 32069 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Библиотека + - uid: 32217 components: - - type: MetaData - name: Техи инженерия - type: Transform - pos: 53.5,-46.5 + pos: -1.5,-76.5 parent: 2 - - uid: 32070 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Основной коридор Ю + - uid: 32218 components: - - type: MetaData - name: Бриг - type: Transform - pos: 32.5,-24.5 + pos: 66.5,-33.5 parent: 2 - - uid: 32071 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Коридор прибытия + - uid: 32219 components: - - type: MetaData - name: сервис - type: Transform - pos: 21.5,18.5 + pos: 67.5,-42.5 parent: 2 - - uid: 32072 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Суд + - uid: 32220 components: - - type: MetaData - name: прибытие - type: Transform - pos: 79.5,-24.5 + rot: 3.141592653589793 rad + pos: -54.5,-42.5 parent: 2 - - uid: 32073 + - type: SurveillanceCamera + id: Коридор Психолога + - uid: 32222 components: - - type: MetaData - name: Снабжение - type: Transform - pos: 19.5,-86.5 + rot: 1.5707963267948966 rad + pos: -31.5,-86.5 parent: 2 - - uid: 32074 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Дормы + - uid: 32223 components: - - type: MetaData - name: Жилой отсек - type: Transform - pos: -41.5,-91.5 + rot: 3.141592653589793 rad + pos: -35.5,-78.5 parent: 2 - - uid: 32075 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Криокапсулы + - uid: 32224 components: - type: Transform - pos: 54.5,-86.5 + rot: -1.5707963267948966 rad + pos: -30.5,-27.5 parent: 2 - - uid: 32076 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Северо-западный кольцевой + - uid: 32225 components: - - type: MetaData - name: Солнечные панели ЮВ - type: Transform - pos: 63.5,-67.5 + rot: -1.5707963267948966 rad + pos: -32.5,-47.5 parent: 2 - - uid: 32077 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Перекрёсток мед-рнд + - uid: 32226 components: - - type: MetaData - name: Мед С и библиотека - type: Transform - pos: -35.5,9.5 + rot: -1.5707963267948966 rad + pos: -32.5,-36.5 parent: 2 - - uid: 32078 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Перекрёсток мед-рнд + - uid: 32227 components: - - type: MetaData - name: Тех тоннели СЗ - type: Transform - pos: -65.5,4.5 + rot: -1.5707963267948966 rad + pos: -29.5,-16.5 parent: 2 - - uid: 32079 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Северо-западный кольцевой + - uid: 32228 components: - - type: MetaData - name: тех тоннели ЮЗ - type: Transform - pos: -42.5,-110.5 + rot: -1.5707963267948966 rad + pos: -80.5,-38.5 parent: 2 - - uid: 32080 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Стыковка эвак + - uid: 32229 components: - - type: MetaData - name: Спутник ИИ - type: Transform - pos: 96.5,-64.5 + rot: 3.141592653589793 rad + pos: 11.5,4.5 parent: 2 - - uid: 32081 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Коридор уборщик + - uid: 32230 components: - type: Transform - pos: 5.5,-6.5 + rot: 1.5707963267948966 rad + pos: 27.5,-3.5 parent: 2 - - uid: 32082 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Вход в бар + - uid: 32232 components: - type: Transform - pos: -9.5,-49.5 + rot: -1.5707963267948966 rad + pos: 81.5,-22.5 parent: 2 - - uid: 32083 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Прибытие + - uid: 32233 components: - type: Transform - pos: -11.5,-21.5 + rot: -1.5707963267948966 rad + pos: 81.5,-37.5 parent: 2 - - uid: 32084 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Прибытие + - uid: 32234 components: - type: Transform - pos: 6.5,-46.5 + rot: 1.5707963267948966 rad + pos: -23.5,-75.5 parent: 2 - - uid: 32085 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Коридор дормы + - uid: 32235 components: - type: Transform - pos: 12.5,-29.5 + pos: -14.5,-73.5 parent: 2 - - uid: 32086 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Коридор Карго + - uid: 32236 components: - type: Transform - pos: 44.5,15.5 + rot: 1.5707963267948966 rad + pos: 30.5,-68.5 parent: 2 - - uid: 41419 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Коридор Репортёр + - uid: 32237 components: - type: Transform - pos: -0.5,-11.5 - parent: 40828 -- proto: SubstationMachineCircuitboard - entities: - - uid: 16159 + pos: 9.5,-76.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Коридор над карго + - uid: 32238 components: - type: Transform - pos: -55.53286,-83.50286 + rot: 1.5707963267948966 rad + pos: -22.5,-93.5 parent: 2 - - uid: 32087 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Парикмахерская + - uid: 32239 components: - type: Transform - pos: 40.519688,-38.40171 + rot: 1.5707963267948966 rad + pos: 70.5,-26.5 parent: 2 - - uid: 32088 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Склад инструментов + - uid: 32240 components: - type: Transform - pos: 95.5,-80.5 + rot: -1.5707963267948966 rad + pos: 28.5,-58.5 parent: 2 -- proto: SubstationWallBasic - entities: - - uid: 40779 + - uid: 32242 components: - type: Transform - pos: 3.5,-0.5 - parent: 40666 - - uid: 41887 + rot: 1.5707963267948966 rad + pos: 33.5,-36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: вход гравиген + - uid: 32244 components: - type: Transform - pos: 6.5,-7.5 - parent: 41669 -- proto: SuitStorageAtmos - entities: - - uid: 32089 + pos: -26.5,-44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: левый лифт + - uid: 32245 components: - type: Transform - pos: 47.5,-93.5 + rot: 1.5707963267948966 rad + pos: 102.5,-20.5 parent: 2 - - uid: 32090 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Верфь + - uid: 32248 components: - type: Transform - pos: 47.5,-94.5 + pos: 63.5,13.5 parent: 2 - - uid: 32091 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Доки сб + - uid: 32251 components: - type: Transform - pos: 47.5,-95.5 + rot: 3.141592653589793 rad + pos: 121.5,-38.5 parent: 2 -- proto: SuitStorageBase - entities: - - uid: 15695 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Стыковка ПРибытие + - uid: 32252 components: - type: Transform - pos: -5.5,13.5 + pos: 128.5,-40.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14755 - 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: - - 15697 - - 15698 - - 15696 - - 15699 - - uid: 15799 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Стыковка прибытие 2 + - uid: 32253 components: - type: Transform - pos: -17.5,-29.5 + pos: 105.5,-42.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 15801 - - 15800 - - uid: 15802 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Коридор к стыковке ' + - uid: 42463 components: - type: Transform - pos: -18.5,-29.5 + rot: 3.141592653589793 rad + pos: 48.5,-31.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 15803 - - 15804 - - uid: 41103 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Коридор Бриг-Инж + - uid: 42464 components: - type: Transform - pos: 3.5,-11.5 - parent: 40828 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - 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: - - 41105 - - 41107 - - 41109 - - 41106 - - 41104 - - 41108 - - uid: 41110 + pos: 55.5,-42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Зимний парк + - uid: 43372 components: - type: Transform - pos: 4.5,-8.5 - parent: 40828 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - 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: - - 41114 - - 41113 - - 41112 - - 41116 - - 41115 - - 41111 - - uid: 41117 + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Коридор к центру +- proto: SurveillanceCameraMedical + entities: + - uid: 32255 components: - type: Transform - pos: 5.5,-8.5 - parent: 40828 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - 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: - - 41119 - - 41121 - - 41120 - - 41118 - - 41122 - - 41123 - - uid: 41124 + rot: -1.5707963267948966 rad + pos: -59.5,-24.5 + parent: 2 + - uid: 32256 components: - type: Transform - pos: 6.5,-8.5 - parent: 40828 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - 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: - - 41128 - - 41125 - - 41126 - - 41127 - - 41130 - - 41129 - - uid: 41131 + rot: 1.5707963267948966 rad + pos: -40.5,-27.5 + parent: 2 + - uid: 32257 components: - type: Transform - pos: 3.5,-12.5 - parent: 40828 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1465 - 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: - - 41134 - - 41133 - - 41136 - - 41132 - - 41137 - - 41135 - - uid: 41138 + pos: -39.5,-40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Приёмная меда + - uid: 32258 components: - type: Transform - pos: -3.5,-4.5 - parent: 40828 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 41140 - - 41142 - - 41139 - - 41143 - - 41141 -- proto: SuitStorageBasic - entities: - - uid: 32092 + rot: -1.5707963267948966 rad + pos: -49.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Палаты + - uid: 32259 components: - type: Transform - pos: -68.5,-71.5 + rot: -1.5707963267948966 rad + pos: -55.5,-23.5 parent: 2 -- proto: SuitStorageCaptain - entities: - - uid: 12676 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Хирургия + - uid: 32260 components: - type: Transform - pos: 17.5,13.5 + rot: -1.5707963267948966 rad + pos: -51.5,-34.5 parent: 2 -- proto: SuitStorageCE - entities: - - uid: 26440 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Клонирование + - uid: 32261 components: - type: Transform - pos: 53.5,-76.5 + rot: 1.5707963267948966 rad + pos: -34.5,-20.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 26441 -- proto: SuitStorageCMO - entities: - - uid: 15620 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Криогенетика + - uid: 32262 components: - type: Transform - pos: -36.5,-12.5 + rot: -1.5707963267948966 rad + pos: -36.5,-9.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - 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: - - 15621 - - 15622 -- proto: SuitStorageEngi - entities: - - uid: 32094 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Кабинет ГВ + - uid: 32263 components: - type: Transform - pos: 53.5,-78.5 + rot: -1.5707963267948966 rad + pos: -50.5,1.5 parent: 2 - - uid: 32095 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Вирусология + - uid: 32264 components: - type: Transform - pos: 53.5,-79.5 + rot: -1.5707963267948966 rad + pos: -43.5,-14.5 parent: 2 - - uid: 32096 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Медотсек С + - uid: 32265 components: - type: Transform - pos: -5.5,17.5 + rot: -1.5707963267948966 rad + pos: -38.5,-30.5 parent: 2 - - uid: 32097 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Химия + - uid: 32266 components: - type: Transform - pos: 53.5,-80.5 + rot: 3.141592653589793 rad + pos: -46.5,-8.5 parent: 2 - - uid: 32098 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Склад медикаментов + - uid: 32267 components: - type: Transform - pos: 54.5,-78.5 + rot: -1.5707963267948966 rad + pos: -43.5,-3.5 parent: 2 - - uid: 32099 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Переход к вирусологии + - uid: 32268 components: - type: Transform - pos: 53.5,-81.5 + rot: 1.5707963267948966 rad + pos: -44.5,-22.5 parent: 2 - - uid: 32100 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Палаты + - uid: 32269 components: - type: Transform - pos: 54.5,-80.5 + rot: 1.5707963267948966 rad + pos: -41.5,-80.5 parent: 2 - - uid: 32101 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Коридор к аномалистике + - uid: 32270 components: - type: Transform - pos: 54.5,-79.5 + rot: 1.5707963267948966 rad + pos: 37.5,1.5 parent: 2 - - uid: 32102 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Бар +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 32271 components: - type: Transform - pos: 54.5,-81.5 + pos: 104.5,-67.5 parent: 2 - - uid: 32103 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 32273 components: - type: Transform - pos: 42.5,-64.5 + pos: 104.5,-71.5 parent: 2 - - uid: 32104 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 32274 components: - type: Transform - pos: 48.5,-63.5 + pos: 102.5,-68.5 parent: 2 -- proto: SuitStorageEVA +- proto: SurveillanceCameraRouterMedical entities: - - uid: 32105 + - uid: 32275 components: - type: Transform - pos: 4.5,13.5 + pos: 102.5,-71.5 parent: 2 - - uid: 32106 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 32276 components: - type: Transform - pos: 4.5,17.5 + pos: -38.5,-72.5 parent: 2 - - uid: 32107 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 32277 components: - type: Transform - pos: 42.5,31.5 + pos: 102.5,-70.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 32108 +- proto: SurveillanceCameraRouterService + entities: + - uid: 32278 components: - type: Transform - pos: -89.5,-19.5 + pos: 102.5,-69.5 parent: 2 - - uid: 32109 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 32279 components: - type: Transform - pos: 5.5,17.5 + pos: 104.5,-70.5 parent: 2 - - uid: 32110 +- proto: SurveillanceCameraScience + entities: + - uid: 32280 components: - type: Transform - pos: 3.5,17.5 + rot: -1.5707963267948966 rad + pos: -50.5,-82.5 parent: 2 - - uid: 32111 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Аномалистика + - uid: 32281 components: - type: Transform - pos: 3.5,13.5 + rot: 1.5707963267948966 rad + pos: -64.5,-75.5 parent: 2 - - uid: 32112 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Ксеноархеология + - uid: 32282 components: - type: Transform - pos: 5.5,13.5 + pos: -36.5,-49.5 parent: 2 -- proto: SuitStorageEVAAlternate - entities: - - uid: 32113 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: РнД + - uid: 32283 components: - type: Transform - pos: -12.5,18.5 + rot: -1.5707963267948966 rad + pos: -53.5,-55.5 parent: 2 - - uid: 32114 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Токсины + - uid: 32284 components: - type: Transform - pos: -12.5,17.5 + rot: -1.5707963267948966 rad + pos: -40.5,-52.5 parent: 2 - - uid: 32115 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Робототехника + - uid: 32285 components: - type: Transform - pos: -2.5,15.5 + rot: 3.141592653589793 rad + pos: -41.5,-57.5 parent: 2 - - uid: 32116 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: РнД коридор С + - uid: 32286 components: - type: Transform - pos: -3.5,15.5 + rot: -1.5707963267948966 rad + pos: -44.5,-84.5 parent: 2 - - uid: 32117 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Комната отдыха + - uid: 32287 components: - type: Transform - pos: -5.5,15.5 + rot: -1.5707963267948966 rad + pos: -51.5,-74.5 parent: 2 -- proto: SuitStorageEVAEmergency - entities: - - uid: 32118 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Камеры ксенобиологии + - uid: 32288 components: - type: Transform - pos: -57.5,3.5 + rot: 3.141592653589793 rad + pos: -50.5,-68.5 parent: 2 - - uid: 32119 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Ксенобиология + - uid: 32289 components: - type: Transform - pos: -58.5,-5.5 + pos: -38.5,-65.5 parent: 2 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 32120 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Комната механики + - uid: 32290 components: - type: Transform - pos: 73.5,5.5 + rot: 3.141592653589793 rad + pos: -39.5,-72.5 parent: 2 - - uid: 32121 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: сервера РнД + - uid: 32291 components: - type: Transform - pos: 73.5,7.5 + rot: -1.5707963267948966 rad + pos: -65.5,-68.5 parent: 2 - - uid: 32122 + - type: SurveillanceCamera + id: Ксеноархеология 2 + - uid: 32292 components: - type: Transform - pos: 73.5,6.5 + rot: 1.5707963267948966 rad + pos: -67.5,-66.5 parent: 2 -- proto: SuitStorageHOS - entities: - - uid: 32123 + - type: SurveillanceCamera + id: Тестовая + - uid: 32293 components: - type: Transform - pos: 51.5,13.5 + pos: -52.5,-66.5 parent: 2 -- proto: SuitStorageNTSRA - entities: - - uid: 32124 + - type: SurveillanceCamera + id: Коридор токсины + - uid: 42103 components: - type: Transform - pos: -6.5,15.5 + rot: 3.141592653589793 rad + pos: -70.5,-76.5 parent: 2 -- proto: SuitStorageRD + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Камера артефактов РНД +- proto: SurveillanceCameraSecurity entities: - - uid: 32125 + - uid: 28571 components: - type: Transform - pos: -34.5,-67.5 + rot: -1.5707963267948966 rad + pos: 50.5,5.5 parent: 2 -- proto: SuitStorageSalv - entities: - - uid: 32126 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Комната отдыха СБ + - uid: 29072 components: - type: Transform - pos: -3.5,17.5 + rot: 1.5707963267948966 rad + pos: 59.5,13.5 parent: 2 - - uid: 43108 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Пилот + - uid: 32295 components: - type: Transform - pos: -5.5,-98.5 + rot: -1.5707963267948966 rad + pos: 46.5,-2.5 parent: 2 - - uid: 43109 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Комната наблюдения + - uid: 32296 components: - type: Transform - pos: -5.5,-99.5 + rot: 1.5707963267948966 rad + pos: 65.5,-12.5 parent: 2 - - uid: 43110 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Оружейная СК + - uid: 32297 components: - type: Transform - pos: -5.5,-100.5 + rot: 1.5707963267948966 rad + pos: 49.5,-24.5 parent: 2 -- proto: SuitStorageSec - entities: - - uid: 15822 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: КПП СБ Смотритель + - uid: 32298 components: - type: Transform - pos: 61.5,13.5 + rot: 1.5707963267948966 rad + pos: 57.5,-24.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14676 - moles: - - 1.8968438 - - 7.1357455 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15823 - - type: Pullable - prevFixedRotation: True - - uid: 32130 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Скафандры + - uid: 32299 components: - type: Transform - pos: 55.5,-24.5 + rot: -1.5707963267948966 rad + pos: 42.5,10.5 parent: 2 - - uid: 32131 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Карцер тюрьмы + - uid: 32300 components: - type: Transform - pos: 57.5,-25.5 + rot: 1.5707963267948966 rad + pos: 48.5,4.5 parent: 2 - - uid: 32132 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Камера 4 + - uid: 32301 components: - type: Transform - pos: 57.5,-23.5 + rot: 1.5707963267948966 rad + pos: 48.5,8.5 parent: 2 - - uid: 32133 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Большая камера 5 + - uid: 32302 components: - type: Transform - pos: 57.5,-24.5 + rot: 1.5707963267948966 rad + pos: 48.5,1.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 32134 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Камера 3 + - uid: 32303 components: - type: Transform - pos: 55.5,-23.5 + rot: -1.5707963267948966 rad + pos: 39.5,5.5 parent: 2 - - uid: 32135 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Камера 2 + - uid: 32304 components: - type: Transform - pos: 55.5,-25.5 + pos: 40.5,-1.5 parent: 2 - - uid: 32136 + - uid: 32305 components: - type: Transform - pos: -3.5,13.5 + rot: 3.141592653589793 rad + pos: 44.5,8.5 parent: 2 - - uid: 32137 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Коридор тюрьмы + - uid: 32306 components: - type: Transform - pos: 62.5,13.5 + rot: 1.5707963267948966 rad + pos: 65.5,-18.5 parent: 2 - - uid: 32138 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Оружейная КК + - uid: 32307 components: - type: Transform - pos: 75.5,6.5 + pos: 54.5,-19.5 parent: 2 - - uid: 32139 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Вспомогательный склад + - uid: 32308 components: - type: Transform - pos: 75.5,7.5 + rot: -1.5707963267948966 rad + pos: 42.5,-9.5 parent: 2 -- proto: SuitStorageWarden - entities: - - uid: 32140 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Коридор допросная + - uid: 32309 components: - type: Transform - pos: 51.5,-23.5 + rot: -1.5707963267948966 rad + pos: -46.5,-33.5 parent: 2 -- proto: SurveillanceCameraCommand - entities: - - uid: 32141 + - type: SurveillanceCamera + id: КПП Мед + - uid: 32310 components: - type: Transform - pos: 7.5,19.5 + rot: 3.141592653589793 rad + pos: 75.5,-26.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Мостик В - - uid: 32142 + id: КПП прибытия + - uid: 32311 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,5.5 + pos: -49.5,-48.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Мастерская - - uid: 32143 + id: КПП РнД + - uid: 32313 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,11.5 + rot: 1.5707963267948966 rad + pos: -64.5,-41.5 parent: 2 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Офис ГП - - uid: 32144 + id: КПП Эвакуация + - uid: 32314 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,11.5 + pos: -75.5,-47.5 + parent: 2 + - type: SurveillanceCamera + id: Безопасная эвакуация + - uid: 32315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,2.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Конференц-зал - - uid: 32145 + id: Камера 1 + - uid: 32316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 + rot: 3.141592653589793 rad + pos: 51.5,0.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Коридор мостика - - uid: 32146 + id: Склад улик + - uid: 32317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,16.5 + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Хранилище EVA - - uid: 32147 + id: КПП ГП + - uid: 32318 components: - type: Transform - pos: -6.5,19.5 + rot: 1.5707963267948966 rad + pos: 54.5,-8.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Мостик З - - uid: 32148 + id: Допросная + - uid: 32319 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,27.5 + pos: 39.5,-27.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Мостик С - - uid: 32149 + id: Детектив + - uid: 32320 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,4.5 + pos: 43.5,-17.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Кабинет АВД - - uid: 32150 + id: Бриг + - uid: 32321 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,14.5 + pos: 52.5,-19.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Доп хранилище EVA - - uid: 32151 + id: Смотритель + - uid: 32322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,15.5 + pos: 57.5,-15.5 parent: 2 - type: SurveillanceCamera - id: Кабинет капитана - - uid: 32152 + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Коридор оружейная + - uid: 32323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 96.5,-86.5 + pos: 63.5,-9.5 parent: 2 - type: SurveillanceCamera - id: Ядро ИИ - - uid: 32153 + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Коридор к перме + - uid: 32324 components: - type: Transform - pos: -39.5,-70.5 + rot: -1.5707963267948966 rad + pos: 54.5,-2.5 parent: 2 - type: SurveillanceCamera - id: НР - - uid: 32155 + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Брифрум + - uid: 32325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,22.5 + rot: -1.5707963267948966 rad + pos: 56.5,7.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Загрузка ИИ - - uid: 32156 + id: Коридор к пилоту + - uid: 32326 components: - type: Transform - pos: 19.5,18.5 + pos: 52.5,9.5 parent: 2 - - uid: 32157 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Гсбшная + - uid: 32327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,18.5 + pos: 63.5,7.5 parent: 2 - - uid: 32158 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Полигон + - uid: 32328 components: - type: Transform rot: 1.5707963267948966 rad - pos: 90.5,-81.5 + pos: 65.5,-4.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Вход спутник - - uid: 32159 + id: Бригмед + - uid: 32329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 + pos: 85.5,-10.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: хранилище - - uid: 32160 + id: Столовая пермы + - uid: 32330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,6.5 + rot: -1.5707963267948966 rad + pos: 72.5,-3.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Офис представителя - - uid: 44182 + id: Раздевалка перма + - uid: 32331 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,-68.5 + pos: 73.5,-6.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Кабинет СИ - - uid: 44265 + id: Комната свиданий + - uid: 32333 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-73.5 + pos: 72.5,-13.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraCommand + - SurveillanceCameraSecurity nameSet: True - id: Серверная РНД -- proto: SurveillanceCameraEngineering - entities: - - uid: 32161 + id: СБ видит + - uid: 32334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-53.5 + pos: 75.5,-12.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSecurity nameSet: True - id: энергохранилище - - uid: 32162 + id: СБ видит + - uid: 32335 components: - type: Transform rot: 3.141592653589793 rad - pos: 98.5,-78.5 - parent: 2 - - type: SurveillanceCamera - id: Коридор спутника - - uid: 32163 - components: - - type: Transform - pos: 95.5,-84.5 + pos: 79.5,1.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSecurity nameSet: True - id: Атмосферика ядра - - uid: 32164 + id: Комната 1 Перма + - uid: 32336 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-48.5 + pos: 83.5,1.5 parent: 2 - type: SurveillanceCamera - id: Комната наблюдения теслы - - uid: 32165 + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Комната 2 перма + - uid: 32337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-90.5 + rot: 3.141592653589793 rad + pos: 87.5,1.5 parent: 2 - type: SurveillanceCamera - id: ТЭГ - - uid: 32166 + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Крио перма + - uid: 32338 components: - type: Transform - pos: 52.5,-84.5 + pos: 78.5,3.5 parent: 2 - type: SurveillanceCamera - id: Раздевалка инженеров - - uid: 32167 + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Комната казни + - uid: 32339 components: - type: Transform - pos: 49.5,-60.5 + rot: -1.5707963267948966 rad + pos: 73.5,1.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSecurity nameSet: True - id: Основной зал - - uid: 32169 + id: Карцер смертников + - uid: 32340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-72.5 + rot: -1.5707963267948966 rad + pos: 73.5,6.5 parent: 2 - type: SurveillanceCamera - id: Южный коридор - - uid: 32170 + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Эвакуационный под Брига + - uid: 32341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-50.5 + rot: 3.141592653589793 rad + pos: 69.5,5.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSecurity nameSet: True - id: Приёмная атмосии - - uid: 32171 + id: 'Вспомогательный склад ' + - uid: 32342 components: - type: Transform - pos: 37.5,-39.5 + rot: -1.5707963267948966 rad + pos: 68.5,-2.5 parent: 2 - type: SurveillanceCamera - id: Хранилище плат - - uid: 32172 + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Коридор перед раздевалкой пермы + - uid: 32343 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-77.5 + rot: -1.5707963267948966 rad + pos: 67.5,-6.5 parent: 2 - type: SurveillanceCamera - id: ДАМ - - uid: 32173 + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Коридор перма + - uid: 36127 components: - type: Transform rot: 1.5707963267948966 rad - pos: 98.5,-84.5 + pos: 90.5,-1.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSecurity nameSet: True - id: Коридор к ядру - - uid: 32174 + id: Перма +- proto: SurveillanceCameraService + entities: + - uid: 31042 components: - type: Transform rot: 3.141592653589793 rad - pos: 100.5,-82.5 + pos: 30.5,21.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraService nameSet: True - id: Охлаждение ядра - - uid: 32175 + id: Сад + - uid: 32345 components: - type: Transform rot: -1.5707963267948966 rad - pos: 91.5,-69.5 + pos: 27.5,10.5 parent: 2 - type: SurveillanceCamera - id: Телекоммуникация - - uid: 32176 + id: Кухня + - uid: 32346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 99.5,-70.5 + rot: -1.5707963267948966 rad + pos: 22.5,2.5 parent: 2 - type: SurveillanceCamera - id: Коридор телекомов - - uid: 32177 + id: Бармен + - uid: 32347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 105.5,-69.5 + pos: 35.5,-13.5 parent: 2 - type: SurveillanceCamera - id: 'Маршрутизаторы ' - - uid: 32178 + id: Театр + - uid: 32348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 100.5,-75.5 + rot: 3.141592653589793 rad + pos: -28.5,14.5 parent: 2 - type: SurveillanceCamera - id: Охранный коридор спутника - - uid: 32179 + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Игровая + - uid: 32349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-85.5 + pos: 28.5,-76.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraService nameSet: True - id: Север атмосия - - uid: 32180 + id: Репортёр + - uid: 32351 components: - type: Transform - pos: 48.5,-103.5 + rot: 1.5707963267948966 rad + pos: 38.5,12.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraService nameSet: True - id: Юг атмосия - - uid: 32181 + id: Ботаника + - uid: 32353 components: - type: Transform - pos: 36.5,-103.5 + rot: 1.5707963267948966 rad + pos: -61.5,-46.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraService nameSet: True - id: Воздух атмосия - - uid: 32182 + id: Зоотехник + - uid: 32664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-92.5 + pos: 36.5,20.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraService nameSet: True - id: Центр атмосия - - uid: 32183 + id: Биологическая лаборатория + - uid: 33098 components: - type: Transform - pos: 77.5,-66.5 + rot: 1.5707963267948966 rad + pos: 38.5,-61.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraService nameSet: True - id: Тесла - - uid: 32184 + id: Церковь + - uid: 43370 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-56.5 + pos: 9.5,-1.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraService nameSet: True - id: Тесла - - uid: 32185 + id: База уборщика +- proto: SurveillanceCameraSupply + entities: + - uid: 23584 components: - type: Transform - pos: 98.5,-64.5 + rot: 1.5707963267948966 rad + pos: 1.5,-69.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSupply nameSet: True - id: Питание Спутника - - uid: 32186 + id: Аванпост Утилизаторов + - uid: 24309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-62.5 + rot: -1.5707963267948966 rad + pos: -21.5,-40.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSupply nameSet: True - id: Инженерный склад - - uid: 32187 + id: Левый рукав + - uid: 29079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-69.5 + rot: -1.5707963267948966 rad + pos: -4.5,-82.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSupply nameSet: True - id: Путь к спутнику - - uid: 32188 + id: Почтовое отделение + - uid: 29080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-69.5 + rot: -1.5707963267948966 rad + pos: -9.5,-87.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSupply nameSet: True - id: Путь к спутнику - - uid: 32189 + id: Переработка руды + - uid: 32357 components: - type: Transform - pos: 58.5,-82.5 + rot: 1.5707963267948966 rad + pos: 12.5,-82.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSupply nameSet: True - id: Выход космос инж - - uid: 32190 + id: Приёмная карго + - uid: 32358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 107.5,-64.5 + pos: 1.5,-91.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSupply nameSet: True - id: Подход к спутнику справа - - uid: 32191 + id: Склад карго + - uid: 32359 components: - type: Transform - pos: 25.5,-38.5 + rot: 1.5707963267948966 rad + pos: 15.5,-98.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSupply nameSet: True - id: гравиген - - uid: 32192 + id: Доки карго + - uid: 32363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-41.5 + rot: 1.5707963267948966 rad + pos: 17.5,-87.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSupply nameSet: True - id: гравиген - - uid: 32194 + id: Зал Карго + - uid: 43368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-102.5 + parent: 2 + - uid: 43369 components: - type: Transform rot: -1.5707963267948966 rad - pos: 104.5,-20.5 + pos: 5.5,-96.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraSupply nameSet: True - id: Верфь - - uid: 32195 + id: Карго Холл +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 32367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-89.5 + pos: 102.5,-67.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Шлюз атмосы - - uid: 32196 +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 32368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-58.5 + pos: 25.5,-73.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraEntertainment nameSet: True - id: Коридор к УЧ - - uid: 32197 + id: Новости + - uid: 43376 components: - type: Transform - pos: 68.5,-60.5 + pos: 76.5,-55.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraEntertainment nameSet: True - id: УЧ - - uid: 32198 + id: Побег Теслы +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 32370 components: - type: Transform - pos: 41.5,-83.5 + rot: 1.5707963267948966 rad + pos: 26.5,-73.5 + parent: 2 + - uid: 32371 + components: + - type: Transform + pos: 37.5,-6.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraEntertainment nameSet: True - id: подход к ДАМ - - uid: 42206 + id: Театр + - uid: 32372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-65.5 + rot: 3.141592653589793 rad + pos: 69.5,-42.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraEntertainment nameSet: True - id: Шлюз тесла Ю - - uid: 42207 + id: Зал суда + - uid: 32373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-52.5 + rot: -7.115654934440748 rad + pos: -30.461403,-100.97617 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraEntertainment nameSet: True - id: Шлюз тесла С - - uid: 42465 + id: Ринг + - type: Pullable + prevFixedRotation: True +- proto: SurvivalKnife + entities: + - uid: 10034 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 +- proto: Syringe + entities: + - uid: 32376 + components: + - type: Transform + pos: -55.485992,-68.42716 + parent: 2 + - uid: 32378 + components: + - type: Transform + pos: -76.54486,-8.279388 + parent: 2 +- proto: SyringeBicaridine + entities: + - uid: 2526 + components: + - type: Transform + parent: 2520 + - type: Physics + canCollide: False + - uid: 2533 + components: + - type: Transform + parent: 2527 + - type: Physics + canCollide: False + - uid: 2540 + components: + - type: Transform + parent: 2534 + - type: Physics + canCollide: False +- proto: SyringeEphedrine + entities: + - uid: 27225 + components: + - type: Transform + parent: 27220 + - type: Physics + canCollide: False + - uid: 32382 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-47.5 + pos: -47.44793,-0.058694363 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Ресепшн Инженерия - - uid: 43373 +- proto: SyringeEthylredoxrazine + entities: + - uid: 51 + components: + - type: Transform + parent: 35 + - type: Physics + canCollide: False +- proto: SyringeInaprovaline + entities: + - uid: 75 + components: + - type: Transform + parent: 68 + - type: Physics + canCollide: False + - uid: 84 + components: + - type: Transform + parent: 77 + - type: Physics + canCollide: False + - uid: 93 + components: + - type: Transform + parent: 86 + - type: Physics + canCollide: False + - uid: 32383 + components: + - type: Transform + pos: -45.469284,-10.626675 + parent: 2 + - uid: 32384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.47078,-23.552757 + parent: 2 +- proto: SyringePhalanximine + entities: + - uid: 32385 + components: + - type: Transform + pos: 36.50634,22.61851 + parent: 2 +- proto: SyringeSaline + entities: + - uid: 76 + components: + - type: Transform + parent: 68 + - type: Physics + canCollide: False + - uid: 85 + components: + - type: Transform + parent: 77 + - type: Physics + canCollide: False + - uid: 94 + components: + - type: Transform + parent: 86 + - type: Physics + canCollide: False + - uid: 27226 + components: + - type: Transform + parent: 27220 + - type: Physics + canCollide: False +- proto: Table + entities: + - uid: 347 + components: + - type: Transform + pos: 87.5,-51.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -6.5,-78.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: -72.5,3.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 108.5,-22.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: 105.5,-48.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: -17.5,-84.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + pos: -17.5,-85.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-84.5 + parent: 2 + - uid: 14834 + components: + - type: Transform + pos: -17.5,-88.5 + parent: 2 + - uid: 14843 + components: + - type: Transform + pos: -17.5,-87.5 + parent: 2 + - uid: 15042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-8.5 + pos: -74.5,0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Якорь - - uid: 44254 + - uid: 15050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-105.5 + pos: -72.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Шлюз атмостехники -- proto: SurveillanceCameraGeneral - entities: - - uid: 25470 + - uid: 15579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-27.5 + pos: 87.5,-52.5 parent: 2 - - uid: 30197 + - uid: 16139 components: - type: Transform - pos: 25.5,-33.5 + pos: 78.5,4.5 parent: 2 - - uid: 32200 + - uid: 26443 components: - type: Transform - pos: 0.5,-32.5 + pos: 32.5,42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Инкубатор - - uid: 32201 + - uid: 27404 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-71.5 + pos: -4.5,-83.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: очередная камера в коридоре - - uid: 32202 + - uid: 27514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-47.5 + rot: 3.141592653589793 rad + pos: -4.5,-82.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Очередная камера - - uid: 32203 + - uid: 27754 components: - type: Transform - pos: 12.5,-44.5 + pos: 84.5,-55.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Музей Искусств - - uid: 32205 + - uid: 27761 components: - type: Transform - pos: -31.5,-98.5 + pos: 86.5,-55.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Раздевалка жилого отсека - - uid: 32206 + - uid: 30535 components: - - type: MetaData - name: камера - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-85.5 + rot: -1.5707963267948966 rad + pos: -3.5,-77.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Спортзал - - uid: 32208 + - uid: 32387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-75.5 + rot: -1.5707963267948966 rad + pos: 47.5,-24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Доп склад инструментов - - uid: 32209 + - uid: 32388 components: - type: Transform - pos: 91.5,-41.5 + pos: 56.5,-0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Прибытие Ю - - uid: 32210 + - uid: 32389 components: - type: Transform - pos: 92.5,-23.5 + rot: -1.5707963267948966 rad + pos: 48.5,-17.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Прибытие С - - uid: 32211 + - uid: 32390 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-20.5 + pos: 47.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Основной коридор З - - uid: 32212 + - uid: 32391 components: - type: Transform - pos: 17.5,-0.5 + rot: 3.141592653589793 rad + pos: 41.5,-22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Основной коридор СВ - - uid: 32213 + - uid: 32392 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-0.5 + pos: 42.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Основной коридор СЗ - - uid: 32214 + - uid: 32393 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,-40.5 + pos: 65.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Отбытие - - uid: 32215 + - uid: 32394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-61.5 + pos: 46.5,-1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Основной коридор ЮЗ - - uid: 32216 + - uid: 32395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,2.5 + pos: 46.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Библиотека - - uid: 32217 + - uid: 32397 components: - type: Transform - pos: -1.5,-76.5 + pos: 47.5,-1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Основной коридор Ю - - uid: 32218 + - uid: 32398 components: - type: Transform - pos: 66.5,-33.5 + pos: 48.5,-1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Коридор прибытия - - uid: 32219 + - uid: 32399 components: - type: Transform - pos: 67.5,-42.5 + pos: 56.5,-1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Суд - - uid: 32220 + - uid: 32400 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-42.5 + pos: -96.5,-10.5 parent: 2 - - type: SurveillanceCamera - id: Коридор Психолога - - uid: 32222 + - uid: 32401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,3.5 + parent: 2 + - uid: 32402 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-86.5 + pos: 47.5,-17.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Дормы - - uid: 32223 + - uid: 32403 + components: + - type: Transform + pos: 50.5,5.5 + parent: 2 + - uid: 32405 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,-78.5 + pos: 46.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Криокапсулы - - uid: 32224 + - uid: 32406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-27.5 + pos: 53.5,21.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Северо-западный кольцевой - - uid: 32225 + - uid: 32408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-47.5 + pos: -10.5,13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Перекрёсток мед-рнд - - uid: 32226 + - uid: 32409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-36.5 + pos: 42.5,-11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Перекрёсток мед-рнд - - uid: 32227 + - uid: 32410 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-16.5 + pos: 46.5,0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Северо-западный кольцевой - - uid: 32228 + - uid: 32411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-38.5 + rot: 1.5707963267948966 rad + pos: 64.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Стыковка эвак - - uid: 32229 + - uid: 32412 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,4.5 + pos: 85.5,-10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Коридор уборщик - - uid: 32230 + - uid: 32413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 + rot: 3.141592653589793 rad + pos: 46.5,7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Вход в бар - - uid: 32232 + - uid: 32414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-22.5 + pos: 62.5,-1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Прибытие - - uid: 32233 + - uid: 32415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-37.5 + pos: 55.5,-0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Прибытие - - uid: 32234 + - uid: 32416 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-75.5 + pos: 64.5,-3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Коридор дормы - - uid: 32235 + - uid: 32417 components: - type: Transform - pos: -14.5,-73.5 + pos: 52.5,-1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Коридор Карго - - uid: 32236 + - uid: 32418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-68.5 + rot: -1.5707963267948966 rad + pos: 39.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Коридор Репортёр - - uid: 32237 + - uid: 32419 components: - type: Transform - pos: 9.5,-76.5 + rot: -1.5707963267948966 rad + pos: 39.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Коридор над карго - - uid: 32238 + - uid: 32420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-93.5 + pos: 62.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Парикмахерская - - uid: 32239 + - uid: 32421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-26.5 + rot: -1.5707963267948966 rad + pos: 58.5,15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Склад инструментов - - uid: 32240 + - uid: 32422 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-58.5 + pos: 57.5,15.5 parent: 2 - - uid: 32242 + - uid: 32423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-36.5 + rot: -1.5707963267948966 rad + pos: 56.5,15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: вход гравиген - - uid: 32244 + - uid: 32424 components: - type: Transform - pos: -26.5,-44.5 + rot: -1.5707963267948966 rad + pos: 56.5,14.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: левый лифт - - uid: 32245 + - uid: 32425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 102.5,-20.5 + pos: 56.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Верфь - - uid: 32246 + - uid: 32426 components: - type: Transform - pos: -10.5,-0.5 + pos: 62.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Старое хранилище - - uid: 32248 + - uid: 32427 components: - type: Transform - pos: 63.5,13.5 + pos: 55.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Доки сб - - uid: 32251 + - uid: 32428 components: - type: Transform - rot: 3.141592653589793 rad - pos: 121.5,-38.5 + pos: 50.5,6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Стыковка ПРибытие - - uid: 32252 + - uid: 32429 components: - type: Transform - pos: 128.5,-40.5 + pos: 55.5,-4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Стыковка прибытие 2 - - uid: 32253 + - uid: 32430 components: - type: Transform - pos: 105.5,-42.5 + pos: 55.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Коридор к стыковке ' - - uid: 32254 + - uid: 32431 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-22.5 + pos: 40.5,-22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Зоопарк - - uid: 42463 + - uid: 32432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-31.5 + rot: -1.5707963267948966 rad + pos: 39.5,-26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Коридор Бриг-Инж - - uid: 42464 + - uid: 32433 components: - type: Transform - pos: 55.5,-42.5 + rot: -1.5707963267948966 rad + pos: 41.5,-26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Зимний парк - - uid: 43372 + - uid: 32434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 + rot: -1.5707963267948966 rad + pos: 40.5,-26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Коридор к центру -- proto: SurveillanceCameraMedical - entities: - - uid: 32255 + - uid: 32435 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-24.5 + pos: 59.5,1.5 parent: 2 - - uid: 32256 + - uid: 32436 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-27.5 + pos: 80.5,-9.5 parent: 2 - - uid: 32257 + - uid: 32437 components: - type: Transform - pos: -39.5,-40.5 + pos: -44.5,-19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Приёмная меда - - uid: 32258 + - uid: 32438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-22.5 + pos: 37.5,-23.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Палаты - - uid: 32259 + - uid: 32439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-23.5 + pos: 56.5,-7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Хирургия - - uid: 32260 + - uid: 32440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-34.5 + pos: 50.5,3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Клонирование - - uid: 32261 + - uid: 32441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-20.5 + pos: 52.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Криогенетика - - uid: 32262 + - uid: 32442 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-9.5 + pos: 47.5,-20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Кабинет ГВ - - uid: 32263 + - uid: 32443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,1.5 + pos: -49.5,-23.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Вирусология - - uid: 32264 + - uid: 32444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-14.5 + pos: 50.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Медотсек С - - uid: 32265 + - uid: 32445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-30.5 + pos: 51.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Химия - - uid: 32266 + - uid: 32446 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-8.5 + pos: 77.5,0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Склад медикаментов - - uid: 32267 + - uid: 32447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-3.5 + pos: 81.5,0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Переход к вирусологии - - uid: 32268 + - uid: 32448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-22.5 + pos: 85.5,0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Палаты - - uid: 32269 + - uid: 32450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-80.5 + pos: 85.5,-9.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Коридор к аномалистике - - uid: 32270 + - uid: 32453 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Бар -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 32271 - components: - - type: Transform - pos: 104.5,-67.5 + pos: 85.5,-3.5 parent: 2 -- proto: SurveillanceCameraRouterConstructed - entities: - - uid: 32272 + - uid: 32454 components: - type: Transform - pos: 19.5,-19.5 + rot: 1.5707963267948966 rad + pos: 85.5,-2.5 parent: 2 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 32273 + - uid: 32456 components: - type: Transform - pos: 104.5,-71.5 + rot: 1.5707963267948966 rad + pos: -38.5,-34.5 parent: 2 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 32274 + - uid: 32458 components: - type: Transform - pos: 102.5,-68.5 + rot: 1.5707963267948966 rad + pos: -37.5,-34.5 parent: 2 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 32275 + - uid: 32459 components: - type: Transform - pos: 102.5,-71.5 + rot: 1.5707963267948966 rad + pos: -36.5,-30.5 parent: 2 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 32276 + - uid: 32460 components: - type: Transform - pos: -38.5,-72.5 + rot: 1.5707963267948966 rad + pos: -36.5,-31.5 parent: 2 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 32277 + - uid: 32461 components: - type: Transform - pos: 102.5,-70.5 + rot: 1.5707963267948966 rad + pos: -36.5,-32.5 parent: 2 -- proto: SurveillanceCameraRouterService - entities: - - uid: 32278 + - uid: 32462 components: - type: Transform - pos: 102.5,-69.5 + pos: -66.5,-76.5 parent: 2 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 32279 + - uid: 32463 components: - type: Transform - pos: 104.5,-70.5 + pos: -45.5,-10.5 parent: 2 -- proto: SurveillanceCameraScience - entities: - - uid: 32280 + - uid: 32464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-82.5 + rot: 3.141592653589793 rad + pos: -48.5,-34.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Аномалистика - - uid: 32281 + - uid: 32465 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,-75.5 + pos: 104.5,-58.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Ксеноархеология - - uid: 32282 + - uid: 32466 components: - type: Transform - pos: -36.5,-49.5 + pos: 32.5,11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: РнД - - uid: 32283 + - uid: 32467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-55.5 + rot: 3.141592653589793 rad + pos: -48.5,-33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Токсины - - uid: 32284 + - uid: 32469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-52.5 + rot: 3.141592653589793 rad + pos: -35.5,-27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Робототехника - - uid: 32285 + - uid: 32470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-57.5 + pos: 26.5,5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: РнД коридор С - - uid: 32286 + - uid: 32471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-84.5 + pos: -66.5,-75.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Комната отдыха - - uid: 32287 + - uid: 32472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-74.5 + pos: -63.5,-72.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Камеры ксенобиологии - - uid: 32288 + - uid: 32473 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-68.5 + pos: -45.5,-11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Ксенобиология - - uid: 32289 + - uid: 32474 components: - type: Transform - pos: -38.5,-65.5 + pos: 32.5,10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Комната механики - - uid: 32290 + - uid: 32475 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-72.5 + pos: -49.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: сервера РнД - - uid: 32291 + - uid: 32477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-68.5 + pos: -62.5,-71.5 parent: 2 - - type: SurveillanceCamera - id: Ксеноархеология 2 - - uid: 32292 + - uid: 32478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-66.5 + pos: -62.5,-72.5 parent: 2 - - type: SurveillanceCamera - id: Тестовая - - uid: 32293 + - uid: 32479 components: - type: Transform - pos: -52.5,-66.5 + rot: 3.141592653589793 rad + pos: 78.5,-49.5 parent: 2 - - type: SurveillanceCamera - id: Коридор токсины - - uid: 32294 + - uid: 32480 components: - type: Transform - pos: -13.5,-54.5 + pos: 74.5,-50.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Робототехническая лаборатория - - uid: 42103 + - uid: 32481 components: - type: Transform rot: 3.141592653589793 rad - pos: -70.5,-76.5 + pos: -36.5,-27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Камера артефактов РНД -- proto: SurveillanceCameraSecurity - entities: - - uid: 28571 + - uid: 32482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,5.5 + rot: 3.141592653589793 rad + pos: -67.5,-47.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Комната отдыха СБ - - uid: 29072 + - uid: 32483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,13.5 + pos: 92.5,-48.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Пилот - - uid: 32295 + - uid: 32484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-2.5 + rot: 3.141592653589793 rad + pos: -44.5,-37.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Комната наблюдения - - uid: 32296 + - uid: 32485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-12.5 + rot: 3.141592653589793 rad + pos: -68.5,-47.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Оружейная СК - - uid: 32297 + - uid: 32486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-24.5 + rot: 3.141592653589793 rad + pos: -68.5,-48.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: КПП СБ Смотритель - - uid: 32298 + - uid: 32487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-24.5 + pos: -3.5,7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Скафандры - - uid: 32299 + - uid: 32488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,10.5 + rot: 1.5707963267948966 rad + pos: -8.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Карцер тюрьмы - - uid: 32300 + - uid: 32489 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,4.5 + pos: 77.5,-30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Камера 4 - - uid: 32301 + - uid: 32490 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,8.5 + pos: -5.5,-0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Большая камера 5 - - uid: 32302 + - uid: 32491 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,1.5 + pos: -7.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Камера 3 - - uid: 32303 + - uid: 32492 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,5.5 + pos: 53.5,-53.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Камера 2 - - uid: 32304 + - uid: 32493 components: - type: Transform - pos: 40.5,-1.5 + rot: -1.5707963267948966 rad + pos: 53.5,-52.5 parent: 2 - - uid: 32305 + - uid: 32494 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,8.5 + pos: 50.5,-54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Коридор тюрьмы - - uid: 32306 + - uid: 32495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-18.5 + rot: -1.5707963267948966 rad + pos: 53.5,-51.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Оружейная КК - - uid: 32307 + - uid: 32496 components: - type: Transform - pos: 54.5,-19.5 + pos: -5.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Вспомогательный склад - - uid: 32308 + - uid: 32497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-9.5 + rot: 3.141592653589793 rad + pos: 8.5,-82.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Коридор допросная - - uid: 32309 + - uid: 32498 + components: + - type: Transform + pos: 9.5,-83.5 + parent: 2 + - uid: 32499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-33.5 + pos: -1.5,-79.5 parent: 2 - - type: SurveillanceCamera - id: КПП Мед - - uid: 32310 + - uid: 32500 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-26.5 + pos: -8.5,-77.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: КПП прибытия - - uid: 32311 + - uid: 32501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-48.5 + pos: -41.5,-47.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: КПП РнД - - uid: 32313 + - uid: 32502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-41.5 + pos: -65.5,-39.5 parent: 2 - - type: SurveillanceCamera - id: КПП Эвакуация - - uid: 32314 + - uid: 32503 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-47.5 + pos: -65.5,-38.5 parent: 2 - - type: SurveillanceCamera - id: Безопасная эвакуация - - uid: 32315 + - uid: 32504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,2.5 + pos: -68.5,-39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Камера 1 - - uid: 32316 + - uid: 32505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,0.5 + pos: -46.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Склад улик - - uid: 32317 + - uid: 32506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 + pos: -7.5,6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: КПП ГП - - uid: 32318 + - uid: 32507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-8.5 + rot: 3.141592653589793 rad + pos: 4.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Допросная - - uid: 32319 + - uid: 32508 components: - type: Transform - pos: 39.5,-27.5 + rot: 3.141592653589793 rad + pos: -3.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Детектив - - uid: 32320 + - uid: 32509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-17.5 + rot: 3.141592653589793 rad + pos: 6.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Бриг - - uid: 32321 + - uid: 32510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-19.5 + rot: 3.141592653589793 rad + pos: 7.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Смотритель - - uid: 32322 + - uid: 32511 components: - type: Transform - pos: 57.5,-15.5 + rot: -1.5707963267948966 rad + pos: -6.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Коридор оружейная - - uid: 32323 + - uid: 32512 components: - type: Transform - pos: 63.5,-9.5 + pos: 17.5,5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Коридор к перме - - uid: 32324 + - uid: 32513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-2.5 + pos: 16.5,5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Брифрум - - uid: 32325 + - uid: 32514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,7.5 + pos: -66.5,-40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Коридор к пилоту - - uid: 32326 + - uid: 32515 components: - type: Transform - pos: 52.5,9.5 + pos: -34.5,-40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Гсбшная - - uid: 32327 + - uid: 32516 components: - type: Transform - pos: 63.5,7.5 + pos: -48.5,-18.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Полигон - - uid: 32328 + - uid: 32517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-4.5 + pos: -49.5,-18.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Бригмед - - uid: 32329 + - uid: 32518 components: - type: Transform - pos: 85.5,-10.5 + pos: -49.5,-19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Столовая пермы - - uid: 32330 + - uid: 32519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-3.5 + pos: -49.5,-20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Раздевалка перма - - uid: 32331 + - uid: 32520 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-6.5 + pos: -49.5,-24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Комната свиданий - - uid: 32333 + - uid: 32521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-13.5 + rot: 3.141592653589793 rad + pos: -53.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: СБ видит - - uid: 32334 + - uid: 32522 components: - type: Transform - pos: 75.5,-12.5 + pos: -45.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: СБ видит - - uid: 32335 + - uid: 32524 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,1.5 + pos: -38.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Комната 1 Перма - - uid: 32336 + - uid: 32525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,1.5 + pos: -37.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Комната 2 перма - - uid: 32337 + - uid: 32526 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,1.5 + pos: -44.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Крио перма - - uid: 32338 + - uid: 32527 components: - type: Transform - pos: 78.5,3.5 + rot: 3.141592653589793 rad + pos: -48.5,-13.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Комната казни - - uid: 32339 + - uid: 32528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,1.5 + rot: 1.5707963267948966 rad + pos: 70.5,-42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Карцер смертников - - uid: 32340 + - uid: 32529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,6.5 + rot: 3.141592653589793 rad + pos: -76.5,-41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Эвакуационный под Брига - - uid: 32341 + - uid: 32530 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,5.5 + pos: -45.5,-6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Вспомогательный склад ' - - uid: 32342 + - uid: 32531 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,-2.5 + pos: -45.5,-2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Коридор перед раздевалкой пермы - - uid: 32343 + - uid: 32532 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,-6.5 + pos: -45.5,0.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Коридор перма - - uid: 32344 + - uid: 32533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-20.5 + rot: 3.141592653589793 rad + pos: -51.5,-3.5 parent: 2 - - uid: 36127 + - uid: 32534 components: - type: Transform rot: 1.5707963267948966 rad - pos: 90.5,-1.5 + pos: -55.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Перма -- proto: SurveillanceCameraService - entities: - - uid: 31042 + - uid: 32535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,21.5 + rot: 1.5707963267948966 rad + pos: -54.5,-15.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Сад - - uid: 32345 + - uid: 32536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,10.5 + pos: 61.5,-38.5 parent: 2 - - type: SurveillanceCamera - id: Кухня - - uid: 32346 + - uid: 32537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,2.5 + pos: 61.5,-37.5 parent: 2 - - type: SurveillanceCamera - id: Бармен - - uid: 32347 + - uid: 32538 components: - type: Transform - pos: 35.5,-13.5 + pos: 76.5,-29.5 parent: 2 - - type: SurveillanceCamera - id: Театр - - uid: 32348 + - uid: 32539 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,14.5 + pos: 73.5,-26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Игровая - - uid: 32349 + - uid: 32540 components: - type: Transform - pos: 28.5,-76.5 + pos: 74.5,-26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Репортёр - - uid: 32351 + - uid: 32541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,12.5 + rot: 3.141592653589793 rad + pos: 75.5,-29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Ботаника - - uid: 32353 + - uid: 32542 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,-46.5 + pos: 70.5,-26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Зоотехник - - uid: 32354 + - uid: 32543 components: - type: Transform - pos: -7.5,-19.5 + rot: 1.5707963267948966 rad + pos: 70.5,-27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Оранжерея - - uid: 32664 + - uid: 32544 components: - type: Transform - pos: 36.5,20.5 + rot: 1.5707963267948966 rad + pos: 70.5,-28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Биологическая лаборатория - - uid: 33098 + - uid: 32545 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-61.5 + pos: 70.5,-29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Церковь - - uid: 43370 + - uid: 32546 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-1.5 + pos: 64.5,-24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: База уборщика -- proto: SurveillanceCameraSupply - entities: - - uid: 29079 + - uid: 32547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-82.5 + rot: 1.5707963267948966 rad + pos: 63.5,-24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Почтовое отделение - - uid: 29080 + - uid: 32548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-87.5 + rot: 1.5707963267948966 rad + pos: 62.5,-24.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Переработка руды - - uid: 32357 + - uid: 32549 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-82.5 + pos: 62.5,-25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Приёмная карго - - uid: 32358 + - uid: 32550 components: - type: Transform - pos: 1.5,-91.5 + rot: 1.5707963267948966 rad + pos: 62.5,-28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Склад карго - - uid: 32359 + - uid: 32551 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-98.5 + pos: 62.5,-29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Доки карго - - uid: 32363 + - uid: 32552 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-87.5 + pos: 65.5,-29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Зал Карго - - uid: 32364 + - uid: 32553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-70.5 + rot: 1.5707963267948966 rad + pos: 67.5,-29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Аванпост утилей - - uid: 32365 + - uid: 32554 components: - type: Transform - pos: -1.5,-64.5 + pos: 50.5,-52.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Трюм - - uid: 43368 + - uid: 32555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-102.5 + pos: 51.5,-52.5 parent: 2 - - uid: 43369 + - uid: 32556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-96.5 + pos: 51.5,-53.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Карго Холл -- proto: SurveillanceCameraWirelessRouterConstructed - entities: - - uid: 32366 + - uid: 32557 components: - type: Transform - pos: 9.5,-46.5 + pos: 51.5,-51.5 parent: 2 -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 32367 + - uid: 32558 components: - type: Transform - pos: 102.5,-67.5 + pos: 50.5,-53.5 parent: 2 -- proto: SurveillanceWirelessCameraAnchoredEntertainment - entities: - - uid: 32368 + - uid: 32559 components: - type: Transform - pos: 25.5,-73.5 + pos: 50.5,-51.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Новости - - uid: 43376 + - uid: 32560 components: - type: Transform - pos: 76.5,-55.5 + rot: 3.141592653589793 rad + pos: 55.5,-84.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Побег Теслы -- proto: SurveillanceWirelessCameraMovableEntertainment - entities: - - uid: 32370 + - uid: 32561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-73.5 + pos: 9.5,-84.5 parent: 2 - - uid: 32371 + - uid: 32563 components: - type: Transform - pos: 37.5,-6.5 + pos: 11.5,-78.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Театр - - uid: 32372 + - uid: 32564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-42.5 + pos: 12.5,-78.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Зал суда - - uid: 32373 + - uid: 32565 components: - type: Transform - rot: -7.115654934440748 rad - pos: -30.461403,-100.97617 + pos: 12.5,-79.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Ринг - - type: Pullable - prevFixedRotation: True -- proto: SyndicateMicrowave - entities: - - uid: 32374 + - uid: 32566 components: - type: Transform - pos: -17.5,-21.5 + pos: 12.5,-80.5 parent: 2 -- proto: SyndieTrickyBomb - entities: - - uid: 32375 + - uid: 32568 components: - - type: MetaData - name: нейтронная бомба - type: Transform - pos: 12.528725,-23.453781 + pos: 7.5,-86.5 parent: 2 -- proto: Syringe - entities: - - uid: 32376 + - uid: 32569 components: - type: Transform - pos: -55.485992,-68.42716 + pos: 8.5,-86.5 parent: 2 - - uid: 32378 + - uid: 32576 components: - type: Transform - pos: -76.54486,-8.279388 + rot: -1.5707963267948966 rad + pos: -9.5,-89.5 parent: 2 - - uid: 32379 + - uid: 32577 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.4784193,-35.13414 + pos: -9.5,-88.5 parent: 2 - - uid: 32380 + - uid: 32578 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.2909193,-34.94664 + pos: -6.5,-84.5 parent: 2 - - uid: 32381 + - uid: 32579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.6540136,-38.94043 + rot: 1.5707963267948966 rad + pos: -6.5,-83.5 parent: 2 -- proto: SyringeBicaridine - entities: - - uid: 2526 + - uid: 32581 components: - type: Transform - parent: 2520 - - type: Physics - canCollide: False - - uid: 2533 + rot: 3.141592653589793 rad + pos: 52.5,-84.5 + parent: 2 + - uid: 32582 components: - type: Transform - parent: 2527 - - type: Physics - canCollide: False - - uid: 2540 + rot: 3.141592653589793 rad + pos: -17.5,-81.5 + parent: 2 + - uid: 32583 components: - type: Transform - parent: 2534 - - type: Physics - canCollide: False -- proto: SyringeEphedrine - entities: - - uid: 27225 + rot: 3.141592653589793 rad + pos: -18.5,-81.5 + parent: 2 + - uid: 32584 components: - type: Transform - parent: 27220 - - type: Physics - canCollide: False - - uid: 32382 + pos: -66.5,-45.5 + parent: 2 + - uid: 32585 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.44793,-0.058694363 + pos: -40.5,-53.5 parent: 2 -- proto: SyringeEthylredoxrazine - entities: - - uid: 51 + - uid: 32586 components: - type: Transform - parent: 35 - - type: Physics - canCollide: False -- proto: SyringeInaprovaline - entities: - - uid: 75 + rot: 1.5707963267948966 rad + pos: -38.5,-51.5 + parent: 2 + - uid: 32588 components: - type: Transform - parent: 68 - - type: Physics - canCollide: False - - uid: 84 + pos: 53.5,-84.5 + parent: 2 + - uid: 32589 components: - type: Transform - parent: 77 - - type: Physics - canCollide: False - - uid: 93 + rot: 3.141592653589793 rad + pos: 51.5,-54.5 + parent: 2 + - uid: 32590 components: - type: Transform - parent: 86 - - type: Physics - canCollide: False - - uid: 32383 + rot: -1.5707963267948966 rad + pos: 25.5,-87.5 + parent: 2 + - uid: 32592 components: - type: Transform - pos: -45.469284,-10.626675 + rot: 3.141592653589793 rad + pos: 55.5,-83.5 parent: 2 - - uid: 32384 + - uid: 32593 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.47078,-23.552757 + pos: 54.5,-84.5 parent: 2 -- proto: SyringePhalanximine - entities: - - uid: 32385 + - uid: 32594 components: - type: Transform - pos: 36.50634,22.61851 + pos: 87.5,-38.5 parent: 2 -- proto: SyringeSaline - entities: - - uid: 76 + - uid: 32595 components: - type: Transform - parent: 68 - - type: Physics - canCollide: False - - uid: 85 + rot: -1.5707963267948966 rad + pos: 94.5,-42.5 + parent: 2 + - uid: 32596 components: - type: Transform - parent: 77 - - type: Physics - canCollide: False - - uid: 94 + rot: -1.5707963267948966 rad + pos: 95.5,-42.5 + parent: 2 + - uid: 32597 components: - type: Transform - parent: 86 - - type: Physics - canCollide: False - - uid: 27226 + rot: -1.5707963267948966 rad + pos: 94.5,-20.5 + parent: 2 + - uid: 32598 components: - type: Transform - parent: 27220 - - type: Physics - canCollide: False -- proto: Table - entities: - - uid: 347 + rot: -1.5707963267948966 rad + pos: 95.5,-20.5 + parent: 2 + - uid: 32599 components: - type: Transform - pos: 87.5,-51.5 + pos: 87.5,-24.5 parent: 2 - - uid: 404 + - uid: 32600 components: - type: Transform - pos: -6.5,-78.5 + pos: -28.5,-78.5 parent: 2 - - uid: 1338 + - uid: 32601 components: - type: Transform - pos: -72.5,3.5 + pos: -27.5,-78.5 parent: 2 - - uid: 1444 + - uid: 32602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 108.5,-22.5 + pos: -27.5,-77.5 parent: 2 - - uid: 1929 + - uid: 32603 components: - type: Transform - pos: 105.5,-48.5 + pos: -27.5,-76.5 parent: 2 - - uid: 2432 + - uid: 32604 components: - type: Transform - pos: -17.5,-84.5 + pos: -36.5,-45.5 parent: 2 - - uid: 12787 + - uid: 32605 components: - type: Transform - pos: -17.5,-85.5 + pos: -2.5,-90.5 parent: 2 - - uid: 13130 + - uid: 32606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-84.5 + pos: -47.5,-80.5 parent: 2 - - uid: 14834 + - uid: 32607 components: - type: Transform - pos: -17.5,-88.5 + pos: -39.5,-61.5 parent: 2 - - uid: 14843 + - uid: 32608 components: - type: Transform - pos: -17.5,-87.5 + pos: -40.5,-61.5 parent: 2 - - uid: 15042 + - uid: 32609 components: - type: Transform - pos: -74.5,0.5 + pos: -40.5,-62.5 parent: 2 - - uid: 15050 + - uid: 32610 components: - type: Transform - pos: -72.5,2.5 + pos: 50.5,-46.5 parent: 2 - - uid: 15579 + - uid: 32611 components: - type: Transform - pos: 87.5,-52.5 + pos: 51.5,-46.5 parent: 2 - - uid: 16139 + - uid: 32612 components: - type: Transform - pos: 78.5,4.5 + pos: 51.5,-47.5 parent: 2 - - uid: 26443 + - uid: 32613 components: - type: Transform - pos: 32.5,42.5 + pos: 46.5,-48.5 parent: 2 - - uid: 27404 + - uid: 32614 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-83.5 + pos: 39.5,-52.5 parent: 2 - - uid: 27514 + - uid: 32615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-82.5 + pos: 38.5,-52.5 parent: 2 - - uid: 27754 + - uid: 32616 components: - type: Transform - pos: 84.5,-55.5 + pos: -66.5,-74.5 parent: 2 - - uid: 27761 + - uid: 32617 components: - type: Transform - pos: 86.5,-55.5 + rot: -1.5707963267948966 rad + pos: 35.5,-71.5 parent: 2 - - uid: 30535 + - uid: 32618 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-77.5 + pos: 34.5,-71.5 parent: 2 - - uid: 32386 + - type: Label + - uid: 32619 components: - type: Transform - pos: 11.5,-48.5 + rot: -1.5707963267948966 rad + pos: 33.5,-71.5 parent: 2 - - uid: 32387 + - type: Label + - uid: 32624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-24.5 + rot: 3.141592653589793 rad + pos: -40.5,-63.5 parent: 2 - - uid: 32388 + - uid: 32625 components: - type: Transform - pos: 56.5,-0.5 + pos: -40.5,-65.5 parent: 2 - - uid: 32389 + - uid: 32626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-17.5 + rot: 3.141592653589793 rad + pos: -76.5,-42.5 parent: 2 - - uid: 32390 + - uid: 32627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-25.5 + rot: 3.141592653589793 rad + pos: -48.5,-50.5 parent: 2 - - uid: 32391 + - uid: 32628 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-22.5 + pos: -53.5,-64.5 parent: 2 - - uid: 32392 + - uid: 32629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-15.5 + pos: -37.5,-93.5 parent: 2 - - uid: 32393 + - uid: 32630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-5.5 + pos: -23.5,10.5 parent: 2 - - uid: 32394 + - uid: 32631 components: - type: Transform - pos: 46.5,-1.5 + pos: -24.5,10.5 parent: 2 - - uid: 32395 + - uid: 32632 components: - type: Transform - pos: 46.5,-2.5 + pos: -24.5,11.5 parent: 2 - - uid: 32397 + - uid: 32633 components: - type: Transform - pos: 47.5,-1.5 + rot: 3.141592653589793 rad + pos: -63.5,-31.5 parent: 2 - - uid: 32398 + - uid: 32637 components: - type: Transform - pos: 48.5,-1.5 + pos: 17.5,-103.5 parent: 2 - - uid: 32399 + - uid: 32638 components: - type: Transform - pos: 56.5,-1.5 + pos: 16.5,-103.5 parent: 2 - - uid: 32400 + - uid: 32639 components: - type: Transform - pos: -96.5,-10.5 + pos: 15.5,-103.5 parent: 2 - - uid: 32401 + - uid: 32640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,3.5 + pos: 5.5,-102.5 parent: 2 - - uid: 32402 + - uid: 32641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-17.5 + pos: 5.5,-103.5 parent: 2 - - uid: 32403 + - uid: 32642 components: - type: Transform - pos: 50.5,5.5 + pos: 6.5,-103.5 parent: 2 - - uid: 32404 + - uid: 32643 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-29.5 + rot: -1.5707963267948966 rad + pos: -51.5,13.5 parent: 2 - - uid: 32405 + - uid: 32644 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,8.5 + rot: -1.5707963267948966 rad + pos: -51.5,12.5 parent: 2 - - uid: 32406 + - uid: 32645 components: - type: Transform - pos: 53.5,21.5 + rot: -1.5707963267948966 rad + pos: -53.5,13.5 parent: 2 - - uid: 32407 + - uid: 32646 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-29.5 + pos: 24.5,-81.5 parent: 2 - - uid: 32408 + - uid: 32647 components: - type: Transform - pos: -10.5,13.5 + pos: 28.5,-81.5 parent: 2 - - uid: 32409 + - uid: 32648 components: - type: Transform - pos: 42.5,-11.5 + rot: -1.5707963267948966 rad + pos: -29.5,-34.5 parent: 2 - - uid: 32410 + - uid: 32649 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,0.5 + pos: -29.5,-52.5 parent: 2 - - uid: 32411 + - uid: 32651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-2.5 + pos: -53.5,-29.5 parent: 2 - - uid: 32412 + - uid: 32652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-10.5 + pos: -39.5,-57.5 parent: 2 - - uid: 32413 + - uid: 32653 + components: + - type: Transform + pos: 81.5,-20.5 + parent: 2 + - uid: 32654 + components: + - type: Transform + pos: 83.5,-42.5 + parent: 2 + - uid: 32655 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,7.5 + pos: -30.5,-10.5 parent: 2 - - uid: 32414 + - uid: 32656 components: - type: Transform - pos: 62.5,-1.5 + pos: 74.5,-49.5 parent: 2 - - uid: 32415 + - uid: 32657 components: - type: Transform - pos: 55.5,-0.5 + pos: 76.5,-50.5 parent: 2 - - uid: 32416 + - uid: 32658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-3.5 + pos: -63.5,-71.5 parent: 2 - - uid: 32417 + - uid: 32659 components: - type: Transform - pos: 52.5,-1.5 + rot: 3.141592653589793 rad + pos: 78.5,-50.5 parent: 2 - - uid: 32418 + - uid: 32660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,4.5 + rot: 1.5707963267948966 rad + pos: 106.5,-59.5 parent: 2 - - uid: 32419 + - uid: 32661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,1.5 + pos: 95.5,-48.5 parent: 2 - - uid: 32420 + - uid: 32662 components: - type: Transform - pos: 62.5,-2.5 + pos: 96.5,-48.5 parent: 2 - - uid: 32421 + - uid: 32663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,15.5 + rot: 1.5707963267948966 rad + pos: 104.5,-59.5 parent: 2 - - uid: 32422 + - uid: 32665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,15.5 + pos: 46.5,-47.5 + parent: 2 + - uid: 32666 + components: + - type: Transform + pos: -34.5,-98.5 parent: 2 - - uid: 32423 + - uid: 32667 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,15.5 + pos: -59.5,-0.5 parent: 2 - - uid: 32424 + - uid: 32668 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,14.5 + pos: -59.5,-1.5 parent: 2 - - uid: 32425 + - uid: 32669 components: - type: Transform - pos: 56.5,-2.5 + pos: -59.5,4.5 parent: 2 - - uid: 32426 + - uid: 32670 components: - type: Transform - pos: 62.5,-5.5 + rot: 1.5707963267948966 rad + pos: -46.5,-5.5 parent: 2 - - uid: 32427 + - uid: 32671 components: - type: Transform - pos: 55.5,-2.5 + rot: 3.141592653589793 rad + pos: -93.5,0.5 parent: 2 - - uid: 32428 + - uid: 32672 components: - type: Transform - pos: 50.5,6.5 + pos: -85.5,-1.5 parent: 2 - - uid: 32429 + - uid: 32673 components: - type: Transform - pos: 55.5,-4.5 + pos: -81.5,3.5 parent: 2 - - uid: 32430 + - uid: 32674 components: - type: Transform - pos: 55.5,-5.5 + pos: -81.5,2.5 parent: 2 - - uid: 32431 + - uid: 32675 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-22.5 + pos: -86.5,-3.5 parent: 2 - - uid: 32432 + - uid: 32676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-26.5 + pos: -85.5,-3.5 parent: 2 - - uid: 32433 + - uid: 32677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-26.5 + rot: 3.141592653589793 rad + pos: -68.5,-49.5 parent: 2 - - uid: 32434 + - uid: 32678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-26.5 + rot: 3.141592653589793 rad + pos: -64.5,-50.5 parent: 2 - - uid: 32435 + - uid: 32679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,1.5 + pos: -26.5,-92.5 parent: 2 - - uid: 32436 + - uid: 32680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-9.5 + pos: -26.5,-93.5 parent: 2 - - uid: 32437 + - uid: 32681 components: - type: Transform - pos: -44.5,-19.5 + pos: -26.5,-94.5 parent: 2 - - uid: 32438 + - uid: 32682 components: - type: Transform - pos: 37.5,-23.5 + pos: 85.5,-55.5 parent: 2 - - uid: 32439 + - uid: 32684 components: - type: Transform - pos: 56.5,-7.5 + pos: -37.5,-4.5 parent: 2 - - uid: 32440 + - uid: 32685 components: - type: Transform - pos: 50.5,3.5 + pos: -61.5,-50.5 parent: 2 - - uid: 32441 + - uid: 32686 components: - type: Transform - pos: 52.5,2.5 + pos: -37.5,-3.5 parent: 2 - - uid: 32442 + - uid: 32687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-20.5 + rot: 1.5707963267948966 rad + pos: -38.5,-33.5 parent: 2 - - uid: 32443 + - uid: 32688 components: - type: Transform - pos: -49.5,-23.5 + rot: 1.5707963267948966 rad + pos: -38.5,-32.5 parent: 2 - - uid: 32444 + - uid: 32689 components: - type: Transform - pos: 50.5,2.5 + pos: 45.5,-7.5 parent: 2 - - uid: 32445 + - uid: 32709 components: - type: Transform - pos: 51.5,2.5 + rot: 3.141592653589793 rad + pos: 1.5,-72.5 parent: 2 - - uid: 32446 + - uid: 32710 components: - type: Transform - pos: 77.5,0.5 + rot: 3.141592653589793 rad + pos: 1.5,-71.5 parent: 2 - - uid: 32447 + - uid: 32711 components: - type: Transform - pos: 81.5,0.5 + rot: 1.5707963267948966 rad + pos: 68.5,-3.5 parent: 2 - - uid: 32448 + - uid: 32712 components: - type: Transform - pos: 85.5,0.5 + pos: 52.5,23.5 parent: 2 - - uid: 32449 + - uid: 32713 components: - type: Transform rot: -1.5707963267948966 rad - pos: 89.5,-10.5 + pos: 48.5,22.5 parent: 2 - - uid: 32450 + - uid: 32714 components: - type: Transform - pos: 85.5,-9.5 + rot: -1.5707963267948966 rad + pos: 48.5,23.5 parent: 2 - - uid: 32451 + - uid: 32715 components: - type: Transform - pos: 83.5,-10.5 + rot: -1.5707963267948966 rad + pos: 48.5,-11.5 parent: 2 - - uid: 32452 + - uid: 32716 components: - type: Transform rot: -1.5707963267948966 rad - pos: 88.5,-10.5 + pos: 48.5,-7.5 parent: 2 - - uid: 32453 + - uid: 32717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-3.5 + pos: 51.5,-9.5 parent: 2 - - uid: 32454 + - uid: 32718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-2.5 + pos: 51.5,-10.5 parent: 2 - - uid: 32455 + - uid: 32719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-9.5 + pos: 52.5,-9.5 parent: 2 - - uid: 32456 + - uid: 32720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-34.5 + pos: 53.5,-8.5 parent: 2 - - uid: 32458 + - uid: 32721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-34.5 + pos: 53.5,-9.5 parent: 2 - - uid: 32459 + - uid: 32723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-30.5 + pos: -9.5,13.5 parent: 2 - - uid: 32460 + - uid: 32736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-31.5 + pos: 86.5,-50.5 parent: 2 - - uid: 32461 + - uid: 33471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-32.5 + pos: -72.5,4.5 parent: 2 - - uid: 32462 + - uid: 33473 components: - type: Transform - pos: -66.5,-76.5 + pos: -71.5,-2.5 parent: 2 - - uid: 32463 + - uid: 33688 components: - type: Transform - pos: -45.5,-10.5 + pos: 86.5,-49.5 parent: 2 - - uid: 32464 + - uid: 34153 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-34.5 + pos: 9.5,-1.5 parent: 2 - - uid: 32465 + - uid: 36221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 104.5,-58.5 + rot: 3.141592653589793 rad + pos: 109.5,-22.5 parent: 2 - - uid: 32466 + - uid: 41421 components: - type: Transform - pos: 32.5,11.5 + rot: 3.141592653589793 rad + pos: -3.5,-13.5 + parent: 40828 + - uid: 41422 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 40828 + - uid: 41888 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 41669 + - uid: 42048 + components: + - type: Transform + pos: 4.5,-4.5 parent: 2 - - uid: 32467 + - uid: 42363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-33.5 + rot: -1.5707963267948966 rad + pos: 25.5,25.5 parent: 2 - - uid: 32469 + - uid: 42364 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-27.5 + rot: -1.5707963267948966 rad + pos: 24.5,23.5 parent: 2 - - uid: 32470 + - uid: 43136 components: - type: Transform - pos: 26.5,5.5 + rot: 1.5707963267948966 rad + pos: -10.5,-98.5 parent: 2 - - uid: 32471 + - uid: 43137 components: - type: Transform - pos: -66.5,-75.5 + rot: 1.5707963267948966 rad + pos: -11.5,-98.5 parent: 2 - - uid: 32472 + - uid: 43138 components: - type: Transform - pos: -63.5,-72.5 + rot: 1.5707963267948966 rad + pos: -12.5,-98.5 parent: 2 - - uid: 32473 + - uid: 43157 components: - type: Transform - pos: -45.5,-11.5 + rot: -1.5707963267948966 rad + pos: -2.5,-102.5 parent: 2 - - uid: 32474 + - uid: 43788 components: - type: Transform - pos: 32.5,10.5 + pos: -54.5,-131.5 parent: 2 - - uid: 32475 + - uid: 43789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-13.5 + pos: -55.5,-131.5 parent: 2 - - uid: 32477 + - uid: 43790 components: - type: Transform - pos: -62.5,-71.5 + pos: -56.5,-131.5 parent: 2 - - uid: 32478 +- proto: TableBrass + entities: + - uid: 7359 components: - type: Transform - pos: -62.5,-72.5 + rot: 1.5707963267948966 rad + pos: 1.5,-25.5 parent: 2 - - uid: 32479 + - uid: 7360 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-49.5 + rot: 1.5707963267948966 rad + pos: 1.5,-24.5 parent: 2 - - uid: 32480 + - uid: 7361 components: - type: Transform - pos: 74.5,-50.5 + rot: 1.5707963267948966 rad + pos: -0.5,-25.5 parent: 2 - - uid: 32481 + - uid: 7362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-27.5 + rot: 1.5707963267948966 rad + pos: -0.5,-24.5 parent: 2 - - uid: 32482 + - uid: 7363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-47.5 + rot: 1.5707963267948966 rad + pos: -0.5,-26.5 parent: 2 - - uid: 32483 + - uid: 7462 components: - type: Transform - pos: 92.5,-48.5 + rot: 1.5707963267948966 rad + pos: 1.5,-26.5 parent: 2 - - uid: 32484 + - uid: 19823 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-37.5 + pos: 0.5,-35.5 parent: 2 - - uid: 32485 +- proto: TableCarpet + entities: + - uid: 16363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-47.5 + pos: -28.5,12.5 parent: 2 - - uid: 32486 + - uid: 16376 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-48.5 + pos: -28.5,13.5 parent: 2 - - uid: 32487 + - uid: 16378 components: - type: Transform - pos: -3.5,7.5 + pos: -30.5,12.5 parent: 2 - - uid: 32488 + - uid: 16384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,1.5 + pos: -30.5,13.5 parent: 2 - - uid: 32489 + - uid: 19990 components: - type: Transform rot: 1.5707963267948966 rad - pos: 77.5,-30.5 + pos: -4.5,-72.5 parent: 2 - - uid: 32490 + - uid: 29199 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-0.5 + pos: -3.5,-72.5 parent: 2 - - uid: 32491 + - uid: 32725 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,1.5 + pos: 43.5,-74.5 parent: 2 - - uid: 32492 + - uid: 32726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-53.5 + rot: 1.5707963267948966 rad + pos: 43.5,-75.5 parent: 2 - - uid: 32493 + - uid: 32727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-52.5 + pos: 24.5,7.5 parent: 2 - - uid: 32494 + - uid: 32728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-54.5 + pos: 36.5,3.5 parent: 2 - - uid: 32495 + - uid: 32729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-51.5 + pos: 24.5,6.5 parent: 2 - - uid: 32496 + - uid: 32731 components: - type: Transform - pos: -5.5,2.5 + rot: 3.141592653589793 rad + pos: -29.5,13.5 parent: 2 - - uid: 32497 + - uid: 32732 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-82.5 + pos: -29.5,12.5 parent: 2 - - uid: 32498 + - uid: 32733 components: - type: Transform - pos: 9.5,-83.5 + pos: -67.5,-9.5 parent: 2 - - uid: 32499 + - uid: 32734 components: - type: Transform - pos: -1.5,-79.5 + pos: -66.5,-7.5 parent: 2 - - uid: 32500 + - uid: 32735 components: - type: Transform - pos: -8.5,-77.5 + pos: -66.5,-8.5 parent: 2 - - uid: 32501 + - uid: 32737 components: - type: Transform - pos: -41.5,-47.5 + pos: 36.5,5.5 parent: 2 - - uid: 32502 + - uid: 32740 components: - type: Transform - pos: -65.5,-39.5 + rot: 3.141592653589793 rad + pos: -9.5,15.5 parent: 2 - - uid: 32503 + - uid: 32741 components: - type: Transform - pos: -65.5,-38.5 + rot: 3.141592653589793 rad + pos: -8.5,15.5 parent: 2 - - uid: 32504 +- proto: TableCounterMetal + entities: + - uid: 7509 components: - type: Transform - pos: -68.5,-39.5 + rot: -1.5707963267948966 rad + pos: -1.5,-36.5 parent: 2 - - uid: 32505 + - uid: 14620 components: - type: Transform - pos: -46.5,4.5 + pos: -12.5,-38.5 parent: 2 - - uid: 32506 + - uid: 14681 components: - type: Transform - pos: -7.5,6.5 + pos: -11.5,-38.5 parent: 2 - - uid: 32507 + - uid: 15791 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,19.5 + pos: -55.5,-83.5 parent: 2 - - uid: 32508 + - uid: 20051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,19.5 + pos: -21.5,-45.5 parent: 2 - - uid: 32509 + - uid: 23244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,19.5 + rot: 1.5707963267948966 rad + pos: -11.5,-34.5 parent: 2 - - uid: 32510 + - uid: 23245 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,19.5 + rot: 1.5707963267948966 rad + pos: -10.5,-34.5 parent: 2 - - uid: 32511 + - uid: 23263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,19.5 + pos: -21.5,-44.5 parent: 2 - - uid: 32512 + - uid: 23361 components: - type: Transform - pos: 17.5,5.5 + rot: -1.5707963267948966 rad + pos: -1.5,-35.5 parent: 2 - - uid: 32513 + - uid: 23362 components: - type: Transform - pos: 16.5,5.5 + rot: -1.5707963267948966 rad + pos: 2.5,-34.5 parent: 2 - - uid: 32514 + - uid: 23363 components: - type: Transform - pos: -66.5,-40.5 + rot: -1.5707963267948966 rad + pos: 2.5,-35.5 parent: 2 - - uid: 32515 + - uid: 23364 components: - type: Transform - pos: -34.5,-40.5 + rot: -1.5707963267948966 rad + pos: 1.5,-37.5 parent: 2 - - uid: 32516 + - uid: 23365 components: - type: Transform - pos: -48.5,-18.5 + rot: -1.5707963267948966 rad + pos: 0.5,-37.5 parent: 2 - - uid: 32517 + - uid: 26802 components: - type: Transform - pos: -49.5,-18.5 + pos: -55.5,-82.5 parent: 2 - - uid: 32518 + - uid: 27766 components: - type: Transform - pos: -49.5,-19.5 + rot: 1.5707963267948966 rad + pos: -74.5,4.5 parent: 2 - - uid: 32519 + - uid: 29214 components: - type: Transform - pos: -49.5,-20.5 + pos: -0.5,-70.5 parent: 2 - - uid: 32520 + - uid: 32575 components: - type: Transform - pos: -49.5,-24.5 + rot: 3.141592653589793 rad + pos: -2.5,-78.5 parent: 2 - - uid: 32521 + - uid: 32764 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-25.5 + pos: -54.5,-68.5 parent: 2 - - uid: 32522 + - uid: 32765 components: - type: Transform - pos: -45.5,4.5 + pos: -55.5,-68.5 parent: 2 - - uid: 32524 + - uid: 32766 components: - type: Transform - pos: -38.5,-5.5 + pos: -67.5,-78.5 parent: 2 - - uid: 32525 + - uid: 32767 components: - type: Transform - pos: -37.5,-5.5 + pos: -66.5,-78.5 parent: 2 - - uid: 32526 + - uid: 32768 components: - type: Transform - pos: -44.5,4.5 + pos: -65.5,-78.5 parent: 2 - - uid: 32527 +- proto: TableCounterWood + entities: + - uid: 32773 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-13.5 + pos: 88.5,-2.5 parent: 2 - - uid: 32528 + - uid: 32774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-42.5 + pos: 28.5,1.5 parent: 2 - - uid: 32529 + - uid: 32775 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-41.5 + pos: 28.5,2.5 parent: 2 - - uid: 32530 + - uid: 32777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-6.5 + pos: 28.5,3.5 parent: 2 - - uid: 32531 + - uid: 32778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-2.5 + pos: 28.5,4.5 parent: 2 - - uid: 32532 + - uid: 43961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,0.5 + pos: -23.5,-100.5 parent: 2 - - uid: 32533 + - uid: 43971 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-3.5 + pos: -24.5,-100.5 parent: 2 - - uid: 32534 + - uid: 44019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-15.5 + pos: -20.5,-95.5 parent: 2 - - uid: 32535 + - uid: 44020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-15.5 + pos: -20.5,-94.5 parent: 2 - - uid: 32536 + - uid: 44021 components: - type: Transform - pos: 61.5,-38.5 + pos: -20.5,-93.5 parent: 2 - - uid: 32537 + - uid: 44022 components: - type: Transform - pos: 61.5,-37.5 + pos: -20.5,-92.5 parent: 2 - - uid: 32538 + - uid: 44023 components: - type: Transform - pos: 76.5,-29.5 + pos: -19.5,-95.5 parent: 2 - - uid: 32539 + - uid: 44024 components: - type: Transform - pos: 73.5,-26.5 + pos: -19.5,-94.5 parent: 2 - - uid: 32540 + - uid: 44025 components: - type: Transform - pos: 74.5,-26.5 + pos: -19.5,-93.5 parent: 2 - - uid: 32541 + - uid: 44026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-29.5 + pos: -19.5,-92.5 parent: 2 - - uid: 32542 +- proto: TableFancyBlack + entities: + - uid: 32789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-26.5 + rot: -1.5707963267948966 rad + pos: -29.5,-118.5 parent: 2 - - uid: 32543 + - uid: 32790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-27.5 + pos: -31.5,-118.5 parent: 2 - - uid: 32544 +- proto: TableFancyGreen + entities: + - uid: 32791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-28.5 + pos: -2.5,0.5 parent: 2 - - uid: 32545 + - uid: 32792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-29.5 + pos: -1.5,0.5 parent: 2 - - uid: 32546 +- proto: TableFancyOrange + entities: + - uid: 32793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-24.5 + pos: -8.5,18.5 parent: 2 - - uid: 32547 +- proto: TableFrame + entities: + - uid: 1864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-24.5 + pos: 4.5,-19.5 parent: 2 - - uid: 32548 + - uid: 12210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-24.5 + pos: 4.5,-20.5 parent: 2 - - uid: 32549 + - uid: 14864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-25.5 + pos: 46.5,20.5 parent: 2 - - uid: 32550 + - uid: 16135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-28.5 + rot: -1.5707963267948966 rad + pos: 13.5,-30.5 parent: 2 - - uid: 32551 + - uid: 32797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-29.5 + pos: -53.5,0.5 parent: 2 - - uid: 32552 + - uid: 32798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-29.5 + pos: -22.5,10.5 parent: 2 - - uid: 32553 + - uid: 32799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-29.5 + rot: 3.141592653589793 rad + pos: -64.5,-31.5 parent: 2 - - uid: 32554 + - uid: 32800 components: - type: Transform - pos: 50.5,-52.5 + rot: 3.141592653589793 rad + pos: -62.5,-31.5 parent: 2 - - uid: 32555 + - uid: 32801 components: - type: Transform - pos: 51.5,-52.5 + rot: 3.141592653589793 rad + pos: -62.5,-32.5 parent: 2 - - uid: 32556 + - uid: 32802 components: - type: Transform - pos: 51.5,-53.5 + pos: -66.5,-9.5 parent: 2 - - uid: 32557 + - uid: 32803 components: - type: Transform - pos: 51.5,-51.5 + pos: -57.5,-9.5 parent: 2 - - uid: 32558 + - uid: 32805 components: - type: Transform - pos: 50.5,-53.5 + pos: 94.5,-48.5 parent: 2 - - uid: 32559 + - uid: 32806 components: - type: Transform - pos: 50.5,-51.5 + pos: 93.5,-48.5 parent: 2 - - uid: 32560 + - uid: 32807 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-84.5 + rot: 1.5707963267948966 rad + pos: 105.5,-59.5 parent: 2 - - uid: 32561 + - uid: 32808 components: - type: Transform - pos: 9.5,-84.5 + rot: -1.5707963267948966 rad + pos: -34.5,-107.5 parent: 2 - - uid: 32563 + - uid: 32809 components: - type: Transform - pos: 11.5,-78.5 + rot: -1.5707963267948966 rad + pos: -35.5,-106.5 parent: 2 - - uid: 32564 + - uid: 32810 components: - type: Transform - pos: 12.5,-78.5 + rot: 3.141592653589793 rad + pos: -45.5,-109.5 parent: 2 - - uid: 32565 + - uid: 32811 components: - type: Transform - pos: 12.5,-79.5 + pos: -86.5,-1.5 parent: 2 - - uid: 32566 +- proto: TableGlass + entities: + - uid: 12254 components: - type: Transform - pos: 12.5,-80.5 + pos: 5.5,-26.5 parent: 2 - - uid: 32568 + - uid: 14672 components: - type: Transform - pos: 7.5,-86.5 + rot: -1.5707963267948966 rad + pos: 0.5,-25.5 parent: 2 - - uid: 32569 + - uid: 23218 components: - type: Transform - pos: 8.5,-86.5 + pos: 5.5,-27.5 parent: 2 - - uid: 32576 + - uid: 23231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-89.5 + pos: 9.5,-25.5 parent: 2 - - uid: 32577 + - uid: 23232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-88.5 + pos: 8.5,-25.5 parent: 2 - - uid: 32578 + - uid: 23233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-84.5 + pos: 8.5,-24.5 parent: 2 - - uid: 32579 + - uid: 23236 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-83.5 + pos: 9.5,-30.5 parent: 2 - - uid: 32581 + - uid: 32814 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-84.5 + pos: -59.5,-23.5 parent: 2 - - uid: 32582 + - uid: 32815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-81.5 + rot: 1.5707963267948966 rad + pos: 52.5,6.5 parent: 2 - - uid: 32583 + - uid: 32816 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-81.5 + pos: 54.5,-11.5 parent: 2 - - uid: 32584 + - uid: 32818 components: - type: Transform - pos: -66.5,-45.5 + rot: 1.5707963267948966 rad + pos: 53.5,6.5 parent: 2 - - uid: 32585 + - uid: 32819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-53.5 + rot: 3.141592653589793 rad + pos: 32.5,-21.5 parent: 2 - - uid: 32586 + - uid: 32820 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-51.5 + pos: -21.5,-69.5 parent: 2 - - uid: 32588 + - uid: 32821 components: - type: Transform - pos: 53.5,-84.5 + pos: -20.5,-69.5 parent: 2 - - uid: 32589 + - uid: 32822 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-54.5 + rot: 1.5707963267948966 rad + pos: 22.5,-69.5 parent: 2 - - uid: 32590 + - uid: 32823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-87.5 + rot: 1.5707963267948966 rad + pos: 23.5,-69.5 parent: 2 - - uid: 32592 + - uid: 32824 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-83.5 + pos: -17.5,-1.5 parent: 2 - - uid: 32593 + - uid: 32825 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-84.5 + pos: 30.5,-68.5 parent: 2 - - uid: 32594 + - uid: 32826 components: - type: Transform - pos: 87.5,-38.5 + rot: -1.5707963267948966 rad + pos: -60.5,-4.5 parent: 2 - - uid: 32595 + - uid: 32827 components: - type: Transform rot: -1.5707963267948966 rad - pos: 94.5,-42.5 + pos: -52.5,-54.5 parent: 2 - - uid: 32596 + - uid: 32828 components: - type: Transform rot: -1.5707963267948966 rad - pos: 95.5,-42.5 + pos: -51.5,-54.5 parent: 2 - - uid: 32597 + - uid: 32829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-20.5 + pos: -40.5,-49.5 parent: 2 - - uid: 32598 + - uid: 32830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-20.5 + pos: -39.5,-49.5 parent: 2 - - uid: 32599 + - uid: 32831 components: - type: Transform - pos: 87.5,-24.5 + pos: -38.5,-49.5 parent: 2 - - uid: 32600 + - uid: 32832 components: - type: Transform - pos: -28.5,-78.5 + pos: -38.5,-48.5 parent: 2 - - uid: 32601 + - uid: 32833 components: - type: Transform - pos: -27.5,-78.5 + rot: -1.5707963267948966 rad + pos: -53.5,-55.5 parent: 2 - - uid: 32602 + - uid: 32834 components: - type: Transform - pos: -27.5,-77.5 + rot: -1.5707963267948966 rad + pos: -53.5,-54.5 parent: 2 - - uid: 32603 + - uid: 32841 components: - type: Transform - pos: -27.5,-76.5 + rot: 1.5707963267948966 rad + pos: 52.5,5.5 parent: 2 - - uid: 32604 + - uid: 41423 components: - type: Transform - pos: -36.5,-45.5 - parent: 2 - - uid: 32605 + pos: -2.5,-11.5 + parent: 40828 + - uid: 41424 components: - type: Transform - pos: -2.5,-90.5 - parent: 2 - - uid: 32606 + pos: -2.5,-12.5 + parent: 40828 + - uid: 41425 components: - type: Transform - pos: -47.5,-80.5 + pos: -4.5,-11.5 + parent: 40828 +- proto: TablePlasmaGlass + entities: + - uid: 12211 + components: + - type: Transform + pos: -0.5,-17.5 parent: 2 - - uid: 32607 + - uid: 12213 components: - type: Transform - pos: -39.5,-61.5 + pos: -3.5,-20.5 parent: 2 - - uid: 32608 + - uid: 12516 components: - type: Transform - pos: -40.5,-61.5 + pos: 14.5,-36.5 parent: 2 - - uid: 32609 + - uid: 14583 components: - type: Transform - pos: -40.5,-62.5 + pos: 16.5,-36.5 parent: 2 - - uid: 32610 + - uid: 14602 components: - type: Transform - pos: 50.5,-46.5 + pos: 17.5,-36.5 parent: 2 - - uid: 32611 + - uid: 14625 components: - type: Transform - pos: 51.5,-46.5 + pos: 12.5,-36.5 parent: 2 - - uid: 32612 + - uid: 15877 components: - type: Transform - pos: 51.5,-47.5 + rot: -1.5707963267948966 rad + pos: 11.5,-31.5 parent: 2 - - uid: 32613 + - uid: 15963 components: - type: Transform - pos: 46.5,-48.5 + rot: -1.5707963267948966 rad + pos: 11.5,-30.5 parent: 2 - - uid: 32614 + - uid: 16126 components: - type: Transform - pos: 39.5,-52.5 + rot: -1.5707963267948966 rad + pos: 12.5,-30.5 parent: 2 - - uid: 32615 + - uid: 16128 components: - type: Transform - pos: 38.5,-52.5 + pos: 14.5,-30.5 parent: 2 - - uid: 32616 + - uid: 16129 components: - type: Transform - pos: -66.5,-74.5 + pos: 14.5,-31.5 parent: 2 - - uid: 32617 + - uid: 16130 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-71.5 + pos: 16.5,-30.5 parent: 2 - - uid: 32618 + - uid: 16132 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-71.5 + pos: 15.5,-30.5 parent: 2 - - type: Label - - uid: 32619 + - uid: 23366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-71.5 + pos: 2.5,-37.5 parent: 2 - - type: Label - - uid: 32624 + - uid: 23573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-63.5 + pos: 17.5,-35.5 parent: 2 - - uid: 32625 + - uid: 32843 components: - type: Transform - pos: -40.5,-65.5 + pos: -46.5,-84.5 parent: 2 - - uid: 32626 + - uid: 32844 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-42.5 + pos: -46.5,-85.5 parent: 2 - - uid: 32627 +- proto: TableReinforced + entities: + - uid: 7571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-50.5 + rot: 1.5707963267948966 rad + pos: -2.5,-49.5 parent: 2 - - uid: 32628 + - uid: 10107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-64.5 + pos: -69.5,-15.5 parent: 2 - - uid: 32629 + - uid: 12235 components: - type: Transform - pos: -37.5,-93.5 + rot: -1.5707963267948966 rad + pos: 12.5,-55.5 parent: 2 - - uid: 32630 + - uid: 14655 components: - type: Transform - pos: -23.5,10.5 + rot: -1.5707963267948966 rad + pos: 14.5,-26.5 parent: 2 - - uid: 32631 + - uid: 15195 components: - type: Transform - pos: -24.5,10.5 + rot: 1.5707963267948966 rad + pos: -12.5,-26.5 parent: 2 - - uid: 32632 + - uid: 15196 components: - type: Transform - pos: -24.5,11.5 + rot: 1.5707963267948966 rad + pos: -11.5,-26.5 parent: 2 - - uid: 32633 + - uid: 15197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-31.5 + rot: 1.5707963267948966 rad + pos: -11.5,-27.5 parent: 2 - - uid: 32637 + - uid: 16358 components: - type: Transform - pos: 17.5,-103.5 + pos: 88.5,-10.5 parent: 2 - - uid: 32638 + - uid: 16359 components: - type: Transform - pos: 16.5,-103.5 + pos: 83.5,-10.5 parent: 2 - - uid: 32639 + - uid: 16360 components: - type: Transform - pos: 15.5,-103.5 + pos: 89.5,-9.5 parent: 2 - - uid: 32640 + - uid: 16361 components: - type: Transform - pos: 5.5,-102.5 + pos: 89.5,-10.5 parent: 2 - - uid: 32641 + - uid: 16362 components: - type: Transform - pos: 5.5,-103.5 + pos: -32.5,-95.5 parent: 2 - - uid: 32642 + - uid: 20001 components: - type: Transform - pos: 6.5,-103.5 + pos: -11.5,-45.5 parent: 2 - - uid: 32643 + - uid: 23247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,13.5 + rot: 1.5707963267948966 rad + pos: -6.5,-36.5 parent: 2 - - uid: 32644 + - uid: 23248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,12.5 + rot: 1.5707963267948966 rad + pos: -6.5,-35.5 parent: 2 - - uid: 32645 + - uid: 23284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,13.5 + pos: -10.5,-45.5 parent: 2 - - uid: 32646 + - uid: 23290 components: - type: Transform - pos: 24.5,-81.5 + pos: -11.5,-49.5 parent: 2 - - uid: 32647 + - uid: 23293 components: - type: Transform - pos: 28.5,-81.5 + pos: -10.5,-49.5 parent: 2 - - uid: 32648 + - uid: 23294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-34.5 + pos: -7.5,-46.5 parent: 2 - - uid: 32649 + - uid: 23295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-52.5 + pos: -8.5,-46.5 parent: 2 - - uid: 32651 + - uid: 23296 components: - type: Transform - pos: -53.5,-29.5 + pos: -9.5,-46.5 parent: 2 - - uid: 32652 + - uid: 23297 components: - type: Transform - pos: -39.5,-57.5 + pos: -9.5,-49.5 parent: 2 - - uid: 32653 + - uid: 23367 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 23368 components: - type: Transform - pos: 81.5,-20.5 + pos: -1.5,-37.5 parent: 2 - - uid: 32654 + - uid: 23393 components: - type: Transform - pos: 83.5,-42.5 + pos: -5.5,-22.5 parent: 2 - - uid: 32655 + - uid: 23626 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-10.5 + pos: -21.5,-41.5 parent: 2 - - uid: 32656 + - uid: 28289 components: - type: Transform - pos: 74.5,-49.5 + rot: -1.5707963267948966 rad + pos: 36.5,8.5 parent: 2 - - uid: 32657 + - uid: 31177 components: - type: Transform - pos: 76.5,-50.5 + pos: -70.5,-15.5 parent: 2 - - uid: 32658 + - uid: 31198 components: - type: Transform - pos: -63.5,-71.5 + pos: -69.5,-18.5 parent: 2 - - uid: 32659 + - uid: 31767 components: - type: Transform rot: 3.141592653589793 rad - pos: 78.5,-50.5 + pos: 26.5,8.5 parent: 2 - - uid: 32660 + - uid: 32845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 106.5,-59.5 + pos: 54.5,-19.5 parent: 2 - - uid: 32661 + - uid: 32846 components: - type: Transform - pos: 95.5,-48.5 + pos: 59.5,7.5 parent: 2 - - uid: 32662 + - uid: 32847 components: - type: Transform - pos: 96.5,-48.5 + pos: 47.5,-5.5 parent: 2 - - uid: 32663 + - uid: 32848 components: - type: Transform rot: 1.5707963267948966 rad - pos: 104.5,-59.5 - parent: 2 - - uid: 32665 - components: - - type: Transform - pos: 46.5,-47.5 + pos: 57.5,-49.5 parent: 2 - - uid: 32666 + - uid: 32849 components: - type: Transform - pos: -34.5,-98.5 + pos: 61.5,8.5 parent: 2 - - uid: 32667 + - uid: 32850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-0.5 + pos: 60.5,5.5 parent: 2 - - uid: 32668 + - uid: 32851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-1.5 + pos: 58.5,-19.5 parent: 2 - - uid: 32669 + - uid: 32852 components: - type: Transform - pos: -59.5,4.5 + pos: 61.5,11.5 parent: 2 - - uid: 32670 + - uid: 32853 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-5.5 + pos: 58.5,-49.5 parent: 2 - - uid: 32671 + - uid: 32854 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,0.5 + pos: 49.5,13.5 parent: 2 - - uid: 32672 + - uid: 32855 components: - type: Transform - pos: -85.5,-1.5 + pos: 51.5,-5.5 parent: 2 - - uid: 32673 + - uid: 32856 components: - type: Transform - pos: -81.5,3.5 + pos: 49.5,-16.5 parent: 2 - - uid: 32674 + - uid: 32857 components: - type: Transform - pos: -81.5,2.5 + pos: 61.5,10.5 parent: 2 - - uid: 32675 + - uid: 32858 components: - type: Transform - pos: -86.5,-3.5 + pos: 61.5,9.5 parent: 2 - - uid: 32676 + - uid: 32861 components: - type: Transform - pos: -85.5,-3.5 + pos: 59.5,5.5 parent: 2 - - uid: 32677 + - uid: 32863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-49.5 + pos: 52.5,-5.5 parent: 2 - - uid: 32678 + - uid: 32864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-50.5 + pos: 46.5,-23.5 parent: 2 - - uid: 32679 + - uid: 32865 components: - type: Transform - pos: -26.5,-92.5 + pos: 50.5,13.5 parent: 2 - - uid: 32680 + - uid: 32866 components: - type: Transform - pos: -26.5,-93.5 + rot: 1.5707963267948966 rad + pos: 46.5,14.5 parent: 2 - - uid: 32681 + - uid: 32867 components: - type: Transform - pos: -26.5,-94.5 + rot: 1.5707963267948966 rad + pos: 46.5,16.5 parent: 2 - - uid: 32682 + - uid: 32868 components: - type: Transform - pos: 85.5,-55.5 + rot: 1.5707963267948966 rad + pos: 47.5,14.5 parent: 2 - - uid: 32684 + - uid: 32869 components: - type: Transform - pos: -37.5,-4.5 + pos: -6.5,-8.5 parent: 2 - - uid: 32685 + - uid: 32876 components: - type: Transform - pos: -61.5,-50.5 + pos: 51.5,10.5 parent: 2 - - uid: 32686 + - uid: 32877 components: - type: Transform - pos: -37.5,-3.5 + pos: -7.5,-6.5 parent: 2 - - uid: 32687 + - uid: 32878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-33.5 + pos: 51.5,9.5 parent: 2 - - uid: 32688 + - uid: 32879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-32.5 + pos: -7.5,-5.5 parent: 2 - - uid: 32689 + - uid: 32880 components: - type: Transform - pos: 45.5,-7.5 + pos: -7.5,-8.5 parent: 2 - - uid: 32690 + - uid: 32881 components: - type: Transform - pos: -18.5,-54.5 + rot: 3.141592653589793 rad + pos: -59.5,12.5 parent: 2 - - uid: 32691 + - uid: 32882 components: - type: Transform - pos: -17.5,-54.5 + pos: 29.5,8.5 parent: 2 - - uid: 32692 + - uid: 32883 components: - type: Transform - pos: -20.5,-50.5 + pos: -57.5,-34.5 parent: 2 - - uid: 32693 + - uid: 32884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-52.5 + rot: 3.141592653589793 rad + pos: 81.5,-54.5 parent: 2 - - uid: 32694 + - uid: 32885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-51.5 + rot: -1.5707963267948966 rad + pos: 46.5,-74.5 parent: 2 - - uid: 32695 + - uid: 32886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-50.5 + pos: 30.5,11.5 parent: 2 - - uid: 32698 + - uid: 32887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-26.5 + pos: -48.5,-10.5 parent: 2 - - uid: 32701 + - uid: 32888 components: - type: Transform - pos: 13.5,-46.5 + rot: -1.5707963267948966 rad + pos: -49.5,-72.5 parent: 2 - - uid: 32702 + - uid: 32889 components: - type: Transform - pos: 5.5,-46.5 + rot: 3.141592653589793 rad + pos: 81.5,-53.5 parent: 2 - - uid: 32703 + - uid: 32890 components: - type: Transform - pos: 5.5,-48.5 + pos: 28.5,14.5 parent: 2 - - uid: 32704 + - uid: 32891 components: - type: Transform - pos: 6.5,-48.5 + pos: -57.5,-40.5 parent: 2 - - uid: 32705 + - uid: 32892 components: - type: Transform - pos: 4.5,-46.5 + pos: -57.5,-33.5 parent: 2 - - uid: 32706 + - uid: 32893 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-29.5 + pos: -41.5,-112.5 parent: 2 - - uid: 32707 + - uid: 32894 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-70.5 + pos: -40.5,-112.5 parent: 2 - - uid: 32708 + - uid: 32895 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-71.5 + pos: -42.5,-113.5 parent: 2 - - uid: 32709 + - uid: 32896 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-72.5 + pos: -42.5,-112.5 parent: 2 - - uid: 32710 + - uid: 32897 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-71.5 + pos: -59.5,9.5 parent: 2 - - uid: 32711 + - uid: 32898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-3.5 + rot: -1.5707963267948966 rad + pos: 46.5,-73.5 parent: 2 - - uid: 32712 + - uid: 32899 components: - type: Transform - pos: 52.5,23.5 + pos: -48.5,-69.5 parent: 2 - - uid: 32713 + - uid: 32900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,22.5 + pos: 29.5,11.5 parent: 2 - - uid: 32714 + - uid: 32902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,23.5 + pos: 29.5,12.5 parent: 2 - - uid: 32715 + - uid: 32903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-11.5 + pos: 28.5,12.5 parent: 2 - - uid: 32716 + - uid: 32904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-7.5 + pos: -57.5,-32.5 parent: 2 - - uid: 32717 + - uid: 32905 components: - type: Transform - pos: 51.5,-9.5 + rot: 3.141592653589793 rad + pos: -60.5,12.5 parent: 2 - - uid: 32718 + - uid: 32906 components: - type: Transform - pos: 51.5,-10.5 + pos: 28.5,11.5 parent: 2 - - uid: 32719 + - uid: 32907 components: - type: Transform - pos: 52.5,-9.5 + pos: 30.5,12.5 parent: 2 - - uid: 32720 + - uid: 32908 components: - type: Transform - pos: 53.5,-8.5 + pos: -57.5,-39.5 parent: 2 - - uid: 32721 + - uid: 32909 components: - type: Transform - pos: 53.5,-9.5 + rot: 1.5707963267948966 rad + pos: -68.5,-75.5 parent: 2 - - uid: 32722 + - uid: 32910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-27.5 + pos: -57.5,-38.5 parent: 2 - - uid: 32723 + - uid: 32911 components: - type: Transform - pos: -9.5,13.5 + rot: 3.141592653589793 rad + pos: -47.5,-9.5 parent: 2 - - uid: 32736 + - uid: 32912 components: - type: Transform - pos: 86.5,-50.5 + rot: 3.141592653589793 rad + pos: -47.5,-10.5 parent: 2 - - uid: 33471 + - uid: 32913 components: - type: Transform - pos: -72.5,4.5 + rot: 3.141592653589793 rad + pos: -43.5,-33.5 parent: 2 - - uid: 33473 + - uid: 32914 components: - type: Transform - pos: -71.5,-2.5 + rot: 3.141592653589793 rad + pos: -44.5,-31.5 parent: 2 - - uid: 33688 + - uid: 32915 components: - type: Transform - pos: 86.5,-49.5 + pos: 28.5,7.5 parent: 2 - - uid: 34153 + - uid: 32916 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-1.5 + pos: 30.5,8.5 parent: 2 - - uid: 36221 + - uid: 32917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 109.5,-22.5 + rot: 1.5707963267948966 rad + pos: -53.5,-75.5 parent: 2 - - uid: 41421 + - uid: 32918 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-13.5 - parent: 40828 - - uid: 41422 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 40828 - - uid: 41888 + pos: -53.5,-73.5 + parent: 2 + - uid: 32919 components: - type: Transform - pos: 4.5,-4.5 - parent: 41669 - - uid: 42048 + pos: -49.5,-69.5 + parent: 2 + - uid: 32920 components: - type: Transform - pos: 4.5,-4.5 + pos: -55.5,0.5 parent: 2 - - uid: 42363 + - uid: 32921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,25.5 + pos: -52.5,0.5 parent: 2 - - uid: 42364 + - uid: 32922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,23.5 + pos: -54.5,0.5 parent: 2 - - uid: 43136 + - uid: 32923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-98.5 + pos: -55.5,-0.5 parent: 2 - - uid: 43137 + - uid: 32924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-98.5 + rot: 3.141592653589793 rad + pos: -53.5,-18.5 parent: 2 - - uid: 43138 + - uid: 32925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-98.5 + rot: 3.141592653589793 rad + pos: -53.5,-20.5 parent: 2 - - uid: 43157 + - uid: 32926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-102.5 + pos: -51.5,-20.5 parent: 2 - - uid: 43788 + - uid: 32927 components: - type: Transform - pos: -54.5,-131.5 + pos: -51.5,-19.5 parent: 2 - - uid: 43789 + - uid: 32928 components: - type: Transform - pos: -55.5,-131.5 + pos: -55.5,-12.5 parent: 2 - - uid: 43790 + - uid: 32929 components: - type: Transform - pos: -56.5,-131.5 + pos: -55.5,-13.5 parent: 2 -- proto: TableBrass - entities: - - uid: 32724 + - uid: 32930 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-28.5 + pos: 65.5,-27.5 parent: 2 -- proto: TableCarpet - entities: - - uid: 32725 + - uid: 32931 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-74.5 + pos: 67.5,-26.5 parent: 2 - - uid: 32726 + - uid: 32932 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-75.5 + pos: 65.5,-26.5 parent: 2 - - uid: 32727 + - uid: 32933 components: - type: Transform - pos: 24.5,7.5 + rot: 1.5707963267948966 rad + pos: 67.5,-27.5 parent: 2 - - uid: 32728 + - uid: 32934 components: - type: Transform - pos: 36.5,3.5 + rot: 1.5707963267948966 rad + pos: 66.5,-27.5 parent: 2 - - uid: 32729 + - uid: 32935 components: - type: Transform - pos: 24.5,6.5 + rot: 1.5707963267948966 rad + pos: 66.5,-26.5 parent: 2 - - uid: 32731 + - uid: 32936 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,13.5 + pos: 41.5,-35.5 parent: 2 - - uid: 32732 + - uid: 32937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,12.5 + pos: 40.5,-35.5 parent: 2 - - uid: 32733 + - uid: 32938 components: - type: Transform - pos: -67.5,-9.5 + pos: 36.5,-35.5 parent: 2 - - uid: 32734 + - uid: 32939 components: - type: Transform - pos: -66.5,-7.5 + pos: 35.5,-35.5 parent: 2 - - uid: 32735 + - uid: 32940 components: - type: Transform - pos: -66.5,-8.5 + pos: -32.5,-94.5 parent: 2 - - uid: 32737 + - uid: 32941 components: - type: Transform - pos: 36.5,5.5 + pos: -33.5,-95.5 parent: 2 - - uid: 32739 + - uid: 32942 components: - type: Transform - pos: 0.5,-41.5 + pos: -31.5,-94.5 parent: 2 - - uid: 32740 + - uid: 32943 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,15.5 + pos: -31.5,-96.5 parent: 2 - - uid: 32741 + - uid: 32944 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,15.5 + pos: -33.5,-96.5 parent: 2 -- proto: TableCounterMetal - entities: - - uid: 15791 + - uid: 32945 components: - type: Transform - pos: -55.5,-83.5 + pos: -33.5,-94.5 parent: 2 - - uid: 26802 + - uid: 32946 components: - type: Transform - pos: -55.5,-82.5 + pos: -32.5,-96.5 parent: 2 - - uid: 27766 + - uid: 32947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,4.5 + pos: -31.5,-95.5 parent: 2 - - uid: 32575 + - uid: 32948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-78.5 + pos: 47.5,-60.5 parent: 2 - - uid: 32742 + - uid: 32949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-11.5 + pos: 48.5,-60.5 parent: 2 - - uid: 32743 + - uid: 32950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-11.5 + pos: 49.5,-60.5 parent: 2 - - uid: 32744 + - uid: 32951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-11.5 + pos: -69.5,-69.5 parent: 2 - - uid: 32745 + - uid: 32952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-11.5 + pos: -69.5,-68.5 parent: 2 - - uid: 32746 + - uid: 32953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-11.5 + pos: -69.5,-67.5 parent: 2 - - uid: 32747 + - uid: 32954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-19.5 + pos: -68.5,-67.5 parent: 2 - - uid: 32748 + - uid: 32955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-19.5 + pos: -68.5,-68.5 parent: 2 - - uid: 32749 + - uid: 32956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-19.5 + pos: -68.5,-63.5 parent: 2 - - uid: 32750 + - uid: 32957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-19.5 + pos: -69.5,-63.5 parent: 2 - - uid: 32751 + - uid: 32958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-32.5 + pos: -69.5,-61.5 parent: 2 - - uid: 32752 + - uid: 32959 components: - type: Transform - pos: 12.5,-18.5 + pos: -69.5,-62.5 parent: 2 - - uid: 32753 + - uid: 32960 components: - type: Transform - pos: 8.5,-18.5 + pos: -68.5,-62.5 parent: 2 - - uid: 32754 + - uid: 32961 components: - type: Transform - pos: 8.5,-16.5 + rot: 3.141592653589793 rad + pos: 62.5,-56.5 parent: 2 - - uid: 32755 + - uid: 32962 components: - type: Transform - pos: 12.5,-16.5 + rot: 3.141592653589793 rad + pos: 63.5,-56.5 parent: 2 - - uid: 32756 + - uid: 32963 components: - type: Transform - pos: 12.5,-22.5 + rot: 3.141592653589793 rad + pos: 64.5,-56.5 parent: 2 - - uid: 32757 + - uid: 32964 components: - type: Transform - pos: 8.5,-22.5 + pos: 49.5,-79.5 parent: 2 - - uid: 32758 + - uid: 32965 components: - type: Transform - pos: 8.5,-24.5 + pos: 41.5,-47.5 parent: 2 - - uid: 32759 + - uid: 32966 components: - type: Transform - pos: 12.5,-24.5 + pos: 41.5,-48.5 parent: 2 - - uid: 32760 + - uid: 32967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 + pos: -34.5,-46.5 parent: 2 - - uid: 32761 + - uid: 32968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-18.5 + pos: -35.5,-46.5 parent: 2 - - uid: 32762 + - uid: 32969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 + pos: -34.5,-19.5 parent: 2 - - uid: 32763 + - uid: 32970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-16.5 + pos: -34.5,-23.5 parent: 2 - - uid: 32764 + - uid: 32971 components: - type: Transform - pos: -54.5,-68.5 + rot: -1.5707963267948966 rad + pos: -34.5,-22.5 parent: 2 - - uid: 32765 + - uid: 32972 components: - type: Transform - pos: -55.5,-68.5 + rot: -1.5707963267948966 rad + pos: -34.5,-21.5 parent: 2 - - uid: 32766 + - uid: 32973 components: - type: Transform - pos: -67.5,-78.5 + pos: -38.5,-23.5 parent: 2 - - uid: 32767 + - uid: 32974 components: - type: Transform - pos: -66.5,-78.5 + pos: -47.5,-46.5 parent: 2 - - uid: 32768 + - uid: 32975 components: - type: Transform - pos: -65.5,-78.5 + pos: -46.5,-46.5 parent: 2 - - uid: 32770 + - uid: 32976 components: - type: Transform - pos: -11.5,-36.5 + pos: -66.5,-23.5 parent: 2 - - uid: 32771 + - uid: 32977 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-34.5 + pos: 49.5,-99.5 parent: 2 - - uid: 32772 + - uid: 32978 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-35.5 + pos: 49.5,-100.5 parent: 2 -- proto: TableCounterWood - entities: - - uid: 32773 + - uid: 32979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-2.5 + rot: 1.5707963267948966 rad + pos: 50.5,-99.5 parent: 2 - - uid: 32774 + - uid: 32980 components: - type: Transform - pos: 28.5,1.5 + rot: 1.5707963267948966 rad + pos: 50.5,-100.5 parent: 2 - - uid: 32775 + - uid: 32981 components: - type: Transform - pos: 28.5,2.5 + pos: 41.5,-94.5 parent: 2 - - uid: 32777 + - uid: 32982 components: - type: Transform - pos: 28.5,3.5 + pos: 42.5,-94.5 parent: 2 - - uid: 32778 + - uid: 32983 components: - type: Transform - pos: 28.5,4.5 + pos: 41.5,-93.5 parent: 2 - - uid: 43961 + - uid: 32984 components: - type: Transform - pos: -23.5,-100.5 + pos: 53.5,-96.5 parent: 2 - - uid: 43971 + - uid: 32985 components: - type: Transform - pos: -24.5,-100.5 + pos: 42.5,-93.5 parent: 2 - - uid: 44019 + - uid: 32986 components: - type: Transform - pos: -20.5,-95.5 + rot: -1.5707963267948966 rad + pos: 48.5,-99.5 parent: 2 - - uid: 44020 + - uid: 32987 components: - type: Transform - pos: -20.5,-94.5 + rot: -1.5707963267948966 rad + pos: 48.5,-100.5 parent: 2 - - uid: 44021 + - uid: 32988 components: - type: Transform - pos: -20.5,-93.5 + pos: 43.5,-94.5 parent: 2 - - uid: 44022 + - uid: 32989 components: - type: Transform - pos: -20.5,-92.5 + pos: 43.5,-93.5 parent: 2 - - uid: 44023 + - uid: 32990 components: - type: Transform - pos: -19.5,-95.5 + pos: 42.5,-65.5 parent: 2 - - uid: 44024 + - uid: 32991 components: - type: Transform - pos: -19.5,-94.5 + pos: 44.5,-66.5 parent: 2 - - uid: 44025 + - uid: 32992 components: - type: Transform - pos: -19.5,-93.5 + pos: 43.5,-66.5 parent: 2 - - uid: 44026 + - uid: 32993 components: - type: Transform - pos: -19.5,-92.5 + pos: -56.5,-40.5 parent: 2 -- proto: TableFancyBlack - entities: - - uid: 32789 + - uid: 32994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-118.5 + pos: 28.5,8.5 parent: 2 - - uid: 32790 + - uid: 32995 components: - type: Transform - pos: -31.5,-118.5 + pos: -48.5,-9.5 parent: 2 -- proto: TableFancyGreen - entities: - - uid: 32791 + - uid: 32996 components: - type: Transform - pos: -2.5,0.5 + pos: -48.5,-8.5 parent: 2 - - uid: 32792 + - uid: 32997 components: - type: Transform - pos: -1.5,0.5 + pos: -47.5,-8.5 parent: 2 -- proto: TableFancyOrange - entities: - - uid: 32793 + - uid: 32998 components: - type: Transform - pos: -8.5,18.5 + pos: 31.5,8.5 parent: 2 -- proto: TableFrame - entities: - - uid: 14864 + - uid: 32999 components: - type: Transform - pos: 46.5,20.5 + pos: 42.5,-66.5 parent: 2 - - uid: 32797 + - uid: 33000 components: - type: Transform - pos: -53.5,0.5 + pos: -56.5,12.5 parent: 2 - - uid: 32798 + - uid: 33001 components: - type: Transform - pos: -22.5,10.5 + pos: -55.5,12.5 parent: 2 - - uid: 32799 + - uid: 33002 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-31.5 + pos: -55.5,11.5 parent: 2 - - uid: 32800 + - uid: 33003 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-31.5 + pos: 96.5,-62.5 parent: 2 - - uid: 32801 + - uid: 33004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-32.5 + pos: -29.5,-107.5 parent: 2 - - uid: 32802 + - uid: 33005 components: - type: Transform - pos: -66.5,-9.5 + pos: -29.5,-105.5 parent: 2 - - uid: 32803 + - uid: 33006 components: - type: Transform - pos: -57.5,-9.5 + pos: -33.5,-107.5 parent: 2 - - uid: 32805 + - uid: 33007 components: - type: Transform - pos: 94.5,-48.5 + rot: -1.5707963267948966 rad + pos: -35.5,-107.5 parent: 2 - - uid: 32806 + - uid: 33008 components: - type: Transform - pos: 93.5,-48.5 + rot: 3.141592653589793 rad + pos: -44.5,-109.5 parent: 2 - - uid: 32807 + - uid: 33009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 105.5,-59.5 + pos: -76.5,-27.5 parent: 2 - - uid: 32808 + - uid: 33010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-107.5 + pos: -77.5,-27.5 parent: 2 - - uid: 32809 + - uid: 33011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-106.5 + pos: -78.5,-27.5 parent: 2 - - uid: 32810 + - uid: 33012 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-109.5 + pos: -78.5,-26.5 parent: 2 - - uid: 32811 + - uid: 33013 components: - type: Transform - pos: -86.5,-1.5 + pos: -87.5,-7.5 parent: 2 - - uid: 32812 + - uid: 33014 components: - type: Transform - pos: 2.5,-41.5 + pos: -86.5,-7.5 parent: 2 - - uid: 32813 + - uid: 33015 components: - type: Transform - pos: 1.5,-41.5 + pos: -87.5,-11.5 parent: 2 -- proto: TableGlass - entities: - - uid: 32814 + - uid: 33016 components: - type: Transform - pos: -59.5,-23.5 + pos: -86.5,-11.5 parent: 2 - - uid: 32815 + - uid: 33017 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,6.5 - parent: 2 - - uid: 32816 - components: - - type: Transform - pos: 54.5,-11.5 + pos: 98.5,-91.5 parent: 2 - - uid: 32817 + - uid: 33018 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-41.5 + rot: 1.5707963267948966 rad + pos: 102.5,-88.5 parent: 2 - - uid: 32818 + - uid: 33019 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,6.5 + pos: 94.5,-88.5 parent: 2 - - uid: 32819 + - uid: 33020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-21.5 + pos: 96.5,-63.5 parent: 2 - - uid: 32820 + - uid: 33021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-69.5 + pos: 95.5,-80.5 parent: 2 - - uid: 32821 + - uid: 33022 components: - type: Transform - pos: -20.5,-69.5 + pos: 96.5,-80.5 parent: 2 - - uid: 32822 + - uid: 33023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-69.5 + pos: 101.5,-80.5 parent: 2 - - uid: 32823 + - uid: 33024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-69.5 + pos: 100.5,-80.5 parent: 2 - - uid: 32824 + - uid: 33025 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-1.5 + rot: -1.5707963267948966 rad + pos: 33.5,23.5 parent: 2 - - uid: 32825 + - uid: 33026 components: - type: Transform - pos: 30.5,-68.5 + rot: -1.5707963267948966 rad + pos: 33.5,22.5 parent: 2 - - uid: 32826 + - uid: 33027 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-4.5 + pos: -42.5,-86.5 parent: 2 - - uid: 32827 + - uid: 33028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-54.5 + pos: -35.5,-35.5 parent: 2 - - uid: 32828 + - uid: 33029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-54.5 + pos: 36.5,-37.5 parent: 2 - - uid: 32829 + - uid: 33030 components: - type: Transform - pos: -40.5,-49.5 + pos: 36.5,-38.5 parent: 2 - - uid: 32830 + - uid: 33031 components: - type: Transform - pos: -39.5,-49.5 + pos: 38.5,-37.5 parent: 2 - - uid: 32831 + - uid: 33032 components: - type: Transform - pos: -38.5,-49.5 + pos: 38.5,-38.5 parent: 2 - - uid: 32832 + - uid: 33033 components: - type: Transform - pos: -38.5,-48.5 + pos: 40.5,-38.5 parent: 2 - - uid: 32833 + - uid: 33034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-55.5 + pos: 40.5,-37.5 parent: 2 - - uid: 32834 + - uid: 33035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-54.5 + pos: -43.5,-86.5 parent: 2 - - uid: 32835 + - uid: 33036 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-39.5 + pos: 54.5,11.5 parent: 2 - - uid: 32836 + - uid: 33037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-38.5 + rot: 3.141592653589793 rad + pos: 73.5,-8.5 parent: 2 - - uid: 32837 + - uid: 35793 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-34.5 + pos: 35.5,8.5 parent: 2 - - uid: 32838 + - uid: 39555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-34.5 + pos: -70.5,-18.5 parent: 2 - - uid: 32839 + - uid: 40780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-36.5 - parent: 2 - - uid: 32840 + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 40666 + - uid: 40781 components: - type: Transform - pos: -6.5,-36.5 - parent: 2 - - uid: 32841 + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 40666 + - uid: 41426 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,5.5 - parent: 2 - - uid: 41423 + pos: 4.5,-13.5 + parent: 40828 + - uid: 41427 components: - type: Transform - pos: -2.5,-11.5 + pos: 5.5,-10.5 parent: 40828 - - uid: 41424 + - uid: 41428 components: - type: Transform - pos: -2.5,-12.5 + rot: 1.5707963267948966 rad + pos: 6.5,-10.5 parent: 40828 - - uid: 41425 + - uid: 41429 components: - type: Transform - pos: -4.5,-11.5 + rot: 1.5707963267948966 rad + pos: 6.5,-13.5 parent: 40828 -- proto: TablePlasmaGlass - entities: - - uid: 32843 + - uid: 41430 components: - type: Transform - pos: -46.5,-84.5 - parent: 2 - - uid: 32844 + pos: -1.5,-6.5 + parent: 40828 + - uid: 41431 components: - type: Transform - pos: -46.5,-85.5 - parent: 2 -- proto: TableReinforced - entities: - - uid: 10107 + pos: -1.5,-7.5 + parent: 40828 + - uid: 41889 components: - type: Transform - pos: -69.5,-15.5 - parent: 2 - - uid: 28289 + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 41669 + - uid: 41890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,8.5 - parent: 2 - - uid: 31177 + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 41669 + - uid: 42379 components: - type: Transform - pos: -70.5,-15.5 + rot: 3.141592653589793 rad + pos: 29.5,14.5 parent: 2 - - uid: 31198 + - uid: 43020 components: - type: Transform - pos: -69.5,-18.5 + pos: 85.5,4.5 parent: 2 - - uid: 31767 + - uid: 43135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,8.5 + rot: 1.5707963267948966 rad + pos: -7.5,-100.5 parent: 2 - - uid: 32845 +- proto: TableReinforcedGlass + entities: + - uid: 33039 components: - type: Transform - pos: 54.5,-19.5 + rot: 3.141592653589793 rad + pos: -53.5,-74.5 parent: 2 - - uid: 32846 + - uid: 33044 components: - type: Transform - pos: 59.5,7.5 + rot: 3.141592653589793 rad + pos: -53.5,-19.5 parent: 2 - - uid: 32847 + - uid: 33046 components: - type: Transform - pos: 47.5,-5.5 + rot: -1.5707963267948966 rad + pos: 36.5,22.5 parent: 2 - - uid: 32848 + - uid: 33047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-49.5 + pos: -29.5,-106.5 parent: 2 - - uid: 32849 + - uid: 33048 components: - type: Transform - pos: 61.5,8.5 + rot: -1.5707963267948966 rad + pos: 36.5,23.5 parent: 2 - - uid: 32850 + - uid: 33049 components: - type: Transform - pos: 60.5,5.5 + rot: -1.5707963267948966 rad + pos: -50.5,-60.5 parent: 2 - - uid: 32851 + - uid: 33050 components: - type: Transform - pos: 58.5,-19.5 + rot: -1.5707963267948966 rad + pos: -50.5,-61.5 parent: 2 - - uid: 32852 + - uid: 41891 components: - type: Transform - pos: 61.5,11.5 - parent: 2 - - uid: 32853 + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 41669 + - uid: 41892 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,-49.5 + pos: 2.5,-1.5 + parent: 41669 +- proto: TableStone + entities: + - uid: 14674 + components: + - type: Transform + pos: -9.5,-57.5 parent: 2 - - uid: 32854 + - uid: 33070 components: - type: Transform - pos: 49.5,13.5 + pos: 74.5,-7.5 parent: 2 - - uid: 32855 + - uid: 33073 components: - type: Transform - pos: 51.5,-5.5 + pos: 74.5,-10.5 parent: 2 - - uid: 32856 + - uid: 33074 components: - type: Transform - pos: 49.5,-16.5 + pos: 75.5,-10.5 parent: 2 - - uid: 32857 + - uid: 33077 components: - type: Transform - pos: 61.5,10.5 + pos: -41.5,-101.5 parent: 2 - - uid: 32858 + - uid: 33078 components: - type: Transform - pos: 61.5,9.5 + pos: -37.5,-101.5 parent: 2 - - uid: 32859 + - uid: 33079 components: - type: Transform - pos: -20.5,-22.5 + pos: -37.5,-100.5 parent: 2 - - uid: 32860 + - uid: 33080 components: - type: Transform - pos: -20.5,-21.5 + pos: -37.5,-99.5 parent: 2 - - uid: 32861 + - uid: 33081 components: - type: Transform - pos: 59.5,5.5 + pos: 65.5,-49.5 parent: 2 - - uid: 32862 + - uid: 33082 components: - type: Transform - pos: -17.5,-21.5 + pos: 3.5,-95.5 parent: 2 - - uid: 32863 + - uid: 33083 components: - type: Transform - pos: 52.5,-5.5 + pos: -41.5,-99.5 parent: 2 - - uid: 32864 + - uid: 33085 components: - type: Transform - pos: 46.5,-23.5 + pos: 24.5,4.5 parent: 2 - - uid: 32865 + - uid: 33086 components: - type: Transform - pos: 50.5,13.5 + pos: 66.5,-29.5 parent: 2 - - uid: 32866 + - uid: 33087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,14.5 + pos: -6.5,17.5 parent: 2 - - uid: 32867 + - uid: 33088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,16.5 + pos: -2.5,17.5 parent: 2 - - uid: 32868 + - uid: 33089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,14.5 + pos: -2.5,13.5 parent: 2 - - uid: 32869 + - uid: 33090 components: - type: Transform - pos: -6.5,-8.5 + pos: -6.5,13.5 parent: 2 - - uid: 32870 + - uid: 33091 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-15.5 + pos: 17.5,9.5 parent: 2 - - uid: 32871 + - uid: 33092 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-17.5 + pos: -38.5,-118.5 parent: 2 - - uid: 32872 + - uid: 33093 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-17.5 + pos: 7.5,16.5 parent: 2 - - uid: 32873 + - uid: 33100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-15.5 + pos: -41.5,-100.5 parent: 2 - - uid: 32874 + - uid: 41432 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-19.5 + pos: -4.5,-4.5 + parent: 40828 +- proto: TableWood + entities: + - uid: 28819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,4.5 parent: 2 - - uid: 32875 + - uid: 33103 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-19.5 + pos: 13.5,16.5 parent: 2 - - uid: 32876 + - uid: 33104 components: - type: Transform - pos: 51.5,10.5 + rot: 1.5707963267948966 rad + pos: -15.5,5.5 parent: 2 - - uid: 32877 + - uid: 33105 components: - type: Transform - pos: -7.5,-6.5 + pos: -11.5,15.5 parent: 2 - - uid: 32878 + - uid: 33106 components: - type: Transform - pos: 51.5,9.5 + rot: 3.141592653589793 rad + pos: -11.5,10.5 parent: 2 - - uid: 32879 + - uid: 33107 components: - type: Transform - pos: -7.5,-5.5 + rot: 1.5707963267948966 rad + pos: -16.5,5.5 parent: 2 - - uid: 32880 + - uid: 33108 components: - type: Transform - pos: -7.5,-8.5 + pos: -29.5,-89.5 parent: 2 - - uid: 32881 + - uid: 33109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,12.5 + pos: -34.5,-86.5 parent: 2 - - uid: 32882 + - uid: 33110 components: - type: Transform - pos: 29.5,8.5 + pos: -34.5,-89.5 parent: 2 - - uid: 32883 + - uid: 33111 components: - type: Transform - pos: -57.5,-34.5 + pos: -29.5,-83.5 parent: 2 - - uid: 32884 + - uid: 33112 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,-54.5 + pos: -57.5,-91.5 parent: 2 - - uid: 32885 + - uid: 33113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-74.5 + pos: -55.5,-91.5 parent: 2 - - uid: 32886 + - uid: 33114 components: - type: Transform - pos: 30.5,11.5 + pos: -57.5,-89.5 parent: 2 - - uid: 32887 + - uid: 33115 components: - type: Transform - pos: -48.5,-10.5 + pos: -55.5,-92.5 parent: 2 - - uid: 32888 + - uid: 33116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-72.5 + pos: -28.5,-113.5 parent: 2 - - uid: 32889 + - uid: 33117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-53.5 + rot: 1.5707963267948966 rad + pos: -56.5,-89.5 parent: 2 - - uid: 32890 + - uid: 33118 components: - type: Transform - pos: 28.5,14.5 + pos: -30.5,-112.5 parent: 2 - - uid: 32891 + - uid: 33119 components: - type: Transform - pos: -57.5,-40.5 + rot: 1.5707963267948966 rad + pos: -43.5,-83.5 parent: 2 - - uid: 32892 + - uid: 33120 components: - type: Transform - pos: -57.5,-33.5 + pos: -28.5,-112.5 parent: 2 - - uid: 32893 + - uid: 33121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-112.5 + pos: -30.5,-113.5 parent: 2 - - uid: 32894 + - uid: 33123 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-112.5 + pos: 33.5,-0.5 parent: 2 - - uid: 32895 + - uid: 33124 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,-113.5 + pos: -65.5,12.5 parent: 2 - - uid: 32896 + - uid: 33125 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,-112.5 + pos: -65.5,9.5 parent: 2 - - uid: 32897 + - uid: 33127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,9.5 + pos: 33.5,0.5 parent: 2 - - uid: 32898 + - uid: 33128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-73.5 + rot: 1.5707963267948966 rad + pos: 32.5,4.5 parent: 2 - - uid: 32899 + - uid: 33130 components: - type: Transform - pos: -48.5,-69.5 + pos: 34.5,-3.5 parent: 2 - - uid: 32900 + - uid: 33131 components: - type: Transform - pos: 29.5,11.5 + rot: 3.141592653589793 rad + pos: -82.5,-23.5 parent: 2 - - uid: 32902 + - uid: 33132 components: - type: Transform - pos: 29.5,12.5 + rot: 3.141592653589793 rad + pos: -82.5,-24.5 parent: 2 - - uid: 32903 + - uid: 33137 components: - type: Transform - pos: 28.5,12.5 + pos: -48.5,-116.5 parent: 2 - - uid: 32904 + - uid: 33138 components: - type: Transform - pos: -57.5,-32.5 + pos: -51.5,-116.5 parent: 2 - - uid: 32905 + - uid: 33139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,12.5 + pos: 33.5,-4.5 parent: 2 - - uid: 32906 + - uid: 33140 components: - type: Transform - pos: 28.5,11.5 + rot: 1.5707963267948966 rad + pos: 36.5,-3.5 parent: 2 - - uid: 32907 + - uid: 33141 components: - type: Transform - pos: 30.5,12.5 + pos: 33.5,-3.5 parent: 2 - - uid: 32908 + - uid: 33142 components: - type: Transform - pos: -57.5,-39.5 + pos: -47.5,-116.5 parent: 2 - - uid: 32909 + - uid: 33143 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,-75.5 + pos: 31.5,4.5 parent: 2 - - uid: 32910 + - uid: 33144 components: - type: Transform - pos: -57.5,-38.5 + rot: 1.5707963267948966 rad + pos: 31.5,5.5 parent: 2 - - uid: 32911 + - uid: 33145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-9.5 + rot: 1.5707963267948966 rad + pos: 69.5,-39.5 parent: 2 - - uid: 32912 + - uid: 33146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-10.5 + rot: 1.5707963267948966 rad + pos: 70.5,-40.5 parent: 2 - - uid: 32913 + - uid: 33147 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-33.5 + pos: -2.5,-95.5 parent: 2 - - uid: 32914 + - uid: 33148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-31.5 + rot: 1.5707963267948966 rad + pos: -1.5,24.5 parent: 2 - - uid: 32915 + - uid: 33149 components: - type: Transform - pos: 28.5,7.5 + rot: 1.5707963267948966 rad + pos: -1.5,25.5 parent: 2 - - uid: 32916 + - uid: 33150 components: - type: Transform - pos: 30.5,8.5 + rot: 1.5707963267948966 rad + pos: 2.5,25.5 parent: 2 - - uid: 32917 + - uid: 33151 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-75.5 + pos: 2.5,24.5 parent: 2 - - uid: 32918 + - uid: 33152 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-73.5 + rot: -1.5707963267948966 rad + pos: -0.5,27.5 parent: 2 - - uid: 32919 + - uid: 33153 components: - type: Transform - pos: -49.5,-69.5 + rot: -1.5707963267948966 rad + pos: 0.5,27.5 parent: 2 - - uid: 32920 + - uid: 33154 components: - type: Transform - pos: -55.5,0.5 + rot: -1.5707963267948966 rad + pos: 2.5,27.5 parent: 2 - - uid: 32921 + - uid: 33155 components: - type: Transform - pos: -52.5,0.5 + pos: -9.5,23.5 parent: 2 - - uid: 32922 + - uid: 33156 components: - type: Transform - pos: -54.5,0.5 + pos: -10.5,23.5 parent: 2 - - uid: 32923 + - uid: 33157 components: - type: Transform - pos: -55.5,-0.5 + pos: -8.5,24.5 parent: 2 - - uid: 32924 + - uid: 33158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-18.5 + pos: -8.5,25.5 parent: 2 - - uid: 32925 + - uid: 33159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-20.5 + pos: 9.5,25.5 parent: 2 - - uid: 32926 + - uid: 33160 components: - type: Transform - pos: -51.5,-20.5 + pos: 9.5,24.5 parent: 2 - - uid: 32927 + - uid: 33161 components: - type: Transform - pos: -51.5,-19.5 + pos: 10.5,23.5 parent: 2 - - uid: 32928 + - uid: 33162 components: - type: Transform - pos: -55.5,-12.5 + pos: 11.5,23.5 parent: 2 - - uid: 32929 + - uid: 33163 components: - type: Transform - pos: -55.5,-13.5 + pos: 3.5,11.5 parent: 2 - - uid: 32930 + - uid: 33164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-27.5 + pos: 3.5,7.5 parent: 2 - - uid: 32931 + - uid: 33165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-26.5 + pos: 3.5,6.5 parent: 2 - - uid: 32932 + - uid: 33166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-26.5 + pos: 5.5,9.5 parent: 2 - - uid: 32933 + - uid: 33167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-27.5 + pos: 5.5,8.5 parent: 2 - - uid: 32934 + - uid: 33168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-27.5 + pos: 6.5,9.5 parent: 2 - - uid: 32935 + - uid: 33169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-26.5 + pos: 6.5,8.5 parent: 2 - - uid: 32936 + - uid: 33170 components: - type: Transform - pos: 41.5,-35.5 + pos: 7.5,9.5 parent: 2 - - uid: 32937 + - uid: 33171 components: - type: Transform - pos: 40.5,-35.5 + pos: 7.5,8.5 parent: 2 - - uid: 32938 + - uid: 33172 components: - type: Transform - pos: 36.5,-35.5 + pos: 10.5,10.5 parent: 2 - - uid: 32939 + - uid: 33173 components: - type: Transform - pos: 35.5,-35.5 + pos: 10.5,17.5 parent: 2 - - uid: 32940 + - uid: 33174 components: - type: Transform - pos: -32.5,-94.5 + pos: 10.5,16.5 parent: 2 - - uid: 32941 + - uid: 33175 components: - type: Transform - pos: -33.5,-95.5 + pos: 10.5,15.5 parent: 2 - - uid: 32942 + - uid: 33176 components: - type: Transform - pos: -31.5,-94.5 + pos: 7.5,13.5 parent: 2 - - uid: 32943 + - uid: 33177 components: - type: Transform - pos: -31.5,-96.5 + pos: 8.5,13.5 parent: 2 - - uid: 32944 + - uid: 33178 components: - type: Transform - pos: -33.5,-96.5 + pos: 9.5,13.5 parent: 2 - - uid: 32945 + - uid: 33179 components: - type: Transform - pos: -33.5,-94.5 + pos: 7.5,14.5 parent: 2 - - uid: 32946 + - uid: 33180 components: - type: Transform - pos: -32.5,-96.5 + rot: 3.141592653589793 rad + pos: 13.5,14.5 parent: 2 - - uid: 32947 + - uid: 33182 components: - type: Transform - pos: -31.5,-95.5 + pos: 13.5,15.5 parent: 2 - - uid: 32948 + - uid: 33183 components: - type: Transform - pos: 47.5,-60.5 + rot: 1.5707963267948966 rad + pos: -2.5,9.5 parent: 2 - - uid: 32949 + - uid: 33184 components: - type: Transform - pos: 48.5,-60.5 + rot: 1.5707963267948966 rad + pos: -2.5,8.5 parent: 2 - - uid: 32950 + - uid: 33185 components: - type: Transform - pos: 49.5,-60.5 + pos: -7.5,8.5 parent: 2 - - uid: 32951 + - uid: 33186 components: - type: Transform - pos: -69.5,-69.5 + pos: -6.5,8.5 parent: 2 - - uid: 32952 + - uid: 33187 components: - type: Transform - pos: -69.5,-68.5 + rot: -1.5707963267948966 rad + pos: -6.5,11.5 parent: 2 - - uid: 32953 + - uid: 33188 components: - type: Transform - pos: -69.5,-67.5 + pos: -11.5,7.5 parent: 2 - - uid: 32954 + - uid: 33189 components: - type: Transform - pos: -68.5,-67.5 + pos: -24.5,7.5 parent: 2 - - uid: 32955 + - uid: 33190 components: - type: Transform - pos: -68.5,-68.5 + rot: 3.141592653589793 rad + pos: -23.5,6.5 parent: 2 - - uid: 32956 + - uid: 33191 components: - type: Transform - pos: -68.5,-63.5 + rot: 3.141592653589793 rad + pos: -24.5,6.5 parent: 2 - - uid: 32957 + - uid: 33192 components: - type: Transform - pos: -69.5,-63.5 + rot: 3.141592653589793 rad + pos: -22.5,6.5 parent: 2 - - uid: 32958 + - uid: 33193 components: - type: Transform - pos: -69.5,-61.5 + pos: -22.5,3.5 parent: 2 - - uid: 32959 + - uid: 33194 components: - type: Transform - pos: -69.5,-62.5 + pos: -19.5,6.5 parent: 2 - - uid: 32960 + - uid: 33195 components: - type: Transform - pos: -68.5,-62.5 + pos: 67.5,-40.5 parent: 2 - - uid: 32961 + - uid: 33196 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-56.5 + pos: -29.5,-5.5 parent: 2 - - uid: 32962 + - uid: 33197 components: - type: Transform rot: 3.141592653589793 rad - pos: 63.5,-56.5 + pos: -31.5,8.5 parent: 2 - - uid: 32963 + - uid: 33198 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,-56.5 + pos: -31.5,7.5 parent: 2 - - uid: 32964 + - uid: 33200 components: - type: Transform - pos: 49.5,-79.5 + rot: 3.141592653589793 rad + pos: -31.5,5.5 parent: 2 - - uid: 32965 + - uid: 33201 components: - type: Transform - pos: 41.5,-47.5 + rot: 3.141592653589793 rad + pos: -31.5,6.5 parent: 2 - - uid: 32966 + - uid: 33202 components: - type: Transform - pos: 41.5,-48.5 + rot: -1.5707963267948966 rad + pos: -33.5,8.5 parent: 2 - - uid: 32967 + - uid: 33203 components: - type: Transform - pos: -34.5,-46.5 + rot: 1.5707963267948966 rad + pos: -30.5,-1.5 parent: 2 - - uid: 32968 + - uid: 33204 components: - type: Transform - pos: -35.5,-46.5 + pos: -36.5,3.5 parent: 2 - - uid: 32969 + - uid: 33205 components: - type: Transform - pos: -34.5,-19.5 + pos: -37.5,3.5 parent: 2 - - uid: 32970 + - uid: 33210 components: - type: Transform - pos: -34.5,-23.5 + rot: 1.5707963267948966 rad + pos: -26.5,10.5 parent: 2 - - uid: 32971 + - uid: 33211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-22.5 + rot: 1.5707963267948966 rad + pos: -26.5,11.5 parent: 2 - - uid: 32972 + - uid: 33212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-21.5 + rot: 1.5707963267948966 rad + pos: -26.5,14.5 parent: 2 - - uid: 32973 + - uid: 33213 components: - type: Transform - pos: -38.5,-23.5 + pos: -39.5,-12.5 parent: 2 - - uid: 32974 + - uid: 33214 components: - type: Transform - pos: -47.5,-46.5 + rot: -1.5707963267948966 rad + pos: -35.5,-7.5 parent: 2 - - uid: 32975 + - uid: 33215 components: - type: Transform - pos: -46.5,-46.5 + pos: -34.5,-7.5 parent: 2 - - uid: 32976 + - uid: 33216 components: - type: Transform - pos: -66.5,-23.5 + pos: -34.5,-8.5 parent: 2 - - uid: 32977 + - uid: 33217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-99.5 + rot: 3.141592653589793 rad + pos: -37.5,-7.5 parent: 2 - - uid: 32978 + - uid: 33218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-100.5 + rot: 1.5707963267948966 rad + pos: -36.5,-25.5 parent: 2 - - uid: 32979 + - uid: 33220 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-99.5 + pos: -54.5,-7.5 parent: 2 - - uid: 32980 + - uid: 33221 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-100.5 + pos: -55.5,-7.5 parent: 2 - - uid: 32981 + - uid: 33222 components: - type: Transform - pos: 41.5,-94.5 + rot: 1.5707963267948966 rad + pos: -52.5,-5.5 parent: 2 - - uid: 32982 + - uid: 33223 components: - type: Transform - pos: 42.5,-94.5 + rot: 1.5707963267948966 rad + pos: 66.5,-37.5 parent: 2 - - uid: 32983 + - uid: 33224 components: - type: Transform - pos: 41.5,-93.5 + rot: 1.5707963267948966 rad + pos: 67.5,-37.5 parent: 2 - - uid: 32984 + - uid: 33225 components: - type: Transform - pos: 53.5,-96.5 + rot: 1.5707963267948966 rad + pos: 70.5,-39.5 parent: 2 - - uid: 32985 + - uid: 33226 components: - type: Transform - pos: 42.5,-93.5 + pos: 66.5,-40.5 parent: 2 - - uid: 32986 + - uid: 33227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-99.5 + rot: 3.141592653589793 rad + pos: 77.5,-26.5 parent: 2 - - uid: 32987 + - uid: 33228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-100.5 + rot: 1.5707963267948966 rad + pos: 57.5,-73.5 parent: 2 - - uid: 32988 + - uid: 33229 components: - type: Transform - pos: 43.5,-94.5 + pos: 57.5,-72.5 parent: 2 - - uid: 32989 + - uid: 33230 components: - type: Transform - pos: 43.5,-93.5 + pos: 57.5,-71.5 parent: 2 - - uid: 32990 + - uid: 33231 components: - type: Transform - pos: 42.5,-65.5 + pos: 56.5,-71.5 parent: 2 - - uid: 32991 + - uid: 33232 components: - type: Transform - pos: 44.5,-66.5 + rot: 1.5707963267948966 rad + pos: 52.5,-71.5 parent: 2 - - uid: 32992 + - uid: 33233 components: - type: Transform - pos: 43.5,-66.5 + rot: 1.5707963267948966 rad + pos: 53.5,-71.5 parent: 2 - - uid: 32993 + - uid: 33234 components: - type: Transform - pos: -56.5,-40.5 + pos: -1.5,-95.5 parent: 2 - - uid: 32994 + - uid: 33235 components: - type: Transform - pos: 28.5,8.5 + pos: 0.5,-95.5 parent: 2 - - uid: 32995 + - uid: 33236 components: - type: Transform - pos: -48.5,-9.5 + pos: -0.5,-95.5 parent: 2 - - uid: 32996 + - uid: 33237 components: - type: Transform - pos: -48.5,-8.5 + pos: -0.5,-93.5 parent: 2 - - uid: 32997 + - uid: 33238 components: - type: Transform - pos: -47.5,-8.5 + rot: 3.141592653589793 rad + pos: 36.5,-63.5 parent: 2 - - uid: 32998 + - uid: 33239 components: - type: Transform - pos: 31.5,8.5 + rot: 3.141592653589793 rad + pos: 36.5,-64.5 parent: 2 - - uid: 32999 + - uid: 33240 components: - type: Transform - pos: 42.5,-66.5 + rot: 3.141592653589793 rad + pos: 34.5,-63.5 parent: 2 - - uid: 33000 + - uid: 33241 components: - type: Transform - pos: -56.5,12.5 + pos: 33.5,-63.5 parent: 2 - - uid: 33001 + - uid: 33242 components: - type: Transform - pos: -55.5,12.5 + pos: 33.5,-64.5 parent: 2 - - uid: 33002 + - uid: 33243 components: - type: Transform - pos: -55.5,11.5 + pos: -70.5,-45.5 parent: 2 - - uid: 33003 + - uid: 33244 components: - type: Transform - pos: 96.5,-62.5 + pos: -39.5,-67.5 parent: 2 - - uid: 33004 + - uid: 33245 components: - type: Transform - pos: -29.5,-107.5 + pos: -39.5,-68.5 parent: 2 - - uid: 33005 + - uid: 33246 components: - type: Transform - pos: -29.5,-105.5 + pos: -39.5,-69.5 parent: 2 - - uid: 33006 + - uid: 33247 components: - type: Transform - pos: -33.5,-107.5 + pos: -38.5,-69.5 parent: 2 - - uid: 33007 + - uid: 33248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-107.5 + pos: -37.5,-67.5 parent: 2 - - uid: 33008 + - uid: 33249 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-109.5 + rot: 1.5707963267948966 rad + pos: 70.5,-36.5 parent: 2 - - uid: 33009 + - uid: 33250 components: - type: Transform - pos: -76.5,-27.5 + rot: 1.5707963267948966 rad + pos: 70.5,-37.5 parent: 2 - - uid: 33010 + - uid: 33251 components: - type: Transform - pos: -77.5,-27.5 + rot: 1.5707963267948966 rad + pos: 69.5,-37.5 parent: 2 - - uid: 33011 + - uid: 33252 components: - type: Transform - pos: -78.5,-27.5 + rot: 3.141592653589793 rad + pos: -38.5,17.5 parent: 2 - - uid: 33012 + - uid: 33253 components: - type: Transform - pos: -78.5,-26.5 + rot: 3.141592653589793 rad + pos: -34.5,19.5 parent: 2 - - uid: 33013 + - uid: 33254 components: - type: Transform - pos: -87.5,-7.5 + pos: 96.5,-38.5 parent: 2 - - uid: 33014 + - uid: 33255 components: - type: Transform - pos: -86.5,-7.5 + pos: 96.5,-24.5 parent: 2 - - uid: 33015 + - uid: 33256 components: - type: Transform - pos: -87.5,-11.5 + pos: 93.5,-24.5 parent: 2 - - uid: 33016 + - uid: 33257 components: - type: Transform - pos: -86.5,-11.5 + pos: 93.5,-38.5 parent: 2 - - uid: 33017 + - uid: 33258 components: - type: Transform rot: 1.5707963267948966 rad - pos: 98.5,-91.5 + pos: 69.5,-38.5 parent: 2 - - uid: 33018 + - uid: 33259 components: - type: Transform rot: 1.5707963267948966 rad - pos: 102.5,-88.5 + pos: 62.5,-64.5 parent: 2 - - uid: 33019 + - uid: 33262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,-88.5 + pos: -57.5,-49.5 parent: 2 - - uid: 33020 + - uid: 33263 components: - type: Transform - pos: 96.5,-63.5 + pos: 24.5,-75.5 parent: 2 - - uid: 33021 + - uid: 33264 components: - type: Transform - pos: 95.5,-80.5 + pos: 24.5,-76.5 parent: 2 - - uid: 33022 + - uid: 33265 components: - type: Transform - pos: 96.5,-80.5 + pos: 25.5,-76.5 parent: 2 - - uid: 33023 + - uid: 33266 components: - type: Transform - pos: 101.5,-80.5 + pos: 29.5,-74.5 parent: 2 - - uid: 33024 + - uid: 33272 components: - type: Transform - pos: 100.5,-80.5 + pos: -68.5,-12.5 parent: 2 - - uid: 33025 + - uid: 33273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,23.5 + pos: -58.5,-9.5 parent: 2 - - uid: 33026 + - uid: 33274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,22.5 + pos: -59.5,-9.5 parent: 2 - - uid: 33027 + - uid: 33275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-86.5 + pos: -59.5,-10.5 parent: 2 - - uid: 33028 + - uid: 33276 components: - type: Transform - pos: -35.5,-35.5 + pos: -58.5,-10.5 parent: 2 - - uid: 33029 + - uid: 33277 components: - type: Transform - pos: 36.5,-37.5 + pos: -57.5,-48.5 parent: 2 - - uid: 33030 + - uid: 33278 components: - type: Transform - pos: 36.5,-38.5 + pos: -53.5,-48.5 parent: 2 - - uid: 33031 + - uid: 33279 components: - type: Transform - pos: 38.5,-37.5 + pos: -53.5,-47.5 parent: 2 - - uid: 33032 + - uid: 33282 components: - type: Transform - pos: 38.5,-38.5 + rot: 1.5707963267948966 rad + pos: 23.5,-73.5 parent: 2 - - uid: 33033 + - uid: 33283 components: - type: Transform - pos: 40.5,-38.5 + rot: 1.5707963267948966 rad + pos: 21.5,-2.5 parent: 2 - - uid: 33034 + - uid: 33284 components: - type: Transform - pos: 40.5,-37.5 + rot: 1.5707963267948966 rad + pos: -7.5,9.5 parent: 2 - - uid: 33035 + - uid: 33285 components: - type: Transform - pos: -43.5,-86.5 + rot: 3.141592653589793 rad + pos: -38.5,16.5 parent: 2 - - uid: 33036 + - uid: 33287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,11.5 + rot: 3.141592653589793 rad + pos: 22.5,4.5 parent: 2 - - uid: 33037 + - uid: 33288 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,-8.5 + pos: 22.5,2.5 parent: 2 - - uid: 35793 + - uid: 33289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,8.5 + rot: 3.141592653589793 rad + pos: 22.5,1.5 parent: 2 - - uid: 39555 + - uid: 33290 components: - type: Transform - pos: -70.5,-18.5 + rot: 3.141592653589793 rad + pos: 22.5,3.5 parent: 2 - - uid: 40780 + - uid: 33291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,2.5 - parent: 40666 - - uid: 40781 + pos: 38.5,-17.5 + parent: 2 + - uid: 33292 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 2 + - uid: 33296 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 40666 - - uid: 41426 + pos: -48.5,-112.5 + parent: 2 + - uid: 33297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-13.5 - parent: 40828 - - uid: 41427 + rot: 3.141592653589793 rad + pos: -49.5,-112.5 + parent: 2 + - uid: 33298 components: - type: Transform - pos: 5.5,-10.5 - parent: 40828 - - uid: 41428 + rot: 3.141592653589793 rad + pos: -50.5,-112.5 + parent: 2 + - uid: 33299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 40828 - - uid: 41429 + pos: -46.5,-117.5 + parent: 2 + - uid: 33300 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 40828 - - uid: 41430 + pos: -84.5,-13.5 + parent: 2 + - uid: 33301 components: - type: Transform - pos: -1.5,-6.5 - parent: 40828 - - uid: 41431 + pos: -84.5,-17.5 + parent: 2 + - uid: 33302 components: - type: Transform - pos: -1.5,-7.5 - parent: 40828 - - uid: 41889 + pos: -83.5,-17.5 + parent: 2 + - uid: 33303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,2.5 - parent: 41669 - - uid: 41890 + rot: 3.141592653589793 rad + pos: -76.5,-7.5 + parent: 2 + - uid: 33304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,2.5 - parent: 41669 - - uid: 42379 + rot: 3.141592653589793 rad + pos: -76.5,-8.5 + parent: 2 + - uid: 33305 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,14.5 + pos: -76.5,-9.5 parent: 2 - - uid: 43020 + - uid: 33306 components: - type: Transform - pos: 85.5,4.5 + rot: 3.141592653589793 rad + pos: 36.5,-67.5 parent: 2 - - uid: 43135 + - uid: 33307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-100.5 + rot: -1.5707963267948966 rad + pos: -27.5,-115.5 parent: 2 -- proto: TableReinforcedGlass - entities: - - uid: 33038 + - uid: 33308 components: - type: Transform - pos: -15.5,-39.5 + rot: 1.5707963267948966 rad + pos: -43.5,-84.5 parent: 2 - - uid: 33039 + - uid: 33309 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,-74.5 + pos: -57.5,-90.5 parent: 2 - - uid: 33044 + - uid: 33320 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,-19.5 + pos: -11.5,11.5 parent: 2 - - uid: 33045 + - uid: 43963 components: - type: Transform - pos: -32.5,-95.5 + pos: -21.5,-102.5 parent: 2 - - uid: 33046 + - uid: 43964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,22.5 + pos: -22.5,-102.5 parent: 2 - - uid: 33047 + - uid: 43965 components: - type: Transform - pos: -29.5,-106.5 + pos: -23.5,-102.5 parent: 2 - - uid: 33048 + - uid: 43969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,23.5 + pos: -20.5,-101.5 parent: 2 - - uid: 33049 + - uid: 43970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-60.5 + pos: -20.5,-102.5 parent: 2 - - uid: 33050 + - uid: 43977 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,-61.5 + pos: -22.5,-105.5 parent: 2 - - uid: 33051 + - uid: 43978 components: - type: Transform - pos: -15.5,-38.5 + rot: -1.5707963267948966 rad + pos: -19.5,-105.5 parent: 2 - - uid: 33052 + - uid: 44012 components: - type: Transform - pos: -15.5,-37.5 + rot: -1.5707963267948966 rad + pos: -16.5,-106.5 parent: 2 - - uid: 33053 + - uid: 44013 components: - type: Transform - pos: -15.5,-32.5 + rot: -1.5707963267948966 rad + pos: -17.5,-107.5 parent: 2 - - uid: 33054 + - uid: 44015 components: - type: Transform - pos: -15.5,-33.5 + rot: -1.5707963267948966 rad + pos: -16.5,-103.5 parent: 2 - - uid: 33055 +- proto: TargetClown + entities: + - uid: 33321 components: - type: Transform - pos: -15.5,-34.5 + rot: 1.5707963267948966 rad + pos: 68.5,10.5 parent: 2 - - uid: 33056 + - uid: 33322 components: - type: Transform - pos: -17.5,-32.5 + pos: -71.5,-62.5 parent: 2 - - uid: 33057 +- proto: TargetDarts + entities: + - uid: 33324 components: - type: Transform - pos: -17.5,-33.5 + pos: 34.5,-13.5 parent: 2 - - uid: 33058 +- proto: TargetHuman + entities: + - uid: 33326 components: - type: Transform - pos: -17.5,-34.5 + rot: 1.5707963267948966 rad + pos: 67.5,11.5 parent: 2 - - uid: 33059 + - type: Conveyed + - uid: 33327 components: - type: Transform - pos: -17.5,-37.5 + rot: 1.5707963267948966 rad + pos: 67.5,7.5 parent: 2 - - uid: 33060 + - uid: 33328 components: - type: Transform - pos: -17.5,-38.5 + pos: -72.5,-68.5 parent: 2 - - uid: 33061 + - uid: 33329 components: - type: Transform - pos: -17.5,-39.5 + pos: -72.5,-65.5 parent: 2 - - uid: 33062 +- proto: TargetSyndicate + entities: + - uid: 33330 components: - type: Transform - pos: -19.5,-36.5 + rot: 1.5707963267948966 rad + pos: 68.5,8.5 parent: 2 - - uid: 33063 + - uid: 33331 components: - type: Transform - pos: -19.5,-37.5 + rot: 1.5707963267948966 rad + pos: 67.5,9.5 parent: 2 - - uid: 33064 + - type: Conveyed + - uid: 33332 components: - type: Transform - pos: -19.5,-38.5 + pos: -74.5,-64.5 parent: 2 - - uid: 33065 +- proto: TechnologyDisk + entities: + - uid: 33333 components: - type: Transform - pos: -19.5,-32.5 + pos: 98.6582,-91.43617 parent: 2 - - uid: 33066 +- proto: TechnologyDiskRare + entities: + - uid: 23614 components: - type: Transform - pos: -19.5,-33.5 + pos: -5.493698,-22.47347 parent: 2 - - uid: 33067 +- proto: TegCenter + entities: + - uid: 33334 components: - type: Transform - pos: -19.5,-34.5 + rot: -1.5707963267948966 rad + pos: 52.5,-89.5 parent: 2 - - uid: 33068 +- proto: TegCirculator + entities: + - uid: 33335 components: - type: Transform - pos: -1.5,-38.5 + rot: 3.141592653589793 rad + pos: 51.5,-89.5 parent: 2 - - uid: 33069 + - type: PointLight + color: '#FF3300FF' + - uid: 33336 components: - type: Transform - pos: -1.5,-39.5 + pos: 53.5,-89.5 parent: 2 - - uid: 41891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 41669 - - uid: 41892 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServer + entities: + - uid: 41781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 + pos: 7.5,-8.5 parent: 41669 -- proto: TableStone + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 41782 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: TelecomServerCircuitboard entities: - - uid: 33070 - components: - - type: Transform - pos: 74.5,-7.5 - parent: 2 - - uid: 33071 + - uid: 33339 components: - type: Transform - pos: -19.5,-24.5 + pos: 40.519688,-37.698586 parent: 2 - - uid: 33072 +- proto: TelecomServerFilledCargo + entities: + - uid: 33340 components: - type: Transform - pos: -19.5,-25.5 + pos: 94.5,-68.5 parent: 2 - - uid: 33073 +- proto: TelecomServerFilledCommand + entities: + - uid: 33341 components: - type: Transform - pos: 74.5,-10.5 + pos: 94.5,-67.5 parent: 2 - - uid: 33074 +- proto: TelecomServerFilledCommon + entities: + - uid: 33342 components: - type: Transform - pos: 75.5,-10.5 + pos: 92.5,-67.5 parent: 2 - - uid: 33075 +- proto: TelecomServerFilledEngineering + entities: + - uid: 33343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-12.5 + pos: 94.5,-71.5 parent: 2 - - uid: 33076 +- proto: TelecomServerFilledMedical + entities: + - uid: 33344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-12.5 + pos: 92.5,-71.5 parent: 2 - - uid: 33077 +- proto: TelecomServerFilledScience + entities: + - uid: 33345 components: - type: Transform - pos: -41.5,-101.5 + pos: -35.5,-72.5 parent: 2 - - uid: 33078 +- proto: TelecomServerFilledSecurity + entities: + - uid: 33346 components: - type: Transform - pos: -37.5,-101.5 + pos: 92.5,-70.5 parent: 2 - - uid: 33079 +- proto: TelecomServerFilledService + entities: + - uid: 33347 components: - type: Transform - pos: -37.5,-100.5 + pos: 92.5,-69.5 parent: 2 - - uid: 33080 +- proto: Telecrystal1 + entities: + - uid: 29173 components: - type: Transform - pos: -37.5,-99.5 + pos: 17.5,-35.5 parent: 2 - - uid: 33081 +- proto: TeslaCoil + entities: + - uid: 1368 components: - type: Transform - pos: 65.5,-49.5 + pos: -10.5,-58.5 parent: 2 - - uid: 33082 + - uid: 2104 components: - type: Transform - pos: 3.5,-95.5 + pos: -8.5,-58.5 parent: 2 - - uid: 33083 + - uid: 33350 components: - type: Transform - pos: -41.5,-99.5 + pos: 86.5,-58.5 parent: 2 - - uid: 33085 + - uid: 33351 components: - type: Transform - pos: 24.5,4.5 + pos: 84.5,-58.5 parent: 2 - - uid: 33086 + - uid: 33352 components: - type: Transform - pos: 66.5,-29.5 + pos: 86.5,-57.5 parent: 2 - - uid: 33087 + - uid: 33353 components: - type: Transform - pos: -6.5,17.5 + pos: 85.5,-57.5 parent: 2 - - uid: 33088 +- proto: TeslaGenerator + entities: + - uid: 33354 components: - type: Transform - pos: -2.5,17.5 + pos: 76.5,-59.5 parent: 2 - - uid: 33089 +- proto: TeslaGroundingRod + entities: + - uid: 1880 components: - type: Transform - pos: -2.5,13.5 + pos: -9.5,-59.5 parent: 2 - - uid: 33090 + - uid: 7464 components: - type: Transform - pos: -6.5,13.5 + pos: -7.5,-54.5 parent: 2 - - uid: 33091 + - uid: 12501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,9.5 + pos: -12.5,-55.5 parent: 2 - - uid: 33092 + - uid: 33355 components: - type: Transform - pos: -38.5,-118.5 + pos: 85.5,-61.5 parent: 2 - - uid: 33093 + - uid: 33356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,16.5 + pos: 84.5,-61.5 parent: 2 - - uid: 33100 + - uid: 33357 components: - type: Transform - pos: -41.5,-100.5 + pos: 86.5,-60.5 parent: 2 - - uid: 33101 + - uid: 33358 components: - type: Transform - pos: 14.5,-48.5 + pos: 85.5,-60.5 parent: 2 - - uid: 33102 +- proto: TeslaToy + entities: + - uid: 33359 components: - type: Transform - pos: 13.5,-48.5 + pos: -38.487923,-118.47266 parent: 2 - - uid: 41432 + - type: ActivatedElectrified +- proto: ThrowingKnife + entities: + - uid: 15821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-4.5 - parent: 40828 -- proto: TableWood + parent: 15820 + - type: Physics + canCollide: False +- proto: Thruster entities: - - uid: 28819 + - uid: 40782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,4.5 - parent: 2 - - uid: 33103 + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 40666 + - uid: 40783 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,16.5 - parent: 2 - - uid: 33104 + pos: 4.5,-0.5 + parent: 40666 + - type: Thruster + thrust: 200 + - uid: 40784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,5.5 - parent: 2 - - uid: 33105 + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 40666 + - type: Thruster + thrust: 200 + - uid: 40785 components: - type: Transform - pos: -11.5,15.5 - parent: 2 - - uid: 33106 + pos: 2.5,4.5 + parent: 40666 + - uid: 40786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,10.5 - parent: 2 - - uid: 33107 + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 40666 + - uid: 40787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,5.5 - parent: 2 - - uid: 33108 + pos: -1.5,4.5 + parent: 40666 + - uid: 41893 components: - type: Transform - pos: -29.5,-89.5 - parent: 2 - - uid: 33109 + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 41669 + - type: Thruster + thrust: 300 + - uid: 41894 components: - type: Transform - pos: -34.5,-86.5 - parent: 2 - - uid: 33110 + pos: 0.5,-2.5 + parent: 41669 + - type: Thruster + thrust: 300 + - uid: 41895 components: - type: Transform - pos: -34.5,-89.5 - parent: 2 - - uid: 33111 + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 41669 + - type: Thruster + thrust: 300 + - uid: 41896 components: - type: Transform - pos: -29.5,-83.5 - parent: 2 - - uid: 33112 + pos: 8.5,-2.5 + parent: 41669 + - type: Thruster + thrust: 300 + - uid: 41897 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,-91.5 - parent: 2 - - uid: 33113 + pos: 0.5,-5.5 + parent: 41669 + - type: Thruster + thrust: 300 + - uid: 41898 components: - type: Transform - pos: -55.5,-91.5 - parent: 2 - - uid: 33114 + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 41669 + - type: Thruster + thrust: 300 +- proto: ThrusterMachineCircuitboard + entities: + - uid: 33364 components: - type: Transform - pos: -57.5,-89.5 + pos: 38.472813,-37.761086 parent: 2 - - uid: 33115 +- proto: ThrusterUnanchored + entities: + - uid: 33365 components: - type: Transform - pos: -55.5,-92.5 + rot: 3.141592653589793 rad + pos: 65.5,15.5 parent: 2 - - uid: 33116 + - uid: 33366 components: - type: Transform - pos: -28.5,-113.5 + rot: 3.141592653589793 rad + pos: 66.5,15.5 parent: 2 - - uid: 33117 + - uid: 43671 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-89.5 + pos: 107.5,-20.5 parent: 2 - - uid: 33118 + - uid: 43672 components: - type: Transform - pos: -30.5,-112.5 + pos: 106.5,-20.5 parent: 2 - - uid: 33119 +- proto: TimerTrigger + entities: + - uid: 33367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-83.5 + pos: -38.253895,-32.94832 parent: 2 - - uid: 33120 + - uid: 33368 components: - type: Transform - pos: -28.5,-112.5 + pos: -38.253895,-32.94832 parent: 2 - - uid: 33121 + - uid: 33369 components: - type: Transform - pos: -30.5,-113.5 + pos: -50.33722,-61.583164 parent: 2 - - uid: 33123 + - uid: 33370 components: - type: Transform - pos: 33.5,-0.5 + pos: -50.33722,-61.395664 parent: 2 - - uid: 33124 + - uid: 33371 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,12.5 + pos: -50.227844,-61.31754 parent: 2 - - uid: 33125 + - uid: 33372 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,9.5 + pos: -69.29828,-63.4131 parent: 2 - - uid: 33127 + - uid: 33373 components: - type: Transform - pos: 33.5,0.5 + pos: -69.1889,-63.209976 parent: 2 - - uid: 33128 + - uid: 33374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,4.5 + pos: -69.04828,-63.334976 parent: 2 - - uid: 33130 + - uid: 33375 components: - type: Transform - pos: 34.5,-3.5 + pos: -38.253895,-32.94832 parent: 2 - - uid: 33131 + - uid: 33376 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-23.5 + pos: -38.253895,-32.932693 parent: 2 - - uid: 33132 +- proto: TintedWindow + entities: + - uid: 16887 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,-24.5 - parent: 2 - - uid: 33137 - components: - - type: Transform - pos: -48.5,-116.5 - parent: 2 - - uid: 33138 - components: - - type: Transform - pos: -51.5,-116.5 + pos: 5.5,-4.5 parent: 2 - - uid: 33139 + - uid: 24710 components: - type: Transform - pos: 33.5,-4.5 + rot: 3.141592653589793 rad + pos: -52.5,10.5 parent: 2 - - uid: 33140 + - uid: 31786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-3.5 + rot: 3.141592653589793 rad + pos: 9.5,-4.5 parent: 2 - - uid: 33141 + - uid: 31787 components: - type: Transform - pos: 33.5,-3.5 + rot: 3.141592653589793 rad + pos: 6.5,-4.5 parent: 2 - - uid: 33142 + - uid: 31788 components: - type: Transform - pos: -47.5,-116.5 + rot: 3.141592653589793 rad + pos: 8.5,-4.5 parent: 2 - - uid: 33143 + - uid: 33377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,4.5 + pos: 32.5,-68.5 parent: 2 - - uid: 33144 + - uid: 33378 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,5.5 + pos: 77.5,-0.5 parent: 2 - - uid: 33145 + - uid: 33379 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,-39.5 + pos: 79.5,-0.5 parent: 2 - - uid: 33146 + - uid: 33380 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,-40.5 - parent: 2 - - uid: 33147 - components: - - type: Transform - pos: -2.5,-95.5 + pos: 83.5,-0.5 parent: 2 - - uid: 33148 + - uid: 33381 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,24.5 + pos: 81.5,-0.5 parent: 2 - - uid: 33149 + - uid: 33382 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,25.5 + pos: 85.5,-0.5 parent: 2 - - uid: 33150 + - uid: 33383 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,25.5 + pos: 87.5,-0.5 parent: 2 - - uid: 33151 + - uid: 33384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,24.5 + pos: 44.5,26.5 parent: 2 - - uid: 33152 + - uid: 33385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,27.5 + pos: 11.5,18.5 parent: 2 - - uid: 33153 + - uid: 33386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,27.5 + pos: 9.5,18.5 parent: 2 - - uid: 33154 + - uid: 33387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,27.5 + pos: -18.5,-76.5 parent: 2 - - uid: 33155 + - uid: 33388 components: - type: Transform - pos: -9.5,23.5 + pos: 10.5,18.5 parent: 2 - - uid: 33156 + - uid: 33389 components: - type: Transform - pos: -10.5,23.5 + pos: 79.5,-36.5 parent: 2 - - uid: 33157 + - uid: 33390 components: - type: Transform - pos: -8.5,24.5 + pos: 79.5,-37.5 parent: 2 - - uid: 33158 + - uid: 33391 components: - type: Transform - pos: -8.5,25.5 + pos: 79.5,-38.5 parent: 2 - - uid: 33159 + - uid: 33392 components: - type: Transform - pos: 9.5,25.5 + pos: -20.5,-76.5 parent: 2 - - uid: 33160 + - uid: 33393 components: - type: Transform - pos: 9.5,24.5 + pos: -19.5,-76.5 parent: 2 - - uid: 33161 + - uid: 33394 components: - type: Transform - pos: 10.5,23.5 + pos: -48.5,-100.5 parent: 2 - - uid: 33162 + - uid: 33395 components: - type: Transform - pos: 11.5,23.5 + pos: -48.5,-99.5 parent: 2 - - uid: 33163 + - uid: 33396 components: - type: Transform - pos: 3.5,11.5 + pos: -50.5,-100.5 parent: 2 - - uid: 33164 + - uid: 33397 components: - type: Transform - pos: 3.5,7.5 + pos: -51.5,-98.5 parent: 2 - - uid: 33165 + - uid: 33398 components: - type: Transform - pos: 3.5,6.5 + pos: -50.5,-98.5 parent: 2 - - uid: 33166 + - uid: 33399 components: - type: Transform - pos: 5.5,9.5 + pos: -48.5,-98.5 parent: 2 - - uid: 33167 + - uid: 33400 components: - type: Transform - pos: 5.5,8.5 + pos: -49.5,-100.5 parent: 2 - - uid: 33168 + - uid: 33401 components: - type: Transform - pos: 6.5,9.5 + pos: -51.5,-100.5 parent: 2 - - uid: 33169 + - uid: 33402 components: - type: Transform - pos: 6.5,8.5 + pos: -51.5,-102.5 parent: 2 - - uid: 33170 + - uid: 33403 components: - type: Transform - pos: 7.5,9.5 + pos: -50.5,-102.5 parent: 2 - - uid: 33171 + - uid: 33404 components: - type: Transform - pos: 7.5,8.5 + pos: -50.5,-103.5 parent: 2 - - uid: 33172 + - uid: 33405 components: - type: Transform - pos: 10.5,10.5 + pos: -44.5,-103.5 parent: 2 - - uid: 33173 + - uid: 33406 components: - type: Transform - pos: 10.5,17.5 + pos: -48.5,-102.5 parent: 2 - - uid: 33174 + - uid: 33407 components: - type: Transform - pos: 10.5,16.5 + pos: -47.5,-99.5 parent: 2 - - uid: 33175 + - uid: 33408 components: - type: Transform - pos: 10.5,15.5 + pos: -46.5,-102.5 parent: 2 - - uid: 33176 + - uid: 33409 components: - type: Transform - pos: 7.5,13.5 + pos: -45.5,-98.5 parent: 2 - - uid: 33177 + - uid: 33410 components: - type: Transform - pos: 8.5,13.5 + pos: -45.5,-99.5 parent: 2 - - uid: 33178 + - uid: 33411 components: - type: Transform - pos: 9.5,13.5 + pos: -45.5,-101.5 parent: 2 - - uid: 33179 + - uid: 33412 components: - type: Transform - pos: 7.5,14.5 + pos: -46.5,-101.5 parent: 2 - - uid: 33180 + - uid: 33413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,14.5 + pos: -44.5,-98.5 parent: 2 - - uid: 33182 + - uid: 33414 components: - type: Transform - pos: 13.5,15.5 + pos: -47.5,-102.5 parent: 2 - - uid: 33183 + - uid: 33415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,9.5 + pos: -43.5,-100.5 parent: 2 - - uid: 33184 + - uid: 33416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,8.5 + pos: -43.5,-101.5 parent: 2 - - uid: 33185 + - uid: 33417 components: - type: Transform - pos: -7.5,8.5 + pos: -44.5,-101.5 parent: 2 - - uid: 33186 + - uid: 33418 components: - type: Transform - pos: -6.5,8.5 + pos: -27.5,-92.5 parent: 2 - - uid: 33187 + - uid: 33419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 + pos: -27.5,-93.5 parent: 2 - - uid: 33188 + - uid: 33420 components: - type: Transform - pos: -11.5,7.5 + pos: -27.5,-94.5 parent: 2 - - uid: 33189 + - uid: 36624 components: - type: Transform - pos: -24.5,7.5 + pos: 10.5,-2.5 parent: 2 - - uid: 33190 + - uid: 38044 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,6.5 + pos: -51.5,10.5 parent: 2 - - uid: 33191 + - uid: 40284 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,6.5 + pos: 10.5,-3.5 parent: 2 - - uid: 33192 + - uid: 43352 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,6.5 - parent: 2 - - uid: 33193 - components: - - type: Transform - pos: -22.5,3.5 - parent: 2 - - uid: 33194 - components: - - type: Transform - pos: -19.5,6.5 - parent: 2 - - uid: 33195 - components: - - type: Transform - pos: 67.5,-40.5 + pos: -50.5,10.5 parent: 2 - - uid: 33196 +- proto: ToiletDirtyWater + entities: + - uid: 18963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-5.5 + rot: 1.5707963267948966 rad + pos: 71.5,-11.5 parent: 2 - - uid: 33197 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 18964 + disposals: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 31497 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,8.5 + pos: 44.5,31.5 parent: 2 - - uid: 33198 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 31498 + disposals: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 32621 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,7.5 + pos: -76.5,-53.5 parent: 2 - - uid: 33200 + - uid: 32622 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,5.5 + pos: -72.5,-53.5 parent: 2 - - uid: 33201 + - uid: 33421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,6.5 + pos: 47.5,10.5 parent: 2 - - uid: 33202 + - uid: 33422 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,8.5 + pos: 53.5,-25.5 parent: 2 - - uid: 33203 + - uid: 33423 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-1.5 + pos: 71.5,-13.5 parent: 2 - - uid: 33204 + - type: DisposalUnit + recentlyEjected: + - 12525 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 30062 + disposals: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 33425 components: - type: Transform - pos: -36.5,3.5 + pos: 47.5,-7.5 parent: 2 - - uid: 33205 + - uid: 43207 components: - type: Transform - pos: -37.5,3.5 + pos: -3.5,-98.5 parent: 2 - - uid: 33206 +- proto: ToiletEmpty + entities: + - uid: 33426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,13.5 + rot: 3.141592653589793 rad + pos: -17.5,9.5 parent: 2 - - uid: 33207 + - uid: 33427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,12.5 + rot: 3.141592653589793 rad + pos: -44.5,-89.5 parent: 2 - - uid: 33208 + - uid: 33428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,13.5 + rot: 3.141592653589793 rad + pos: -35.5,-5.5 parent: 2 - - uid: 33209 + - uid: 33429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,12.5 + rot: 1.5707963267948966 rad + pos: 74.5,-39.5 parent: 2 - - uid: 33210 + - uid: 33430 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,10.5 + pos: 74.5,-37.5 parent: 2 - - uid: 33211 + - uid: 33431 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,11.5 + pos: 74.5,-35.5 parent: 2 - - uid: 33212 + - uid: 33432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,14.5 + rot: 3.141592653589793 rad + pos: -21.5,-79.5 parent: 2 - - uid: 33213 + - uid: 33433 components: - type: Transform - pos: -39.5,-12.5 + rot: 3.141592653589793 rad + pos: -19.5,-79.5 parent: 2 - - uid: 33214 + - uid: 33434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-7.5 + rot: 3.141592653589793 rad + pos: -17.5,-79.5 parent: 2 - - uid: 33215 + - uid: 33435 components: - type: Transform - pos: -34.5,-7.5 + rot: -1.5707963267948966 rad + pos: 8.5,-72.5 parent: 2 - - uid: 33216 + - type: WarpPoint + location: я-73 +- proto: ToiletGoldenDirtyWater + entities: + - uid: 33436 components: + - type: MetaData + name: золотой шкебеди - type: Transform - pos: -34.5,-8.5 + pos: 19.5,16.5 parent: 2 - - uid: 33217 + - type: StaticPrice + price: 15000 +- proto: TomDrumsInstrument + entities: + - uid: 33437 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-7.5 + pos: 34.5,-9.5 parent: 2 - - uid: 33218 +- proto: ToolboxElectricalFilled + entities: + - uid: 28800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-25.5 + pos: -68.516685,-15.294145 parent: 2 - - uid: 33220 + - uid: 29261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-7.5 + pos: -70.51893,9.598103 parent: 2 - - uid: 33221 + - uid: 33439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-7.5 + pos: 57.497208,-17.264772 parent: 2 - - uid: 33222 + - uid: 33440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-5.5 + pos: -56.51593,-87.3545 parent: 2 - - uid: 33223 + - uid: 33441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-37.5 + pos: 55.47,-84.44745 parent: 2 - - uid: 33224 + - uid: 33442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-37.5 + pos: 16.863272,5.5387335 parent: 2 - - uid: 33225 + - uid: 33443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-39.5 + pos: 40.529057,-37.242287 parent: 2 - - uid: 33226 + - uid: 33444 components: - type: Transform - pos: 66.5,-40.5 + pos: 8.058641,-86.410194 parent: 2 - - uid: 33227 + - uid: 33445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,-26.5 + pos: -39.45987,-65.42333 parent: 2 - - uid: 33228 + - uid: 33447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-73.5 + pos: 50.419506,-100.35827 parent: 2 - - uid: 33229 + - uid: 33448 components: - type: Transform - pos: 57.5,-72.5 + pos: 81.49744,-54.179535 parent: 2 - - uid: 33230 + - uid: 33449 components: - type: Transform - pos: 57.5,-71.5 + pos: 65.6383,-26.463848 parent: 2 - - uid: 33231 +- proto: ToolboxElectricalTurretFilled + entities: + - uid: 15568 components: - type: Transform - pos: 56.5,-71.5 + pos: -42.522194,-109.43726 parent: 2 - - uid: 33232 +- proto: ToolboxEmergencyFilled + entities: + - uid: 33451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-71.5 + pos: 17.395674,-103.35127 parent: 2 - - uid: 33233 + - uid: 33452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-71.5 + pos: -5.5062737,19.497356 parent: 2 - - uid: 33234 + - uid: 33453 components: - type: Transform - pos: -1.5,-95.5 + pos: 7.605516,-86.378944 parent: 2 - - uid: 33235 + - uid: 33454 components: - type: Transform - pos: 0.5,-95.5 + pos: -30.516659,-78.303474 parent: 2 - - uid: 33236 + - uid: 33455 components: - type: Transform - pos: -0.5,-95.5 + pos: -56.489666,-107.45906 parent: 2 - - uid: 33237 + - uid: 33456 components: - type: Transform - pos: -0.5,-93.5 + pos: -77.5,-27.5 parent: 2 - - uid: 33238 +- proto: ToolboxGolden + entities: + - uid: 15480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-63.5 + pos: 6.5,-40.5 parent: 2 - - uid: 33239 + - uid: 15497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-64.5 + pos: 4.5,-40.5 parent: 2 - - uid: 33240 + - uid: 15501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-63.5 + pos: 4.5,-39.5 parent: 2 - - uid: 33241 +- proto: ToolboxGoldFilled + entities: + - uid: 15479 components: - type: Transform - pos: 33.5,-63.5 + pos: 5.5,-39.5 parent: 2 - - uid: 33242 + - uid: 33457 components: - type: Transform - pos: 33.5,-64.5 + pos: 31.523361,32.437057 parent: 2 - - uid: 33243 +- proto: ToolboxMechanical + entities: + - uid: 33458 components: - type: Transform - pos: -70.5,-45.5 + pos: -30.438534,-78.553474 parent: 2 - - uid: 33244 +- proto: ToolboxMechanicalFilled + entities: + - uid: 33459 components: - type: Transform - pos: -39.5,-67.5 + pos: 57.497208,-17.483522 parent: 2 - - uid: 33245 + - uid: 33460 components: - type: Transform - pos: -39.5,-68.5 + pos: 49.486805,-79.27126 parent: 2 - - uid: 33246 + - uid: 33461 components: - type: Transform - pos: -39.5,-69.5 + pos: -41.55434,-112.38798 parent: 2 - - uid: 33247 + - uid: 33462 components: - type: Transform - pos: -38.5,-69.5 + pos: 15.4390545,-103.40323 parent: 2 - - uid: 33248 + - uid: 33463 components: - type: Transform - pos: -37.5,-67.5 + pos: 16.732325,5.6135054 parent: 2 - - uid: 33249 + - uid: 33464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-36.5 + pos: 70.501495,-27.746334 parent: 2 - - uid: 33250 + - uid: 33465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-37.5 + pos: 36.48632,-35.39625 parent: 2 - - uid: 33251 + - uid: 33467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-37.5 + pos: -39.55362,-65.54833 parent: 2 - - uid: 33252 + - uid: 33468 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,17.5 + pos: 43.392456,-94.381584 parent: 2 - - uid: 33253 + - uid: 33469 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,19.5 + pos: -86.5,-11.5 parent: 2 - - uid: 33254 + - uid: 33470 components: - type: Transform - pos: 96.5,-38.5 + pos: 65.48686,13.614252 parent: 2 - - uid: 33255 + - uid: 43761 components: - type: Transform - pos: 96.5,-24.5 + pos: 109.50452,-22.239302 parent: 2 - - uid: 33256 +- proto: TorsoSkeleton + entities: + - uid: 33478 components: - type: Transform - pos: 93.5,-24.5 + pos: 65.5,-50.5 parent: 2 - - uid: 33257 +- proto: TorsoSlime + entities: + - uid: 16254 components: - type: Transform - pos: 93.5,-38.5 + pos: 14.529345,-30.873055 parent: 2 - - uid: 33258 +- proto: TowelColorNT + entities: + - uid: 1792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-38.5 - parent: 2 - - uid: 33259 + parent: 1785 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TowelColorSyndicate + entities: + - uid: 14689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-64.5 + pos: -5.3496923,-20.635847 parent: 2 - - uid: 33262 +- proto: ToyAmongPequeno + entities: + - uid: 33480 components: + - type: MetaData + desc: мне пох на лор UwU + name: маленький мота - type: Transform - pos: -57.5,-49.5 + pos: -2.2300737,-4.254577 parent: 2 - - uid: 33263 +- proto: ToyDeathRipley + entities: + - uid: 33481 components: - type: Transform - pos: 24.5,-75.5 + pos: -60.558315,12.6743 parent: 2 - - uid: 33264 +- proto: ToyFigurineAtmosTech + entities: + - uid: 33484 components: - type: Transform - pos: 24.5,-76.5 + pos: 42.768444,-93.53998 parent: 2 - - uid: 33265 +- proto: ToyFigurineBartender + entities: + - uid: 33486 components: - type: Transform - pos: 25.5,-76.5 + pos: 24.419611,4.656468 parent: 2 - - uid: 33266 +- proto: ToyFigurineBoxer + entities: + - uid: 33488 components: - type: Transform - pos: 29.5,-74.5 + pos: -33.200916,-103.15729 parent: 2 - - uid: 33267 +- proto: ToyFigurineCaptain + entities: + - uid: 23274 components: - type: Transform - pos: -3.5,-73.5 + pos: 10.456947,-22.516052 parent: 2 - - uid: 33272 + - uid: 33489 components: - type: Transform - pos: -68.5,-12.5 + pos: 13.357437,15.92197 parent: 2 - - uid: 33273 +- proto: ToyFigurineCargoTech + entities: + - uid: 33490 components: - type: Transform - pos: -58.5,-9.5 + pos: 92.736534,-48.330746 parent: 2 - - uid: 33274 +- proto: ToyFigurineChaplain + entities: + - uid: 33491 components: - type: Transform - pos: -59.5,-9.5 + pos: 36.211376,-63.908714 parent: 2 - - uid: 33275 +- proto: ToyFigurineChef + entities: + - uid: 33492 components: - type: Transform - pos: -59.5,-10.5 + pos: 29.353031,12.1914425 parent: 2 - - uid: 33276 +- proto: ToyFigurineChemist + entities: + - uid: 33493 components: - type: Transform - pos: -58.5,-10.5 + pos: -38.331707,-32.108185 parent: 2 - - uid: 33277 +- proto: ToyFigurineChiefEngineer + entities: + - uid: 33494 components: - type: Transform - pos: -57.5,-48.5 + pos: 50.415848,-53.65631 parent: 2 - - uid: 33278 +- proto: ToyFigurineChiefMedicalOfficer + entities: + - uid: 33495 components: - type: Transform - pos: -53.5,-48.5 + pos: -34.990788,-7.283823 parent: 2 - - uid: 33279 +- proto: ToyFigurineClown + entities: + - uid: 33496 components: - type: Transform - pos: -53.5,-47.5 + pos: -49.445133,-112.21309 parent: 2 - - uid: 33280 +- proto: ToyFigurineEngineer + entities: + - uid: 33497 components: - type: Transform - pos: -3.5,-71.5 + pos: 50.948788,-51.257023 parent: 2 - - uid: 33281 +- proto: ToyFigurineGreytider + entities: + - uid: 33498 components: - type: Transform - pos: -2.5,-71.5 + pos: -38.481007,18.630001 parent: 2 - - uid: 33282 +- proto: ToyFigurineHamlet + entities: + - uid: 33499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-73.5 + pos: 7.001844,19.689367 parent: 2 - - uid: 33283 +- proto: ToyFigurineHeadOfPersonnel + entities: + - uid: 33500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-2.5 + pos: -7.6532,9.255847 parent: 2 - - uid: 33284 +- proto: ToyFigurineJanitor + entities: + - uid: 16284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 2 - - uid: 33285 + parent: 16283 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,16.5 + pos: 3.4866855,-4.361102 parent: 2 - - uid: 33287 +- proto: ToyFigurineLawyer + entities: + - uid: 33502 components: + - type: MetaData + desc: Лучше звоните Солу! - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,4.5 + pos: -23.090902,6.7252207 parent: 2 - - uid: 33288 +- proto: ToyFigurineLibrarian + entities: + - uid: 33503 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,2.5 + pos: -31.617523,6.3560033 parent: 2 - - uid: 33289 +- proto: ToyFigurineMedicalDoctor + entities: + - uid: 33504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,1.5 + pos: -59.681423,-23.269218 parent: 2 - - uid: 33290 +- proto: ToyFigurineMime + entities: + - uid: 33505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,3.5 + pos: 33.83908,-17.67738 parent: 2 - - uid: 33291 +- proto: ToyFigurineMusician + entities: + - uid: 33506 components: - type: Transform - pos: 38.5,-17.5 + pos: -44.434223,-113.224045 parent: 2 - - uid: 33292 + - uid: 33507 components: - type: Transform - pos: 37.5,-17.5 + pos: 36.685593,0.8203099 parent: 2 - - uid: 33296 +- proto: ToyFigurineNukie + entities: + - uid: 33508 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-112.5 + pos: -6.209384,-2.2676325 parent: 2 - - uid: 33297 + - uid: 33509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-112.5 + pos: -5.678134,-2.2988825 parent: 2 - - uid: 33298 +- proto: ToyFigurineNukieCommander + entities: + - uid: 33510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-112.5 + pos: -6.818759,-2.6738825 parent: 2 - - uid: 33299 +- proto: ToyFigurineNukieElite + entities: + - uid: 33511 components: - type: Transform - pos: -46.5,-117.5 + pos: -5.896884,-2.7520075 parent: 2 - - uid: 33300 +- proto: ToyFigurineParamedic + entities: + - uid: 33512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,-13.5 + pos: -54.273342,-15.349931 parent: 2 - - uid: 33301 +- proto: ToyFigurinePassenger + entities: + - uid: 33513 components: - type: Transform - pos: -84.5,-17.5 + pos: -32.262848,-94.07056 parent: 2 - - uid: 33302 +- proto: ToyFigurineQuartermaster + entities: + - uid: 33514 components: - type: Transform - pos: -83.5,-17.5 + pos: -1.9263535,-95.30775 parent: 2 - - uid: 33303 +- proto: ToyFigurineQueen + entities: + - uid: 7557 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-7.5 + pos: -13.5,-52.5 parent: 2 - - uid: 33304 + - uid: 10047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-8.5 + pos: -1.5,-51.5 parent: 2 - - uid: 33305 +- proto: ToyFigurineResearchDirector + entities: + - uid: 33520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-9.5 + pos: -39.171104,-69.29449 parent: 2 - - uid: 33306 +- proto: ToyFigurineSalvage + entities: + - uid: 43143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-67.5 + pos: -10.416489,-98.25826 parent: 2 - - uid: 33307 +- proto: ToyFigurineScientist + entities: + - uid: 33522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-115.5 + pos: -40.695343,-49.031723 parent: 2 - - uid: 33308 +- proto: ToyFigurineSlime + entities: + - uid: 33523 components: + - type: MetaData + desc: Фигурка, изображающая хлюпающего смотрителя. + name: фигурка Лилит - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-84.5 + pos: 53.450718,-21.983469 parent: 2 - - uid: 33309 +- proto: ToyFigurineThief + entities: + - uid: 33526 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-90.5 + pos: -29.43541,-118.259514 parent: 2 - - uid: 33310 +- proto: ToyFigurineWarden + entities: + - uid: 33527 components: - type: Transform - pos: 19.5,-35.5 + pos: 47.705772,-25.325428 parent: 2 - - uid: 33311 +- proto: ToyFigurineWizard + entities: + - uid: 33528 components: - type: Transform - pos: 13.5,-35.5 + pos: -37.64504,-99.52388 parent: 2 - - uid: 33312 +- proto: ToyFigurineWizardFake + entities: + - uid: 10079 components: - type: Transform - pos: 17.5,-35.5 + pos: -13.5,-45.5 parent: 2 - - uid: 33313 + - uid: 33529 components: - type: Transform - pos: 9.5,-44.5 + pos: -41.361916,-101.351456 parent: 2 - - uid: 33314 +- proto: ToyHammer + entities: + - uid: 33532 components: - type: Transform - pos: 11.5,-44.5 + rot: 1.5707963267948966 rad + pos: 69.93756,-39.266895 parent: 2 - - uid: 33315 +- proto: ToyIan + entities: + - uid: 33535 components: - type: Transform - pos: 13.5,-44.5 + pos: -30.621994,13.091847 parent: 2 - - uid: 33316 +- proto: ToyNuke + entities: + - uid: 33539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-45.5 + pos: -7.006259,-2.5020075 parent: 2 - - uid: 33317 +- proto: ToyRubberDuck + entities: + - uid: 13084 components: - type: Transform - pos: 0.5,-40.5 + pos: 19.538343,14.408899 parent: 2 - - uid: 33318 + - uid: 33545 components: - type: Transform - pos: 15.5,-44.5 + pos: 51.517838,-25.437391 parent: 2 - - uid: 33319 + - uid: 33546 components: - type: Transform - pos: 7.5,-44.5 + pos: 78.20929,-11.594551 parent: 2 - - uid: 33320 + - uid: 33547 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,11.5 + pos: 75.023865,-42.00662 parent: 2 - - uid: 43963 + - uid: 33548 components: - type: Transform - pos: -21.5,-102.5 + pos: 76.28949,-41.44412 parent: 2 - - uid: 43964 + - uid: 33549 components: - type: Transform - pos: -22.5,-102.5 + pos: -14.993159,-77.09618 parent: 2 - - uid: 43965 + - uid: 33550 components: - type: Transform - pos: -23.5,-102.5 + pos: -13.961909,-76.64306 parent: 2 - - uid: 43969 +- proto: ToySkeleton + entities: + - uid: 33552 components: - type: Transform - pos: -20.5,-101.5 + pos: 70.66162,-50.586216 parent: 2 - - uid: 43970 +- proto: ToySpawner + entities: + - uid: 33553 components: - type: Transform - pos: -20.5,-102.5 + pos: -40.5,6.5 parent: 2 - - uid: 43977 + - uid: 33554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-105.5 + pos: -58.5,-9.5 parent: 2 - - uid: 43978 + - uid: 33555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-105.5 + pos: 56.5,-29.5 parent: 2 - - uid: 44012 + - uid: 33556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-106.5 + pos: -66.5,-12.5 parent: 2 - - uid: 44013 + - uid: 33557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-107.5 + pos: -48.5,-114.5 parent: 2 - - uid: 44015 + - uid: 33558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-103.5 + pos: -84.5,2.5 parent: 2 -- proto: TargetClown - entities: - - uid: 33321 + - uid: 33560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,10.5 + pos: -51.5,-49.5 parent: 2 - - uid: 33322 +- proto: TrackingImplanter + entities: + - uid: 2490 components: + - type: MetaData + name: Трекер - type: Transform - pos: -71.5,-62.5 - parent: 2 -- proto: TargetDarts + parent: 2475 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TrashBag entities: - - uid: 33324 + - uid: 2556 components: - type: Transform - pos: 34.5,-13.5 - parent: 2 -- proto: TargetHuman + parent: 2552 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TrashBagBlue entities: - - uid: 33326 + - uid: 26870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,11.5 - parent: 2 - - type: Conveyed - - uid: 33327 + parent: 32193 + - type: Physics + canCollide: False + - uid: 42043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,7.5 + pos: 9.349471,0.5716343 parent: 2 - - uid: 33328 + - uid: 42201 components: + - type: MetaData + desc: Лучшая разработка для самых лентяйских лентяев! Вам лень смешивать карты вручную? Просто соберите карты в этот мешок и несколько раз скиньте их на стол! + name: мешок для перемешивания карт - type: Transform - pos: -72.5,-68.5 + pos: -67.64901,-9.244574 parent: 2 - - uid: 33329 + - type: Storage + grid: + - 0,0,12,3 + whitelist: + requireAll: False + tags: + - Paper + sizes: null + mindRoles: null + components: null + - type: Dumpable + delayPerItem: 0 +- proto: TrashBananaPeel + entities: + - uid: 33563 components: - type: Transform - pos: -72.5,-65.5 + pos: 89.44522,-9.333417 parent: 2 -- proto: TargetSyndicate +- proto: trayScanner entities: - - uid: 33330 + - uid: 33565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,8.5 + pos: 62.718464,-56.355484 parent: 2 - - uid: 33331 + - uid: 33566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,9.5 + pos: 64.49327,-24.385387 parent: 2 - - type: Conveyed - - uid: 33332 + - uid: 33568 components: - type: Transform - pos: -74.5,-64.5 + pos: -40.514145,-62.120777 parent: 2 -- proto: TechnologyDisk - entities: - - uid: 33333 + - uid: 33569 components: - type: Transform - pos: 98.6582,-91.43617 + pos: 48.57563,-100.288826 parent: 2 -- proto: TegCenter - entities: - - uid: 33334 + - uid: 33570 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-89.5 + pos: 48.5,-66.5 parent: 2 -- proto: TegCirculator +- proto: TreasureCDDrive entities: - - uid: 33335 + - uid: 23609 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-89.5 + pos: -0.44067538,-24.641777 parent: 2 - - type: PointLight - color: '#FF3300FF' - - uid: 33336 + - uid: 33571 components: - type: Transform - pos: 53.5,-89.5 + pos: 102.39258,-88.48305 parent: 2 - - type: PointLight - color: '#FF3300FF' -- proto: TelecomServer +- proto: TreasureCoinAdamantine entities: - - uid: 33337 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 2 - - uid: 33338 - components: - - type: Transform - pos: 10.5,-46.5 - parent: 2 - - uid: 41781 + - uid: 26415 components: - type: Transform - pos: 7.5,-8.5 - parent: 41669 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 41782 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] -- proto: TelecomServerCircuitboard + parent: 26414 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TreasureCoinDiamond entities: - - uid: 33339 + - uid: 26416 components: - type: Transform - pos: 40.519688,-37.698586 - parent: 2 -- proto: TelecomServerFilledCargo + parent: 26414 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TreasureCoinGold entities: - - uid: 33340 + - uid: 26417 components: - type: Transform - pos: 94.5,-68.5 - parent: 2 -- proto: TelecomServerFilledCommand - entities: - - uid: 33341 + parent: 26414 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26418 components: - type: Transform - pos: 94.5,-67.5 - parent: 2 -- proto: TelecomServerFilledCommon + parent: 26414 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TreasureCoinIron entities: - - uid: 33342 + - uid: 23465 components: + - type: MetaData + desc: Затмевает белый свет, ослепляет тех кто слаб душою. - type: Transform - pos: 92.5,-67.5 + pos: -26.484692,14.518404 parent: 2 -- proto: TelecomServerFilledEngineering - entities: - - uid: 33343 + - uid: 26419 components: - type: Transform - pos: 94.5,-71.5 - parent: 2 -- proto: TelecomServerFilledMedical - entities: - - uid: 33344 + parent: 26414 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26420 components: - type: Transform - pos: 92.5,-71.5 - parent: 2 -- proto: TelecomServerFilledScience - entities: - - uid: 33345 + parent: 26414 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26421 components: - type: Transform - pos: -35.5,-72.5 - parent: 2 -- proto: TelecomServerFilledSecurity + parent: 26414 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TreasureCPUSupercharged entities: - - uid: 33346 + - uid: 33578 components: - type: Transform - pos: 92.5,-70.5 + pos: 97.49889,-89.4353 parent: 2 -- proto: TelecomServerFilledService +- proto: TreasureDatadiskEncrypted entities: - - uid: 33347 + - uid: 23604 components: - type: Transform - pos: 92.5,-69.5 + pos: 1.5,-26.5 parent: 2 -- proto: TeslaCoil - entities: - - uid: 33350 + - uid: 23605 components: - type: Transform - pos: 86.5,-58.5 + pos: 1.3718246,-26.282402 parent: 2 - - uid: 33351 + - uid: 33580 components: - type: Transform - pos: 84.5,-58.5 + pos: 98.48633,-91.3893 parent: 2 - - uid: 33352 +- proto: TreasureFlopDiskDrive + entities: + - uid: 23610 components: - type: Transform - pos: 86.5,-57.5 + pos: -0.39380038,-24.344902 parent: 2 - - uid: 33353 + - uid: 33582 components: - type: Transform - pos: 85.5,-57.5 + rot: -1.5707963267948966 rad + pos: 102.79883,-88.40492 parent: 2 -- proto: TeslaGenerator +- proto: TreasureHardDiskDrive entities: - - uid: 33354 + - uid: 33584 components: - type: Transform - pos: 76.5,-59.5 + pos: 102.36133,-88.2643 parent: 2 -- proto: TeslaGroundingRod +- proto: TreasureSampleTube entities: - - uid: 33355 + - uid: 16208 components: - type: Transform - pos: 85.5,-61.5 + rot: 3.141592653589793 rad + pos: 12.285676,-30.3027 parent: 2 - - uid: 33356 + - uid: 16209 components: - type: Transform - pos: 84.5,-61.5 + rot: 3.141592653589793 rad + pos: 12.51991,-30.345253 parent: 2 - - uid: 33357 + - uid: 33589 components: - type: Transform - pos: 86.5,-60.5 + pos: -45.41842,0.52401495 parent: 2 - - uid: 33358 + - uid: 33590 components: - type: Transform - pos: 85.5,-60.5 + pos: -45.57467,0.64901495 parent: 2 -- proto: TeslaToy - entities: - - uid: 33359 + - uid: 44257 components: - type: Transform - pos: -38.487923,-118.47266 + pos: -70.495224,-0.4366305 parent: 2 - - type: ActivatedElectrified -- proto: ThrowingKnife - entities: - - uid: 15821 - components: - - type: Transform - parent: 15820 - - type: Physics - canCollide: False -- proto: Thruster +- proto: Truncheon entities: - - uid: 33360 + - uid: 33617 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -2.5,-51.5 + pos: 63.33208,-11.491384 parent: 2 - - type: Physics - bodyType: Dynamic - - uid: 33363 + - uid: 33618 components: - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 8.5,-63.5 + pos: 63.534504,-11.470428 parent: 2 - - type: Physics - bodyType: Dynamic - - uid: 40782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 40666 - - uid: 40783 + - uid: 33619 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 40666 - - type: Thruster - thrust: 200 - - uid: 40784 + pos: 63.628254,-11.548553 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 29215 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 40666 - - type: Thruster - thrust: 200 - - uid: 40785 + pos: -2.5,-69.5 + parent: 2 + - uid: 30878 components: - type: Transform - pos: 2.5,4.5 - parent: 40666 - - uid: 40786 + pos: 109.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12371: + - Left: Open + - Right: Open + - Middle: Close + 34688: + - Left: Open + - Right: Open + - Middle: Close + 15325: + - Left: Open + - Right: Open + - Middle: Close + - uid: 33620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 40666 - - uid: 40787 + pos: 19.5,-79.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16087: + - Left: Reverse + - Right: Forward + - Middle: Off + 16089: + - Left: Reverse + - Right: Forward + - Middle: Off + 16120: + - Left: Reverse + - Right: Forward + - Middle: Off + 16088: + - Left: Reverse + - Right: Forward + - Middle: Off + 16144: + - Left: Reverse + - Right: Forward + - Middle: Off + 16121: + - Left: Reverse + - Right: Forward + - Middle: Off + 16086: + - Left: Reverse + - Right: Forward + - Middle: Off + 16142: + - Left: Reverse + - Right: Forward + - Middle: Off + 16085: + - Left: Reverse + - Right: Forward + - Middle: Off + 16143: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 33621 components: - type: Transform - pos: -1.5,4.5 - parent: 40666 - - uid: 41893 + pos: 14.5,-96.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16107: + - Left: Forward + - Right: Reverse + - Middle: Off + 16105: + - Left: Forward + - Right: Reverse + - Middle: Off + 16103: + - Left: Forward + - Right: Reverse + - Middle: Off + 16104: + - Left: Forward + - Right: Reverse + - Middle: Off + 16093: + - Left: Forward + - Right: Reverse + - Middle: Off + 16102: + - Left: Forward + - Right: Reverse + - Middle: Off + 16090: + - Left: Forward + - Right: Reverse + - Middle: Off + 16092: + - Left: Forward + - Right: Reverse + - Middle: Off + 16097: + - Left: Forward + - Right: Reverse + - Middle: Off + 16095: + - Left: Forward + - Right: Reverse + - Middle: Off + 16094: + - Left: Forward + - Right: Reverse + - Middle: Off + 16091: + - Left: Forward + - Right: Reverse + - Middle: Off + 16101: + - Left: Forward + - Right: Reverse + - Middle: Off + 16098: + - Left: Forward + - Right: Reverse + - Middle: Off + 16100: + - Left: Forward + - Right: Reverse + - Middle: Off + 16099: + - Left: Forward + - Right: Reverse + - Middle: Off + 16096: + - Left: Forward + - Right: Reverse + - Middle: Off + 16106: + - Left: Forward + - Right: Reverse + - Middle: Off + 16118: + - Left: Forward + - Right: Reverse + - Middle: Off + 16108: + - Left: Forward + - Right: Reverse + - Middle: Off + 16109: + - Left: Forward + - Right: Reverse + - Middle: Off + 16110: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 33622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 41669 - - type: Thruster - thrust: 300 - - uid: 41894 + pos: 10.5,-80.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16079: + - Left: Forward + - Right: Reverse + - Middle: Off + 16080: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 33623 components: - type: Transform - pos: 0.5,-2.5 - parent: 41669 - - type: Thruster - thrust: 300 - - uid: 41895 + pos: 43.5,-69.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16082: + - Left: Forward + - Right: Reverse + - Middle: Off + 16081: + - Left: Forward + - Right: Reverse + - Middle: Off + 16083: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 33624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 41669 - - type: Thruster - thrust: 300 - - uid: 41896 + pos: 12.5,-101.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16116: + - Left: Forward + - Right: Reverse + - Middle: Off + 16117: + - Left: Forward + - Right: Reverse + - Middle: Off + 16115: + - Left: Forward + - Right: Reverse + - Middle: Off + 16111: + - Left: Forward + - Right: Reverse + - Middle: Off + 16112: + - Left: Forward + - Right: Reverse + - Middle: Off + 16114: + - Left: Forward + - Right: Reverse + - Middle: Off + 16113: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 33625 components: - type: Transform - pos: 8.5,-2.5 - parent: 41669 - - type: Thruster - thrust: 300 - - uid: 41897 + pos: 18.5,-80.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 29819: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 42045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 41669 - - type: Thruster - thrust: 300 - - uid: 41898 + pos: 7.5,1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 30977: + - Left: Open + - Middle: Close + - Right: Open + 30976: + - Left: Open + - Right: Open + - Middle: Close + - uid: 43367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-5.5 - parent: 41669 - - type: Thruster - thrust: 300 -- proto: ThrusterMachineCircuitboard - entities: - - uid: 33364 + pos: -13.5,-103.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 43146: + - Right: Reverse + - Left: Forward + - Middle: Off + 43145: + - Right: Reverse + - Left: Forward + - Middle: Off + 43147: + - Right: Reverse + - Left: Forward + - Middle: Off + 43148: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 43388 components: - type: Transform - pos: 38.472813,-37.761086 + pos: 106.5,-17.5 parent: 2 -- proto: ThrusterUnanchored + - type: DeviceLinkSource + linkedPorts: + 43759: + - Left: Open + - Right: Open + - Middle: Close + 43758: + - Middle: Close + - Right: Open + - Left: Open +- proto: UnfinishedMachineFrame entities: - - uid: 33365 + - uid: 7493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,15.5 + pos: -12.5,-41.5 parent: 2 - - uid: 33366 + - uid: 7554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,15.5 + pos: -12.5,-40.5 parent: 2 - - uid: 43671 + - uid: 11967 components: - type: Transform rot: 1.5707963267948966 rad - pos: 107.5,-20.5 + pos: 46.5,23.5 parent: 2 - - uid: 43672 + - uid: 23668 components: - type: Transform - pos: 106.5,-20.5 + rot: 1.5707963267948966 rad + pos: 46.5,22.5 parent: 2 -- proto: TimerTrigger - entities: - - uid: 33367 + - uid: 33627 components: - type: Transform - pos: -38.253895,-32.94832 + rot: 1.5707963267948966 rad + pos: 106.5,-56.5 parent: 2 - - uid: 33368 + - uid: 33628 components: - type: Transform - pos: -38.253895,-32.94832 + rot: 1.5707963267948966 rad + pos: 94.5,-70.5 parent: 2 - - uid: 33369 + - uid: 33629 components: - type: Transform - pos: -50.33722,-61.583164 + rot: 1.5707963267948966 rad + pos: 92.5,-68.5 parent: 2 - - uid: 33370 + - uid: 33630 components: - type: Transform - pos: -50.33722,-61.395664 + pos: 104.5,-69.5 parent: 2 - - uid: 33371 +- proto: UniformPrinter + entities: + - uid: 33632 components: - type: Transform - pos: -50.227844,-61.31754 + rot: 3.141592653589793 rad + pos: -5.5,8.5 parent: 2 - - uid: 33372 +- proto: UniformScrubsColorBlue + entities: + - uid: 15793 components: + - type: MetaData + name: анестезиологическая роба - type: Transform - pos: -69.29828,-63.4131 - parent: 2 - - uid: 33373 + parent: 13131 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UniformScrubsColorGreen + entities: + - uid: 15805 components: + - type: MetaData + name: хирургическая роба - type: Transform - pos: -69.1889,-63.209976 - parent: 2 - - uid: 33374 + parent: 13131 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 33633 components: - type: Transform - pos: -69.04828,-63.334976 + pos: -76.366,-7.92319 parent: 2 - - uid: 33375 + - uid: 33634 components: - type: Transform - pos: -38.253895,-32.94832 + pos: -76.50662,-8.032565 parent: 2 - - uid: 33376 +- proto: UniformScrubsColorPurple + entities: + - uid: 15792 components: + - type: MetaData + name: реаниматологическая роба - type: Transform - pos: -38.253895,-32.932693 - parent: 2 -- proto: TintedWindow + parent: 13131 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UniformShortsRed entities: - - uid: 16887 + - uid: 33635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-4.5 + pos: 79.493,-3.7236357 parent: 2 - - uid: 24710 + - uid: 33636 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,10.5 + pos: 82.64818,-6.5517607 parent: 2 - - uid: 31786 + - uid: 33637 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-4.5 + pos: -34.060715,-101.76542 parent: 2 - - uid: 31787 +- proto: UniformShortsRedWithTop + entities: + - uid: 33638 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-4.5 + pos: 79.71175,-3.4736357 parent: 2 - - uid: 31788 + - uid: 33639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-4.5 + pos: 82.4305,-6.3486357 parent: 2 - - uid: 33377 + - uid: 33640 components: - type: Transform - pos: 32.5,-68.5 + pos: -33.74704,-107.28026 parent: 2 - - uid: 33378 + - uid: 33641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-0.5 + pos: -33.851795,-107.350006 parent: 2 - - uid: 33379 + - uid: 33642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-0.5 + pos: -31.54509,-104.33027 parent: 2 - - uid: 33380 +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 33643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-0.5 + pos: 36.446823,22.992214 parent: 2 - - uid: 33381 +- proto: UprightPianoInstrument + entities: + - uid: 33644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-0.5 + rot: 3.141592653589793 rad + pos: -49.5,-114.5 parent: 2 - - uid: 33382 +- proto: UraniumReinforcedWindowDirectional + entities: + - uid: 33651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-0.5 + rot: -1.5707963267948966 rad + pos: 15.5,18.5 parent: 2 - - uid: 33383 + - uid: 33652 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-0.5 + pos: 17.5,18.5 parent: 2 - - uid: 33384 + - uid: 33653 components: - type: Transform - pos: 44.5,26.5 + rot: -1.5707963267948966 rad + pos: 15.5,22.5 parent: 2 - - uid: 33385 + - uid: 33654 components: - type: Transform - pos: 11.5,18.5 + rot: 1.5707963267948966 rad + pos: 17.5,22.5 parent: 2 - - uid: 33386 + - uid: 33655 components: - type: Transform - pos: 9.5,18.5 + rot: -1.5707963267948966 rad + pos: 17.5,22.5 parent: 2 - - uid: 33387 + - uid: 33656 components: - type: Transform - pos: -18.5,-76.5 + rot: 1.5707963267948966 rad + pos: 15.5,22.5 parent: 2 - - uid: 33388 + - uid: 33657 components: - type: Transform - pos: 10.5,18.5 + rot: 1.5707963267948966 rad + pos: 15.5,18.5 parent: 2 - - uid: 33389 + - uid: 33658 components: - type: Transform - pos: 79.5,-36.5 + rot: -1.5707963267948966 rad + pos: 17.5,18.5 parent: 2 - - uid: 33390 + - uid: 33659 components: - type: Transform - pos: 79.5,-37.5 + rot: 1.5707963267948966 rad + pos: 96.5,-88.5 parent: 2 - - uid: 33391 + - uid: 33660 components: - type: Transform - pos: 79.5,-38.5 + rot: 1.5707963267948966 rad + pos: 96.5,-89.5 parent: 2 - - uid: 33392 + - uid: 33661 components: - type: Transform - pos: -20.5,-76.5 + rot: 3.141592653589793 rad + pos: 97.5,-90.5 parent: 2 - - uid: 33393 + - uid: 33662 components: - type: Transform - pos: -19.5,-76.5 + rot: 3.141592653589793 rad + pos: 99.5,-90.5 parent: 2 - - uid: 33394 + - uid: 33663 components: - type: Transform - pos: -48.5,-100.5 + rot: -1.5707963267948966 rad + pos: 100.5,-88.5 parent: 2 - - uid: 33395 + - uid: 33664 components: - type: Transform - pos: -48.5,-99.5 + pos: 99.5,-87.5 parent: 2 - - uid: 33396 + - uid: 33665 components: - type: Transform - pos: -50.5,-100.5 + rot: -1.5707963267948966 rad + pos: 100.5,-89.5 parent: 2 - - uid: 33397 + - uid: 33666 components: - type: Transform - pos: -51.5,-98.5 + pos: 98.5,-87.5 parent: 2 - - uid: 33398 + - uid: 33667 components: - type: Transform - pos: -50.5,-98.5 + pos: 97.5,-87.5 parent: 2 - - uid: 33399 +- proto: UraniumWindoorSecureEngineeringLocked + entities: + - uid: 33668 components: - type: Transform - pos: -48.5,-98.5 + rot: 1.5707963267948966 rad + pos: 46.5,-48.5 parent: 2 - - uid: 33400 + - uid: 33669 components: - type: Transform - pos: -49.5,-100.5 + rot: 1.5707963267948966 rad + pos: 46.5,-47.5 parent: 2 - - uid: 33401 +- proto: UraniumWindow + entities: + - uid: 33670 components: - type: Transform - pos: -51.5,-100.5 + rot: -1.5707963267948966 rad + pos: 44.5,-70.5 parent: 2 - - uid: 33402 + - uid: 33671 components: - type: Transform - pos: -51.5,-102.5 + rot: -1.5707963267948966 rad + pos: 43.5,-70.5 parent: 2 - - uid: 33403 +- proto: Vaccinator + entities: + - uid: 33674 components: - type: Transform - pos: -50.5,-102.5 + pos: -55.5,-1.5 parent: 2 - - uid: 33404 +- proto: VariantCubeBox + entities: + - uid: 33676 components: - type: Transform - pos: -50.5,-103.5 + pos: -52.484634,0.68885875 parent: 2 - - uid: 33405 + - uid: 33677 components: - type: Transform - pos: -44.5,-103.5 + pos: -46.802418,-6.2182565 parent: 2 - - uid: 33406 +- proto: VendingBarDrobe + entities: + - uid: 33678 components: - type: Transform - pos: -48.5,-102.5 + pos: 22.5,6.5 parent: 2 - - uid: 33407 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 33679 components: - type: Transform - pos: -47.5,-99.5 + pos: 40.5,-46.5 parent: 2 - - uid: 33408 +- proto: VendingMachineBooze + entities: + - uid: 33680 components: - type: Transform - pos: -46.5,-102.5 + pos: -11.5,13.5 parent: 2 - - uid: 33409 + - uid: 33681 components: - type: Transform - pos: -45.5,-98.5 + pos: 24.5,0.5 parent: 2 - - uid: 33410 + - uid: 43966 components: - type: Transform - pos: -45.5,-99.5 + pos: -22.5,-100.5 parent: 2 - - uid: 33411 +- proto: VendingMachineCargoDrobe + entities: + - uid: 33684 components: - type: Transform - pos: -45.5,-101.5 + pos: 5.5,-96.5 parent: 2 - - uid: 33412 + - uid: 33685 components: - type: Transform - pos: -46.5,-101.5 + pos: 5.5,-97.5 parent: 2 - - uid: 33413 +- proto: VendingMachineCart + entities: + - uid: 33686 components: - type: Transform - pos: -44.5,-98.5 + pos: -2.5,11.5 parent: 2 - - uid: 33414 +- proto: VendingMachineChapel + entities: + - uid: 33687 components: - type: Transform - pos: -47.5,-102.5 + pos: 37.5,-69.5 parent: 2 - - uid: 33415 +- proto: VendingMachineChefDrobe + entities: + - uid: 641 components: - type: Transform - pos: -43.5,-100.5 + pos: 28.5,16.5 parent: 2 - - uid: 33416 + - uid: 33689 components: - type: Transform - pos: -43.5,-101.5 + pos: -57.5,12.5 parent: 2 - - uid: 33417 +- proto: VendingMachineChefvend + entities: + - uid: 33690 components: - type: Transform - pos: -44.5,-101.5 + pos: 89.5,-8.5 parent: 2 - - uid: 33418 + missingComponents: + - AccessReader + - uid: 33691 components: - type: Transform - pos: -27.5,-92.5 + pos: 23.5,11.5 parent: 2 - - uid: 33419 +- proto: VendingMachineChemDrobe + entities: + - uid: 33692 components: - type: Transform - pos: -27.5,-93.5 + pos: -38.5,-30.5 parent: 2 - - uid: 33420 +- proto: VendingMachineChemicals + entities: + - uid: 33693 components: - type: Transform - pos: -27.5,-94.5 + pos: -34.5,-30.5 parent: 2 - - uid: 36624 + - uid: 41433 components: - type: Transform - pos: 10.5,-2.5 - parent: 2 - - uid: 38044 + pos: -5.5,-11.5 + parent: 40828 +- proto: VendingMachineCigs + entities: + - uid: 33695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,10.5 + pos: 60.5,1.5 parent: 2 - - uid: 40284 + - uid: 33696 components: - type: Transform - pos: 10.5,-3.5 + pos: 76.5,-8.5 parent: 2 - - uid: 43352 + - uid: 33697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,10.5 + pos: -28.5,-1.5 parent: 2 -- proto: ToiletDirtyWater - entities: - - uid: 18963 + - uid: 33698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-11.5 + pos: -70.5,-41.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 18964 - disposals: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 31497 + - uid: 33699 components: - type: Transform - pos: 44.5,31.5 + pos: 85.5,-38.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 31498 - disposals: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 32621 + - uid: 33700 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-53.5 + pos: -34.5,-59.5 parent: 2 - - uid: 32622 + - uid: 33701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-53.5 + pos: 24.5,-1.5 parent: 2 - - uid: 33421 + - uid: 33702 components: - type: Transform - pos: 47.5,10.5 + pos: -28.5,-53.5 parent: 2 - - uid: 33422 + - uid: 33703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-25.5 + pos: 30.5,-69.5 parent: 2 - - uid: 33423 + - uid: 33704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-13.5 + pos: -35.5,-1.5 parent: 2 - - type: DisposalUnit - recentlyEjected: - - 12525 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 30062 - disposals: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 33424 +- proto: VendingMachineClothing + entities: + - uid: 33705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-25.5 + pos: 38.5,-13.5 parent: 2 - - uid: 33425 + - uid: 33706 components: - type: Transform - pos: 47.5,-7.5 + pos: 89.5,-24.5 parent: 2 - - uid: 43207 + - uid: 33707 components: - type: Transform - pos: -3.5,-98.5 + pos: -35.5,-93.5 parent: 2 -- proto: ToiletEmpty - entities: - - uid: 33426 + - uid: 33708 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,9.5 + pos: -62.5,4.5 parent: 2 - - uid: 33427 + - uid: 33709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-89.5 + pos: -83.5,3.5 parent: 2 - - uid: 33428 + - uid: 33710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-5.5 + pos: -25.5,-91.5 parent: 2 - - uid: 33429 +- proto: VendingMachineCoffee + entities: + - uid: 33711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-39.5 + pos: 42.5,-14.5 parent: 2 - - uid: 33430 + - uid: 33712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-37.5 + pos: 4.5,-78.5 parent: 2 - - uid: 33431 + - uid: 33713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-35.5 + pos: 53.5,-54.5 parent: 2 - - uid: 33432 + - uid: 33714 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-79.5 + pos: -32.5,12.5 parent: 2 - - uid: 33433 + - uid: 33715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-79.5 + pos: 10.5,11.5 parent: 2 - - uid: 33434 + - uid: 33716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-79.5 + pos: -19.5,8.5 parent: 2 - - uid: 33435 + - uid: 33717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-72.5 + pos: -28.5,-2.5 parent: 2 -- proto: ToiletGoldenDirtyWater - entities: - - uid: 33436 + - uid: 33718 components: - - type: MetaData - name: золотой шкебеди - type: Transform - pos: 19.5,16.5 + pos: -44.5,-38.5 parent: 2 - - type: StaticPrice - price: 15000 -- proto: TomDrumsInstrument - entities: - - uid: 33437 + - uid: 33719 components: - type: Transform - pos: 34.5,-9.5 + pos: -37.5,-1.5 parent: 2 -- proto: ToolboxArtisticFilled - entities: - - uid: 33438 + - uid: 33720 components: - type: Transform - pos: 20.50246,-43.476185 + pos: -39.5,-7.5 parent: 2 -- proto: ToolboxElectricalFilled - entities: - - uid: 28800 + - uid: 33721 components: - type: Transform - pos: -68.516685,-15.294145 + pos: -34.5,-25.5 parent: 2 - - uid: 33439 + - uid: 33722 components: - type: Transform - pos: 57.497208,-17.264772 + pos: -52.5,-3.5 parent: 2 - - uid: 33440 + - uid: 33723 components: - type: Transform - pos: -56.51593,-87.3545 + pos: 61.5,-35.5 parent: 2 - - uid: 33441 + - uid: 33724 components: - type: Transform - pos: 55.47,-84.44745 + pos: 79.5,-26.5 parent: 2 - - uid: 33442 + - uid: 33725 components: - type: Transform - pos: 16.863272,5.5387335 + pos: 4.5,-86.5 parent: 2 - - uid: 33443 + - uid: 33726 components: - type: Transform - pos: 40.529057,-37.242287 + pos: -35.5,-65.5 parent: 2 - - uid: 33444 + - uid: 33727 components: - type: Transform - pos: 8.058641,-86.410194 + pos: -9.5,-84.5 parent: 2 - - uid: 33445 + - uid: 33729 components: - type: Transform - pos: -39.45987,-65.42333 + pos: -35.5,-94.5 parent: 2 - - uid: 33447 + - uid: 33730 components: - type: Transform - pos: 50.419506,-100.35827 + pos: -55.5,-25.5 parent: 2 - - uid: 33448 + - uid: 33731 components: - type: Transform - pos: 81.49744,-54.179535 + pos: -6.5,-0.5 parent: 2 - - uid: 33449 + - uid: 33732 components: - type: Transform - pos: 65.6383,-26.463848 + pos: -47.5,-50.5 parent: 2 -- proto: ToolboxElectricalTurretFilled - entities: - - uid: 33450 + - uid: 33733 components: - type: Transform - pos: -70.52513,9.511154 + pos: -19.5,-70.5 parent: 2 -- proto: ToolboxEmergencyFilled - entities: - - uid: 33451 + - uid: 33734 components: - type: Transform - pos: 17.395674,-103.35127 + pos: -42.5,11.5 parent: 2 - - uid: 33452 + - uid: 33735 components: - type: Transform - pos: -5.5062737,19.497356 + pos: -57.5,-46.5 parent: 2 - - uid: 33453 + - uid: 33736 components: - type: Transform - pos: 7.605516,-86.378944 + pos: -55.5,-64.5 parent: 2 - - uid: 33454 + - uid: 33737 components: - type: Transform - pos: -30.516659,-78.303474 + pos: -10.5,20.5 parent: 2 - - uid: 33455 +- proto: VendingMachineCondiments + entities: + - uid: 33738 components: - type: Transform - pos: -56.489666,-107.45906 + rot: 3.141592653589793 rad + pos: 85.5,-10.5 parent: 2 - - uid: 33456 + - uid: 33739 components: - type: Transform - pos: -77.5,-27.5 + pos: 50.5,6.5 parent: 2 -- proto: ToolboxGoldFilled - entities: - - uid: 33457 + - uid: 33740 components: - type: Transform - pos: 31.523361,32.437057 + pos: -11.5,15.5 parent: 2 -- proto: ToolboxMechanical - entities: - - uid: 33458 + - uid: 33741 components: - type: Transform - pos: -30.438534,-78.553474 + pos: 31.5,5.5 parent: 2 -- proto: ToolboxMechanicalFilled +- proto: VendingMachineCuraDrobe entities: - - uid: 33459 + - uid: 33742 components: - type: Transform - pos: 57.497208,-17.483522 + pos: -35.5,5.5 parent: 2 - - uid: 33460 +- proto: VendingMachineDetDrobe + entities: + - uid: 33743 components: - type: Transform - pos: 49.486805,-79.27126 + pos: 38.5,-23.5 parent: 2 - - uid: 33461 +- proto: VendingMachineDinnerware + entities: + - uid: 33744 components: - type: Transform - pos: -41.55434,-112.38798 + pos: 27.5,14.5 parent: 2 - - uid: 33462 +- proto: VendingMachineDonut + entities: + - uid: 33745 components: - type: Transform - pos: 15.4390545,-103.40323 + pos: 42.5,-10.5 parent: 2 - - uid: 33463 + - uid: 33746 components: - type: Transform - pos: 16.732325,5.6135054 + pos: -76.5,-35.5 parent: 2 - - uid: 33464 + - uid: 33747 components: - type: Transform - pos: 70.501495,-27.746334 + pos: -70.5,-47.5 parent: 2 - - uid: 33465 +- proto: VendingMachineEngiDrobe + entities: + - uid: 33749 components: - type: Transform - pos: 36.48632,-35.39625 + pos: 47.5,-51.5 parent: 2 - - uid: 33467 + - uid: 33750 components: - type: Transform - pos: -39.55362,-65.54833 + pos: 48.5,-84.5 parent: 2 - - uid: 33468 + - uid: 33751 components: - type: Transform - pos: 43.392456,-94.381584 + pos: 48.5,-62.5 parent: 2 - - uid: 33469 +- proto: VendingMachineEngivend + entities: + - uid: 33752 components: - type: Transform - pos: -86.5,-11.5 + pos: 47.5,-50.5 parent: 2 - - uid: 33470 +- proto: VendingMachineGames + entities: + - uid: 33753 components: - type: Transform - pos: 65.48686,13.614252 + pos: 87.5,-2.5 parent: 2 - - uid: 43761 + - uid: 33754 components: - type: Transform - pos: 109.50452,-22.239302 + pos: -32.5,11.5 parent: 2 -- proto: TorsoBorg +- proto: VendingMachineGeneDrobe entities: - - uid: 33474 + - uid: 33756 components: - type: Transform - pos: -20.461906,-54.491467 + pos: -57.5,-25.5 parent: 2 - - uid: 33475 +- proto: VendingMachineHappyHonk + entities: + - uid: 9959 components: - type: Transform - pos: -15.665031,-46.449615 + pos: 17.5,-47.5 parent: 2 - - uid: 33476 + - uid: 33757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.586906,-47.241467 + pos: -48.5,-110.5 parent: 2 - - uid: 33477 + - uid: 33758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.540031,-47.65274 + pos: 31.5,-7.5 parent: 2 -- proto: TorsoSkeleton +- proto: VendingMachineHydrobe entities: - - uid: 33478 + - uid: 30671 components: - type: Transform - pos: 65.5,-50.5 + pos: 33.5,18.5 parent: 2 -- proto: TowelColorNT +- proto: VendingMachineJaniDrobe entities: - - uid: 1792 + - uid: 31438 components: - type: Transform - parent: 1785 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ToyAi + pos: 3.5,-5.5 + parent: 2 +- proto: VendingMachineLawDrobe entities: - - uid: 33479 + - uid: 33761 components: - type: Transform - pos: -17.372196,-54.248486 + pos: -24.5,3.5 parent: 2 -- proto: ToyAmongPequeno +- proto: VendingMachineMagivend entities: - - uid: 33480 + - uid: 33762 components: - - type: MetaData - desc: мне пох на лор UwU - name: маленький мота - type: Transform - pos: -2.2300737,-4.254577 + pos: -37.5,-103.5 parent: 2 -- proto: ToyDeathRipley +- proto: VendingMachineMedical entities: - - uid: 33481 + - uid: 32350 components: - type: Transform - pos: -60.558315,12.6743 + pos: 80.5,-10.5 parent: 2 - - uid: 33482 + - uid: 33763 components: - type: Transform - pos: -14.497196,-52.51411 + pos: 66.5,-3.5 parent: 2 -- proto: ToyDurand - entities: - - uid: 33483 + - uid: 33764 components: - type: Transform - pos: -11.528446,-51.45161 + pos: -52.5,-29.5 parent: 2 -- proto: ToyFigurineAtmosTech - entities: - - uid: 33484 + - uid: 33765 components: - type: Transform - pos: 42.768444,-93.53998 + pos: -46.5,-13.5 parent: 2 -- proto: ToyFigurineBartender - entities: - - uid: 33485 + - uid: 33766 components: - type: Transform - pos: -2.4459457,-71.24857 + pos: -51.5,-14.5 parent: 2 - - uid: 33486 + - uid: 41434 components: - type: Transform - pos: 24.419611,4.656468 - parent: 2 -- proto: ToyFigurineBoxer + pos: -3.5,-8.5 + parent: 40828 +- proto: VendingMachineMediDrobe entities: - - uid: 33488 + - uid: 33767 components: - type: Transform - pos: -33.200916,-103.15729 + pos: -46.5,-16.5 parent: 2 -- proto: ToyFigurineCaptain +- proto: VendingMachineNutri entities: - - uid: 33489 + - uid: 2654 components: - type: Transform - pos: 13.357437,15.92197 + pos: 37.5,15.5 parent: 2 -- proto: ToyFigurineCargoTech +- proto: VendingMachinePwrGame entities: - - uid: 33490 + - uid: 33769 components: - type: Transform - pos: 92.736534,-48.330746 + pos: -59.5,10.5 parent: 2 -- proto: ToyFigurineChaplain +- proto: VendingMachineRoboDrobe entities: - - uid: 33491 + - uid: 33770 components: - type: Transform - pos: 36.211376,-63.908714 + pos: -40.5,-55.5 parent: 2 -- proto: ToyFigurineChef +- proto: VendingMachineRobotics entities: - - uid: 33492 + - uid: 33771 components: - type: Transform - pos: 29.353031,12.1914425 + pos: -40.5,-51.5 parent: 2 -- proto: ToyFigurineChemist +- proto: VendingMachineSalvage entities: - - uid: 33493 + - uid: 19895 components: - type: Transform - pos: -38.331707,-32.108185 + pos: -5.5,-93.5 parent: 2 -- proto: ToyFigurineChiefEngineer - entities: - - uid: 33494 + - uid: 29217 components: - type: Transform - pos: 50.415848,-53.65631 + pos: -0.5,-71.5 parent: 2 -- proto: ToyFigurineChiefMedicalOfficer +- proto: VendingMachineSciDrobe entities: - - uid: 33495 + - uid: 33774 components: - type: Transform - pos: -34.990788,-7.283823 + pos: -45.5,-73.5 parent: 2 -- proto: ToyFigurineClown - entities: - - uid: 33496 + - uid: 33775 components: - type: Transform - pos: -49.445133,-112.21309 + pos: -34.5,-65.5 parent: 2 -- proto: ToyFigurineEngineer +- proto: VendingMachineSec entities: - - uid: 33497 + - uid: 33776 components: - type: Transform - pos: 50.948788,-51.257023 + pos: 58.5,-17.5 parent: 2 -- proto: ToyFigurineGreytider - entities: - - uid: 33498 + - uid: 33777 components: - type: Transform - pos: -38.481007,18.630001 + pos: 59.5,3.5 parent: 2 -- proto: ToyFigurineHamlet + - uid: 41435 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 40828 + - uid: 41899 + components: + - type: Transform + pos: 4.5,0.5 + parent: 41669 +- proto: VendingMachineSecDrobe entities: - - uid: 33499 + - uid: 403 components: - type: Transform - pos: 7.001844,19.689367 + pos: -9.5,-80.5 parent: 2 -- proto: ToyFigurineHeadOfPersonnel - entities: - - uid: 33500 + - uid: 33778 components: - type: Transform - pos: -7.6532,9.255847 + pos: 61.5,5.5 parent: 2 -- proto: ToyFigurineJanitor - entities: - - uid: 16284 + - uid: 33779 components: - type: Transform - parent: 16283 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 42047 + pos: -64.5,-36.5 + parent: 2 + - uid: 33781 components: - type: Transform - pos: 3.4866855,-4.361102 + pos: -46.5,-48.5 parent: 2 -- proto: ToyFigurineLawyer - entities: - - uid: 33502 + - uid: 33782 components: - - type: MetaData - desc: Лучше звоните Солу! - type: Transform - pos: -23.090902,6.7252207 + pos: -46.5,-31.5 parent: 2 -- proto: ToyFigurineLibrarian +- proto: VendingMachineSeeds entities: - - uid: 33503 + - uid: 2687 components: - type: Transform - pos: -31.617523,6.3560033 + pos: 38.5,15.5 parent: 2 -- proto: ToyFigurineMedicalDoctor - entities: - - uid: 33504 + - uid: 33783 components: - type: Transform - pos: -59.681423,-23.269218 + pos: 89.5,-3.5 parent: 2 -- proto: ToyFigurineMime + missingComponents: + - AccessReader +- proto: VendingMachineSovietSoda entities: - - uid: 33505 + - uid: 33785 components: - type: Transform - pos: 33.83908,-17.67738 + pos: 77.5,-4.5 parent: 2 -- proto: ToyFigurineMusician - entities: - - uid: 33506 + - uid: 33786 components: - type: Transform - pos: -44.434223,-113.224045 + pos: -12.5,-92.5 parent: 2 - - uid: 33507 + - uid: 33787 components: - type: Transform - pos: 36.685593,0.8203099 + pos: 39.5,-0.5 parent: 2 -- proto: ToyFigurineNukie +- proto: VendingMachineSustenance entities: - - uid: 33508 + - uid: 33788 components: - type: Transform - pos: -9.277338,-6.50102 + pos: 42.5,8.5 parent: 2 - - uid: 33509 + - uid: 33789 components: - type: Transform - pos: -9.667963,-6.829145 + pos: 77.5,-5.5 parent: 2 -- proto: ToyFigurineNukieCommander +- proto: VendingMachineSyndieDrobe entities: - - uid: 33510 + - uid: 33790 components: - type: Transform - pos: -9.464838,-5.954145 + pos: -35.5,19.5 parent: 2 -- proto: ToyFigurineNukieElite +- proto: VendingMachineTankDispenserEngineering entities: - - uid: 33511 + - uid: 33791 components: - type: Transform - pos: -9.652338,-6.37602 + pos: 56.5,-62.5 parent: 2 -- proto: ToyFigurineParamedic - entities: - - uid: 33512 + - uid: 33792 components: - type: Transform - pos: -54.273342,-15.349931 + pos: 45.5,-66.5 parent: 2 -- proto: ToyFigurinePassenger - entities: - - uid: 33513 + - uid: 33793 components: - type: Transform - pos: -32.262848,-94.07056 + pos: -50.5,-59.5 parent: 2 -- proto: ToyFigurineQuartermaster +- proto: VendingMachineTankDispenserEVA entities: - - uid: 33514 + - uid: 23625 components: - type: Transform - pos: -1.9263535,-95.30775 + pos: -19.5,-38.5 parent: 2 -- proto: ToyFigurineQueen - entities: - - uid: 33515 + - uid: 29313 components: - type: Transform - pos: -0.06578779,-27.391663 + pos: -0.5,-68.5 parent: 2 -- proto: ToyFigurineRatKing - entities: - - uid: 33516 + - uid: 33794 components: - type: Transform - pos: 3.0101357,-28.995865 + pos: 61.5,15.5 parent: 2 -- proto: ToyFigurineRatServant - entities: - - uid: 33517 + - uid: 33795 components: - type: Transform - pos: 2.7132607,-28.214615 + pos: 55.5,-22.5 parent: 2 - - uid: 33518 + - uid: 33796 components: - type: Transform - pos: 3.0413857,-27.808365 + pos: -13.5,16.5 parent: 2 - - uid: 33519 + - uid: 33797 components: - type: Transform - pos: 3.6038857,-28.10524 + pos: 47.5,-92.5 parent: 2 -- proto: ToyFigurineResearchDirector - entities: - - uid: 33520 + - uid: 33799 components: - type: Transform - pos: -39.171104,-69.29449 + pos: 4.5,15.5 parent: 2 -- proto: ToyFigurineSalvage - entities: - - uid: 43143 + - uid: 33800 components: - type: Transform - pos: -10.416489,-98.25826 + pos: -4.5,13.5 parent: 2 -- proto: ToyFigurineScientist - entities: - - uid: 33522 + - uid: 33801 components: - type: Transform - pos: -40.695343,-49.031723 + pos: 49.5,-84.5 parent: 2 -- proto: ToyFigurineSlime - entities: - - uid: 33523 + - uid: 33802 components: - - type: MetaData - desc: Фигурка, изображающая хлюпающего смотрителя. - name: фигурка Лилит - type: Transform - pos: 53.450718,-21.983469 + pos: -70.5,-76.5 parent: 2 - - uid: 33524 + - uid: 33803 components: - type: Transform - pos: -3.0922155,-30.32818 + pos: 58.5,-80.5 parent: 2 -- proto: ToyFigurineSpaceDragon - entities: - - uid: 33525 + - uid: 40788 components: - type: Transform - pos: -3.3001628,-26.766663 - parent: 2 -- proto: ToyFigurineThief - entities: - - uid: 33526 + pos: 2.5,-0.5 + parent: 40666 + - uid: 41436 components: - type: Transform - pos: -29.43541,-118.259514 + pos: 2.5,-7.5 + parent: 40828 + - uid: 43174 + components: + - type: Transform + pos: -8.5,-105.5 parent: 2 -- proto: ToyFigurineWarden +- proto: VendingMachineTheater entities: - - uid: 33527 + - uid: 33804 components: - type: Transform - pos: 47.705772,-25.325428 + pos: 38.5,-11.5 parent: 2 -- proto: ToyFigurineWizard - entities: - - uid: 33528 + - uid: 33805 components: - type: Transform - pos: -37.64504,-99.52388 + pos: -51.5,-114.5 parent: 2 -- proto: ToyFigurineWizardFake +- proto: VendingMachineVendomat entities: - - uid: 33529 + - uid: 33806 components: - type: Transform - pos: -41.361916,-101.351456 + pos: -85.5,-7.5 parent: 2 -- proto: ToyGriffin - entities: - - uid: 33530 + - uid: 33807 components: - type: Transform - pos: -7.5609655,-22.490564 + pos: 66.5,-24.5 parent: 2 -- proto: ToyGygax - entities: - - uid: 33531 + - uid: 33808 components: - type: Transform - pos: -11.528446,-50.467236 + pos: 50.5,-79.5 parent: 2 -- proto: ToyHammer +- proto: VendingMachineViroDrobe entities: - - uid: 33532 + - uid: 33809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.93756,-39.266895 + pos: -55.5,-3.5 parent: 2 -- proto: ToyHonk +- proto: VendingMachineWallMedical entities: - - uid: 33534 + - uid: 33810 components: - type: Transform - pos: -11.534567,-49.455715 + rot: 3.141592653589793 rad + pos: -49.5,-26.5 parent: 2 -- proto: ToyIan + - uid: 42096 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 41669 +- proto: VendingMachineWinter entities: - - uid: 33535 + - uid: 14833 components: - type: Transform - pos: -30.621994,13.091847 + pos: -17.5,-86.5 parent: 2 -- proto: ToyMarauder - entities: - - uid: 33536 + - uid: 33812 components: - type: Transform - pos: -11.528446,-52.435986 + pos: -33.5,-98.5 parent: 2 -- proto: ToyMauler +- proto: VendingMachineYouTool entities: - - uid: 33537 + - uid: 29526 components: - type: Transform - pos: -11.528446,-53.435986 + pos: 104.5,-22.5 parent: 2 -- proto: ToyNuke - entities: - - uid: 33539 + - uid: 33813 components: - type: Transform - pos: -9.480463,-7.4228954 + pos: -4.5,17.5 parent: 2 -- proto: ToyOdysseus - entities: - - uid: 33540 + - uid: 33814 components: - type: Transform - pos: -14.512821,-53.529736 + pos: 65.5,-24.5 parent: 2 -- proto: ToyOwlman - entities: - - uid: 33541 + - uid: 33815 components: - type: Transform - pos: -8.529716,-25.488533 + pos: -30.5,-73.5 parent: 2 -- proto: ToyPhazon - entities: - - uid: 33542 + - uid: 33816 components: - type: Transform - pos: -14.5,-50.5 + pos: 47.5,-66.5 parent: 2 -- proto: ToyReticence +- proto: VoiceTrigger entities: - - uid: 33543 + - uid: 19767 components: - type: Transform - pos: -11.590946,-54.467236 + pos: 15.658041,-52.385826 parent: 2 -- proto: ToyRipley +- proto: WallClock entities: - - uid: 33544 + - uid: 20381 components: - type: Transform - pos: -14.5,-51.5 + pos: -12.5,-54.5 parent: 2 -- proto: ToyRubberDuck +- proto: WallDiamond entities: - - uid: 13084 + - uid: 7381 components: + - type: MetaData + desc: Нижний астероид сделал OneYa + name: ??? - type: Transform - pos: 19.538343,14.408899 + pos: 0.5,-55.5 parent: 2 - - uid: 33545 +- proto: WallForce + entities: + - uid: 23562 components: - type: Transform - pos: 51.517838,-25.437391 + pos: 3.5,-61.5 parent: 2 - - uid: 33546 + - uid: 23563 components: - type: Transform - pos: 78.20929,-11.594551 + pos: -2.5,-62.5 parent: 2 - - uid: 33547 + - uid: 23564 components: - type: Transform - pos: 75.023865,-42.00662 + pos: -2.5,-61.5 parent: 2 - - uid: 33548 + - uid: 23565 components: - type: Transform - pos: 76.28949,-41.44412 + pos: 3.5,-62.5 parent: 2 - - uid: 33549 +- proto: WallIce + entities: + - uid: 27996 components: - type: Transform - pos: -14.993159,-77.09618 + pos: 28.5,30.5 parent: 2 - - uid: 33550 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 50 + triggersOnce: False + triggered: False + behaviors: + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + Girder: + max: 1 + min: 1 + - !type:DoActsBehavior + acts: Destruction + - uid: 28814 components: - type: Transform - pos: -13.961909,-76.64306 + pos: 31.5,30.5 parent: 2 -- proto: ToySeraph + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 50 + triggersOnce: False + triggered: False + behaviors: + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + Girder: + max: 1 + min: 1 + - !type:DoActsBehavior + acts: Destruction +- proto: WallInvisible entities: - - uid: 33551 + - uid: 33823 components: - type: Transform - pos: -14.497196,-54.498486 + pos: 43.748642,18.290363 parent: 2 -- proto: ToySkeleton +- proto: WallMeat entities: - - uid: 33552 + - uid: 12530 components: - type: Transform - pos: 70.66162,-50.586216 + rot: 3.141592653589793 rad + pos: 11.5,-36.5 parent: 2 -- proto: ToySpawner - entities: - - uid: 33553 + - uid: 14567 components: - type: Transform - pos: -40.5,6.5 + pos: 9.5,-38.5 parent: 2 - - uid: 33554 + - uid: 14568 components: - type: Transform - pos: -58.5,-9.5 + pos: 11.5,-37.5 parent: 2 - - uid: 33555 + - uid: 14585 components: - type: Transform - pos: 56.5,-29.5 + rot: 3.141592653589793 rad + pos: 11.5,-35.5 parent: 2 - - uid: 33556 + - uid: 14597 components: - type: Transform - pos: -66.5,-12.5 + rot: 3.141592653589793 rad + pos: 12.5,-35.5 parent: 2 - - uid: 33557 + - uid: 14649 components: - type: Transform - pos: -48.5,-114.5 + rot: -1.5707963267948966 rad + pos: -0.5,-33.5 parent: 2 - - uid: 33558 + - uid: 15663 components: - type: Transform - pos: -84.5,2.5 + rot: -1.5707963267948966 rad + pos: -0.5,-29.5 parent: 2 - - uid: 33560 + - uid: 15724 components: - type: Transform - pos: -51.5,-49.5 + rot: -1.5707963267948966 rad + pos: 0.5,-29.5 parent: 2 -- proto: TrackingImplanter - entities: - - uid: 2490 + - uid: 15852 components: - - type: MetaData - name: Трекер - type: Transform - parent: 2475 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TrashBag - entities: - - uid: 2556 + pos: 16.5,-50.5 + parent: 2 + - uid: 15853 components: - type: Transform - parent: 2552 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TrashBagBlue - entities: - - uid: 26870 + pos: 16.5,-49.5 + parent: 2 + - uid: 16427 components: - type: Transform - parent: 32193 - - type: Physics - canCollide: False - - uid: 42043 + rot: -1.5707963267948966 rad + pos: 1.5,-30.5 + parent: 2 + - uid: 20455 components: - type: Transform - pos: 9.349471,0.5716343 + pos: -8.5,-33.5 parent: 2 - - uid: 42201 + - uid: 20476 components: - - type: MetaData - desc: Лучшая разработка для самых лентяйских лентяев! Вам лень смешивать карты вручную? Просто соберите карты в этот мешок и несколько раз скиньте их на стол! - name: мешок для перемешивания карт - type: Transform - pos: -67.64901,-9.244574 + pos: -9.5,-34.5 parent: 2 - - type: Storage - grid: - - 0,0,12,3 - whitelist: - requireAll: False - tags: - - Paper - sizes: null - mindRoles: null - components: null - - type: Dumpable - delayPerItem: 0 -- proto: TrashBananaPeel - entities: - - uid: 33563 + - uid: 20487 components: - type: Transform - pos: 89.44522,-9.333417 + pos: -8.5,-34.5 parent: 2 -- proto: trayScanner - entities: - - uid: 33565 + - uid: 23384 components: - type: Transform - pos: 62.718464,-56.355484 + pos: 17.5,-49.5 parent: 2 - - uid: 33566 + - uid: 23387 components: - type: Transform - pos: 64.49327,-24.385387 + pos: -4.5,-41.5 parent: 2 - - uid: 33568 + - uid: 23388 components: - type: Transform - pos: -40.514145,-62.120777 + pos: -3.5,-41.5 parent: 2 - - uid: 33569 + - uid: 23389 components: - type: Transform - pos: 48.57563,-100.288826 + pos: -3.5,-40.5 parent: 2 - - uid: 33570 + - uid: 23390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-66.5 + pos: -5.5,-41.5 parent: 2 -- proto: TreasureCDDrive +- proto: WallMining entities: - - uid: 33571 + - uid: 16878 components: - type: Transform - pos: 102.39258,-88.48305 + pos: 14.5,-11.5 parent: 2 - - uid: 33572 + - uid: 24858 components: - type: Transform - pos: -17.42481,-51.40888 + pos: -12.5,-11.5 parent: 2 - - uid: 42304 +- proto: WallmountTelescreen + entities: + - uid: 33824 components: - type: Transform - pos: -20.603018,-54.029713 + pos: 40.5,-26.5 parent: 2 - - uid: 42305 + - uid: 33825 components: - type: Transform - pos: -20.649893,-49.597214 + pos: -22.5,3.5 parent: 2 - - uid: 42306 + - uid: 33826 components: - type: Transform - pos: -20.368643,-49.42534 + pos: -0.5,-95.5 parent: 2 -- proto: TreasureCoinAdamantine - entities: - - uid: 26415 - components: - - type: Transform - parent: 26414 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TreasureCoinDiamond +- proto: WallmountTelevision entities: - - uid: 26416 + - uid: 33830 components: - type: Transform - parent: 26414 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TreasureCoinGold - entities: - - uid: 26417 + rot: 1.5707963267948966 rad + pos: 42.5,-44.5 + parent: 2 + - uid: 33831 components: - type: Transform - parent: 26414 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26418 + pos: 7.5,12.5 + parent: 2 + - uid: 33832 components: - type: Transform - parent: 26414 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 33573 + rot: -1.5707963267948966 rad + pos: 73.5,-38.5 + parent: 2 + - uid: 33833 components: - type: Transform - pos: 9.9759245,-29.803133 + rot: -1.5707963267948966 rad + pos: -16.5,-84.5 parent: 2 - - uid: 33574 + - uid: 33834 components: - type: Transform - pos: 10.1477995,-29.756258 + pos: -27.5,-79.5 parent: 2 - - uid: 33575 + - uid: 33835 components: - type: Transform - pos: 10.4290495,-29.771883 + rot: 1.5707963267948966 rad + pos: 27.5,-59.5 parent: 2 - - uid: 33576 + - uid: 33836 components: - type: Transform - pos: 10.1009245,-29.553133 + rot: -1.5707963267948966 rad + pos: 34.5,-43.5 parent: 2 - - uid: 33577 + - uid: 33837 components: - type: Transform - pos: 10.2727995,-29.631258 + pos: 57.5,-30.5 parent: 2 -- proto: TreasureCoinIron - entities: - - uid: 26419 + - uid: 33838 components: - type: Transform - parent: 26414 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26420 + rot: 1.5707963267948966 rad + pos: 80.5,-35.5 + parent: 2 + - uid: 33839 components: - type: Transform - parent: 26414 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26421 + rot: -1.5707963267948966 rad + pos: -25.5,13.5 + parent: 2 + - uid: 33840 components: - type: Transform - parent: 26414 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TreasureCPUSupercharged - entities: - - uid: 33578 + rot: 1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 2 + - uid: 33841 components: - type: Transform - pos: 97.49889,-89.4353 + rot: -1.5707963267948966 rad + pos: -69.5,-40.5 parent: 2 - - uid: 33579 + - uid: 33842 components: - type: Transform - pos: 20.550362,-13.380315 + rot: 1.5707963267948966 rad + pos: -30.5,-22.5 parent: 2 - - type: StaticPrice - price: 2000 -- proto: TreasureDatadiskEncrypted - entities: - - uid: 33580 + - uid: 33843 components: - type: Transform - pos: 98.48633,-91.3893 + pos: -43.5,-82.5 parent: 2 - - uid: 33581 + - uid: 33844 components: - type: Transform - pos: 18.550362,-17.474064 + pos: -55.5,-41.5 parent: 2 -- proto: TreasureFlopDiskDrive - entities: - - uid: 33582 + - uid: 33845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.79883,-88.40492 + pos: 36.5,-30.5 parent: 2 - - uid: 33583 + - uid: 33846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.121155,-45.518253 + pos: -45.5,-17.5 parent: 2 - - uid: 42307 +- proto: WallReinforced + entities: + - uid: 59 components: - type: Transform - pos: -20.255667,-49.695477 + pos: -1.5,-11.5 parent: 2 - - uid: 42308 + - uid: 117 components: - type: Transform - pos: -19.490042,-45.3361 + pos: -1.5,-12.5 parent: 2 -- proto: TreasureHardDiskDrive - entities: - - uid: 33584 + - uid: 122 components: - type: Transform - pos: 102.36133,-88.2643 + pos: 3.5,-9.5 parent: 2 - - uid: 33585 + - uid: 295 components: - type: Transform - pos: -17.76244,-53.22019 + pos: -5.5,-67.5 parent: 2 - - uid: 33586 + - uid: 296 components: - type: Transform - pos: -18.10619,-53.048313 + pos: -2.5,-11.5 parent: 2 - - uid: 33587 + - uid: 302 components: - type: Transform - pos: 18.675362,-15.364689 + pos: 2.5,-12.5 parent: 2 - - uid: 33588 + - uid: 303 components: - type: Transform - pos: 18.487862,-15.536564 + pos: 2.5,-11.5 parent: 2 - - uid: 42309 + - uid: 304 components: - type: Transform - pos: -15.224417,-46.69772 + pos: 4.5,-11.5 parent: 2 -- proto: TreasureSampleTube - entities: - - uid: 33589 + - uid: 305 components: - type: Transform - pos: -45.41842,0.52401495 + pos: 3.5,-11.5 parent: 2 - - uid: 33590 + - uid: 306 components: - type: Transform - pos: -45.57467,0.64901495 + pos: -3.5,-11.5 parent: 2 - - uid: 33591 + - uid: 446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.497007,-32.51542 + pos: 103.5,-22.5 parent: 2 - - uid: 33592 + - uid: 578 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.465757,-33.124794 + pos: -5.5,-105.5 parent: 2 - - uid: 33593 + - uid: 904 components: - type: Transform - pos: -17.473164,-34.44427 + rot: 3.141592653589793 rad + pos: -7.5,-104.5 parent: 2 - - uid: 33594 + - uid: 1201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.512632,-33.656044 + rot: 1.5707963267948966 rad + pos: 18.5,14.5 parent: 2 - - uid: 33595 + - uid: 1358 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.512632,-32.54667 + pos: -1.5,-72.5 parent: 2 - - uid: 33596 + - uid: 1360 components: - type: Transform - pos: -15.487051,-33.35913 + pos: -1.5,-67.5 parent: 2 - - uid: 33597 + - uid: 1825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.512632,-33.57792 + rot: 3.141592653589793 rad + pos: -14.5,-105.5 parent: 2 - - uid: 33598 + - uid: 1995 components: - type: Transform - pos: -15.565756,-34.259087 + rot: 3.141592653589793 rad + pos: -0.5,-102.5 parent: 2 - - uid: 33599 + - uid: 2150 components: - type: Transform - pos: -15.497007,-34.45292 + rot: -1.5707963267948966 rad + pos: -60.5,-56.5 parent: 2 - - uid: 33600 + - uid: 2151 components: - type: Transform - pos: -17.543882,-37.593544 + rot: -1.5707963267948966 rad + pos: -60.5,-57.5 parent: 2 - - uid: 33601 + - uid: 2152 components: - type: Transform - pos: -17.596802,-38.305458 + rot: -1.5707963267948966 rad + pos: -60.5,-58.5 parent: 2 - - uid: 33602 + - uid: 2210 components: - type: Transform - pos: -17.512632,-38.406044 + pos: 83.5,7.5 parent: 2 - - uid: 33603 + - uid: 2382 components: - type: Transform - pos: -17.380571,-39.387344 + rot: 3.141592653589793 rad + pos: -2.5,-98.5 parent: 2 - - uid: 33604 + - uid: 4611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.512632,-39.29667 + rot: 3.141592653589793 rad + pos: -11.5,-107.5 parent: 2 - - uid: 33605 + - uid: 4612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.450132,-37.57792 + rot: 3.141592653589793 rad + pos: -8.5,-107.5 parent: 2 - - uid: 33606 + - uid: 4614 components: - type: Transform - pos: -15.616682,-37.629425 + rot: 3.141592653589793 rad + pos: -7.5,-107.5 parent: 2 - - uid: 33607 + - uid: 4615 components: - type: Transform - pos: -15.505569,-38.646603 + rot: 3.141592653589793 rad + pos: -12.5,-105.5 parent: 2 - - uid: 33608 + - uid: 4616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.434507,-39.281044 + rot: 3.141592653589793 rad + pos: -15.5,-103.5 parent: 2 - - uid: 33609 + - uid: 4617 components: - type: Transform - pos: -19.400131,-36.46515 + rot: 3.141592653589793 rad + pos: -15.5,-104.5 parent: 2 - - uid: 33610 + - uid: 4618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.512632,-37.312294 + rot: 3.141592653589793 rad + pos: -11.5,-105.5 parent: 2 - - uid: 33611 + - uid: 7353 components: - type: Transform - pos: -19.53902,-37.553112 + pos: 2.5,-69.5 parent: 2 - - uid: 33612 + - uid: 7354 components: - type: Transform - pos: -19.488094,-38.252186 + pos: 2.5,-68.5 parent: 2 - - uid: 33613 + - uid: 7355 components: - type: Transform - pos: -19.455687,-38.48367 + pos: 2.5,-67.5 parent: 2 - - uid: 33614 + - uid: 7356 components: - type: Transform - pos: -1.5739746,-38.478504 + rot: 1.5707963267948966 rad + pos: 19.5,-45.5 parent: 2 - - uid: 33615 + - uid: 7801 components: - type: Transform - pos: -1.4958496,-38.759754 + rot: 3.141592653589793 rad + pos: -2.5,-100.5 parent: 2 - - uid: 33616 + - uid: 9945 components: - type: Transform - pos: -11.297859,-39.387405 + pos: -22.5,-39.5 parent: 2 - - uid: 44257 + - uid: 9947 components: - type: Transform - pos: -70.495224,-0.4366305 + pos: -23.5,-41.5 parent: 2 -- proto: Truncheon - entities: - - uid: 33617 + - uid: 9992 components: - type: Transform - pos: 63.33208,-11.491384 + pos: -22.5,-41.5 parent: 2 - - uid: 33618 + - uid: 11668 components: - type: Transform - pos: 63.534504,-11.470428 + pos: 85.5,7.5 parent: 2 - - uid: 33619 + - uid: 12188 components: - type: Transform - pos: 63.628254,-11.548553 + pos: -2.5,-67.5 parent: 2 -- proto: TwoWayLever - entities: - - uid: 30878 + - uid: 12247 components: - type: Transform - pos: 109.5,-20.5 + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12371: - - Left: Open - - Right: Open - - Middle: Close - 34688: - - Left: Open - - Right: Open - - Middle: Close - 15325: - - Left: Open - - Right: Open - - Middle: Close - - uid: 33620 + - uid: 12352 components: - type: Transform - pos: 19.5,-79.5 + rot: 1.5707963267948966 rad + pos: 22.5,-27.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16087: - - Left: Reverse - - Right: Forward - - Middle: Off - 16089: - - Left: Reverse - - Right: Forward - - Middle: Off - 16120: - - Left: Reverse - - Right: Forward - - Middle: Off - 16088: - - Left: Reverse - - Right: Forward - - Middle: Off - 16144: - - Left: Reverse - - Right: Forward - - Middle: Off - 16121: - - Left: Reverse - - Right: Forward - - Middle: Off - 16086: - - Left: Reverse - - Right: Forward - - Middle: Off - 16142: - - Left: Reverse - - Right: Forward - - Middle: Off - 16085: - - Left: Reverse - - Right: Forward - - Middle: Off - 16143: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 33621 + - uid: 12354 components: - type: Transform - pos: 14.5,-96.5 + rot: 1.5707963267948966 rad + pos: 20.5,-27.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16107: - - Left: Forward - - Right: Reverse - - Middle: Off - 16105: - - Left: Forward - - Right: Reverse - - Middle: Off - 16103: - - Left: Forward - - Right: Reverse - - Middle: Off - 16104: - - Left: Forward - - Right: Reverse - - Middle: Off - 16093: - - Left: Forward - - Right: Reverse - - Middle: Off - 16102: - - Left: Forward - - Right: Reverse - - Middle: Off - 16090: - - Left: Forward - - Right: Reverse - - Middle: Off - 16092: - - Left: Forward - - Right: Reverse - - Middle: Off - 16097: - - Left: Forward - - Right: Reverse - - Middle: Off - 16095: - - Left: Forward - - Right: Reverse - - Middle: Off - 16094: - - Left: Forward - - Right: Reverse - - Middle: Off - 16091: - - Left: Forward - - Right: Reverse - - Middle: Off - 16101: - - Left: Forward - - Right: Reverse - - Middle: Off - 16098: - - Left: Forward - - Right: Reverse - - Middle: Off - 16100: - - Left: Forward - - Right: Reverse - - Middle: Off - 16099: - - Left: Forward - - Right: Reverse - - Middle: Off - 16096: - - Left: Forward - - Right: Reverse - - Middle: Off - 16106: - - Left: Forward - - Right: Reverse - - Middle: Off - 16118: - - Left: Forward - - Right: Reverse - - Middle: Off - 16108: - - Left: Forward - - Right: Reverse - - Middle: Off - 16109: - - Left: Forward - - Right: Reverse - - Middle: Off - 16110: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 33622 + - uid: 13088 components: - type: Transform - pos: 10.5,-80.5 + rot: 3.141592653589793 rad + pos: -6.5,-105.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16079: - - Left: Forward - - Right: Reverse - - Middle: Off - 16080: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 33623 + - uid: 14442 components: - type: Transform - pos: 43.5,-69.5 + rot: 1.5707963267948966 rad + pos: -16.5,-107.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16082: - - Left: Forward - - Right: Reverse - - Middle: Off - 16081: - - Left: Forward - - Right: Reverse - - Middle: Off - 16083: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 33624 + - uid: 14443 components: - type: Transform - pos: 12.5,-101.5 + rot: 1.5707963267948966 rad + pos: -15.5,-107.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16116: - - Left: Forward - - Right: Reverse - - Middle: Off - 16117: - - Left: Forward - - Right: Reverse - - Middle: Off - 16115: - - Left: Forward - - Right: Reverse - - Middle: Off - 16111: - - Left: Forward - - Right: Reverse - - Middle: Off - 16112: - - Left: Forward - - Right: Reverse - - Middle: Off - 16114: - - Left: Forward - - Right: Reverse - - Middle: Off - 16113: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 33625 + - uid: 14444 components: - type: Transform - pos: 18.5,-80.5 + rot: 1.5707963267948966 rad + pos: -16.5,-108.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 29819: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 42045 + - uid: 14445 components: - type: Transform - pos: 7.5,1.5 + rot: 1.5707963267948966 rad + pos: -17.5,-108.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 30977: - - Left: Open - - Middle: Close - - Right: Open - 30976: - - Left: Open - - Right: Open - - Middle: Close - - uid: 43367 + - uid: 14693 components: - type: Transform - pos: -13.5,-103.5 + pos: -22.5,-40.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 43146: - - Right: Reverse - - Left: Forward - - Middle: Off - 43145: - - Right: Reverse - - Left: Forward - - Middle: Off - 43147: - - Right: Reverse - - Left: Forward - - Middle: Off - 43148: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 43388 + - uid: 15217 components: - type: Transform - pos: 106.5,-17.5 + rot: 1.5707963267948966 rad + pos: 110.5,-22.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 43759: - - Left: Open - - Right: Open - - Middle: Close - 43758: - - Middle: Close - - Right: Open - - Left: Open -- proto: UnfinishedMachineFrame - entities: - - uid: 11967 + - uid: 15874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,23.5 + pos: 1.5,-67.5 parent: 2 - - uid: 23668 + - uid: 16271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,22.5 + rot: 3.141592653589793 rad + pos: 24.5,17.5 parent: 2 - - uid: 33627 + - uid: 16448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 106.5,-56.5 + rot: 3.141592653589793 rad + pos: -15.5,-105.5 parent: 2 - - uid: 33628 + - uid: 16451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,-70.5 + pos: -3.5,-67.5 parent: 2 - - uid: 33629 + - uid: 16495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 92.5,-68.5 + pos: -0.5,-67.5 parent: 2 - - uid: 33630 + - uid: 16889 components: - type: Transform - pos: 104.5,-69.5 + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 parent: 2 - - uid: 33631 + - uid: 16901 components: - type: Transform - pos: -18.5,-48.5 + rot: 3.141592653589793 rad + pos: 91.5,-0.5 parent: 2 -- proto: UniformPrinter - entities: - - uid: 33632 + - uid: 17195 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,8.5 + pos: 91.5,-1.5 parent: 2 -- proto: UniformScrubsColorBlue - entities: - - uid: 15793 + - uid: 17196 components: - - type: MetaData - name: анестезиологическая роба - type: Transform - parent: 13131 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: UniformScrubsColorGreen - entities: - - uid: 15805 + rot: 3.141592653589793 rad + pos: 91.5,-2.5 + parent: 2 + - uid: 18551 components: - - type: MetaData - name: хирургическая роба - type: Transform - parent: 13131 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 33633 + rot: 3.141592653589793 rad + pos: 91.5,0.5 + parent: 2 + - uid: 19040 components: - type: Transform - pos: -76.366,-7.92319 + pos: -4.5,-67.5 parent: 2 - - uid: 33634 + - uid: 19070 components: - type: Transform - pos: -76.50662,-8.032565 + rot: 1.5707963267948966 rad + pos: -1.5,-70.5 parent: 2 -- proto: UniformScrubsColorPurple - entities: - - uid: 15792 + - uid: 19219 components: - - type: MetaData - name: реаниматологическая роба - type: Transform - parent: 13131 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: UniformShortsRed - entities: - - uid: 33635 + rot: 1.5707963267948966 rad + pos: 19.5,-35.5 + parent: 2 + - uid: 19224 components: - type: Transform - pos: 79.493,-3.7236357 + rot: 1.5707963267948966 rad + pos: 19.5,-36.5 parent: 2 - - uid: 33636 + - uid: 19229 components: - type: Transform - pos: 82.64818,-6.5517607 + rot: 1.5707963267948966 rad + pos: 23.5,-29.5 parent: 2 - - uid: 33637 + - uid: 19230 components: - type: Transform - pos: -34.060715,-101.76542 + rot: 1.5707963267948966 rad + pos: 19.5,-29.5 parent: 2 -- proto: UniformShortsRedWithTop - entities: - - uid: 33638 + - uid: 19231 components: - type: Transform - pos: 79.71175,-3.4736357 + rot: 1.5707963267948966 rad + pos: 19.5,-30.5 parent: 2 - - uid: 33639 + - uid: 19232 components: - type: Transform - pos: 82.4305,-6.3486357 + pos: -17.5,-43.5 parent: 2 - - uid: 33640 + - uid: 19728 components: - type: Transform - pos: -33.74704,-107.28026 + rot: 1.5707963267948966 rad + pos: 19.5,-34.5 parent: 2 - - uid: 33641 + - uid: 19741 components: - type: Transform - pos: -33.851795,-107.350006 + rot: 1.5707963267948966 rad + pos: 20.5,-29.5 parent: 2 - - uid: 33642 + - uid: 19746 components: - type: Transform - pos: -31.54509,-104.33027 + pos: -21.5,-48.5 parent: 2 -- proto: UnstableMutagenChemistryBottle - entities: - - uid: 33643 + - uid: 19747 components: - type: Transform - pos: 36.446823,22.992214 + pos: -24.5,-45.5 parent: 2 -- proto: UprightPianoInstrument - entities: - - uid: 33644 + - uid: 19750 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-114.5 + pos: -23.5,-45.5 parent: 2 -- proto: UraniumOre1 - entities: - - uid: 33645 + - uid: 19766 components: - type: Transform - pos: -15.589727,-60.822693 + pos: -22.5,-46.5 parent: 2 - - uid: 33646 + - uid: 19814 components: - type: Transform - pos: -12.355352,-60.588318 + rot: 3.141592653589793 rad + pos: -24.5,-41.5 parent: 2 - - uid: 33647 + - uid: 19822 components: - type: Transform - pos: -12.495977,-60.150818 + pos: -21.5,-35.5 parent: 2 - - uid: 33648 + - uid: 19877 components: - type: Transform - pos: -13.386602,-59.853943 + pos: -19.5,-35.5 parent: 2 - - uid: 33649 + - uid: 19931 components: - type: Transform - pos: -15.636602,-59.197693 + rot: 1.5707963267948966 rad + pos: -3.5,-70.5 parent: 2 - - uid: 33650 + - uid: 19986 components: - type: Transform - pos: -11.699102,-62.510193 + rot: 1.5707963267948966 rad + pos: -2.5,-70.5 parent: 2 -- proto: UraniumReinforcedWindowDirectional - entities: - - uid: 33651 + - uid: 19989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,18.5 + rot: 1.5707963267948966 rad + pos: -4.5,-70.5 parent: 2 - - uid: 33652 + - uid: 19992 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,18.5 + pos: -22.5,-38.5 parent: 2 - - uid: 33653 + - uid: 19994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,22.5 + rot: 1.5707963267948966 rad + pos: -22.5,-37.5 parent: 2 - - uid: 33654 + - uid: 20008 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,22.5 + pos: -1.5,-71.5 parent: 2 - - uid: 33655 + - uid: 20026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,22.5 + pos: 84.5,7.5 parent: 2 - - uid: 33656 + - uid: 20362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,22.5 + pos: -18.5,-46.5 parent: 2 - - uid: 33657 + - uid: 21719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,18.5 + rot: 3.141592653589793 rad + pos: -10.5,-107.5 parent: 2 - - uid: 33658 + - uid: 21720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,18.5 + rot: 3.141592653589793 rad + pos: -7.5,-106.5 parent: 2 - - uid: 33659 + - uid: 21721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,-88.5 + rot: 3.141592653589793 rad + pos: -13.5,-105.5 parent: 2 - - uid: 33660 + - uid: 22519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,-89.5 + rot: 3.141592653589793 rad + pos: -10.5,-104.5 parent: 2 - - uid: 33661 + - uid: 22523 components: - type: Transform rot: 3.141592653589793 rad - pos: 97.5,-90.5 + pos: -11.5,-106.5 parent: 2 - - uid: 33662 + - uid: 22525 components: - type: Transform rot: 3.141592653589793 rad - pos: 99.5,-90.5 + pos: -11.5,-104.5 parent: 2 - - uid: 33663 + - uid: 23156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-88.5 + pos: 78.5,7.5 parent: 2 - - uid: 33664 + - uid: 23264 components: - type: Transform - pos: 99.5,-87.5 + pos: -19.5,-37.5 parent: 2 - - uid: 33665 + - uid: 23270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-89.5 + pos: -18.5,-45.5 parent: 2 - - uid: 33666 + - uid: 23272 components: - type: Transform - pos: 98.5,-87.5 + pos: -21.5,-36.5 parent: 2 - - uid: 33667 + - uid: 23273 components: - type: Transform - pos: 97.5,-87.5 + pos: -18.5,-38.5 parent: 2 -- proto: UraniumWindoorSecureEngineeringLocked - entities: - - uid: 33668 + - uid: 23275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-48.5 + pos: -22.5,-45.5 parent: 2 - - uid: 33669 + - uid: 23277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-47.5 + pos: -19.5,-48.5 parent: 2 -- proto: UraniumWindow - entities: - - uid: 33670 + - uid: 23282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-70.5 + rot: 1.5707963267948966 rad + pos: 19.5,-44.5 parent: 2 - - uid: 33671 + - uid: 23374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-70.5 + rot: 1.5707963267948966 rad + pos: 22.5,-46.5 parent: 2 -- proto: Urn - entities: - - uid: 33672 + - uid: 23417 components: - type: Transform - pos: 8.471964,-14.445511 + rot: 1.5707963267948966 rad + pos: 22.5,-29.5 parent: 2 - - type: Storage - storedItems: - 15540: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 15540 -- proto: Vaccinator - entities: - - uid: 33674 + - uid: 23418 components: - type: Transform - pos: -55.5,-1.5 + rot: 1.5707963267948966 rad + pos: 22.5,-45.5 parent: 2 - - uid: 33675 + - uid: 23419 components: - type: Transform - pos: -1.5,-40.5 + rot: 1.5707963267948966 rad + pos: 18.5,-43.5 parent: 2 -- proto: VariantCubeBox - entities: - - uid: 33676 + - uid: 23427 components: - type: Transform - pos: -52.484634,0.68885875 + rot: 1.5707963267948966 rad + pos: 20.5,-47.5 parent: 2 - - uid: 33677 + - uid: 23436 components: - type: Transform - pos: -46.802418,-6.2182565 + rot: 1.5707963267948966 rad + pos: 22.5,-47.5 parent: 2 -- proto: VendingBarDrobe - entities: - - uid: 33678 + - uid: 23495 components: - type: Transform - pos: 22.5,6.5 + pos: -18.5,-37.5 parent: 2 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 33679 + - uid: 23504 components: - type: Transform - pos: 40.5,-46.5 + pos: -17.5,-38.5 parent: 2 -- proto: VendingMachineBooze - entities: - - uid: 33680 + - uid: 23547 components: - type: Transform - pos: -11.5,13.5 + rot: 1.5707963267948966 rad + pos: 22.5,-28.5 parent: 2 - - uid: 33681 + - uid: 23548 components: - type: Transform - pos: 24.5,0.5 + rot: 1.5707963267948966 rad + pos: 20.5,-45.5 parent: 2 - - uid: 43966 + - uid: 23549 components: - type: Transform - pos: -22.5,-100.5 + rot: 1.5707963267948966 rad + pos: 20.5,-46.5 parent: 2 -- proto: VendingMachineBoozeSyndicate - entities: - - uid: 33683 + - uid: 23550 components: - type: Transform - pos: -18.5,-21.5 + rot: 1.5707963267948966 rad + pos: 19.5,-43.5 parent: 2 -- proto: VendingMachineCargoDrobe - entities: - - uid: 33684 + - uid: 23552 components: - type: Transform - pos: 5.5,-96.5 + rot: 1.5707963267948966 rad + pos: 19.5,-38.5 parent: 2 - - uid: 33685 + - uid: 23553 components: - type: Transform - pos: 5.5,-97.5 + rot: 1.5707963267948966 rad + pos: 19.5,-37.5 parent: 2 -- proto: VendingMachineCart - entities: - - uid: 33686 + - uid: 23554 components: - type: Transform - pos: -2.5,11.5 + rot: 1.5707963267948966 rad + pos: 23.5,-45.5 parent: 2 -- proto: VendingMachineChapel - entities: - - uid: 33687 + - uid: 23555 components: - type: Transform - pos: 37.5,-69.5 + rot: 1.5707963267948966 rad + pos: 20.5,-28.5 parent: 2 -- proto: VendingMachineChefDrobe - entities: - - uid: 641 + - uid: 23575 components: - type: Transform - pos: 28.5,16.5 + rot: 1.5707963267948966 rad + pos: 19.5,-32.5 parent: 2 - - uid: 33689 + - uid: 23576 components: - type: Transform - pos: -57.5,12.5 + pos: -21.5,-37.5 parent: 2 -- proto: VendingMachineChefvend - entities: - - uid: 33690 + - uid: 23577 components: - type: Transform - pos: 89.5,-8.5 + rot: 1.5707963267948966 rad + pos: 19.5,-31.5 parent: 2 - missingComponents: - - AccessReader - - uid: 33691 + - uid: 23578 components: - type: Transform - pos: 23.5,11.5 + rot: 1.5707963267948966 rad + pos: 19.5,-33.5 parent: 2 -- proto: VendingMachineChemDrobe - entities: - - uid: 33692 + - uid: 23580 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 23627 components: - type: Transform - pos: -38.5,-30.5 + pos: -21.5,-46.5 parent: 2 -- proto: VendingMachineChemicals - entities: - - uid: 33693 + - uid: 23630 components: - type: Transform - pos: -34.5,-30.5 + pos: -21.5,-47.5 parent: 2 - - uid: 41433 + - uid: 23631 components: - type: Transform - pos: -5.5,-11.5 - parent: 40828 -- proto: VendingMachineChemicalsSyndicate - entities: - - uid: 33694 + pos: -19.5,-46.5 + parent: 2 + - uid: 23632 components: - type: Transform - pos: -1.5,-41.5 + pos: -19.5,-47.5 parent: 2 -- proto: VendingMachineCigs - entities: - - uid: 33695 + - uid: 23643 components: - type: Transform - pos: 60.5,1.5 + rot: -1.5707963267948966 rad + pos: -18.5,-44.5 parent: 2 - - uid: 33696 + - uid: 23644 components: - type: Transform - pos: 76.5,-8.5 + rot: 1.5707963267948966 rad + pos: -18.5,-43.5 parent: 2 - - uid: 33697 + - uid: 24172 components: - type: Transform - pos: -28.5,-1.5 + rot: -1.5707963267948966 rad + pos: 1.5,-66.5 parent: 2 - - uid: 33698 + - uid: 24176 components: - type: Transform - pos: -70.5,-41.5 + rot: -1.5707963267948966 rad + pos: -0.5,-66.5 parent: 2 - - uid: 33699 + - uid: 24230 components: - type: Transform - pos: 85.5,-38.5 + rot: -1.5707963267948966 rad + pos: -5.5,-71.5 parent: 2 - - uid: 33700 + - uid: 24231 components: - type: Transform - pos: -34.5,-59.5 + rot: -1.5707963267948966 rad + pos: -5.5,-72.5 parent: 2 - - uid: 33701 + - uid: 24232 components: - type: Transform - pos: 24.5,-1.5 + rot: -1.5707963267948966 rad + pos: -5.5,-73.5 parent: 2 - - uid: 33702 + - uid: 24291 components: - type: Transform - pos: -28.5,-53.5 + pos: 86.5,7.5 parent: 2 - - uid: 33703 + - uid: 25192 components: - type: Transform - pos: 30.5,-69.5 + rot: 1.5707963267948966 rad + pos: 4.5,-101.5 parent: 2 - - uid: 33704 + - uid: 25905 components: - type: Transform - pos: -35.5,-1.5 + rot: 1.5707963267948966 rad + pos: -24.5,-108.5 parent: 2 -- proto: VendingMachineClothing - entities: - - uid: 33705 + - uid: 26102 components: - type: Transform - pos: 38.5,-13.5 + pos: 86.5,4.5 parent: 2 - - uid: 33706 + - uid: 26103 components: - type: Transform - pos: 89.5,-24.5 + pos: 86.5,3.5 parent: 2 - - uid: 33707 + - uid: 26327 components: - type: Transform - pos: -35.5,-93.5 + rot: 1.5707963267948966 rad + pos: 4.5,-100.5 parent: 2 - - uid: 33708 + - uid: 26409 components: - type: Transform - pos: -62.5,4.5 + pos: 77.5,7.5 parent: 2 - - uid: 33709 + - uid: 26424 components: - type: Transform - pos: -83.5,3.5 + rot: 1.5707963267948966 rad + pos: -15.5,-106.5 parent: 2 - - uid: 33710 + - uid: 26478 components: - type: Transform - pos: -25.5,-91.5 + pos: 107.5,-17.5 parent: 2 -- proto: VendingMachineCoffee - entities: - - uid: 33711 + - uid: 26703 components: - type: Transform - pos: 42.5,-14.5 + rot: 3.141592653589793 rad + pos: 7.5,-4.5 parent: 2 - - uid: 33712 + - uid: 27940 components: - type: Transform - pos: 4.5,-78.5 + rot: 1.5707963267948966 rad + pos: 38.5,-45.5 parent: 2 - - uid: 33713 + - uid: 27942 components: - type: Transform - pos: 53.5,-54.5 + pos: -3.5,-101.5 parent: 2 - - uid: 33714 + - uid: 28385 components: - type: Transform - pos: -32.5,12.5 + pos: 86.5,5.5 parent: 2 - - uid: 33715 + - uid: 28525 components: - type: Transform - pos: 10.5,11.5 + pos: -0.5,-101.5 parent: 2 - - uid: 33716 + - uid: 28570 components: - type: Transform - pos: -19.5,8.5 + pos: -2.5,-101.5 parent: 2 - - uid: 33717 + - uid: 28664 components: - type: Transform - pos: -28.5,-2.5 + rot: 3.141592653589793 rad + pos: 24.5,21.5 parent: 2 - - uid: 33718 + - uid: 28676 components: - type: Transform - pos: -44.5,-38.5 + rot: 3.141592653589793 rad + pos: 111.5,-18.5 parent: 2 - - uid: 33719 + - uid: 29165 components: - type: Transform - pos: -37.5,-1.5 + rot: 1.5707963267948966 rad + pos: -5.5,-69.5 parent: 2 - - uid: 33720 + - uid: 29168 components: - type: Transform - pos: -39.5,-7.5 + rot: 1.5707963267948966 rad + pos: -5.5,-68.5 parent: 2 - - uid: 33721 + - uid: 30140 components: - type: Transform - pos: -34.5,-25.5 + rot: 3.141592653589793 rad + pos: -8.5,-104.5 parent: 2 - - uid: 33722 + - uid: 30155 components: - type: Transform - pos: -52.5,-3.5 + pos: -4.5,-98.5 parent: 2 - - uid: 33723 + - uid: 30156 components: - type: Transform - pos: 61.5,-35.5 + pos: -4.5,-99.5 parent: 2 - - uid: 33724 + - uid: 30329 components: - type: Transform - pos: 79.5,-26.5 + rot: 1.5707963267948966 rad + pos: 110.5,-18.5 parent: 2 - - uid: 33725 + - uid: 30330 components: - type: Transform - pos: 4.5,-86.5 + pos: 109.5,-17.5 parent: 2 - - uid: 33726 + - uid: 30864 components: - type: Transform - pos: -35.5,-65.5 + rot: 3.141592653589793 rad + pos: 111.5,-22.5 parent: 2 - - uid: 33727 + - uid: 31028 components: - type: Transform - pos: -9.5,-84.5 + rot: 3.141592653589793 rad + pos: -0.5,-104.5 parent: 2 - - uid: 33729 + - uid: 31079 components: - type: Transform - pos: -35.5,-94.5 + rot: 3.141592653589793 rad + pos: 24.5,22.5 parent: 2 - - uid: 33730 + - uid: 31321 components: - type: Transform - pos: -55.5,-25.5 + rot: 3.141592653589793 rad + pos: -7.5,-105.5 parent: 2 - - uid: 33731 + - uid: 31379 components: - type: Transform - pos: -6.5,-0.5 + pos: -4.5,-101.5 parent: 2 - - uid: 33732 + - uid: 31772 components: - type: Transform - pos: -47.5,-50.5 + rot: 3.141592653589793 rad + pos: -0.5,-103.5 parent: 2 - - uid: 33733 + - uid: 31845 components: - type: Transform - pos: -19.5,-70.5 + pos: 86.5,6.5 parent: 2 - - uid: 33734 + - uid: 31965 components: - type: Transform - pos: -42.5,11.5 + pos: 110.5,-17.5 parent: 2 - - uid: 33735 + - uid: 32093 components: - type: Transform - pos: -57.5,-46.5 + rot: 3.141592653589793 rad + pos: -1.5,-105.5 parent: 2 - - uid: 33736 + - uid: 32127 components: - type: Transform - pos: -55.5,-64.5 + rot: 3.141592653589793 rad + pos: -4.5,-105.5 parent: 2 - - uid: 33737 + - uid: 32129 components: - type: Transform - pos: -10.5,20.5 + rot: 3.141592653589793 rad + pos: -3.5,-105.5 parent: 2 -- proto: VendingMachineCondiments - entities: - - uid: 33738 + - uid: 32356 components: - type: Transform rot: 3.141592653589793 rad - pos: 85.5,-10.5 + pos: -4.5,-102.5 parent: 2 - - uid: 33739 + - uid: 32360 components: - type: Transform - pos: 50.5,6.5 + pos: -4.5,-100.5 parent: 2 - - uid: 33740 + - uid: 32369 components: - type: Transform - pos: -11.5,15.5 + rot: 3.141592653589793 rad + pos: -0.5,-105.5 parent: 2 - - uid: 33741 + - uid: 33134 components: - type: Transform - pos: 31.5,5.5 + rot: 3.141592653589793 rad + pos: 24.5,20.5 parent: 2 -- proto: VendingMachineCuraDrobe - entities: - - uid: 33742 + - uid: 33325 components: - type: Transform - pos: -35.5,5.5 + rot: 3.141592653589793 rad + pos: 24.5,19.5 parent: 2 -- proto: VendingMachineDetDrobe - entities: - - uid: 33743 + - uid: 33362 components: - type: Transform - pos: 38.5,-23.5 + pos: 104.5,-17.5 parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 33744 + - uid: 33567 components: - type: Transform - pos: 27.5,14.5 + pos: -69.5,-19.5 parent: 2 -- proto: VendingMachineDonut - entities: - - uid: 33745 + - uid: 33856 components: - type: Transform - pos: 42.5,-10.5 + pos: 37.5,-28.5 parent: 2 - - uid: 33746 + - uid: 33857 components: - type: Transform - pos: -76.5,-35.5 + pos: 59.5,-15.5 parent: 2 - - uid: 33747 + - uid: 33858 components: - type: Transform - pos: -70.5,-47.5 + pos: 55.5,-6.5 parent: 2 -- proto: VendingMachineEngiDrobe - entities: - - uid: 33749 + - uid: 33859 components: - type: Transform - pos: 47.5,-51.5 + rot: 1.5707963267948966 rad + pos: 64.5,-0.5 parent: 2 - - uid: 33750 + - uid: 33860 components: - type: Transform - pos: 48.5,-84.5 + pos: 53.5,12.5 parent: 2 - - uid: 33751 + - uid: 33861 components: - type: Transform - pos: 48.5,-62.5 + pos: 30.5,-37.5 parent: 2 -- proto: VendingMachineEngivend - entities: - - uid: 33752 + - uid: 33862 components: - type: Transform - pos: 47.5,-50.5 + rot: 3.141592653589793 rad + pos: 53.5,-19.5 parent: 2 -- proto: VendingMachineGames - entities: - - uid: 33753 + - uid: 33863 components: - type: Transform - pos: 87.5,-2.5 + rot: -1.5707963267948966 rad + pos: 55.5,14.5 parent: 2 - - uid: 33754 + - uid: 33864 components: - type: Transform - pos: -32.5,11.5 + pos: -1.5,-4.5 parent: 2 -- proto: VendingMachineGeneDrobe - entities: - - uid: 33755 + - uid: 33865 components: - type: Transform - pos: -10.5,-32.5 + pos: -4.5,-9.5 parent: 2 - - uid: 33756 + - uid: 33867 components: - type: Transform - pos: -57.5,-25.5 + rot: 1.5707963267948966 rad + pos: 66.5,-4.5 parent: 2 -- proto: VendingMachineHappyHonk - entities: - - uid: 33757 + - uid: 33868 components: - type: Transform - pos: -48.5,-110.5 + rot: -1.5707963267948966 rad + pos: -0.5,-73.5 parent: 2 - - uid: 33758 + - uid: 33869 components: - type: Transform - pos: 31.5,-7.5 + rot: 1.5707963267948966 rad + pos: 50.5,-22.5 parent: 2 -- proto: VendingMachineHydrobe - entities: - - uid: 30671 + - uid: 33871 components: - type: Transform - pos: 33.5,18.5 + pos: -3.5,-9.5 parent: 2 -- proto: VendingMachineJaniDrobe - entities: - - uid: 31438 + - uid: 33874 components: - type: Transform - pos: 3.5,-5.5 + pos: 26.5,-35.5 parent: 2 -- proto: VendingMachineLawDrobe - entities: - - uid: 33761 + - uid: 33878 components: - type: Transform - pos: -24.5,3.5 + rot: 1.5707963267948966 rad + pos: 113.5,-43.5 parent: 2 -- proto: VendingMachineMagivend - entities: - - uid: 33762 + - uid: 33879 components: - type: Transform - pos: -37.5,-103.5 + pos: 40.5,0.5 parent: 2 -- proto: VendingMachineMedical - entities: - - uid: 32350 + - uid: 33880 components: - type: Transform - pos: 80.5,-10.5 + pos: 48.5,17.5 parent: 2 - - uid: 33763 + - uid: 33881 components: - type: Transform - pos: 66.5,-3.5 + pos: 48.5,-0.5 parent: 2 - - uid: 33764 + - uid: 33882 components: - type: Transform - pos: -52.5,-29.5 + pos: 51.5,8.5 parent: 2 - - uid: 33765 + - uid: 33883 components: - type: Transform - pos: -46.5,-13.5 + pos: 55.5,-8.5 parent: 2 - - uid: 33766 + - uid: 33884 components: - type: Transform - pos: -51.5,-14.5 + pos: 63.5,-20.5 parent: 2 - - uid: 41434 + - uid: 33885 components: - type: Transform - pos: -3.5,-8.5 - parent: 40828 -- proto: VendingMachineMediDrobe - entities: - - uid: 33767 + pos: 36.5,-27.5 + parent: 2 + - uid: 33886 components: - type: Transform - pos: -46.5,-16.5 + pos: -1.5,-2.5 parent: 2 -- proto: VendingMachineNutri - entities: - - uid: 2654 + - uid: 33887 components: - type: Transform - pos: 37.5,15.5 + pos: 45.5,-6.5 parent: 2 -- proto: VendingMachinePwrGame - entities: - - uid: 33769 + - uid: 33888 components: - type: Transform - pos: -59.5,10.5 + pos: 2.5,-1.5 parent: 2 -- proto: VendingMachineRoboDrobe - entities: - - uid: 33770 + - uid: 33891 components: - type: Transform - pos: -40.5,-55.5 + pos: 46.5,-6.5 parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 33771 + - uid: 33892 components: - type: Transform - pos: -40.5,-51.5 + pos: 46.5,-7.5 parent: 2 - - uid: 33772 + - uid: 33900 components: - type: Transform - pos: -20.5,-51.5 + pos: 25.5,-34.5 parent: 2 -- proto: VendingMachineSalvage - entities: - - uid: 19895 + - uid: 33901 components: - type: Transform - pos: -5.5,-93.5 + pos: 53.5,-2.5 parent: 2 -- proto: VendingMachineSciDrobe - entities: - - uid: 33774 + - uid: 33902 components: - type: Transform - pos: -45.5,-73.5 + pos: 38.5,-22.5 parent: 2 - - uid: 33775 + - uid: 33905 components: - type: Transform - pos: -34.5,-65.5 + pos: -1.5,-8.5 parent: 2 -- proto: VendingMachineSec - entities: - - uid: 33776 + - uid: 33906 components: - type: Transform - pos: 58.5,-17.5 + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 parent: 2 - - uid: 33777 + - uid: 33907 components: - type: Transform - pos: 59.5,3.5 + pos: -8.5,-7.5 parent: 2 - - uid: 41435 + - uid: 33908 components: - type: Transform - pos: 2.5,-6.5 - parent: 40828 - - uid: 41899 + pos: -8.5,-9.5 + parent: 2 + - uid: 33909 components: - type: Transform - pos: 4.5,0.5 - parent: 41669 -- proto: VendingMachineSecDrobe - entities: - - uid: 403 + rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 2 + - uid: 33910 components: - type: Transform - pos: -9.5,-80.5 + pos: 36.5,-25.5 parent: 2 - - uid: 33778 + - uid: 33911 components: - type: Transform - pos: 61.5,5.5 + rot: -1.5707963267948966 rad + pos: 59.5,-13.5 parent: 2 - - uid: 33779 + - uid: 33912 components: - type: Transform - pos: -64.5,-36.5 + pos: 64.5,6.5 parent: 2 - - uid: 33781 + - uid: 33913 components: - type: Transform - pos: -46.5,-48.5 + rot: -1.5707963267948966 rad + pos: 44.5,9.5 parent: 2 - - uid: 33782 + - uid: 33914 components: - type: Transform - pos: -46.5,-31.5 + pos: 58.5,5.5 parent: 2 -- proto: VendingMachineSeeds - entities: - - uid: 2687 + - uid: 33917 components: - type: Transform - pos: 38.5,15.5 + pos: -7.5,-9.5 parent: 2 - - uid: 33783 + - uid: 33918 components: - type: Transform - pos: 89.5,-3.5 + pos: -6.5,-9.5 parent: 2 - missingComponents: - - AccessReader -- proto: VendingMachineSovietSoda - entities: - - uid: 33785 + - uid: 33919 components: - type: Transform - pos: 77.5,-4.5 + rot: 3.141592653589793 rad + pos: 71.5,-5.5 parent: 2 - - uid: 33786 + - uid: 33921 components: - type: Transform - pos: -12.5,-92.5 + pos: -5.5,-9.5 parent: 2 - - uid: 33787 + - uid: 33922 components: - type: Transform - pos: 39.5,-0.5 + pos: -8.5,-6.5 parent: 2 -- proto: VendingMachineSustenance - entities: - - uid: 33788 + - uid: 33923 components: - type: Transform - pos: 42.5,8.5 + pos: -8.5,-4.5 parent: 2 - - uid: 33789 + - uid: 33925 components: - type: Transform - pos: 77.5,-5.5 + pos: -8.5,-5.5 parent: 2 -- proto: VendingMachineSyndieDrobe - entities: - - uid: 33790 + - uid: 33926 components: - type: Transform - pos: -35.5,19.5 + pos: 55.5,16.5 parent: 2 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 33791 + - uid: 33927 components: - type: Transform - pos: 56.5,-62.5 + pos: -8.5,-8.5 parent: 2 - - uid: 33792 + - uid: 33930 components: - type: Transform - pos: 45.5,-66.5 + pos: 56.5,16.5 parent: 2 - - uid: 33793 + - uid: 33931 components: - type: Transform - pos: -50.5,-59.5 + rot: 3.141592653589793 rad + pos: 44.5,13.5 parent: 2 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 33794 + - uid: 33932 components: - type: Transform - pos: 61.5,15.5 + pos: 66.5,16.5 parent: 2 - - uid: 33795 + - uid: 33933 components: - type: Transform - pos: 55.5,-22.5 + rot: 3.141592653589793 rad + pos: 10.5,-5.5 parent: 2 - - uid: 33796 + - uid: 33934 components: - type: Transform - pos: -13.5,16.5 + rot: 3.141592653589793 rad + pos: 10.5,-6.5 parent: 2 - - uid: 33797 + - uid: 33936 components: - type: Transform - pos: 47.5,-92.5 + rot: 1.5707963267948966 rad + pos: 66.5,-5.5 parent: 2 - - uid: 33799 + - uid: 33937 components: - type: Transform - pos: 4.5,15.5 + rot: 1.5707963267948966 rad + pos: 61.5,-53.5 parent: 2 - - uid: 33800 + - uid: 33938 components: - type: Transform - pos: -4.5,13.5 + rot: 3.141592653589793 rad + pos: 61.5,-50.5 parent: 2 - - uid: 33801 + - uid: 33939 components: - type: Transform - pos: 49.5,-84.5 + pos: 61.5,12.5 parent: 2 - - uid: 33802 + - uid: 33940 components: - type: Transform - pos: -70.5,-76.5 + pos: 58.5,12.5 parent: 2 - - uid: 33803 + - uid: 33942 components: - type: Transform - pos: 58.5,-80.5 + pos: 65.5,12.5 parent: 2 - - uid: 40788 + - uid: 33944 components: - type: Transform - pos: 2.5,-0.5 - parent: 40666 - - uid: 41436 + pos: 45.5,16.5 + parent: 2 + - uid: 33945 components: - type: Transform - pos: 2.5,-7.5 - parent: 40828 - - uid: 43174 + rot: 3.141592653589793 rad + pos: 40.5,-21.5 + parent: 2 + - uid: 33946 components: - type: Transform - pos: -8.5,-105.5 + pos: 50.5,1.5 parent: 2 -- proto: VendingMachineTheater - entities: - - uid: 33804 + - uid: 33947 components: - type: Transform - pos: 38.5,-11.5 + pos: 45.5,13.5 parent: 2 - - uid: 33805 + - uid: 33948 components: - type: Transform - pos: -51.5,-114.5 + pos: 55.5,1.5 parent: 2 -- proto: VendingMachineVendomat - entities: - - uid: 33806 + - uid: 33949 components: - type: Transform - pos: -85.5,-7.5 + pos: 42.5,-22.5 parent: 2 - - uid: 33807 + - uid: 33950 components: - type: Transform - pos: 66.5,-24.5 + pos: 42.5,-21.5 parent: 2 - - uid: 33808 + - uid: 33951 components: - type: Transform - pos: 50.5,-79.5 + pos: 42.5,-20.5 parent: 2 -- proto: VendingMachineViroDrobe - entities: - - uid: 33809 + - uid: 33952 components: - type: Transform - pos: -55.5,-3.5 + pos: 63.5,6.5 parent: 2 -- proto: VendingMachineWallMedical - entities: - - uid: 33810 + - uid: 33953 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-26.5 + pos: 53.5,0.5 parent: 2 - - uid: 42096 + - uid: 33954 components: - type: Transform - pos: 4.5,-0.5 - parent: 41669 -- proto: VendingMachineWinter - entities: - - uid: 14833 + pos: 53.5,14.5 + parent: 2 + - uid: 33955 components: - type: Transform - pos: -17.5,-86.5 + pos: 49.5,-2.5 parent: 2 - - uid: 33812 + - uid: 33956 components: - type: Transform - pos: -33.5,-98.5 + pos: 58.5,2.5 parent: 2 -- proto: VendingMachineYouTool - entities: - - uid: 29526 + - uid: 33957 components: - type: Transform - pos: 104.5,-22.5 + pos: 60.5,2.5 parent: 2 - - uid: 33813 + - uid: 33958 components: - type: Transform - pos: -4.5,17.5 + pos: 61.5,2.5 parent: 2 - - uid: 33814 + - uid: 33959 components: - type: Transform - pos: 65.5,-24.5 + pos: 55.5,7.5 parent: 2 - - uid: 33815 + - uid: 33960 components: - type: Transform - pos: -30.5,-73.5 + pos: 48.5,5.5 parent: 2 - - uid: 33816 + - uid: 33961 components: - type: Transform - pos: 47.5,-66.5 + pos: 47.5,5.5 parent: 2 -- proto: VestineChemistryVial - entities: - - uid: 33817 + - uid: 33962 components: - type: Transform - pos: -11.238715,-41.190403 + pos: 47.5,2.5 parent: 2 -- proto: WallIce - entities: - - uid: 27996 + - uid: 33963 components: - type: Transform - pos: 28.5,30.5 + pos: 65.5,2.5 parent: 2 - - type: Destructible - thresholds: - - trigger: !type:DamageTrigger - damage: 50 - triggersOnce: False - triggered: False - behaviors: - - !type:SpawnEntitiesBehavior - offset: 0.5 - spawnInContainer: False - transferForensics: False - spawn: - Girder: - max: 1 - min: 1 - - !type:DoActsBehavior - acts: Destruction - - uid: 28814 + - uid: 33964 components: - type: Transform - pos: 31.5,30.5 + rot: 1.5707963267948966 rad + pos: 66.5,5.5 parent: 2 - - type: Destructible - thresholds: - - trigger: !type:DamageTrigger - damage: 50 - triggersOnce: False - triggered: False - behaviors: - - !type:SpawnEntitiesBehavior - offset: 0.5 - spawnInContainer: False - transferForensics: False - spawn: - Girder: - max: 1 - min: 1 - - !type:DoActsBehavior - acts: Destruction - - uid: 33818 + - uid: 33965 components: - - type: MetaData - name: обледеневший каркас - type: Transform - pos: -17.5,-36.5 + pos: 58.5,6.5 parent: 2 - - type: Destructible - thresholds: - - trigger: !type:DamageTrigger - damage: 50 - triggersOnce: False - triggered: False - behaviors: - - !type:SpawnEntitiesBehavior - offset: 0.5 - spawnInContainer: False - transferForensics: False - spawn: - Girder: - max: 1 - min: 1 - - !type:DoActsBehavior - acts: Destruction - - uid: 33819 + - uid: 33966 components: - - type: MetaData - name: обледеневший каркас - type: Transform - pos: -18.5,-36.5 + rot: 3.141592653589793 rad + pos: 49.5,-21.5 parent: 2 - - type: Destructible - thresholds: - - trigger: !type:DamageTrigger - damage: 50 - triggersOnce: False - triggered: False - behaviors: - - !type:SpawnEntitiesBehavior - offset: 0.5 - spawnInContainer: False - transferForensics: False - spawn: - Girder: - max: 1 - min: 1 - - !type:DoActsBehavior - acts: Destruction - - uid: 33820 + - uid: 33967 components: - - type: MetaData - name: обледеневший каркас - type: Transform - pos: -15.5,-35.5 + rot: 3.141592653589793 rad + pos: 47.5,-21.5 parent: 2 - - type: Destructible - thresholds: - - trigger: !type:DamageTrigger - damage: 50 - triggersOnce: False - triggered: False - behaviors: - - !type:SpawnEntitiesBehavior - offset: 0.5 - spawnInContainer: False - transferForensics: False - spawn: - Girder: - max: 1 - min: 1 - - !type:DoActsBehavior - acts: Destruction - - uid: 33821 + - uid: 33968 components: - - type: MetaData - name: обледеневший каркас - type: Transform - pos: -14.5,-35.5 + pos: 50.5,-23.5 parent: 2 - - type: Destructible - thresholds: - - trigger: !type:DamageTrigger - damage: 50 - triggersOnce: False - triggered: False - behaviors: - - !type:SpawnEntitiesBehavior - offset: 0.5 - spawnInContainer: False - transferForensics: False - spawn: - Girder: - max: 1 - min: 1 - - !type:DoActsBehavior - acts: Destruction - - uid: 33822 + - uid: 33969 components: - - type: MetaData - name: обледеневший каркас - type: Transform - pos: -16.5,-34.5 + pos: 36.5,-28.5 parent: 2 - - type: Destructible - thresholds: - - trigger: !type:DamageTrigger - damage: 50 - triggersOnce: False - triggered: False - behaviors: - - !type:SpawnEntitiesBehavior - offset: 0.5 - spawnInContainer: False - transferForensics: False - spawn: - Girder: - max: 1 - min: 1 - - !type:DoActsBehavior - acts: Destruction -- proto: WallInvisible - entities: - - uid: 33823 + - uid: 33970 components: - type: Transform - pos: 43.748642,18.290363 + pos: 60.5,12.5 parent: 2 -- proto: WallmountTelescreen - entities: - - uid: 33824 + - uid: 33971 components: - type: Transform - pos: 40.5,-26.5 + pos: 62.5,12.5 parent: 2 - - uid: 33825 + - uid: 33972 components: - type: Transform - pos: -22.5,3.5 + pos: 58.5,7.5 parent: 2 - - uid: 33826 + - uid: 33973 components: - type: Transform - pos: -0.5,-95.5 + pos: 63.5,12.5 parent: 2 -- proto: WallmountTelescreenFrame - entities: - - uid: 33829 + - uid: 33974 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-50.5 + pos: 55.5,17.5 parent: 2 -- proto: WallmountTelevision - entities: - - uid: 33830 + - uid: 33975 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-44.5 + pos: 52.5,-20.5 parent: 2 - - uid: 33831 + - uid: 33976 components: - type: Transform - pos: 7.5,12.5 + pos: 45.5,-2.5 parent: 2 - - uid: 33832 + - uid: 33977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-38.5 + pos: 42.5,-18.5 parent: 2 - - uid: 33833 + - uid: 33978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-84.5 + pos: 42.5,-17.5 parent: 2 - - uid: 33834 + - uid: 33979 components: - type: Transform - pos: -27.5,-79.5 + pos: 42.5,-19.5 parent: 2 - - uid: 33835 + - uid: 33980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-59.5 + pos: 46.5,-12.5 parent: 2 - - uid: 33836 + - uid: 33981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-43.5 + pos: 47.5,-12.5 parent: 2 - - uid: 33837 + - uid: 33982 components: - type: Transform - pos: 57.5,-30.5 + rot: 1.5707963267948966 rad + pos: 66.5,-6.5 parent: 2 - - uid: 33838 + - uid: 33983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-35.5 + rot: 3.141592653589793 rad + pos: 67.5,-4.5 parent: 2 - - uid: 33839 + - uid: 33984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,13.5 + rot: 3.141592653589793 rad + pos: 67.5,-3.5 parent: 2 - - uid: 33840 + - uid: 33985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-3.5 + rot: 3.141592653589793 rad + pos: 67.5,-2.5 parent: 2 - - uid: 33841 + - uid: 33986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-40.5 + rot: 3.141592653589793 rad + pos: 67.5,-1.5 parent: 2 - - uid: 33842 + - uid: 33987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-22.5 + rot: 3.141592653589793 rad + pos: 67.5,-0.5 parent: 2 - - uid: 33843 + - uid: 33988 components: - type: Transform - pos: -43.5,-82.5 + rot: 3.141592653589793 rad + pos: 67.5,0.5 parent: 2 - - uid: 33844 + - uid: 33989 components: - type: Transform - pos: -55.5,-41.5 + rot: 3.141592653589793 rad + pos: 67.5,1.5 parent: 2 - - uid: 33845 + - uid: 33990 components: - type: Transform - pos: 36.5,-30.5 + rot: 3.141592653589793 rad + pos: 67.5,2.5 parent: 2 - - uid: 33846 + - uid: 33991 components: - type: Transform - pos: -45.5,-17.5 + rot: 3.141592653589793 rad + pos: 66.5,2.5 parent: 2 -- proto: WallmountTelevisionFrame - entities: - - uid: 33847 + - uid: 33992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-14.5 + pos: 55.5,5.5 parent: 2 - - uid: 33848 + - uid: 33993 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-18.5 + pos: 69.5,10.5 parent: 2 -- proto: WallPlastitanium - entities: - - uid: 33849 + - uid: 33994 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-31.5 + pos: 59.5,2.5 parent: 2 - - uid: 33850 + - uid: 33995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-32.5 + pos: 53.5,-12.5 parent: 2 - - uid: 33851 + - uid: 33996 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-33.5 + pos: 49.5,10.5 parent: 2 - - uid: 33852 + - uid: 33997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-33.5 + pos: 57.5,-16.5 parent: 2 - - uid: 33853 + - uid: 33998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-33.5 + pos: 53.5,-16.5 parent: 2 - - uid: 33854 + - uid: 33999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-33.5 + pos: 55.5,-16.5 parent: 2 - - uid: 33855 + - uid: 34000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-33.5 + pos: 45.5,10.5 parent: 2 -- proto: WallReinforced - entities: - - uid: 446 + - uid: 34001 components: - type: Transform - pos: 103.5,-22.5 + pos: 62.5,2.5 parent: 2 - - uid: 578 + - uid: 34002 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-105.5 + pos: 46.5,17.5 parent: 2 - - uid: 904 + - uid: 34003 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-104.5 + pos: 55.5,-7.5 parent: 2 - - uid: 1201 + - uid: 34004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,14.5 + pos: 54.5,1.5 parent: 2 - - uid: 1825 + - uid: 34005 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-105.5 + pos: 53.5,-17.5 parent: 2 - - uid: 1995 + - uid: 34006 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-102.5 + pos: 53.5,-1.5 parent: 2 - - uid: 2150 + - uid: 34007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-56.5 + pos: 55.5,-12.5 parent: 2 - - uid: 2151 + - uid: 34008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-57.5 + pos: 54.5,-12.5 parent: 2 - - uid: 2152 + - uid: 34009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-58.5 + pos: 41.5,0.5 parent: 2 - - uid: 2210 + - uid: 34010 components: - type: Transform - pos: 83.5,7.5 + pos: 39.5,3.5 + parent: 2 + - uid: 34011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-73.5 parent: 2 - - uid: 2382 + - uid: 34012 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-98.5 + pos: -15.5,17.5 parent: 2 - - uid: 4611 + - uid: 34013 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-107.5 + pos: 12.5,23.5 parent: 2 - - uid: 4612 + - uid: 34015 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-107.5 + pos: 2.5,-2.5 parent: 2 - - uid: 4614 + - uid: 34018 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-107.5 + pos: 18.5,17.5 parent: 2 - - uid: 4615 + - uid: 34023 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-105.5 + pos: 15.5,17.5 parent: 2 - - uid: 4616 + - uid: 34024 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-103.5 + pos: 13.5,17.5 parent: 2 - - uid: 4617 + - uid: 34032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-104.5 + pos: 19.5,17.5 parent: 2 - - uid: 4618 + - uid: 34033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-105.5 + pos: 13.5,23.5 parent: 2 - - uid: 7801 + - uid: 34034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-100.5 + pos: 15.5,23.5 parent: 2 - - uid: 11668 + - uid: 34035 components: - type: Transform - pos: 85.5,7.5 + pos: 14.5,23.5 parent: 2 - - uid: 13088 + - uid: 34036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-105.5 + pos: 53.5,13.5 parent: 2 - - uid: 14442 + - uid: 34037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-107.5 + rot: -1.5707963267948966 rad + pos: 66.5,-8.5 parent: 2 - - uid: 14443 + - uid: 34038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-107.5 + pos: 55.5,2.5 parent: 2 - - uid: 14444 + - uid: 34039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-108.5 + pos: 45.5,-0.5 parent: 2 - - uid: 14445 + - uid: 34040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-108.5 + pos: 59.5,-10.5 parent: 2 - - uid: 15217 + - uid: 34041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 110.5,-22.5 + pos: 60.5,-20.5 parent: 2 - - uid: 16271 + - uid: 34042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,17.5 + pos: 61.5,-20.5 parent: 2 - - uid: 16448 + - uid: 34043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-105.5 + pos: 18.5,23.5 parent: 2 - - uid: 16889 + - uid: 34044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-4.5 + pos: 17.5,23.5 parent: 2 - - uid: 16901 + - uid: 34045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-0.5 + pos: 16.5,23.5 parent: 2 - - uid: 17195 + - uid: 34047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-1.5 + pos: 19.5,23.5 parent: 2 - - uid: 17196 + - uid: 34052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-2.5 + pos: 60.5,15.5 parent: 2 - - uid: 18551 + - uid: 34057 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,0.5 + rot: 1.5707963267948966 rad + pos: 64.5,-14.5 parent: 2 - - uid: 19814 + - uid: 34058 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-41.5 + pos: 67.5,-18.5 parent: 2 - - uid: 20026 + - uid: 34059 components: - type: Transform - pos: 84.5,7.5 + pos: 59.5,-27.5 parent: 2 - - uid: 21719 + - uid: 34060 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-107.5 + pos: 59.5,-25.5 parent: 2 - - uid: 21720 + - uid: 34061 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-106.5 + pos: 67.5,-17.5 parent: 2 - - uid: 21721 + - uid: 34062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-105.5 + pos: 62.5,-20.5 parent: 2 - - uid: 22519 + - uid: 34063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-104.5 + rot: 1.5707963267948966 rad + pos: 54.5,-24.5 parent: 2 - - uid: 22523 + - uid: 34065 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-106.5 + pos: -1.5,-7.5 parent: 2 - - uid: 22525 + - uid: 34074 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-104.5 + pos: 14.5,17.5 parent: 2 - - uid: 23156 + - uid: 34076 components: - type: Transform - pos: 78.5,7.5 + pos: 16.5,17.5 parent: 2 - - uid: 24291 + - uid: 34077 components: - type: Transform - pos: 86.5,7.5 + pos: 17.5,17.5 parent: 2 - - uid: 25192 + - uid: 34078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-101.5 + pos: 2.5,-4.5 parent: 2 - - uid: 25905 + - uid: 34079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-108.5 + pos: 2.5,-5.5 parent: 2 - - uid: 26102 + - uid: 34080 components: - type: Transform - pos: 86.5,4.5 + rot: 1.5707963267948966 rad + pos: 133.5,-39.5 parent: 2 - - uid: 26103 + - uid: 34081 components: - type: Transform - pos: 86.5,3.5 + pos: -1.5,-5.5 parent: 2 - - uid: 26327 + - uid: 34082 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-100.5 + pos: 26.5,-30.5 parent: 2 - - uid: 26409 + - uid: 34083 components: - type: Transform - pos: 77.5,7.5 + pos: 18.5,24.5 parent: 2 - - uid: 26424 + - uid: 34084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-106.5 + pos: 16.5,24.5 parent: 2 - - uid: 26478 + - uid: 34085 components: - type: Transform - pos: 107.5,-17.5 + pos: -1.5,-1.5 parent: 2 - - uid: 26703 + - uid: 34090 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-4.5 + pos: 13.5,24.5 parent: 2 - - uid: 27940 + - uid: 34098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-45.5 + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 parent: 2 - - uid: 27942 + - uid: 34099 components: - type: Transform - pos: -3.5,-101.5 + rot: 3.141592653589793 rad + pos: 10.5,-7.5 parent: 2 - - uid: 28385 + - uid: 34102 components: - type: Transform - pos: 86.5,5.5 + rot: -1.5707963267948966 rad + pos: -8.5,-3.5 parent: 2 - - uid: 28525 + - uid: 34103 components: - type: Transform - pos: -0.5,-101.5 + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 parent: 2 - - uid: 28570 + - uid: 34104 components: - type: Transform - pos: -2.5,-101.5 + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 parent: 2 - - uid: 28664 + - uid: 34105 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,21.5 + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 parent: 2 - - uid: 28676 + - uid: 34112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 111.5,-18.5 + pos: 14.5,24.5 parent: 2 - - uid: 30140 + - uid: 34116 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-104.5 + pos: 24.5,-45.5 parent: 2 - - uid: 30155 + - uid: 34117 components: - type: Transform - pos: -4.5,-98.5 + rot: -1.5707963267948966 rad + pos: 30.5,-43.5 parent: 2 - - uid: 30156 + - uid: 34118 components: - type: Transform - pos: -4.5,-99.5 + rot: -1.5707963267948966 rad + pos: 30.5,-44.5 parent: 2 - - uid: 30329 + - uid: 34119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 110.5,-18.5 + rot: -1.5707963267948966 rad + pos: 30.5,-45.5 parent: 2 - - uid: 30330 + - uid: 34120 components: - type: Transform - pos: 109.5,-17.5 + rot: -1.5707963267948966 rad + pos: 30.5,-39.5 parent: 2 - - uid: 30864 + - uid: 34121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 111.5,-22.5 + pos: 30.5,-40.5 parent: 2 - - uid: 31028 + - uid: 34122 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-104.5 + pos: 28.5,-45.5 parent: 2 - - uid: 31079 + - uid: 34126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,22.5 + pos: 59.5,-24.5 parent: 2 - - uid: 31321 + - uid: 34127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-105.5 + pos: 49.5,5.5 parent: 2 - - uid: 31379 + - uid: 34128 components: - type: Transform - pos: -4.5,-101.5 + pos: 66.5,-11.5 parent: 2 - - uid: 31772 + - uid: 34129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-103.5 + pos: 66.5,-13.5 parent: 2 - - uid: 31845 + - uid: 34130 components: - type: Transform - pos: 86.5,6.5 + pos: 66.5,-14.5 parent: 2 - - uid: 31965 + - uid: 34131 components: - type: Transform - pos: 110.5,-17.5 + pos: 66.5,-12.5 parent: 2 - - uid: 32093 + - uid: 34132 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-105.5 + rot: -1.5707963267948966 rad + pos: 68.5,-4.5 parent: 2 - - uid: 32127 + - uid: 34133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-105.5 + rot: 1.5707963267948966 rad + pos: 54.5,-20.5 parent: 2 - - uid: 32129 + - uid: 34134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-105.5 + pos: 63.5,16.5 parent: 2 - - uid: 32356 + - uid: 34135 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-102.5 + pos: 61.5,17.5 parent: 2 - - uid: 32360 + - uid: 34136 components: - type: Transform - pos: -4.5,-100.5 + pos: 64.5,2.5 parent: 2 - - uid: 32369 + - uid: 34137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-105.5 + pos: 55.5,8.5 parent: 2 - - uid: 33134 + - uid: 34138 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,20.5 + rot: 1.5707963267948966 rad + pos: 69.5,7.5 parent: 2 - - uid: 33325 + - uid: 34139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,19.5 + pos: 59.5,6.5 parent: 2 - - uid: 33362 + - uid: 34140 components: - type: Transform - pos: 104.5,-17.5 + pos: 45.5,8.5 parent: 2 - - uid: 33567 + - uid: 34141 components: - type: Transform - pos: -69.5,-19.5 + pos: 41.5,3.5 parent: 2 - - uid: 33856 + - uid: 34142 components: - type: Transform - pos: 37.5,-28.5 + pos: 58.5,11.5 parent: 2 - - uid: 33857 + - uid: 34143 components: - type: Transform - pos: 59.5,-15.5 + rot: 3.141592653589793 rad + pos: 26.5,-45.5 parent: 2 - - uid: 33858 + - uid: 34148 components: - type: Transform - pos: 55.5,-6.5 + pos: 48.5,-12.5 parent: 2 - - uid: 33859 + - uid: 34149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-0.5 + pos: 46.5,-16.5 parent: 2 - - uid: 33860 + - uid: 34159 components: - type: Transform - pos: 53.5,12.5 + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 parent: 2 - - uid: 33861 + - uid: 34160 components: - type: Transform - pos: 30.5,-37.5 + rot: 3.141592653589793 rad + pos: -2.5,-7.5 parent: 2 - - uid: 33862 + - uid: 34161 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-19.5 + pos: -3.5,-7.5 parent: 2 - - uid: 33863 + - uid: 34162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,14.5 + rot: 3.141592653589793 rad + pos: -3.5,-5.5 parent: 2 - - uid: 33864 + - uid: 34163 components: - type: Transform - pos: -1.5,-4.5 + rot: 3.141592653589793 rad + pos: -2.5,-5.5 parent: 2 - - uid: 33865 + - uid: 34164 components: - type: Transform - pos: -4.5,-9.5 + rot: 3.141592653589793 rad + pos: -3.5,-4.5 parent: 2 - - uid: 33866 + - uid: 34165 components: - type: Transform - pos: -14.5,-41.5 + rot: 3.141592653589793 rad + pos: -3.5,-8.5 parent: 2 - - uid: 33867 + - uid: 34167 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-4.5 + pos: 72.5,-14.5 parent: 2 - - uid: 33868 + - uid: 34172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-73.5 + pos: -1.5,-9.5 parent: 2 - - uid: 33869 + - uid: 34174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-22.5 + pos: 49.5,0.5 parent: 2 - - uid: 33870 + - uid: 34175 components: - type: Transform - pos: 8.5,-33.5 + rot: -1.5707963267948966 rad + pos: 49.5,-8.5 parent: 2 - - uid: 33871 + - uid: 34176 components: - type: Transform - pos: -3.5,-9.5 + rot: 3.141592653589793 rad + pos: 45.5,17.5 parent: 2 - - uid: 33872 + - uid: 34177 components: - type: Transform - pos: -4.5,-45.5 + pos: 59.5,12.5 parent: 2 - - uid: 33873 + - uid: 34178 components: - type: Transform - pos: -8.5,-36.5 + rot: 3.141592653589793 rad + pos: 2.5,-8.5 parent: 2 - - uid: 33874 + - uid: 34179 components: - type: Transform - pos: 26.5,-35.5 + pos: 61.5,16.5 parent: 2 - - uid: 33875 + - uid: 34180 components: - type: Transform - pos: -1.5,-69.5 + pos: 46.5,5.5 parent: 2 - - uid: 33876 + - uid: 34181 components: - type: Transform - pos: -0.5,-41.5 + pos: 58.5,-25.5 parent: 2 - - uid: 33877 + - uid: 34182 components: - type: Transform - pos: 3.5,-40.5 + pos: 58.5,-21.5 parent: 2 - - uid: 33878 + - uid: 34183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 113.5,-43.5 + pos: 61.5,-6.5 parent: 2 - - uid: 33879 + - uid: 34184 components: - type: Transform - pos: 40.5,0.5 + pos: 65.5,-20.5 parent: 2 - - uid: 33880 + - uid: 34185 components: - type: Transform - pos: 48.5,17.5 + rot: -1.5707963267948966 rad + pos: 42.5,9.5 parent: 2 - - uid: 33881 + - uid: 34186 components: - type: Transform - pos: 48.5,-0.5 + pos: 46.5,-0.5 parent: 2 - - uid: 33882 + - uid: 34187 components: - type: Transform - pos: 51.5,8.5 + pos: 50.5,-2.5 parent: 2 - - uid: 33883 + - uid: 34188 components: - type: Transform - pos: 55.5,-8.5 + rot: 1.5707963267948966 rad + pos: 50.5,-20.5 parent: 2 - - uid: 33884 + - uid: 34189 components: - type: Transform - pos: 63.5,-20.5 + pos: 49.5,6.5 parent: 2 - - uid: 33885 + - uid: 34190 components: - type: Transform - pos: 36.5,-27.5 + pos: 59.5,-14.5 parent: 2 - - uid: 33886 + - uid: 34191 components: - type: Transform - pos: -1.5,-2.5 + pos: 58.5,3.5 parent: 2 - - uid: 33887 + - uid: 34192 components: - type: Transform - pos: 45.5,-6.5 + pos: 46.5,2.5 parent: 2 - - uid: 33888 + - uid: 34193 components: - type: Transform - pos: 2.5,-1.5 + pos: 61.5,-3.5 parent: 2 - - uid: 33889 + - uid: 34194 components: - type: Transform - pos: -10.5,-8.5 + rot: 1.5707963267948966 rad + pos: 64.5,0.5 parent: 2 - - uid: 33890 + - uid: 34195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-23.5 + rot: 1.5707963267948966 rad + pos: 50.5,-21.5 parent: 2 - - uid: 33891 + - uid: 34196 components: - type: Transform - pos: 46.5,-6.5 + rot: 1.5707963267948966 rad + pos: 53.5,-20.5 parent: 2 - - uid: 33892 + - uid: 34198 components: - type: Transform - pos: 46.5,-7.5 + pos: 62.5,-14.5 parent: 2 - - uid: 33893 + - uid: 34199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-42.5 + pos: 49.5,7.5 parent: 2 - - uid: 33894 + - uid: 34200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-37.5 + pos: 60.5,6.5 parent: 2 - - uid: 33895 + - uid: 34201 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-35.5 + pos: 45.5,9.5 parent: 2 - - uid: 33896 + - uid: 34202 components: - type: Transform - pos: -12.5,-41.5 + pos: 45.5,5.5 parent: 2 - - uid: 33897 + - uid: 34203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-36.5 + pos: 60.5,13.5 parent: 2 - - uid: 33898 + - uid: 34204 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-34.5 + pos: 67.5,13.5 parent: 2 - - uid: 33899 + - uid: 34205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-44.5 + pos: 49.5,-1.5 parent: 2 - - uid: 33900 + - uid: 34206 components: - type: Transform - pos: 25.5,-34.5 + rot: 1.5707963267948966 rad + pos: 69.5,11.5 parent: 2 - - uid: 33901 + - uid: 34207 components: - type: Transform - pos: 53.5,-2.5 + rot: 3.141592653589793 rad + pos: 63.5,17.5 parent: 2 - - uid: 33902 + - uid: 34208 components: - type: Transform - pos: 38.5,-22.5 + rot: 1.5707963267948966 rad + pos: 66.5,7.5 parent: 2 - - uid: 33903 + - uid: 34209 components: - type: Transform - pos: -1.5,-37.5 + rot: 1.5707963267948966 rad + pos: 69.5,6.5 parent: 2 - - uid: 33904 + - uid: 34210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-21.5 + pos: 69.5,12.5 parent: 2 - - uid: 33905 + - uid: 34211 components: - type: Transform - pos: -1.5,-8.5 + rot: 1.5707963267948966 rad + pos: 66.5,11.5 parent: 2 - - uid: 33906 + - uid: 34212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-3.5 + pos: 60.5,-14.5 parent: 2 - - uid: 33907 + - uid: 34213 components: - type: Transform - pos: -8.5,-7.5 + rot: 1.5707963267948966 rad + pos: 69.5,8.5 parent: 2 - - uid: 33908 + - uid: 34214 components: - type: Transform - pos: -8.5,-9.5 + pos: -59.5,-26.5 parent: 2 - - uid: 33909 + - uid: 34215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-3.5 + rot: 3.141592653589793 rad + pos: 132.5,-37.5 parent: 2 - - uid: 33910 + - uid: 34219 components: - type: Transform - pos: 36.5,-25.5 + pos: 69.5,15.5 parent: 2 - - uid: 33911 + - uid: 34220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-13.5 + pos: 69.5,13.5 parent: 2 - - uid: 33912 + - uid: 34221 components: - type: Transform - pos: 64.5,6.5 + pos: 50.5,8.5 parent: 2 - - uid: 33913 + - uid: 34222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,9.5 + pos: 60.5,16.5 parent: 2 - - uid: 33914 + - uid: 34223 components: - type: Transform - pos: 58.5,5.5 + pos: 79.5,-10.5 parent: 2 - - uid: 33915 + - uid: 34238 components: - type: Transform - pos: -10.5,-4.5 + pos: 67.5,16.5 parent: 2 - - uid: 33916 + - uid: 34246 components: - type: Transform - pos: -10.5,-3.5 + pos: 2.5,-9.5 parent: 2 - - uid: 33917 + - uid: 34262 components: - type: Transform - pos: -7.5,-9.5 + pos: 51.5,1.5 parent: 2 - - uid: 33918 + - uid: 34267 components: - type: Transform - pos: -6.5,-9.5 + pos: 49.5,2.5 parent: 2 - - uid: 33919 + - uid: 34269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-5.5 + pos: 49.5,4.5 parent: 2 - - uid: 33920 + - uid: 34270 components: - type: Transform - pos: -8.5,-37.5 + pos: 49.5,1.5 parent: 2 - - uid: 33921 + - uid: 34272 components: - type: Transform - pos: -5.5,-9.5 + pos: 49.5,3.5 parent: 2 - - uid: 33922 + - uid: 34273 components: - type: Transform - pos: -8.5,-6.5 + pos: 49.5,9.5 parent: 2 - - uid: 33923 + - uid: 34274 components: - type: Transform - pos: -8.5,-4.5 + pos: 48.5,11.5 parent: 2 - - uid: 33924 + - uid: 34277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 + pos: 49.5,11.5 parent: 2 - - uid: 33925 + - uid: 34279 components: - type: Transform - pos: -8.5,-5.5 + pos: 52.5,-16.5 parent: 2 - - uid: 33926 + - uid: 34280 components: - type: Transform - pos: 55.5,16.5 + pos: 58.5,-16.5 parent: 2 - - uid: 33927 + - uid: 34281 components: - type: Transform - pos: -8.5,-8.5 + pos: 54.5,-16.5 parent: 2 - - uid: 33928 + - uid: 34282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-29.5 + pos: 64.5,12.5 parent: 2 - - uid: 33929 + - uid: 34283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-41.5 + pos: 49.5,-12.5 parent: 2 - - uid: 33930 + - uid: 34284 components: - type: Transform - pos: 56.5,16.5 + pos: 66.5,6.5 parent: 2 - - uid: 33931 + - uid: 34285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,13.5 + pos: 55.5,6.5 parent: 2 - - uid: 33932 + - uid: 34291 components: - type: Transform - pos: 66.5,16.5 + rot: 1.5707963267948966 rad + pos: -19.5,21.5 parent: 2 - - uid: 33933 + - uid: 34299 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-5.5 + rot: 1.5707963267948966 rad + pos: -17.5,21.5 parent: 2 - - uid: 33934 + - uid: 34301 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-6.5 + pos: 25.5,-45.5 parent: 2 - - uid: 33935 + - uid: 34303 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-40.5 + pos: 29.5,-45.5 parent: 2 - - uid: 33936 + - uid: 34305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-5.5 + pos: 63.5,2.5 parent: 2 - - uid: 33937 + - uid: 34306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-53.5 + pos: 59.5,-17.5 parent: 2 - - uid: 33938 + - uid: 34307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-50.5 + rot: 1.5707963267948966 rad + pos: 113.5,-42.5 parent: 2 - - uid: 33939 + - uid: 34308 components: - type: Transform - pos: 61.5,12.5 + pos: 49.5,12.5 parent: 2 - - uid: 33940 + - uid: 34309 components: - type: Transform - pos: 58.5,12.5 + pos: 68.5,12.5 parent: 2 - - uid: 33941 + - uid: 34310 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-42.5 + pos: 42.5,15.5 parent: 2 - - uid: 33942 + - uid: 34311 components: - type: Transform - pos: 65.5,12.5 + pos: 40.5,3.5 parent: 2 - - uid: 33943 + - uid: 34312 components: - type: Transform - pos: 3.5,-38.5 + pos: 62.5,6.5 parent: 2 - - uid: 33944 + - uid: 34313 components: - type: Transform - pos: 45.5,16.5 + pos: 48.5,2.5 parent: 2 - - uid: 33945 + - uid: 34314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-21.5 + pos: 55.5,3.5 parent: 2 - - uid: 33946 + - uid: 34315 components: - type: Transform - pos: 50.5,1.5 + pos: 52.5,1.5 parent: 2 - - uid: 33947 + - uid: 34316 components: - type: Transform - pos: 45.5,13.5 + rot: 1.5707963267948966 rad + pos: 69.5,9.5 parent: 2 - - uid: 33948 + - uid: 34317 components: - type: Transform - pos: 55.5,1.5 + rot: 1.5707963267948966 rad + pos: 54.5,-21.5 parent: 2 - - uid: 33949 + - uid: 34318 components: - type: Transform - pos: 42.5,-22.5 + rot: -1.5707963267948966 rad + pos: 28.5,-39.5 parent: 2 - - uid: 33950 + - uid: 34319 components: - type: Transform - pos: 42.5,-21.5 + pos: 24.5,-40.5 parent: 2 - - uid: 33951 + - uid: 34320 components: - type: Transform - pos: 42.5,-20.5 + pos: 24.5,-39.5 parent: 2 - - uid: 33952 + - uid: 34321 components: - type: Transform - pos: 63.5,6.5 + pos: 24.5,-38.5 parent: 2 - - uid: 33953 + - uid: 34322 components: - type: Transform - pos: 53.5,0.5 + pos: 24.5,-37.5 parent: 2 - - uid: 33954 + - uid: 34323 components: - type: Transform - pos: 53.5,14.5 + pos: 24.5,-36.5 parent: 2 - - uid: 33955 + - uid: 34324 components: - type: Transform - pos: 49.5,-2.5 + pos: 84.5,-67.5 parent: 2 - - uid: 33956 + - uid: 34325 components: - type: Transform - pos: 58.5,2.5 + pos: 24.5,-35.5 parent: 2 - - uid: 33957 + - uid: 34326 components: - type: Transform - pos: 60.5,2.5 + rot: 3.141592653589793 rad + pos: 27.5,-45.5 parent: 2 - - uid: 33958 + - uid: 34327 components: - type: Transform - pos: 61.5,2.5 + rot: -1.5707963267948966 rad + pos: 29.5,-39.5 parent: 2 - - uid: 33959 + - uid: 34328 components: - type: Transform - pos: 55.5,7.5 + rot: -1.5707963267948966 rad + pos: 26.5,-39.5 parent: 2 - - uid: 33960 + - uid: 34329 components: - type: Transform - pos: 48.5,5.5 + pos: 27.5,-34.5 parent: 2 - - uid: 33961 + - uid: 34330 components: - type: Transform - pos: 47.5,5.5 + pos: 28.5,-34.5 parent: 2 - - uid: 33962 + - uid: 34331 components: - type: Transform - pos: 47.5,2.5 + pos: 30.5,-34.5 parent: 2 - - uid: 33963 + - uid: 34332 components: - type: Transform - pos: 65.5,2.5 + pos: 30.5,-35.5 parent: 2 - - uid: 33964 + - uid: 34342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,5.5 + pos: 24.5,-44.5 parent: 2 - - uid: 33965 + - uid: 34343 components: - type: Transform - pos: 58.5,6.5 + pos: 24.5,-43.5 parent: 2 - - uid: 33966 + - uid: 34344 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-21.5 + pos: 24.5,-42.5 parent: 2 - - uid: 33967 + - uid: 34345 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-21.5 + pos: 25.5,-39.5 parent: 2 - - uid: 33968 + - uid: 34346 components: - type: Transform - pos: 50.5,-23.5 + pos: 26.5,-34.5 parent: 2 - - uid: 33969 + - uid: 34348 components: - type: Transform - pos: 36.5,-28.5 + pos: 85.5,-67.5 parent: 2 - - uid: 33970 + - uid: 34352 components: - type: Transform - pos: 60.5,12.5 + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 parent: 2 - - uid: 33971 + - uid: 34353 components: - type: Transform - pos: 62.5,12.5 + pos: 64.5,16.5 parent: 2 - - uid: 33972 + - uid: 34354 components: - type: Transform - pos: 58.5,7.5 + pos: 59.5,-16.5 parent: 2 - - uid: 33973 + - uid: 34355 components: - type: Transform - pos: 63.5,12.5 + pos: 42.5,-16.5 parent: 2 - - uid: 33974 + - uid: 34356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,17.5 + pos: 51.5,-12.5 parent: 2 - - uid: 33975 + - uid: 34357 + components: + - type: Transform + pos: 66.5,12.5 + parent: 2 + - uid: 34358 + components: + - type: Transform + pos: 49.5,8.5 + parent: 2 + - uid: 34359 + components: + - type: Transform + pos: 69.5,16.5 + parent: 2 + - uid: 34360 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-20.5 + pos: 66.5,3.5 parent: 2 - - uid: 33976 + - uid: 34361 components: - type: Transform - pos: 45.5,-2.5 + pos: 50.5,-12.5 parent: 2 - - uid: 33977 + - uid: 34365 components: - type: Transform - pos: 42.5,-18.5 + pos: 69.5,14.5 parent: 2 - - uid: 33978 + - uid: 34373 components: - type: Transform - pos: 42.5,-17.5 + pos: 50.5,-24.5 parent: 2 - - uid: 33979 + - uid: 34376 components: - type: Transform - pos: 42.5,-19.5 + pos: 4.5,-9.5 parent: 2 - - uid: 33980 + - uid: 34378 components: - type: Transform - pos: 46.5,-12.5 + pos: 52.5,-26.5 parent: 2 - - uid: 33981 + - uid: 34379 components: - type: Transform - pos: 47.5,-12.5 + rot: -1.5707963267948966 rad + pos: 110.5,-37.5 parent: 2 - - uid: 33982 + - uid: 34381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-6.5 + pos: 3.5,-8.5 parent: 2 - - uid: 33983 + - uid: 34382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-4.5 + pos: 4.5,-8.5 parent: 2 - - uid: 33984 + - uid: 34383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-3.5 + pos: 4.5,-5.5 parent: 2 - - uid: 33985 + - uid: 34384 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-2.5 + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 parent: 2 - - uid: 33986 + - uid: 34385 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-1.5 + pos: 5.5,-9.5 parent: 2 - - uid: 33987 + - uid: 34386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-0.5 + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 parent: 2 - - uid: 33988 + - uid: 34388 components: - type: Transform rot: 3.141592653589793 rad - pos: 67.5,0.5 + pos: 67.5,15.5 parent: 2 - - uid: 33989 + - uid: 34389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,1.5 + rot: -1.5707963267948966 rad + pos: 55.5,-9.5 parent: 2 - - uid: 33990 + - uid: 34390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,2.5 + rot: -1.5707963267948966 rad + pos: 59.5,-11.5 parent: 2 - - uid: 33991 + - uid: 34391 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - uid: 34392 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,2.5 + pos: -15.5,18.5 parent: 2 - - uid: 33992 + - uid: 34393 components: - type: Transform - pos: 55.5,5.5 + pos: 40.5,-2.5 parent: 2 - - uid: 33993 + - uid: 34394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,10.5 + pos: 56.5,-26.5 parent: 2 - - uid: 33994 + - uid: 34399 components: - type: Transform - pos: 59.5,2.5 + pos: 68.5,6.5 parent: 2 - - uid: 33995 + - uid: 34400 components: - type: Transform - pos: 53.5,-12.5 + pos: 41.5,-2.5 parent: 2 - - uid: 33996 + - uid: 34405 components: - type: Transform - pos: 49.5,10.5 + rot: 3.141592653589793 rad + pos: 67.5,-16.5 parent: 2 - - uid: 33997 + - uid: 34406 components: - type: Transform - pos: 57.5,-16.5 + pos: 54.5,-26.5 parent: 2 - - uid: 33998 + - uid: 34407 components: - type: Transform - pos: 53.5,-16.5 + pos: 54.5,-6.5 parent: 2 - - uid: 33999 + - uid: 34408 components: - type: Transform - pos: 55.5,-16.5 + pos: 59.5,-6.5 parent: 2 - - uid: 34000 + - uid: 34409 components: - type: Transform - pos: 45.5,10.5 + rot: 1.5707963267948966 rad + pos: 65.5,-14.5 parent: 2 - - uid: 34001 + - uid: 34410 components: - type: Transform - pos: 62.5,2.5 + pos: 36.5,-23.5 parent: 2 - - uid: 34002 + - uid: 34411 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,17.5 + pos: 42.5,-24.5 parent: 2 - - uid: 34003 + - uid: 34420 components: - type: Transform - pos: 55.5,-7.5 + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 parent: 2 - - uid: 34004 + - uid: 34427 components: - type: Transform - pos: 54.5,1.5 + pos: -16.5,9.5 parent: 2 - - uid: 34005 + - uid: 34429 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-17.5 + pos: 67.5,-19.5 parent: 2 - - uid: 34006 + - uid: 34433 components: - type: Transform - pos: 53.5,-1.5 + rot: 1.5707963267948966 rad + pos: 50.5,-25.5 parent: 2 - - uid: 34007 + - uid: 34434 components: - type: Transform - pos: 55.5,-12.5 + pos: 59.5,-19.5 parent: 2 - - uid: 34008 + - uid: 34435 components: - type: Transform - pos: 54.5,-12.5 + pos: 49.5,-0.5 parent: 2 - - uid: 34009 + - uid: 34436 components: - type: Transform - pos: 41.5,0.5 + pos: 53.5,-4.5 parent: 2 - - uid: 34010 + - uid: 34437 components: - type: Transform - pos: 39.5,3.5 + pos: 64.5,-20.5 parent: 2 - - uid: 34011 + - uid: 34438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-73.5 + pos: 52.5,-2.5 parent: 2 - - uid: 34012 + - uid: 34439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,17.5 + pos: 37.5,-22.5 parent: 2 - - uid: 34013 + - uid: 34449 components: - type: Transform - pos: 12.5,23.5 + pos: 65.5,16.5 parent: 2 - - uid: 34014 + - uid: 34452 components: - type: Transform - pos: -10.5,-9.5 + pos: 60.5,-6.5 parent: 2 - - uid: 34015 + - uid: 34453 components: - type: Transform - pos: 2.5,-2.5 + pos: 59.5,-26.5 parent: 2 - - uid: 34016 + - uid: 34454 components: - type: Transform - pos: -10.5,-7.5 + pos: 42.5,-25.5 parent: 2 - - uid: 34017 + - uid: 34455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-20.5 + pos: 39.5,0.5 parent: 2 - - uid: 34018 + - uid: 34456 components: - type: Transform - pos: 18.5,17.5 + pos: 38.5,-28.5 parent: 2 - - uid: 34019 + - uid: 34458 components: - type: Transform - pos: -15.5,-41.5 + pos: 53.5,-6.5 parent: 2 - - uid: 34020 + - uid: 34459 components: - type: Transform - pos: -17.5,-41.5 + pos: 36.5,-26.5 parent: 2 - - uid: 34021 + - uid: 34461 components: - type: Transform - pos: 3.5,-36.5 + pos: 39.5,-28.5 parent: 2 - - uid: 34022 + - uid: 34462 components: - type: Transform - pos: 3.5,-37.5 + rot: 1.5707963267948966 rad + pos: 64.5,1.5 parent: 2 - - uid: 34023 + - uid: 34463 components: - type: Transform - pos: 15.5,17.5 + pos: 40.5,-28.5 parent: 2 - - uid: 34024 + - uid: 34464 components: - type: Transform - pos: 13.5,17.5 + pos: 53.5,-5.5 parent: 2 - - uid: 34025 + - uid: 34465 components: - type: Transform - pos: -1.5,-45.5 + rot: 3.141592653589793 rad + pos: 67.5,-20.5 parent: 2 - - uid: 34026 + - uid: 34466 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-55.5 + pos: 47.5,-0.5 parent: 2 - - uid: 34027 + - uid: 34467 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-42.5 + pos: 47.5,-16.5 parent: 2 - - type: AntiAnomalyZone - zoneRadius: 20 - - uid: 34028 + - uid: 34468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-30.5 + rot: -1.5707963267948966 rad + pos: 59.5,16.5 parent: 2 - - uid: 34029 + - uid: 34469 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-28.5 + pos: 59.5,-20.5 parent: 2 - - uid: 34030 + - uid: 34470 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-27.5 + pos: 41.5,-28.5 parent: 2 - - uid: 34031 + - uid: 34471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-38.5 + pos: 65.5,6.5 parent: 2 - - uid: 34032 + - uid: 34472 components: - type: Transform - pos: 19.5,17.5 + pos: 61.5,6.5 parent: 2 - - uid: 34033 + - uid: 34473 components: - type: Transform - pos: 13.5,23.5 + pos: 51.5,-24.5 parent: 2 - - uid: 34034 + - uid: 34474 components: - type: Transform - pos: 15.5,23.5 + pos: 53.5,1.5 parent: 2 - - uid: 34035 + - uid: 34475 components: - type: Transform - pos: 14.5,23.5 + pos: 6.5,-9.5 parent: 2 - - uid: 34036 + - uid: 34476 components: - type: Transform - pos: 53.5,13.5 + pos: 7.5,-9.5 parent: 2 - - uid: 34037 + - uid: 34477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-8.5 + pos: 8.5,-9.5 parent: 2 - - uid: 34038 + - uid: 34478 components: - type: Transform - pos: 55.5,2.5 + pos: 9.5,-9.5 parent: 2 - - uid: 34039 + - uid: 34479 components: - type: Transform - pos: 45.5,-0.5 + pos: 10.5,-9.5 parent: 2 - - uid: 34040 + - uid: 34480 components: - type: Transform - pos: 59.5,-10.5 + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 parent: 2 - - uid: 34041 + - uid: 34481 components: - type: Transform - pos: 60.5,-20.5 + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 parent: 2 - - uid: 34042 + - uid: 34482 components: - type: Transform - pos: 61.5,-20.5 + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 parent: 2 - - uid: 34043 + - uid: 34483 components: - type: Transform - pos: 18.5,23.5 + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 parent: 2 - - uid: 34044 + - uid: 34489 components: - type: Transform - pos: 17.5,23.5 + pos: 67.5,6.5 parent: 2 - - uid: 34045 + - uid: 34490 components: - type: Transform - pos: 16.5,23.5 + rot: 1.5707963267948966 rad + pos: 65.5,-6.5 parent: 2 - - uid: 34046 + - uid: 34491 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-20.5 + pos: 67.5,-21.5 parent: 2 - - uid: 34047 + - uid: 34492 components: - type: Transform - pos: 19.5,23.5 + pos: 42.5,-28.5 parent: 2 - - uid: 34048 + - uid: 34493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-22.5 + pos: 47.5,-6.5 parent: 2 - - uid: 34050 + - uid: 34494 components: - type: Transform - pos: 6.5,-45.5 + pos: 61.5,1.5 parent: 2 - - uid: 34051 + - uid: 34495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-21.5 + rot: 1.5707963267948966 rad + pos: 62.5,-0.5 parent: 2 - - uid: 34052 + - uid: 34496 components: - type: Transform - pos: 60.5,15.5 + rot: 1.5707963267948966 rad + pos: 66.5,-0.5 parent: 2 - - uid: 34053 + - uid: 34497 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-55.5 + pos: 61.5,0.5 parent: 2 - - uid: 34054 + - uid: 34498 components: - type: Transform - pos: -14.5,-45.5 + rot: 1.5707963267948966 rad + pos: 54.5,-23.5 parent: 2 - - uid: 34055 + - uid: 34499 components: - type: Transform - pos: -13.5,-45.5 + rot: 1.5707963267948966 rad + pos: 54.5,-25.5 parent: 2 - - uid: 34056 + - uid: 34500 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-55.5 + rot: 1.5707963267948966 rad + pos: 54.5,-22.5 parent: 2 - - uid: 34057 + - uid: 34501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-14.5 + pos: 55.5,19.5 parent: 2 - - uid: 34058 + - uid: 34502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-18.5 + pos: 55.5,18.5 parent: 2 - - uid: 34059 + - uid: 34503 components: - type: Transform - pos: 59.5,-27.5 + pos: 44.5,-21.5 parent: 2 - - uid: 34060 + - uid: 34504 components: - type: Transform - pos: 59.5,-25.5 + pos: 55.5,-26.5 parent: 2 - - uid: 34061 + - uid: 34505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-17.5 + pos: 53.5,-26.5 parent: 2 - - uid: 34062 + - uid: 34506 components: - type: Transform - pos: 62.5,-20.5 + pos: 57.5,-26.5 parent: 2 - - uid: 34063 + - uid: 34507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-24.5 + pos: 51.5,-26.5 parent: 2 - - uid: 34064 + - uid: 34508 components: - type: Transform - pos: -11.5,-45.5 + pos: 58.5,-20.5 parent: 2 - - uid: 34065 + - uid: 34509 components: - type: Transform - pos: -1.5,-7.5 + pos: 65.5,-10.5 parent: 2 - - uid: 34066 + - uid: 34510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-42.5 + pos: 61.5,-2.5 parent: 2 - - uid: 34067 + - uid: 34511 components: - type: Transform - pos: -8.5,-45.5 + pos: 61.5,-0.5 parent: 2 - - uid: 34068 + - uid: 34512 components: - type: Transform - pos: -10.5,-45.5 + pos: 61.5,-1.5 parent: 2 - - uid: 34069 + - uid: 34513 components: - type: Transform - pos: -9.5,-45.5 + rot: -1.5707963267948966 rad + pos: -60.5,-16.5 parent: 2 - - uid: 34070 + - uid: 34514 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-42.5 + rot: -1.5707963267948966 rad + pos: -60.5,-17.5 parent: 2 - - uid: 34071 + - uid: 34515 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-55.5 + pos: -15.5,20.5 parent: 2 - - uid: 34072 + - uid: 34517 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-42.5 + rot: -1.5707963267948966 rad + pos: 49.5,-6.5 parent: 2 - - uid: 34073 + - uid: 34518 components: - type: Transform - pos: 5.5,-45.5 + pos: 67.5,12.5 parent: 2 - - uid: 34074 + - uid: 34519 components: - type: Transform - pos: 14.5,17.5 + pos: 58.5,-79.5 parent: 2 - - uid: 34075 + - uid: 34523 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-42.5 + pos: 59.5,-83.5 parent: 2 - - uid: 34076 + - uid: 34524 components: - type: Transform - pos: 16.5,17.5 + pos: 46.5,-21.5 parent: 2 - - uid: 34077 + - uid: 34525 components: - type: Transform - pos: 17.5,17.5 + pos: 46.5,-20.5 parent: 2 - - uid: 34078 + - uid: 34526 components: - type: Transform - pos: 2.5,-4.5 + pos: 55.5,-10.5 parent: 2 - - uid: 34079 + - uid: 34527 components: - type: Transform - pos: 2.5,-5.5 + pos: 55.5,-11.5 parent: 2 - - uid: 34080 + - uid: 34528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 133.5,-39.5 + pos: 53.5,-0.5 parent: 2 - - uid: 34081 + - uid: 34529 components: - type: Transform - pos: -1.5,-5.5 + pos: 62.5,-10.5 parent: 2 - - uid: 34082 + - uid: 34530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-30.5 + pos: 46.5,-25.5 parent: 2 - - uid: 34083 + - uid: 34531 components: - type: Transform - pos: 18.5,24.5 + pos: 61.5,-10.5 parent: 2 - - uid: 34084 + - uid: 34532 components: - type: Transform - pos: 16.5,24.5 + pos: 60.5,-10.5 parent: 2 - - uid: 34085 + - uid: 34533 components: - type: Transform - pos: -1.5,-1.5 + pos: 66.5,-10.5 parent: 2 - - uid: 34086 + - uid: 34534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-47.5 + pos: 64.5,-10.5 parent: 2 - - uid: 34087 + - uid: 34535 components: - type: Transform - pos: -10.5,-6.5 + pos: 59.5,-22.5 parent: 2 - - uid: 34088 + - uid: 34536 components: - type: Transform - pos: -10.5,-5.5 + pos: 59.5,-23.5 parent: 2 - - uid: 34089 + - uid: 34537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-47.5 + pos: 44.5,-25.5 parent: 2 - - uid: 34090 + - uid: 34538 components: - type: Transform - pos: 13.5,24.5 + rot: 1.5707963267948966 rad + pos: -16.5,21.5 parent: 2 - - uid: 34091 + - uid: 34539 components: - type: Transform - pos: -9.5,-37.5 + pos: -17.5,8.5 parent: 2 - - uid: 34092 + - uid: 34540 components: - type: Transform - pos: 4.5,-26.5 + pos: 17.5,24.5 parent: 2 - - uid: 34093 + - uid: 34541 components: - type: Transform - pos: 3.5,-30.5 + pos: 15.5,24.5 parent: 2 - - uid: 34094 + - uid: 34542 components: - type: Transform - pos: 3.5,-34.5 + rot: 1.5707963267948966 rad + pos: -20.5,16.5 parent: 2 - - uid: 34095 + - uid: 34543 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-55.5 + pos: 70.5,-10.5 parent: 2 - - uid: 34096 + - uid: 34544 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 + pos: 70.5,-14.5 parent: 2 - - uid: 34097 + - uid: 34545 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-55.5 + pos: 67.5,-10.5 parent: 2 - - uid: 34098 + - uid: 34546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-3.5 + pos: 70.5,-13.5 parent: 2 - - uid: 34099 + - uid: 34547 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-7.5 + pos: 68.5,-10.5 parent: 2 - - uid: 34100 + - uid: 34548 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-55.5 + rot: 1.5707963267948966 rad + pos: 80.5,1.5 parent: 2 - - uid: 34101 + - uid: 34549 components: - type: Transform - pos: 2.5,-69.5 + pos: 50.5,12.5 parent: 2 - - uid: 34102 + - uid: 34550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-3.5 + pos: 55.5,12.5 parent: 2 - - uid: 34103 + - uid: 34551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 + rot: 3.141592653589793 rad + pos: 74.5,-9.5 parent: 2 - - uid: 34104 + - uid: 34552 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-3.5 + pos: 43.5,-2.5 parent: 2 - - uid: 34105 + - uid: 34553 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-3.5 + pos: 49.5,-7.5 parent: 2 - - uid: 34107 + - uid: 34554 components: - type: Transform - pos: 14.5,-26.5 + pos: 63.5,-10.5 parent: 2 - - uid: 34108 + - uid: 34555 components: - type: Transform - pos: 15.5,-26.5 + rot: -1.5707963267948966 rad + pos: 49.5,-10.5 parent: 2 - - uid: 34109 + - uid: 34556 components: - type: Transform - pos: 7.5,-51.5 + pos: 54.5,12.5 parent: 2 - - uid: 34110 + - uid: 34557 components: - type: Transform - pos: 1.5,-47.5 + rot: -1.5707963267948966 rad + pos: 55.5,15.5 parent: 2 - - uid: 34111 + - uid: 34558 components: - type: Transform - pos: 1.5,-48.5 + pos: 54.5,8.5 parent: 2 - - uid: 34112 + - uid: 34559 components: - type: Transform - pos: 14.5,24.5 + pos: 61.5,-4.5 parent: 2 - - uid: 34113 + - uid: 34560 components: - type: Transform - pos: 1.5,-49.5 + pos: 61.5,-5.5 parent: 2 - - uid: 34114 + - uid: 34561 components: - type: Transform - pos: 1.5,-50.5 + pos: -12.5,10.5 parent: 2 - - uid: 34115 + - uid: 34562 components: - type: Transform - pos: 1.5,-51.5 + pos: 52.5,8.5 parent: 2 - - uid: 34116 + - uid: 34563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-45.5 + pos: 53.5,8.5 parent: 2 - - uid: 34117 + - uid: 34564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-43.5 + pos: 53.5,16.5 parent: 2 - - uid: 34118 + - uid: 34565 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-44.5 + pos: 49.5,-11.5 parent: 2 - - uid: 34119 + - uid: 34566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-45.5 + rot: 1.5707963267948966 rad + pos: 53.5,-27.5 parent: 2 - - uid: 34120 + - uid: 34567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-39.5 + pos: -16.5,8.5 parent: 2 - - uid: 34121 + - uid: 34568 components: - type: Transform - pos: 30.5,-40.5 + pos: -13.5,8.5 parent: 2 - - uid: 34122 + - uid: 34569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-45.5 + pos: 39.5,-21.5 parent: 2 - - uid: 34123 + - uid: 34570 components: - type: Transform - pos: 1.5,-52.5 + rot: 3.141592653589793 rad + pos: 41.5,-21.5 parent: 2 - - uid: 34124 + - uid: 34571 components: - type: Transform - pos: 7.5,-50.5 + rot: 3.141592653589793 rad + pos: 71.5,-8.5 parent: 2 - - uid: 34125 + - uid: 34572 components: - type: Transform - pos: -1.5,-52.5 + rot: 3.141592653589793 rad + pos: 72.5,2.5 parent: 2 - - uid: 34126 + - uid: 34573 components: - type: Transform - pos: 59.5,-24.5 + rot: 3.141592653589793 rad + pos: 36.5,-22.5 parent: 2 - - uid: 34127 + - uid: 34574 components: - type: Transform - pos: 49.5,5.5 + pos: 87.5,-65.5 parent: 2 - - uid: 34128 + - uid: 34575 components: - type: Transform - pos: 66.5,-11.5 + pos: 70.5,-12.5 parent: 2 - - uid: 34129 + - uid: 34576 components: - type: Transform - pos: 66.5,-13.5 + rot: 3.141592653589793 rad + pos: 71.5,-10.5 parent: 2 - - uid: 34130 + - uid: 34577 components: - type: Transform - pos: 66.5,-14.5 + rot: 3.141592653589793 rad + pos: 71.5,-9.5 parent: 2 - - uid: 34131 + - uid: 34578 components: - type: Transform - pos: 66.5,-12.5 + rot: 3.141592653589793 rad + pos: 71.5,-4.5 parent: 2 - - uid: 34132 + - uid: 34579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-4.5 + rot: 3.141592653589793 rad + pos: 71.5,-3.5 parent: 2 - - uid: 34133 + - uid: 34580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-20.5 + rot: 3.141592653589793 rad + pos: 73.5,-9.5 parent: 2 - - uid: 34134 + - uid: 34581 components: - type: Transform - pos: 63.5,16.5 + pos: 87.5,-67.5 parent: 2 - - uid: 34135 + - uid: 34582 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,17.5 + pos: 71.5,-6.5 parent: 2 - - uid: 34136 + - uid: 34583 components: - type: Transform - pos: 64.5,2.5 + pos: 39.5,-22.5 parent: 2 - - uid: 34137 + - uid: 34584 components: - type: Transform - pos: 55.5,8.5 + rot: 3.141592653589793 rad + pos: 72.5,0.5 parent: 2 - - uid: 34138 + - uid: 34585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,7.5 + rot: 3.141592653589793 rad + pos: 72.5,-9.5 parent: 2 - - uid: 34139 + - uid: 34586 components: - type: Transform - pos: 59.5,6.5 + rot: 3.141592653589793 rad + pos: 71.5,-1.5 parent: 2 - - uid: 34140 + - uid: 34587 components: - type: Transform - pos: 45.5,8.5 + rot: 3.141592653589793 rad + pos: 71.5,-0.5 parent: 2 - - uid: 34141 + - uid: 34588 components: - type: Transform - pos: 41.5,3.5 + rot: 3.141592653589793 rad + pos: 71.5,0.5 parent: 2 - - uid: 34142 + - uid: 34589 components: - type: Transform - pos: 58.5,11.5 + rot: 3.141592653589793 rad + pos: 72.5,3.5 parent: 2 - - uid: 34143 + - uid: 34590 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-45.5 + pos: 72.5,1.5 parent: 2 - - uid: 34144 + - uid: 34591 components: - type: Transform - pos: 4.5,-14.5 + pos: 87.5,-66.5 parent: 2 - - uid: 34145 + - uid: 34592 components: - type: Transform - pos: 18.5,-34.5 + rot: 3.141592653589793 rad + pos: 72.5,5.5 parent: 2 - - uid: 34146 + - uid: 34593 components: - type: Transform - pos: 1.5,-14.5 + rot: 3.141592653589793 rad + pos: 72.5,6.5 parent: 2 - - uid: 34147 + - uid: 34594 components: - type: Transform - pos: 15.5,-34.5 + rot: 3.141592653589793 rad + pos: 75.5,-9.5 parent: 2 - - uid: 34148 + - uid: 34595 components: - type: Transform - pos: 48.5,-12.5 + pos: 86.5,-67.5 parent: 2 - - uid: 34149 + - uid: 34597 components: - type: Transform - pos: 46.5,-16.5 + rot: 3.141592653589793 rad + pos: 73.5,2.5 parent: 2 - - uid: 34150 + - uid: 34598 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-46.5 + pos: 76.5,2.5 parent: 2 - - uid: 34151 + - uid: 34599 components: - type: Transform - pos: 17.5,-34.5 + rot: 3.141592653589793 rad + pos: 75.5,2.5 parent: 2 - - uid: 34158 + - uid: 34600 components: - type: Transform - pos: 2.5,-68.5 + rot: 3.141592653589793 rad + pos: 72.5,-5.5 parent: 2 - - uid: 34159 + - uid: 34601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-8.5 + rot: 3.141592653589793 rad + pos: 73.5,-5.5 parent: 2 - - uid: 34160 + - uid: 34602 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-7.5 + pos: 74.5,-5.5 parent: 2 - - uid: 34161 + - uid: 34603 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-7.5 + pos: 75.5,-5.5 parent: 2 - - uid: 34162 + - uid: 34604 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-5.5 + pos: 76.5,8.5 parent: 2 - - uid: 34163 + - uid: 34605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-5.5 + rot: 1.5707963267948966 rad + pos: 132.5,-39.5 parent: 2 - - uid: 34164 + - uid: 34606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-4.5 + rot: -1.5707963267948966 rad + pos: 114.5,-37.5 parent: 2 - - uid: 34165 + - uid: 34607 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-8.5 + rot: -1.5707963267948966 rad + pos: 111.5,-37.5 + parent: 2 + - uid: 34608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 113.5,-37.5 parent: 2 - - uid: 34166 + - uid: 34609 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-20.5 + pos: 75.5,8.5 parent: 2 - - uid: 34167 + - uid: 34610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-14.5 + rot: 3.141592653589793 rad + pos: 76.5,3.5 parent: 2 - - uid: 34168 + - uid: 34611 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-20.5 + pos: 70.5,7.5 parent: 2 - - uid: 34169 + - uid: 34612 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-20.5 + pos: 76.5,5.5 parent: 2 - - uid: 34170 + - uid: 34613 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-18.5 + pos: 76.5,6.5 parent: 2 - - uid: 34171 + - uid: 34614 components: - type: Transform - pos: -1.5,-68.5 + rot: 3.141592653589793 rad + pos: 76.5,7.5 parent: 2 - - uid: 34172 + - uid: 34615 components: - type: Transform - pos: -1.5,-9.5 + rot: 3.141592653589793 rad + pos: 73.5,8.5 parent: 2 - - uid: 34173 + - uid: 34616 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-37.5 + pos: 72.5,8.5 parent: 2 - - uid: 34174 + - uid: 34617 components: - type: Transform - pos: 49.5,0.5 + rot: 3.141592653589793 rad + pos: 71.5,7.5 parent: 2 - - uid: 34175 + - uid: 34618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-8.5 + rot: 3.141592653589793 rad + pos: 72.5,7.5 parent: 2 - - uid: 34176 + - uid: 34619 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,17.5 + pos: 76.5,-5.5 parent: 2 - - uid: 34177 + - uid: 34621 components: - type: Transform - pos: 59.5,12.5 + rot: 1.5707963267948966 rad + pos: 74.5,-16.5 parent: 2 - - uid: 34178 + - uid: 34622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-8.5 + pos: 87.5,-64.5 parent: 2 - - uid: 34179 + - uid: 34623 components: - type: Transform - pos: 61.5,16.5 + rot: -1.5707963267948966 rad + pos: 112.5,-37.5 parent: 2 - - uid: 34180 + - uid: 34624 components: - type: Transform - pos: 46.5,5.5 + rot: 3.141592653589793 rad + pos: 81.5,7.5 parent: 2 - - uid: 34181 + - uid: 34625 components: - type: Transform - pos: 58.5,-25.5 + rot: 3.141592653589793 rad + pos: 82.5,7.5 parent: 2 - - uid: 34182 + - uid: 34626 components: - type: Transform - pos: 58.5,-21.5 + rot: 3.141592653589793 rad + pos: 76.5,-9.5 parent: 2 - - uid: 34183 + - uid: 34627 components: - type: Transform - pos: 61.5,-6.5 + rot: 3.141592653589793 rad + pos: 76.5,-1.5 parent: 2 - - uid: 34184 + - uid: 34628 components: - type: Transform - pos: 65.5,-20.5 + rot: 3.141592653589793 rad + pos: 76.5,-4.5 parent: 2 - - uid: 34185 + - uid: 34629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,9.5 + rot: 3.141592653589793 rad + pos: 76.5,-3.5 parent: 2 - - uid: 34186 + - uid: 34630 components: - type: Transform - pos: 46.5,-0.5 + rot: 3.141592653589793 rad + pos: 76.5,-0.5 parent: 2 - - uid: 34187 + - uid: 34631 components: - type: Transform - pos: 50.5,-2.5 + rot: 3.141592653589793 rad + pos: 76.5,1.5 parent: 2 - - uid: 34188 + - uid: 34632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-20.5 + rot: 3.141592653589793 rad + pos: 77.5,2.5 parent: 2 - - uid: 34189 + - uid: 34633 components: - type: Transform - pos: 49.5,6.5 + rot: 3.141592653589793 rad + pos: 78.5,2.5 parent: 2 - - uid: 34190 + - uid: 34634 components: - type: Transform - pos: 59.5,-14.5 + rot: 3.141592653589793 rad + pos: 79.5,2.5 parent: 2 - - uid: 34191 + - uid: 34635 components: - type: Transform - pos: 58.5,3.5 + rot: 3.141592653589793 rad + pos: 80.5,2.5 parent: 2 - - uid: 34192 + - uid: 34636 components: - type: Transform - pos: 46.5,2.5 + rot: 3.141592653589793 rad + pos: 81.5,2.5 parent: 2 - - uid: 34193 + - uid: 34637 components: - type: Transform - pos: 61.5,-3.5 + rot: 3.141592653589793 rad + pos: 82.5,2.5 parent: 2 - - uid: 34194 + - uid: 34642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,0.5 + rot: 3.141592653589793 rad + pos: 73.5,0.5 parent: 2 - - uid: 34195 + - uid: 34643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-21.5 + rot: 3.141592653589793 rad + pos: 74.5,0.5 parent: 2 - - uid: 34196 + - uid: 34644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-20.5 + rot: 3.141592653589793 rad + pos: 75.5,0.5 parent: 2 - - uid: 34198 + - uid: 34645 components: - type: Transform - pos: 62.5,-14.5 + rot: 3.141592653589793 rad + pos: 76.5,0.5 parent: 2 - - uid: 34199 + - uid: 34646 components: - type: Transform - pos: 49.5,7.5 + pos: 51.5,17.5 parent: 2 - - uid: 34200 + - uid: 34647 components: - type: Transform - pos: 60.5,6.5 + pos: 50.5,17.5 parent: 2 - - uid: 34201 + - uid: 34648 components: - type: Transform - pos: 45.5,9.5 + pos: 53.5,17.5 parent: 2 - - uid: 34202 + - uid: 34649 components: - type: Transform - pos: 45.5,5.5 + rot: -1.5707963267948966 rad + pos: 70.5,-4.5 parent: 2 - - uid: 34203 + - uid: 34650 components: - type: Transform - pos: 60.5,13.5 + rot: 1.5707963267948966 rad + pos: 61.5,-21.5 parent: 2 - - uid: 34204 + - uid: 34651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,13.5 + pos: 49.5,17.5 parent: 2 - - uid: 34205 + - uid: 34652 components: - type: Transform - pos: 49.5,-1.5 + pos: 70.5,-11.5 parent: 2 - - uid: 34206 + - uid: 34653 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,11.5 + pos: -20.5,19.5 parent: 2 - - uid: 34207 + - uid: 34654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,17.5 + pos: 53.5,-24.5 parent: 2 - - uid: 34208 + - uid: 34655 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,7.5 + pos: 71.5,-16.5 parent: 2 - - uid: 34209 + - uid: 34656 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,6.5 + pos: 72.5,-16.5 parent: 2 - - uid: 34210 + - uid: 34657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,12.5 + pos: 45.5,15.5 parent: 2 - - uid: 34211 + - uid: 34658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,14.5 + parent: 2 + - uid: 34659 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,11.5 + pos: 73.5,-16.5 parent: 2 - - uid: 34212 + - uid: 34660 components: - type: Transform - pos: 60.5,-14.5 + rot: 1.5707963267948966 rad + pos: 70.5,-16.5 parent: 2 - - uid: 34213 + - uid: 34661 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,8.5 + pos: 71.5,-14.5 parent: 2 - - uid: 34214 + - uid: 34662 components: - type: Transform - pos: -59.5,-26.5 + pos: 68.5,0.5 parent: 2 - - uid: 34215 + - uid: 34663 components: - type: Transform - rot: 3.141592653589793 rad - pos: 132.5,-37.5 + pos: 70.5,0.5 parent: 2 - - uid: 34216 + - uid: 34668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-37.5 + rot: 1.5707963267948966 rad + pos: 80.5,0.5 parent: 2 - - uid: 34217 + - uid: 34669 components: - type: Transform - pos: 18.5,-31.5 + rot: -1.5707963267948966 rad + pos: -28.5,-41.5 parent: 2 - - uid: 34218 + - uid: 34670 components: - type: Transform - pos: 14.5,-34.5 + rot: 1.5707963267948966 rad + pos: 80.5,-0.5 parent: 2 - - uid: 34219 + - uid: 34671 components: - type: Transform - pos: 69.5,15.5 + rot: 1.5707963267948966 rad + pos: 84.5,1.5 parent: 2 - - uid: 34220 + - uid: 34672 components: - type: Transform - pos: 69.5,13.5 + rot: 1.5707963267948966 rad + pos: 84.5,0.5 parent: 2 - - uid: 34221 + - uid: 34673 components: - type: Transform - pos: 50.5,8.5 + rot: 1.5707963267948966 rad + pos: 84.5,-0.5 parent: 2 - - uid: 34222 + - uid: 34674 components: - type: Transform - pos: 60.5,16.5 + rot: 1.5707963267948966 rad + pos: 88.5,1.5 parent: 2 - - uid: 34223 + - uid: 34675 components: - type: Transform - pos: 79.5,-10.5 + rot: 1.5707963267948966 rad + pos: 88.5,0.5 parent: 2 - - uid: 34224 + - uid: 34676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-36.5 + rot: 1.5707963267948966 rad + pos: 88.5,-0.5 parent: 2 - - uid: 34225 + - uid: 34677 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-34.5 + rot: 1.5707963267948966 rad + pos: 88.5,2.5 parent: 2 - - uid: 34226 + - uid: 34678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-33.5 + rot: 1.5707963267948966 rad + pos: 83.5,2.5 parent: 2 - - uid: 34227 + - uid: 34679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-33.5 + rot: 1.5707963267948966 rad + pos: 85.5,2.5 parent: 2 - - uid: 34228 + - uid: 34680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-40.5 + rot: 1.5707963267948966 rad + pos: 86.5,2.5 parent: 2 - - uid: 34229 + - uid: 34681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-39.5 + rot: 1.5707963267948966 rad + pos: 87.5,2.5 parent: 2 - - uid: 34230 + - uid: 34682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-38.5 + rot: 1.5707963267948966 rad + pos: 84.5,2.5 parent: 2 - - uid: 34231 + - uid: 34683 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-37.5 + pos: 89.5,0.5 parent: 2 - - uid: 34232 + - uid: 34684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-36.5 + pos: 90.5,0.5 parent: 2 - - uid: 34233 + - uid: 34686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-35.5 + pos: 90.5,-2.5 parent: 2 - - uid: 34234 + - uid: 34687 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-34.5 + pos: 90.5,-8.5 parent: 2 - - uid: 34235 + - uid: 34689 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-32.5 + pos: 90.5,-11.5 parent: 2 - - uid: 34236 + - uid: 34690 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-31.5 + pos: 90.5,-9.5 parent: 2 - - uid: 34237 + - uid: 34691 components: - type: Transform - pos: 3.5,-49.5 + pos: 90.5,-10.5 parent: 2 - - uid: 34238 + - uid: 34692 components: - type: Transform - pos: 67.5,16.5 + pos: 79.5,-12.5 parent: 2 - - uid: 34239 + - uid: 34693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-30.5 + pos: 79.5,-13.5 parent: 2 - - uid: 34240 + - uid: 34694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-30.5 + pos: 79.5,-11.5 parent: 2 - - uid: 34241 + - uid: 34696 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-30.5 + pos: 79.5,-9.5 parent: 2 - - uid: 34242 + - uid: 34697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-30.5 + pos: 78.5,-9.5 parent: 2 - - uid: 34243 + - uid: 34698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-30.5 + pos: 78.5,-13.5 parent: 2 - - uid: 34244 + - uid: 34699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-30.5 + pos: 76.5,-13.5 parent: 2 - - uid: 34245 + - uid: 34700 components: - type: Transform - pos: 2.5,-45.5 + pos: 75.5,-13.5 parent: 2 - - uid: 34246 + - uid: 34701 components: - type: Transform - pos: 2.5,-9.5 + pos: 74.5,-13.5 parent: 2 - - uid: 34247 + - uid: 34702 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-55.5 + pos: 73.5,-13.5 parent: 2 - - uid: 34248 + - uid: 34703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-55.5 + pos: 77.5,-13.5 parent: 2 - - uid: 34249 + - uid: 34704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-45.5 + pos: 73.5,-14.5 parent: 2 - - uid: 34250 + - uid: 34705 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-55.5 + rot: 1.5707963267948966 rad + pos: 73.5,-10.5 parent: 2 - - uid: 34251 + - uid: 34706 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-55.5 + rot: 1.5707963267948966 rad + pos: 73.5,-12.5 parent: 2 - - uid: 34252 + - uid: 34707 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-46.5 + pos: 57.5,-79.5 parent: 2 - - uid: 34253 + - uid: 34708 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-47.5 + pos: 58.5,-83.5 parent: 2 - - uid: 34254 + - uid: 34709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-48.5 + pos: 59.5,-79.5 parent: 2 - - uid: 34255 + - uid: 34710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-49.5 + pos: 89.5,-11.5 parent: 2 - - uid: 34256 + - uid: 34711 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-50.5 + pos: 88.5,-11.5 parent: 2 - - uid: 34257 + - uid: 34712 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-51.5 + pos: 86.5,-11.5 parent: 2 - - uid: 34258 + - uid: 34713 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-52.5 + pos: 85.5,-11.5 parent: 2 - - uid: 34259 + - uid: 34714 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-53.5 + pos: 84.5,-11.5 parent: 2 - - uid: 34260 + - uid: 34715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-54.5 + pos: 83.5,-11.5 parent: 2 - - uid: 34261 + - uid: 34716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-55.5 + pos: 81.5,-11.5 parent: 2 - - uid: 34262 + - uid: 34717 components: - type: Transform - pos: 51.5,1.5 + pos: -12.5,9.5 parent: 2 - - uid: 34263 + - uid: 34719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-48.5 + pos: 87.5,-11.5 parent: 2 - - uid: 34264 + - uid: 34720 components: - type: Transform - pos: 7.5,-33.5 + pos: 80.5,-11.5 parent: 2 - - uid: 34265 + - uid: 34721 components: - type: Transform - pos: -15.5,-44.5 + rot: 1.5707963267948966 rad + pos: 45.5,2.5 parent: 2 - - uid: 34266 + - uid: 34731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-45.5 + rot: 1.5707963267948966 rad + pos: 131.5,-39.5 parent: 2 - - uid: 34267 + - uid: 34732 components: - type: Transform - pos: 49.5,2.5 + rot: 3.141592653589793 rad + pos: -14.5,20.5 parent: 2 - - uid: 34268 + - uid: 34733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-31.5 + pos: 45.5,14.5 parent: 2 - - uid: 34269 + - uid: 34734 components: - type: Transform - pos: 49.5,4.5 + pos: 57.5,-83.5 parent: 2 - - uid: 34270 + - uid: 34735 components: - type: Transform - pos: 49.5,1.5 + rot: 3.141592653589793 rad + pos: -12.5,20.5 parent: 2 - - uid: 34271 + - uid: 34736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-46.5 + rot: 1.5707963267948966 rad + pos: -20.5,18.5 parent: 2 - - uid: 34272 + - uid: 34745 components: - type: Transform - pos: 49.5,3.5 + pos: 33.5,-105.5 parent: 2 - - uid: 34273 + - uid: 34746 components: - type: Transform - pos: 49.5,9.5 + pos: 33.5,-84.5 parent: 2 - - uid: 34274 + - uid: 34747 components: - type: Transform - pos: 48.5,11.5 + rot: 1.5707963267948966 rad + pos: -38.5,-27.5 parent: 2 - - uid: 34275 + - uid: 34748 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-47.5 + pos: -49.5,-53.5 parent: 2 - - uid: 34276 + - uid: 34749 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-50.5 + pos: 2.5,15.5 parent: 2 - - uid: 34277 + - uid: 34750 components: - type: Transform - pos: 49.5,11.5 + pos: -33.5,-32.5 parent: 2 - - uid: 34278 + - uid: 34751 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-51.5 + pos: -1.5,15.5 parent: 2 - - uid: 34279 + - uid: 34752 components: - type: Transform - pos: 52.5,-16.5 + rot: 1.5707963267948966 rad + pos: 80.5,7.5 parent: 2 - - uid: 34280 + - uid: 34753 components: - type: Transform - pos: 58.5,-16.5 + rot: 3.141592653589793 rad + pos: -47.5,-33.5 parent: 2 - - uid: 34281 + - uid: 34754 components: - type: Transform - pos: 54.5,-16.5 + pos: -71.5,-79.5 parent: 2 - - uid: 34282 + - uid: 34755 components: - type: Transform - pos: 64.5,12.5 + pos: 41.5,8.5 parent: 2 - - uid: 34283 + - uid: 34756 components: - type: Transform - pos: 49.5,-12.5 + pos: 36.5,-80.5 parent: 2 - - uid: 34284 + - uid: 34757 components: - type: Transform - pos: 66.5,6.5 + pos: 102.5,-54.5 parent: 2 - - uid: 34285 + - uid: 34758 components: - type: Transform - pos: 55.5,6.5 + pos: 103.5,-54.5 parent: 2 - - uid: 34286 + - uid: 34759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-52.5 + pos: 93.5,-56.5 parent: 2 - - uid: 34287 + - uid: 34760 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-53.5 + rot: -1.5707963267948966 rad + pos: -25.5,-45.5 parent: 2 - - uid: 34288 + - uid: 34761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-26.5 + pos: -59.5,-77.5 parent: 2 - - uid: 34289 + - uid: 34762 components: - type: Transform - pos: -15.5,-45.5 + rot: 3.141592653589793 rad + pos: 39.5,-6.5 parent: 2 - - uid: 34290 + - uid: 34763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-26.5 + pos: 41.5,7.5 parent: 2 - - uid: 34291 + - uid: 34764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,21.5 + pos: 98.5,-56.5 parent: 2 - - uid: 34292 + - uid: 34765 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-42.5 + pos: -69.5,9.5 parent: 2 - - uid: 34293 + - uid: 34766 components: - type: Transform - pos: 6.5,-33.5 + pos: 110.5,-55.5 parent: 2 - - uid: 34294 + - uid: 34767 components: - type: Transform - pos: 2.5,-14.5 + rot: 3.141592653589793 rad + pos: -74.5,9.5 parent: 2 - - uid: 34295 + - uid: 34768 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-42.5 + pos: -69.5,8.5 parent: 2 - - uid: 34296 + - uid: 34769 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-42.5 + pos: -68.5,13.5 parent: 2 - - uid: 34297 + - uid: 34770 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-16.5 + pos: -65.5,13.5 parent: 2 - - uid: 34298 + - uid: 34771 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-15.5 + pos: -73.5,9.5 parent: 2 - - uid: 34299 + - uid: 34772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,21.5 + rot: 3.141592653589793 rad + pos: -73.5,8.5 parent: 2 - - uid: 34300 + - uid: 34773 components: - type: Transform - pos: 19.5,-31.5 + rot: 3.141592653589793 rad + pos: -72.5,8.5 parent: 2 - - uid: 34301 + - uid: 34774 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-45.5 + pos: -71.5,8.5 parent: 2 - - uid: 34302 + - uid: 34775 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-45.5 + pos: -70.5,8.5 parent: 2 - - uid: 34303 + - uid: 34776 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-45.5 + pos: -74.5,11.5 parent: 2 - - uid: 34304 + - uid: 34777 components: - type: Transform - pos: 4.5,-49.5 + rot: 3.141592653589793 rad + pos: -75.5,11.5 parent: 2 - - uid: 34305 + - uid: 34778 components: - type: Transform - pos: 63.5,2.5 + rot: 3.141592653589793 rad + pos: -75.5,9.5 parent: 2 - - uid: 34306 + - uid: 34779 components: - type: Transform - pos: 59.5,-17.5 + pos: 110.5,-50.5 parent: 2 - - uid: 34307 + - uid: 34780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 113.5,-42.5 + pos: 110.5,-48.5 parent: 2 - - uid: 34308 + - uid: 34781 components: - type: Transform - pos: 49.5,12.5 + pos: 41.5,-81.5 parent: 2 - - uid: 34309 + - uid: 34782 components: - type: Transform - pos: 68.5,12.5 + pos: -73.5,-79.5 parent: 2 - - uid: 34310 + - uid: 34783 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,15.5 + pos: -73.5,-72.5 parent: 2 - - uid: 34311 + - uid: 34784 components: - type: Transform - pos: 40.5,3.5 + pos: -73.5,-74.5 parent: 2 - - uid: 34312 + - uid: 34785 components: - type: Transform - pos: 62.5,6.5 + pos: -45.5,-70.5 parent: 2 - - uid: 34313 + - uid: 34786 components: - type: Transform - pos: 48.5,2.5 + pos: -45.5,-68.5 parent: 2 - - uid: 34314 + - uid: 34787 components: - type: Transform - pos: 55.5,3.5 + pos: -59.5,-75.5 parent: 2 - - uid: 34315 + - uid: 34788 components: - type: Transform - pos: 52.5,1.5 + rot: -1.5707963267948966 rad + pos: -36.5,-124.5 parent: 2 - - uid: 34316 + - uid: 34789 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,9.5 + pos: 68.5,-57.5 parent: 2 - - uid: 34317 + - uid: 34790 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,-21.5 + pos: 68.5,-61.5 parent: 2 - - uid: 34318 + - uid: 34791 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-39.5 + pos: -35.5,-124.5 parent: 2 - - uid: 34319 + - uid: 34792 components: - type: Transform - pos: 24.5,-40.5 + rot: 3.141592653589793 rad + pos: -66.5,13.5 parent: 2 - - uid: 34320 + - uid: 34793 components: - type: Transform - pos: 24.5,-39.5 + rot: 3.141592653589793 rad + pos: -69.5,13.5 parent: 2 - - uid: 34321 + - uid: 34794 components: - type: Transform - pos: 24.5,-38.5 + rot: -1.5707963267948966 rad + pos: -34.5,-124.5 parent: 2 - - uid: 34322 + - uid: 34795 components: - type: Transform - pos: 24.5,-37.5 + rot: 3.141592653589793 rad + pos: -69.5,12.5 parent: 2 - - uid: 34323 + - uid: 34796 components: - type: Transform - pos: 24.5,-36.5 + rot: 3.141592653589793 rad + pos: 79.5,-51.5 parent: 2 - - uid: 34324 + - uid: 34797 components: - type: Transform - pos: 84.5,-67.5 + rot: 3.141592653589793 rad + pos: 80.5,-51.5 parent: 2 - - uid: 34325 + - uid: 34798 components: - type: Transform - pos: 24.5,-35.5 + rot: 3.141592653589793 rad + pos: 73.5,-51.5 parent: 2 - - uid: 34326 + - uid: 34799 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-45.5 + pos: 43.5,-81.5 parent: 2 - - uid: 34327 + - uid: 34800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-39.5 + pos: 110.5,-51.5 parent: 2 - - uid: 34328 + - uid: 34801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-39.5 + pos: -52.5,-73.5 parent: 2 - - uid: 34329 + - uid: 34802 components: - type: Transform - pos: 27.5,-34.5 + pos: -53.5,-72.5 parent: 2 - - uid: 34330 + - uid: 34803 components: - type: Transform - pos: 28.5,-34.5 + pos: -59.5,-74.5 parent: 2 - - uid: 34331 + - uid: 34804 components: - type: Transform - pos: 30.5,-34.5 + pos: -72.5,-75.5 parent: 2 - - uid: 34332 + - uid: 34805 components: - type: Transform - pos: 30.5,-35.5 + pos: -71.5,-75.5 parent: 2 - - uid: 34333 + - uid: 34806 components: - type: Transform - pos: 9.5,-33.5 + rot: 3.141592653589793 rad + pos: 2.5,-71.5 parent: 2 - - uid: 34334 + - uid: 34807 components: - type: Transform - pos: 10.5,-33.5 + rot: 3.141592653589793 rad + pos: 2.5,-72.5 parent: 2 - - uid: 34335 + - uid: 34808 components: - type: Transform - pos: 10.5,-34.5 + rot: 3.141592653589793 rad + pos: 2.5,-73.5 parent: 2 - - uid: 34336 + - uid: 34809 components: - type: Transform - pos: 11.5,-34.5 + pos: -34.5,-27.5 parent: 2 - - uid: 34337 + - uid: 34810 components: - type: Transform - pos: 14.5,-31.5 + pos: -70.5,-75.5 parent: 2 - - uid: 34338 + - uid: 34811 components: - type: Transform - pos: 13.5,-31.5 + pos: -59.5,-70.5 parent: 2 - - uid: 34339 + - uid: 34812 components: - type: Transform - pos: 16.5,-34.5 + rot: -1.5707963267948966 rad + pos: -34.5,-123.5 parent: 2 - - uid: 34340 + - uid: 34813 components: - type: Transform - pos: 19.5,-34.5 + rot: 3.141592653589793 rad + pos: 82.5,-66.5 parent: 2 - - uid: 34341 + - uid: 34814 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-45.5 + pos: 82.5,-56.5 parent: 2 - - uid: 34342 + - uid: 34815 components: - type: Transform - pos: 24.5,-44.5 + rot: 3.141592653589793 rad + pos: 82.5,-52.5 parent: 2 - - uid: 34343 + - uid: 34816 components: - type: Transform - pos: 24.5,-43.5 + pos: 87.5,-57.5 parent: 2 - - uid: 34344 + - uid: 34817 components: - type: Transform - pos: 24.5,-42.5 + pos: 71.5,-67.5 parent: 2 - - uid: 34345 + - uid: 34818 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-39.5 + pos: 82.5,-57.5 parent: 2 - - uid: 34346 + - uid: 34819 components: - type: Transform - pos: 26.5,-34.5 + rot: 3.141592653589793 rad + pos: 68.5,-51.5 parent: 2 - - uid: 34347 + - uid: 34820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-46.5 + rot: 3.141592653589793 rad + pos: 70.5,-51.5 parent: 2 - - uid: 34348 + - uid: 34821 components: - type: Transform - pos: 85.5,-67.5 + pos: 70.5,-67.5 parent: 2 - - uid: 34349 + - uid: 34822 components: - type: Transform - pos: 4.5,-50.5 + rot: 3.141592653589793 rad + pos: 71.5,-51.5 parent: 2 - - uid: 34350 + - uid: 34823 components: - type: Transform - pos: 4.5,-52.5 + rot: 3.141592653589793 rad + pos: 69.5,-51.5 parent: 2 - - uid: 34351 + - uid: 34824 components: - type: Transform - pos: 2.5,-49.5 + pos: 87.5,-58.5 parent: 2 - - uid: 34352 + - uid: 34825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 + pos: 83.5,-56.5 parent: 2 - - uid: 34353 + - uid: 34826 components: - type: Transform - pos: 64.5,16.5 + pos: 87.5,-59.5 parent: 2 - - uid: 34354 + - uid: 34827 components: - type: Transform - pos: 59.5,-16.5 + rot: 3.141592653589793 rad + pos: 82.5,-55.5 parent: 2 - - uid: 34355 + - uid: 34828 components: - type: Transform - pos: 42.5,-16.5 + pos: 87.5,-56.5 parent: 2 - - uid: 34356 + - uid: 34829 components: - type: Transform - pos: 51.5,-12.5 + rot: 3.141592653589793 rad + pos: 82.5,-51.5 parent: 2 - - uid: 34357 + - uid: 34830 components: - type: Transform - pos: 66.5,12.5 + pos: 69.5,-67.5 parent: 2 - - uid: 34358 + - uid: 34831 components: - type: Transform - pos: 49.5,8.5 + rot: 3.141592653589793 rad + pos: 82.5,-54.5 parent: 2 - - uid: 34359 + - uid: 34832 components: - type: Transform - pos: 69.5,16.5 + rot: 3.141592653589793 rad + pos: 82.5,-53.5 parent: 2 - - uid: 34360 + - uid: 34833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,3.5 + rot: 3.141592653589793 rad + pos: -61.5,13.5 parent: 2 - - uid: 34361 + - uid: 34834 components: - type: Transform - pos: 50.5,-12.5 + rot: 3.141592653589793 rad + pos: -57.5,13.5 parent: 2 - - uid: 34362 + - uid: 34835 components: - type: Transform - pos: 7.5,-52.5 + rot: 3.141592653589793 rad + pos: -60.5,13.5 parent: 2 - - uid: 34363 + - uid: 34836 components: - type: Transform - pos: 8.5,-52.5 + rot: 3.141592653589793 rad + pos: -55.5,13.5 parent: 2 - - uid: 34364 + - uid: 34837 components: - type: Transform - pos: 9.5,-52.5 + rot: 3.141592653589793 rad + pos: 81.5,-51.5 parent: 2 - - uid: 34365 + - uid: 34838 components: - type: Transform - pos: 69.5,14.5 + rot: 3.141592653589793 rad + pos: -59.5,13.5 parent: 2 - - uid: 34366 + - uid: 34839 components: - type: Transform - pos: 10.5,-52.5 + pos: 37.5,-81.5 parent: 2 - - uid: 34367 + - uid: 34840 components: - type: Transform - pos: 11.5,-52.5 + rot: 3.141592653589793 rad + pos: -58.5,13.5 parent: 2 - - uid: 34368 + - uid: 34841 components: - type: Transform - pos: 12.5,-52.5 + pos: 87.5,-60.5 parent: 2 - - uid: 34369 + - uid: 34842 components: - type: Transform - pos: 13.5,-52.5 + pos: 87.5,-61.5 parent: 2 - - uid: 34370 + - uid: 34843 components: - type: Transform - pos: 14.5,-52.5 + pos: 86.5,-62.5 parent: 2 - - uid: 34371 + - uid: 34844 components: - type: Transform - pos: 15.5,-52.5 + pos: 85.5,-56.5 parent: 2 - - uid: 34372 + - uid: 34845 components: - type: Transform - pos: 16.5,-52.5 + pos: 84.5,-56.5 parent: 2 - - uid: 34373 + - uid: 34846 components: - type: Transform - pos: 50.5,-24.5 + pos: 84.5,-62.5 parent: 2 - - uid: 34374 + - uid: 34847 components: - type: Transform - pos: 19.5,-52.5 + pos: 68.5,-67.5 parent: 2 - - uid: 34375 + - uid: 34848 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-45.5 - parent: 2 - - uid: 34376 - components: - - type: Transform - pos: 4.5,-9.5 + pos: -39.5,-27.5 parent: 2 - - uid: 34377 + - uid: 34849 components: - type: Transform - pos: 15.5,-48.5 + rot: 3.141592653589793 rad + pos: 82.5,-64.5 parent: 2 - - uid: 34378 + - uid: 34850 components: - type: Transform - pos: 52.5,-26.5 + rot: 3.141592653589793 rad + pos: 82.5,-63.5 parent: 2 - - uid: 34379 + - uid: 34851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 110.5,-37.5 + rot: 3.141592653589793 rad + pos: 68.5,-66.5 parent: 2 - - uid: 34380 + - uid: 34852 components: - type: Transform - pos: 15.5,-47.5 + pos: 85.5,-62.5 parent: 2 - - uid: 34381 + - uid: 34853 components: - type: Transform - pos: 3.5,-8.5 + pos: 83.5,-62.5 parent: 2 - - uid: 34382 + - uid: 34854 components: - type: Transform - pos: 4.5,-8.5 + pos: 87.5,-62.5 parent: 2 - - uid: 34383 + - uid: 34855 components: - type: Transform - pos: 4.5,-5.5 + rot: 3.141592653589793 rad + pos: 72.5,-51.5 parent: 2 - - uid: 34384 + - uid: 34856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-5.5 + pos: 72.5,-67.5 parent: 2 - - uid: 34385 + - uid: 34857 components: - type: Transform - pos: 5.5,-9.5 + pos: 73.5,-67.5 parent: 2 - - uid: 34386 + - uid: 34858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-5.5 + pos: 74.5,-67.5 parent: 2 - - uid: 34387 + - uid: 34859 components: - type: Transform - pos: -1.5,-12.5 + pos: 75.5,-67.5 parent: 2 - - uid: 34388 + - uid: 34860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,15.5 + pos: 79.5,-67.5 parent: 2 - - uid: 34389 + - uid: 34861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-9.5 + pos: 80.5,-67.5 parent: 2 - - uid: 34390 + - uid: 34862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-11.5 + pos: 81.5,-67.5 parent: 2 - - uid: 34391 + - uid: 34863 components: - type: Transform - pos: 45.5,-1.5 + pos: 82.5,-67.5 parent: 2 - - uid: 34392 + - uid: 34864 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,18.5 + pos: 82.5,-62.5 parent: 2 - - uid: 34393 + - uid: 34865 components: - type: Transform - pos: 40.5,-2.5 + rot: 3.141592653589793 rad + pos: 82.5,-61.5 parent: 2 - - uid: 34394 + - uid: 34866 components: - type: Transform - pos: 56.5,-26.5 + rot: 1.5707963267948966 rad + pos: 69.5,-57.5 parent: 2 - - uid: 34395 + - uid: 34867 components: - type: Transform - pos: 5.5,-49.5 + rot: 1.5707963267948966 rad + pos: 69.5,-61.5 parent: 2 - - uid: 34396 + - uid: 34868 components: - type: Transform - pos: 7.5,-45.5 + pos: -56.5,-68.5 parent: 2 - - uid: 34397 + - uid: 34869 components: - type: Transform - pos: -11.5,-31.5 + rot: 3.141592653589793 rad + pos: -69.5,11.5 parent: 2 - - uid: 34398 + - uid: 34870 components: - type: Transform - pos: 16.5,-47.5 + rot: 3.141592653589793 rad + pos: -67.5,13.5 parent: 2 - - uid: 34399 + - uid: 34871 components: - type: Transform - pos: 68.5,6.5 + rot: 3.141592653589793 rad + pos: 12.5,19.5 parent: 2 - - uid: 34400 + - uid: 34872 components: - type: Transform - pos: 41.5,-2.5 + pos: 20.5,22.5 parent: 2 - - uid: 34401 + - uid: 34873 components: - type: Transform - pos: 10.5,-45.5 + pos: 21.5,22.5 parent: 2 - - uid: 34402 + - uid: 34874 components: - type: Transform - pos: 11.5,-45.5 + pos: 20.5,21.5 parent: 2 - - uid: 34403 + - uid: 34875 components: - type: Transform - pos: 12.5,-45.5 + rot: 3.141592653589793 rad + pos: -71.5,12.5 parent: 2 - - uid: 34404 + - uid: 34876 components: - type: Transform - pos: 15.5,-45.5 + rot: 3.141592653589793 rad + pos: -72.5,12.5 parent: 2 - - uid: 34405 + - uid: 34877 components: - type: Transform rot: 3.141592653589793 rad - pos: 67.5,-16.5 + pos: -73.5,11.5 parent: 2 - - uid: 34406 + - uid: 34878 components: - type: Transform - pos: 54.5,-26.5 + rot: 3.141592653589793 rad + pos: -73.5,12.5 parent: 2 - - uid: 34407 + - uid: 34879 components: - type: Transform - pos: 54.5,-6.5 + pos: -80.5,8.5 parent: 2 - - uid: 34408 + - uid: 34880 components: - type: Transform - pos: 59.5,-6.5 + pos: -75.5,8.5 parent: 2 - - uid: 34409 + - uid: 34881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-14.5 + pos: -79.5,8.5 parent: 2 - - uid: 34410 + - uid: 34882 components: - type: Transform - pos: 36.5,-23.5 + pos: -80.5,-53.5 parent: 2 - - uid: 34411 + - uid: 34883 components: - type: Transform - pos: 42.5,-24.5 + pos: -79.5,-53.5 parent: 2 - - uid: 34412 + - uid: 34884 components: - type: Transform - pos: 19.5,-47.5 + pos: 76.5,-67.5 parent: 2 - - uid: 34413 + - uid: 34885 components: - type: Transform - pos: -9.5,-31.5 + pos: 77.5,-67.5 parent: 2 - - uid: 34414 + - uid: 34886 components: - type: Transform - pos: -8.5,-31.5 + pos: 78.5,-67.5 parent: 2 - - uid: 34415 + - uid: 34887 components: - type: Transform - pos: -6.5,-31.5 + pos: -78.5,-53.5 parent: 2 - - uid: 34416 + - uid: 34888 components: - type: Transform - pos: -5.5,-31.5 + rot: -1.5707963267948966 rad + pos: 36.5,-76.5 parent: 2 - - uid: 34417 + - uid: 34889 components: - type: Transform - pos: -3.5,-31.5 + pos: -59.5,-71.5 parent: 2 - - uid: 34418 + - uid: 34890 components: - type: Transform - pos: -2.5,-31.5 + pos: -73.5,-75.5 parent: 2 - - uid: 34419 + - uid: 34891 components: - type: Transform - pos: -2.5,-32.5 + pos: -70.5,-79.5 parent: 2 - - uid: 34420 + - uid: 34892 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 2 - - uid: 34421 - components: - - type: Transform - pos: -9.5,-19.5 - parent: 2 - - uid: 34422 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 2 - - uid: 34423 - components: - - type: Transform - pos: -3.5,-21.5 + pos: 36.5,-77.5 parent: 2 - - uid: 34424 + - uid: 34893 components: - type: Transform - pos: -2.5,-21.5 + pos: 45.5,11.5 parent: 2 - - uid: 34425 + - uid: 34894 components: - type: Transform - pos: -1.5,-21.5 + rot: 1.5707963267948966 rad + pos: -63.5,-75.5 parent: 2 - - uid: 34426 + - uid: 34895 components: - type: Transform - pos: 2.5,-21.5 + pos: 27.5,31.5 parent: 2 - - uid: 34427 + - uid: 34896 components: - type: Transform - pos: -16.5,9.5 + rot: 3.141592653589793 rad + pos: -88.5,-18.5 parent: 2 - - uid: 34428 + - uid: 34897 components: - type: Transform - pos: 3.5,-21.5 + rot: 3.141592653589793 rad + pos: -86.5,-18.5 parent: 2 - - uid: 34429 + - uid: 34898 components: - type: Transform rot: 3.141592653589793 rad - pos: 67.5,-19.5 + pos: -88.5,-22.5 parent: 2 - - uid: 34430 + - uid: 34899 components: - type: Transform - pos: -12.5,-21.5 + pos: -56.5,-70.5 parent: 2 - - uid: 34431 + - uid: 34900 components: - type: Transform - pos: -12.5,-23.5 + rot: 3.141592653589793 rad + pos: -86.5,-22.5 parent: 2 - - uid: 34432 + - uid: 34901 components: - type: Transform - pos: -10.5,-20.5 + rot: 3.141592653589793 rad + pos: -85.5,-22.5 parent: 2 - - uid: 34433 + - uid: 34902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-25.5 + pos: -69.5,-75.5 parent: 2 - - uid: 34434 + - uid: 34903 components: - type: Transform - pos: 59.5,-19.5 + pos: 43.5,11.5 parent: 2 - - uid: 34435 + - uid: 34904 components: - type: Transform - pos: 49.5,-0.5 + pos: -59.5,-72.5 parent: 2 - - uid: 34436 + - uid: 34905 components: - type: Transform - pos: 53.5,-4.5 + pos: -69.5,-48.5 parent: 2 - - uid: 34437 + - uid: 34906 components: - type: Transform - pos: 64.5,-20.5 + pos: -69.5,-49.5 parent: 2 - - uid: 34438 + - uid: 34907 components: - type: Transform - pos: 52.5,-2.5 + pos: -77.5,8.5 parent: 2 - - uid: 34439 + - uid: 34908 components: - type: Transform - pos: 37.5,-22.5 + rot: 1.5707963267948966 rad + pos: 18.5,6.5 parent: 2 - - uid: 34440 + - uid: 34909 components: - type: Transform - pos: -9.5,-20.5 + rot: 3.141592653589793 rad + pos: -77.5,-44.5 parent: 2 - - uid: 34441 + - uid: 34910 components: - type: Transform - pos: -9.5,-21.5 + rot: 1.5707963267948966 rad + pos: -80.5,-48.5 parent: 2 - - uid: 34442 + - uid: 34911 components: - type: Transform - pos: -9.5,-22.5 + pos: 108.5,-60.5 parent: 2 - - uid: 34443 + - uid: 34912 components: - type: Transform - pos: -9.5,-23.5 + pos: 30.5,-103.5 parent: 2 - - uid: 34444 + - uid: 34913 components: - type: Transform - pos: -9.5,-24.5 + pos: 33.5,-103.5 parent: 2 - - uid: 34445 + - uid: 34914 components: - type: Transform - pos: -9.5,-25.5 + rot: 1.5707963267948966 rad + pos: 60.5,-86.5 parent: 2 - - uid: 34446 + - uid: 34915 components: - type: Transform - pos: -9.5,-28.5 + pos: 32.5,-103.5 parent: 2 - - uid: 34447 + - uid: 34916 components: - type: Transform - pos: -8.5,-28.5 + rot: 1.5707963267948966 rad + pos: 60.5,-89.5 parent: 2 - - uid: 34448 + - uid: 34917 components: - type: Transform - pos: -7.5,-28.5 + pos: 31.5,-103.5 parent: 2 - - uid: 34449 + - uid: 34918 components: - type: Transform - pos: 65.5,16.5 + pos: 102.5,-75.5 parent: 2 - - uid: 34450 + - uid: 34919 components: - type: Transform - pos: -12.5,-25.5 + pos: 77.5,-68.5 parent: 2 - - uid: 34451 + - uid: 34920 components: - type: Transform - pos: -6.5,-28.5 + pos: 68.5,-68.5 parent: 2 - - uid: 34452 + - uid: 34921 components: - type: Transform - pos: 60.5,-6.5 + pos: -45.5,-67.5 parent: 2 - - uid: 34453 + - uid: 34922 components: - type: Transform - pos: 59.5,-26.5 + rot: -1.5707963267948966 rad + pos: -57.5,-101.5 parent: 2 - - uid: 34454 + - uid: 34924 components: - type: Transform - pos: 42.5,-25.5 + rot: 3.141592653589793 rad + pos: -69.5,-4.5 parent: 2 - - uid: 34455 + - uid: 34927 components: - type: Transform - pos: 39.5,0.5 + pos: 42.5,-81.5 parent: 2 - - uid: 34456 + - uid: 34928 components: - type: Transform - pos: 38.5,-28.5 + pos: 35.5,-94.5 parent: 2 - - uid: 34457 + - uid: 34929 components: - type: Transform - pos: -6.5,-29.5 + rot: -1.5707963267948966 rad + pos: 90.5,-69.5 parent: 2 - - uid: 34458 + - uid: 34930 components: - type: Transform - pos: 53.5,-6.5 + rot: -1.5707963267948966 rad + pos: 56.5,-87.5 parent: 2 - - uid: 34459 + - uid: 34931 components: - type: Transform - pos: 36.5,-26.5 + pos: 35.5,-100.5 parent: 2 - - uid: 34460 + - uid: 34932 components: - type: Transform - pos: -6.5,-30.5 + rot: 1.5707963267948966 rad + pos: -79.5,-48.5 parent: 2 - - uid: 34461 + - uid: 34933 components: - type: Transform - pos: 39.5,-28.5 + rot: 1.5707963267948966 rad + pos: -77.5,-36.5 parent: 2 - - uid: 34462 + - uid: 34934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,1.5 + pos: 27.5,30.5 parent: 2 - - uid: 34463 + - uid: 34935 components: - type: Transform - pos: 40.5,-28.5 + pos: -45.5,-71.5 parent: 2 - - uid: 34464 + - uid: 34936 components: - type: Transform - pos: 53.5,-5.5 + pos: 51.5,-95.5 parent: 2 - - uid: 34465 + - uid: 34937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-20.5 + pos: 99.5,-93.5 parent: 2 - - uid: 34466 + - uid: 34938 components: - type: Transform - pos: 47.5,-0.5 + pos: 93.5,-86.5 parent: 2 - - uid: 34467 + - uid: 34939 components: - type: Transform - pos: 47.5,-16.5 + pos: 103.5,-87.5 parent: 2 - - uid: 34468 + - uid: 34940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,16.5 + pos: 102.5,-91.5 parent: 2 - - uid: 34469 + - uid: 34941 components: - type: Transform - pos: 59.5,-20.5 + rot: 1.5707963267948966 rad + pos: 45.5,-104.5 parent: 2 - - uid: 34470 + - uid: 34942 components: - type: Transform - pos: 41.5,-28.5 + rot: 3.141592653589793 rad + pos: 39.5,-104.5 parent: 2 - - uid: 34471 + - uid: 34943 components: - type: Transform - pos: 65.5,6.5 + pos: 35.5,-88.5 parent: 2 - - uid: 34472 + - uid: 34944 components: - type: Transform - pos: 61.5,6.5 + pos: 93.5,-87.5 parent: 2 - - uid: 34473 + - uid: 34945 components: - type: Transform - pos: 51.5,-24.5 + pos: 96.5,-91.5 parent: 2 - - uid: 34474 + - uid: 34946 components: - type: Transform - pos: 53.5,1.5 + pos: 97.5,-92.5 parent: 2 - - uid: 34475 + - uid: 34947 components: - type: Transform - pos: 6.5,-9.5 + pos: 26.5,27.5 parent: 2 - - uid: 34476 + - uid: 34948 components: - type: Transform - pos: 7.5,-9.5 + pos: 29.5,35.5 parent: 2 - - uid: 34477 + - uid: 34949 components: - type: Transform - pos: 8.5,-9.5 + pos: -81.5,-52.5 parent: 2 - - uid: 34478 + - uid: 34950 components: - type: Transform - pos: 9.5,-9.5 + pos: -59.5,-120.5 parent: 2 - - uid: 34479 + - uid: 34951 components: - type: Transform - pos: 10.5,-9.5 + pos: -59.5,-121.5 parent: 2 - - uid: 34480 + - uid: 34952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-5.5 + pos: -58.5,-121.5 parent: 2 - - uid: 34481 + - uid: 34953 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-6.5 + pos: -57.5,-95.5 parent: 2 - - uid: 34482 + - uid: 34954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 + pos: -78.5,8.5 parent: 2 - - uid: 34483 + - uid: 34955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 + rot: 3.141592653589793 rad + pos: -90.5,-6.5 parent: 2 - - uid: 34484 + - uid: 34956 components: - type: Transform - pos: -18.5,-19.5 + pos: -81.5,-51.5 parent: 2 - - uid: 34485 + - uid: 34957 components: - type: Transform - pos: -18.5,-20.5 + pos: -81.5,-49.5 parent: 2 - - uid: 34486 + - uid: 34958 components: - type: Transform - pos: -17.5,-20.5 + pos: -81.5,-50.5 parent: 2 - - uid: 34487 + - uid: 34959 components: - type: Transform - pos: -16.5,-20.5 + pos: -58.5,-89.5 parent: 2 - - uid: 34488 + - uid: 34961 components: - type: Transform - pos: -14.5,-20.5 + pos: 103.5,-89.5 parent: 2 - - uid: 34489 + - uid: 34962 components: - type: Transform - pos: 67.5,6.5 + pos: -15.5,-102.5 parent: 2 - - uid: 34490 + - uid: 34963 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-6.5 + pos: 58.5,-86.5 parent: 2 - - uid: 34491 + - uid: 34964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-21.5 + pos: 99.5,-82.5 parent: 2 - - uid: 34492 + - uid: 34965 components: - type: Transform - pos: 42.5,-28.5 + rot: -1.5707963267948966 rad + pos: 92.5,-65.5 parent: 2 - - uid: 34493 + - uid: 34966 components: - type: Transform - pos: 47.5,-6.5 + rot: 1.5707963267948966 rad + pos: -32.5,-119.5 parent: 2 - - uid: 34494 + - uid: 34967 components: - type: Transform - pos: 61.5,1.5 + pos: -81.5,-53.5 parent: 2 - - uid: 34495 + - uid: 34968 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-0.5 + pos: -32.5,-120.5 parent: 2 - - uid: 34496 + - uid: 34969 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-0.5 + pos: -32.5,-121.5 parent: 2 - - uid: 34497 + - uid: 34970 components: - type: Transform - pos: 61.5,0.5 + pos: 28.5,32.5 parent: 2 - - uid: 34498 + - uid: 34971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-23.5 + rot: 3.141592653589793 rad + pos: -56.5,13.5 parent: 2 - - uid: 34499 + - uid: 34972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-25.5 + pos: -46.5,-70.5 parent: 2 - - uid: 34500 + - uid: 34973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-22.5 + rot: -1.5707963267948966 rad + pos: 95.5,-76.5 parent: 2 - - uid: 34501 + - uid: 34974 components: - type: Transform - pos: 55.5,19.5 + pos: 26.5,29.5 parent: 2 - - uid: 34502 + - uid: 34975 components: - type: Transform - pos: 55.5,18.5 + pos: 27.5,29.5 parent: 2 - - uid: 34503 + - uid: 34976 components: - type: Transform - pos: 44.5,-21.5 + rot: 1.5707963267948966 rad + pos: -32.5,-122.5 parent: 2 - - uid: 34504 + - uid: 34977 components: - type: Transform - pos: 55.5,-26.5 + pos: -76.5,8.5 parent: 2 - - uid: 34505 + - uid: 34978 components: - type: Transform - pos: 53.5,-26.5 + rot: 1.5707963267948966 rad + pos: -33.5,-122.5 parent: 2 - - uid: 34506 + - uid: 34979 components: - type: Transform - pos: 57.5,-26.5 + rot: 1.5707963267948966 rad + pos: -34.5,-122.5 parent: 2 - - uid: 34507 + - uid: 34980 components: - type: Transform - pos: 51.5,-26.5 + rot: -1.5707963267948966 rad + pos: -42.5,-123.5 parent: 2 - - uid: 34508 + - uid: 34981 components: - type: Transform - pos: 58.5,-20.5 + rot: -1.5707963267948966 rad + pos: -42.5,-124.5 parent: 2 - - uid: 34509 + - uid: 34982 components: - type: Transform - pos: 65.5,-10.5 + rot: -1.5707963267948966 rad + pos: -41.5,-124.5 parent: 2 - - uid: 34510 + - uid: 34983 components: - type: Transform - pos: 61.5,-2.5 + rot: -1.5707963267948966 rad + pos: 58.5,-89.5 parent: 2 - - uid: 34511 + - uid: 34984 components: - type: Transform - pos: 61.5,-0.5 + pos: 28.5,33.5 parent: 2 - - uid: 34512 + - uid: 34985 components: - type: Transform - pos: 61.5,-1.5 + pos: 97.5,-81.5 parent: 2 - - uid: 34513 + - uid: 34986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-16.5 + pos: 101.5,-81.5 parent: 2 - - uid: 34514 + - uid: 34987 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,-17.5 + pos: 95.5,-75.5 parent: 2 - - uid: 34515 + - uid: 34988 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,20.5 + rot: -1.5707963267948966 rad + pos: 93.5,-81.5 parent: 2 - - uid: 34516 + - uid: 34989 components: - type: Transform - pos: -4.5,-20.5 + pos: -52.5,-70.5 parent: 2 - - uid: 34517 + - uid: 34990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-6.5 + pos: -52.5,-69.5 parent: 2 - - uid: 34518 + - uid: 34991 components: - type: Transform - pos: 67.5,12.5 + pos: 28.5,35.5 parent: 2 - - uid: 34519 + - uid: 34992 components: - type: Transform - pos: 58.5,-79.5 + pos: 37.5,36.5 parent: 2 - - uid: 34520 + - uid: 34993 components: - type: Transform - pos: -8.5,-20.5 + pos: 38.5,36.5 parent: 2 - - uid: 34521 + - uid: 34994 components: - type: Transform - pos: -6.5,-20.5 + rot: -1.5707963267948966 rad + pos: -40.5,-124.5 parent: 2 - - uid: 34522 + - uid: 34995 components: - type: Transform - pos: -5.5,-20.5 + rot: -1.5707963267948966 rad + pos: -39.5,-124.5 parent: 2 - - uid: 34523 + - uid: 34996 components: - type: Transform - pos: 59.5,-83.5 + rot: -1.5707963267948966 rad + pos: -38.5,-124.5 parent: 2 - - uid: 34524 + - uid: 34997 components: - type: Transform - pos: 46.5,-21.5 + rot: -1.5707963267948966 rad + pos: -37.5,-124.5 parent: 2 - - uid: 34525 + - uid: 34998 components: - type: Transform - pos: 46.5,-20.5 + rot: -1.5707963267948966 rad + pos: 95.5,-65.5 parent: 2 - - uid: 34526 + - uid: 34999 components: - type: Transform - pos: 55.5,-10.5 + pos: -52.5,-67.5 parent: 2 - - uid: 34527 + - uid: 35000 components: - type: Transform - pos: 55.5,-11.5 + pos: -50.5,-67.5 parent: 2 - - uid: 34528 + - uid: 35001 components: - type: Transform - pos: 53.5,-0.5 + rot: -1.5707963267948966 rad + pos: 93.5,-77.5 parent: 2 - - uid: 34529 + - uid: 35002 components: - type: Transform - pos: 62.5,-10.5 + rot: -1.5707963267948966 rad + pos: 92.5,-81.5 parent: 2 - - uid: 34530 + - uid: 35003 components: - type: Transform - pos: 46.5,-25.5 + pos: 93.5,-85.5 parent: 2 - - uid: 34531 + - uid: 35004 components: - type: Transform - pos: 61.5,-10.5 + rot: -1.5707963267948966 rad + pos: 91.5,-81.5 parent: 2 - - uid: 34532 + - uid: 35005 components: - type: Transform - pos: 60.5,-10.5 + rot: -1.5707963267948966 rad + pos: 101.5,-61.5 parent: 2 - - uid: 34533 + - uid: 35006 components: - type: Transform - pos: 66.5,-10.5 + rot: -1.5707963267948966 rad + pos: 93.5,-78.5 parent: 2 - - uid: 34534 + - uid: 35007 components: - type: Transform - pos: 64.5,-10.5 + pos: 94.5,-75.5 parent: 2 - - uid: 34535 + - uid: 35008 components: - type: Transform - pos: 59.5,-22.5 + rot: -1.5707963267948966 rad + pos: 104.5,-73.5 parent: 2 - - uid: 34536 + - uid: 35009 components: - type: Transform - pos: 59.5,-23.5 + pos: 28.5,31.5 parent: 2 - - uid: 34537 + - uid: 35010 components: - type: Transform - pos: 44.5,-25.5 + pos: -56.5,-71.5 parent: 2 - - uid: 34538 + - uid: 35011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,21.5 + rot: 3.141592653589793 rad + pos: -70.5,12.5 parent: 2 - - uid: 34539 + - uid: 35012 components: - type: Transform - pos: -17.5,8.5 + pos: -52.5,-72.5 parent: 2 - - uid: 34540 + - uid: 35015 components: - type: Transform - pos: 17.5,24.5 + rot: -1.5707963267948966 rad + pos: -57.5,-104.5 parent: 2 - - uid: 34541 + - uid: 35016 components: - type: Transform - pos: 15.5,24.5 + rot: 1.5707963267948966 rad + pos: -78.5,-48.5 parent: 2 - - uid: 34542 + - uid: 35017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,16.5 + pos: 19.5,11.5 parent: 2 - - uid: 34543 + - uid: 35018 components: - type: Transform - pos: 70.5,-10.5 + pos: -56.5,-72.5 parent: 2 - - uid: 34544 + - uid: 35019 components: - type: Transform - pos: 70.5,-14.5 + pos: 83.5,-67.5 parent: 2 - - uid: 34545 + - uid: 35020 components: - type: Transform - pos: 67.5,-10.5 + pos: 87.5,-63.5 parent: 2 - - uid: 34546 + - uid: 35021 components: - type: Transform - pos: 70.5,-13.5 + pos: 46.5,11.5 parent: 2 - - uid: 34547 + - uid: 35022 components: - type: Transform - pos: 68.5,-10.5 + rot: 3.141592653589793 rad + pos: -88.5,-21.5 parent: 2 - - uid: 34548 + - uid: 35023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,1.5 + rot: 3.141592653589793 rad + pos: -58.5,0.5 parent: 2 - - uid: 34549 + - uid: 35024 components: - type: Transform - pos: 50.5,12.5 + rot: 3.141592653589793 rad + pos: -89.5,-22.5 parent: 2 - - uid: 34550 + - uid: 35025 components: - type: Transform - pos: 55.5,12.5 + pos: 102.5,-76.5 parent: 2 - - uid: 34551 + - uid: 35026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-9.5 + pos: 105.5,-60.5 parent: 2 - - uid: 34552 + - uid: 35027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-2.5 + pos: -52.5,-75.5 parent: 2 - - uid: 34553 + - uid: 35028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-7.5 + pos: 82.5,-68.5 parent: 2 - - uid: 34554 + - uid: 35029 components: - type: Transform - pos: 63.5,-10.5 + pos: -51.5,-67.5 parent: 2 - - uid: 34555 + - uid: 35030 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-10.5 + pos: -57.5,-100.5 parent: 2 - - uid: 34556 + - uid: 35031 components: - type: Transform - pos: 54.5,12.5 + rot: -1.5707963267948966 rad + pos: -57.5,-99.5 parent: 2 - - uid: 34557 + - uid: 35032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,15.5 + pos: -58.5,-91.5 parent: 2 - - uid: 34558 + - uid: 35033 components: - type: Transform - pos: 54.5,8.5 + pos: -58.5,-92.5 parent: 2 - - uid: 34559 + - uid: 35034 components: - type: Transform - pos: 61.5,-4.5 + rot: 3.141592653589793 rad + pos: -90.5,-18.5 parent: 2 - - uid: 34560 + - uid: 35035 components: - type: Transform - pos: 61.5,-5.5 + rot: 3.141592653589793 rad + pos: -90.5,-19.5 parent: 2 - - uid: 34561 + - uid: 35036 components: - type: Transform - pos: -12.5,10.5 + rot: 3.141592653589793 rad + pos: -90.5,-22.5 parent: 2 - - uid: 34562 + - uid: 35037 components: - type: Transform - pos: 52.5,8.5 + rot: 3.141592653589793 rad + pos: -90.5,-21.5 parent: 2 - - uid: 34563 + - uid: 35038 components: - type: Transform - pos: 53.5,8.5 + rot: 3.141592653589793 rad + pos: -87.5,-18.5 parent: 2 - - uid: 34564 + - uid: 35039 components: - type: Transform - pos: 53.5,16.5 + rot: 3.141592653589793 rad + pos: -87.5,-22.5 parent: 2 - - uid: 34565 + - uid: 35040 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-11.5 + pos: 91.5,-65.5 parent: 2 - - uid: 34566 + - uid: 35041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-27.5 + pos: 103.5,-85.5 parent: 2 - - uid: 34567 + - uid: 35042 components: - type: Transform - pos: -16.5,8.5 + rot: -1.5707963267948966 rad + pos: 95.5,-61.5 parent: 2 - - uid: 34568 + - uid: 35043 components: - type: Transform - pos: -13.5,8.5 + rot: -1.5707963267948966 rad + pos: 103.5,-78.5 parent: 2 - - uid: 34569 + - uid: 35044 components: - type: Transform - pos: 39.5,-21.5 + pos: 39.5,32.5 parent: 2 - - uid: 34570 + - uid: 35045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-21.5 + pos: -72.5,-79.5 parent: 2 - - uid: 34571 + - uid: 35046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-8.5 + pos: 44.5,11.5 parent: 2 - - uid: 34572 + - uid: 35047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,2.5 + pos: 26.5,28.5 parent: 2 - - uid: 34573 + - uid: 35049 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-22.5 + pos: -69.5,-3.5 parent: 2 - - uid: 34574 + - uid: 35050 components: - type: Transform - pos: 87.5,-65.5 + rot: 1.5707963267948966 rad + pos: -63.5,-76.5 parent: 2 - - uid: 34575 + - uid: 35051 components: - type: Transform - pos: 70.5,-12.5 + rot: 3.141592653589793 rad + pos: -74.5,-75.5 parent: 2 - - uid: 34576 + - uid: 35052 components: - type: Transform rot: 3.141592653589793 rad - pos: 71.5,-10.5 + pos: -75.5,-75.5 parent: 2 - - uid: 34577 + - uid: 35053 components: - type: Transform rot: 3.141592653589793 rad - pos: 71.5,-9.5 + pos: -75.5,-76.5 parent: 2 - - uid: 34578 + - uid: 35054 components: - type: Transform rot: 3.141592653589793 rad - pos: 71.5,-4.5 + pos: -75.5,-78.5 parent: 2 - - uid: 34579 + - uid: 35055 components: - type: Transform rot: 3.141592653589793 rad - pos: 71.5,-3.5 + pos: -75.5,-79.5 parent: 2 - - uid: 34580 + - uid: 35056 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,-9.5 + pos: -74.5,-79.5 parent: 2 - - uid: 34581 + - uid: 35057 components: - type: Transform - pos: 87.5,-67.5 + rot: -1.5707963267948966 rad + pos: 99.5,-60.5 parent: 2 - - uid: 34582 + - uid: 35058 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-6.5 + rot: -1.5707963267948966 rad + pos: 106.5,-70.5 parent: 2 - - uid: 34583 + - uid: 35059 components: - type: Transform - pos: 39.5,-22.5 + rot: -1.5707963267948966 rad + pos: 106.5,-71.5 parent: 2 - - uid: 34584 + - uid: 35060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,0.5 + rot: -1.5707963267948966 rad + pos: 96.5,-61.5 parent: 2 - - uid: 34585 + - uid: 35061 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-9.5 + pos: 95.5,-81.5 parent: 2 - - uid: 34586 + - uid: 35062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-1.5 + rot: -1.5707963267948966 rad + pos: 94.5,-65.5 parent: 2 - - uid: 34587 + - uid: 35063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-0.5 + pos: 106.5,-64.5 parent: 2 - - uid: 34588 + - uid: 35064 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,0.5 + rot: -1.5707963267948966 rad + pos: -57.5,-103.5 parent: 2 - - uid: 34589 + - uid: 35065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,3.5 + pos: 102.5,-90.5 parent: 2 - - uid: 34590 + - uid: 35066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,1.5 + pos: 100.5,-59.5 parent: 2 - - uid: 34591 + - uid: 35067 components: - type: Transform - pos: 87.5,-66.5 + pos: 100.5,-91.5 parent: 2 - - uid: 34592 + - uid: 35068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,5.5 + pos: 102.5,-89.5 parent: 2 - - uid: 34593 + - uid: 35069 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,6.5 + rot: -1.5707963267948966 rad + pos: 94.5,-73.5 parent: 2 - - uid: 34594 + - uid: 35070 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-9.5 + rot: -1.5707963267948966 rad + pos: 92.5,-77.5 parent: 2 - - uid: 34595 + - uid: 35071 components: - type: Transform - pos: 86.5,-67.5 + rot: -1.5707963267948966 rad + pos: 98.5,-73.5 parent: 2 - - uid: 34596 + - uid: 35072 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-14.5 + rot: -1.5707963267948966 rad + pos: 100.5,-65.5 parent: 2 - - uid: 34597 + - uid: 35073 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,2.5 + rot: -1.5707963267948966 rad + pos: 96.5,-65.5 parent: 2 - - uid: 34598 + - uid: 35074 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,2.5 + rot: -1.5707963267948966 rad + pos: 91.5,-80.5 parent: 2 - - uid: 34599 + - uid: 35075 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,2.5 + pos: 11.5,12.5 parent: 2 - - uid: 34600 + - uid: 35076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-5.5 + pos: -3.5,-1.5 parent: 2 - - uid: 34601 + - uid: 35077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-5.5 + pos: -2.5,-1.5 parent: 2 - - uid: 34602 + - uid: 35078 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-5.5 + pos: 3.5,-1.5 parent: 2 - - uid: 34603 + - uid: 35079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-5.5 + pos: -4.5,-1.5 parent: 2 - - uid: 34604 + - uid: 35080 components: - type: Transform rot: 3.141592653589793 rad - pos: 76.5,8.5 + pos: 18.5,9.5 parent: 2 - - uid: 34605 + - uid: 35081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 132.5,-39.5 + rot: 3.141592653589793 rad + pos: 18.5,16.5 parent: 2 - - uid: 34606 + - uid: 35083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 114.5,-37.5 + rot: 3.141592653589793 rad + pos: 18.5,12.5 parent: 2 - - uid: 34607 + - uid: 35084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 111.5,-37.5 + rot: 3.141592653589793 rad + pos: 18.5,13.5 parent: 2 - - uid: 34608 + - uid: 35085 components: - type: Transform rot: -1.5707963267948966 rad - pos: 113.5,-37.5 + pos: 14.5,2.5 parent: 2 - - uid: 34609 + - uid: 35086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,8.5 + pos: -5.5,-1.5 parent: 2 - - uid: 34610 + - uid: 35087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,3.5 + pos: -6.5,-1.5 parent: 2 - - uid: 34611 + - uid: 35088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,7.5 + pos: -7.5,-1.5 parent: 2 - - uid: 34612 + - uid: 35089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,5.5 + pos: -8.5,-1.5 parent: 2 - - uid: 34613 + - uid: 35090 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,6.5 + pos: -9.5,-1.5 parent: 2 - - uid: 34614 + - uid: 35091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,7.5 + pos: -10.5,-1.5 parent: 2 - - uid: 34615 + - uid: 35092 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,8.5 + pos: 17.5,10.5 parent: 2 - - uid: 34616 + - uid: 35093 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,8.5 + pos: 18.5,11.5 parent: 2 - - uid: 34617 + - uid: 35094 components: - type: Transform rot: 3.141592653589793 rad - pos: 71.5,7.5 + pos: 18.5,10.5 parent: 2 - - uid: 34618 + - uid: 35095 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,7.5 + pos: 12.5,5.5 parent: 2 - - uid: 34619 + - uid: 35096 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-5.5 + pos: 11.5,5.5 parent: 2 - - uid: 34621 + - uid: 35097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-16.5 + pos: 10.5,5.5 parent: 2 - - uid: 34622 + - uid: 35098 components: - type: Transform - pos: 87.5,-64.5 + pos: 9.5,5.5 parent: 2 - - uid: 34623 + - uid: 35099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 112.5,-37.5 + pos: 8.5,5.5 parent: 2 - - uid: 34624 + - uid: 35100 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,7.5 + pos: 7.5,5.5 parent: 2 - - uid: 34625 + - uid: 35101 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,7.5 + pos: 6.5,5.5 parent: 2 - - uid: 34626 + - uid: 35102 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-9.5 + pos: 5.5,5.5 parent: 2 - - uid: 34627 + - uid: 35103 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-1.5 + pos: 4.5,5.5 parent: 2 - - uid: 34628 + - uid: 35104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-4.5 + pos: 3.5,5.5 parent: 2 - - uid: 34629 + - uid: 35105 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-3.5 + pos: 2.5,5.5 parent: 2 - - uid: 34630 + - uid: 35106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-0.5 + pos: -1.5,7.5 parent: 2 - - uid: 34631 + - uid: 35107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,1.5 + pos: -1.5,8.5 parent: 2 - - uid: 34632 + - uid: 35108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,2.5 + pos: -1.5,11.5 parent: 2 - - uid: 34633 + - uid: 35109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,2.5 + pos: -1.5,12.5 parent: 2 - - uid: 34634 + - uid: 35110 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,2.5 + pos: -2.5,12.5 parent: 2 - - uid: 34635 + - uid: 35111 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,2.5 + pos: -3.5,12.5 parent: 2 - - uid: 34636 + - uid: 35112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,2.5 + pos: -4.5,12.5 parent: 2 - - uid: 34637 + - uid: 35113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,2.5 + pos: -5.5,12.5 parent: 2 - - uid: 34642 + - uid: 35114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,0.5 + pos: -6.5,12.5 parent: 2 - - uid: 34643 + - uid: 35115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,0.5 + pos: -7.5,12.5 parent: 2 - - uid: 34644 + - uid: 35116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,0.5 + pos: -9.5,12.5 parent: 2 - - uid: 34645 + - uid: 35117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,0.5 + pos: -10.5,12.5 parent: 2 - - uid: 34646 + - uid: 35118 components: - type: Transform - pos: 51.5,17.5 + pos: -6.5,7.5 parent: 2 - - uid: 34647 + - uid: 35119 components: - type: Transform - pos: 50.5,17.5 + pos: -7.5,7.5 parent: 2 - - uid: 34648 + - uid: 35120 components: - type: Transform - pos: 53.5,17.5 + pos: -8.5,7.5 parent: 2 - - uid: 34649 + - uid: 35121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-4.5 + pos: -8.5,6.5 parent: 2 - - uid: 34650 + - uid: 35122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-21.5 + pos: -8.5,5.5 parent: 2 - - uid: 34651 + - uid: 35123 components: - type: Transform - pos: 49.5,17.5 + pos: -9.5,5.5 parent: 2 - - uid: 34652 + - uid: 35124 components: - type: Transform - pos: 70.5,-11.5 + pos: -10.5,5.5 parent: 2 - - uid: 34653 + - uid: 35125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,19.5 + pos: -11.5,5.5 parent: 2 - - uid: 34654 + - uid: 35126 components: - type: Transform - pos: 53.5,-24.5 + pos: -12.5,5.5 parent: 2 - - uid: 34655 + - uid: 35127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-16.5 + pos: -12.5,6.5 parent: 2 - - uid: 34656 + - uid: 35128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-16.5 + pos: -12.5,7.5 parent: 2 - - uid: 34657 + - uid: 35129 components: - type: Transform - pos: 45.5,15.5 + pos: -12.5,8.5 parent: 2 - - uid: 34658 + - uid: 35130 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,14.5 + pos: -8.5,8.5 parent: 2 - - uid: 34659 + - uid: 35131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-16.5 + pos: -11.5,8.5 parent: 2 - - uid: 34660 + - uid: 35132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-16.5 + pos: -9.5,8.5 parent: 2 - - uid: 34661 + - uid: 35133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-14.5 + pos: -12.5,11.5 parent: 2 - - uid: 34662 + - uid: 35134 components: - type: Transform - pos: 68.5,0.5 + pos: -12.5,12.5 parent: 2 - - uid: 34663 + - uid: 35135 components: - type: Transform - pos: 70.5,0.5 + pos: -11.5,12.5 parent: 2 - - uid: 34664 + - uid: 35136 components: - type: Transform - pos: -8.5,-24.5 + rot: 3.141592653589793 rad + pos: -11.5,16.5 parent: 2 - - uid: 34665 + - uid: 35137 components: - type: Transform - pos: -7.5,-24.5 + rot: 3.141592653589793 rad + pos: -12.5,16.5 parent: 2 - - uid: 34666 + - uid: 35138 components: - type: Transform - pos: -6.5,-24.5 + rot: 3.141592653589793 rad + pos: -11.5,17.5 parent: 2 - - uid: 34667 + - uid: 35139 components: - type: Transform - pos: 1.5,-46.5 + rot: 3.141592653589793 rad + pos: -7.5,17.5 parent: 2 - - uid: 34668 + - uid: 35140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,0.5 + rot: 3.141592653589793 rad + pos: -7.5,15.5 parent: 2 - - uid: 34669 + - uid: 35141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-41.5 + rot: 3.141592653589793 rad + pos: -7.5,16.5 parent: 2 - - uid: 34670 + - uid: 35142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-0.5 + rot: 3.141592653589793 rad + pos: -7.5,13.5 parent: 2 - - uid: 34671 + - uid: 35143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,1.5 + rot: 3.141592653589793 rad + pos: -7.5,14.5 parent: 2 - - uid: 34672 + - uid: 35144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,0.5 + pos: -7.5,18.5 parent: 2 - - uid: 34673 + - uid: 35145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-0.5 + pos: -11.5,18.5 parent: 2 - - uid: 34674 + - uid: 35146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,1.5 + rot: 3.141592653589793 rad + pos: -6.5,18.5 parent: 2 - - uid: 34675 + - uid: 35147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,0.5 + rot: 3.141592653589793 rad + pos: -5.5,18.5 parent: 2 - - uid: 34676 + - uid: 35148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-0.5 + rot: 3.141592653589793 rad + pos: -4.5,18.5 parent: 2 - - uid: 34677 + - uid: 35149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,2.5 + rot: 3.141592653589793 rad + pos: -3.5,18.5 parent: 2 - - uid: 34678 + - uid: 35150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,2.5 + rot: 3.141592653589793 rad + pos: -2.5,18.5 parent: 2 - - uid: 34679 + - uid: 35151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,2.5 + rot: 3.141592653589793 rad + pos: -1.5,18.5 parent: 2 - - uid: 34680 + - uid: 35152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,2.5 + rot: 3.141592653589793 rad + pos: -1.5,17.5 parent: 2 - - uid: 34681 + - uid: 35153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,2.5 + rot: 3.141592653589793 rad + pos: -1.5,13.5 parent: 2 - - uid: 34682 + - uid: 35154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,2.5 + rot: 3.141592653589793 rad + pos: -1.5,19.5 parent: 2 - - uid: 34683 + - uid: 35155 components: - type: Transform - pos: 89.5,0.5 + rot: 3.141592653589793 rad + pos: -1.5,20.5 parent: 2 - - uid: 34684 + - uid: 35156 components: - type: Transform - pos: 90.5,0.5 + rot: 3.141592653589793 rad + pos: 2.5,20.5 parent: 2 - - uid: 34686 + - uid: 35157 components: - type: Transform - pos: 90.5,-2.5 + rot: 3.141592653589793 rad + pos: 2.5,19.5 parent: 2 - - uid: 34687 + - uid: 35158 components: - type: Transform - pos: 90.5,-8.5 + rot: 3.141592653589793 rad + pos: 2.5,18.5 parent: 2 - - uid: 34689 + - uid: 35159 components: - type: Transform - pos: 90.5,-11.5 + rot: 3.141592653589793 rad + pos: 2.5,12.5 parent: 2 - - uid: 34690 + - uid: 35160 components: - type: Transform - pos: 90.5,-9.5 + rot: 3.141592653589793 rad + pos: 10.5,6.5 parent: 2 - - uid: 34691 + - uid: 35161 components: - type: Transform - pos: 90.5,-10.5 + rot: 3.141592653589793 rad + pos: 13.5,8.5 parent: 2 - - uid: 34692 + - uid: 35162 components: - type: Transform - pos: 79.5,-12.5 + rot: 3.141592653589793 rad + pos: 10.5,7.5 parent: 2 - - uid: 34693 + - uid: 35163 components: - type: Transform - pos: 79.5,-13.5 + rot: 3.141592653589793 rad + pos: 10.5,8.5 parent: 2 - - uid: 34694 + - uid: 35164 components: - type: Transform - pos: 79.5,-11.5 + rot: 3.141592653589793 rad + pos: 16.5,10.5 parent: 2 - - uid: 34695 + - uid: 35165 components: - type: Transform - pos: -0.5,-37.5 + rot: 3.141592653589793 rad + pos: 14.5,10.5 parent: 2 - - uid: 34696 + - uid: 35166 components: - type: Transform - pos: 79.5,-9.5 + rot: 3.141592653589793 rad + pos: 15.5,10.5 parent: 2 - - uid: 34697 + - uid: 35167 components: - type: Transform - pos: 78.5,-9.5 + rot: 3.141592653589793 rad + pos: 13.5,6.5 parent: 2 - - uid: 34698 + - uid: 35168 components: - type: Transform - pos: 78.5,-13.5 + rot: 3.141592653589793 rad + pos: 13.5,7.5 parent: 2 - - uid: 34699 + - uid: 35169 components: - type: Transform - pos: 76.5,-13.5 + rot: 3.141592653589793 rad + pos: 13.5,5.5 parent: 2 - - uid: 34700 + - uid: 35170 components: - type: Transform - pos: 75.5,-13.5 + rot: 3.141592653589793 rad + pos: 10.5,12.5 parent: 2 - - uid: 34701 + - uid: 35171 components: - type: Transform - pos: 74.5,-13.5 + rot: 3.141592653589793 rad + pos: 9.5,12.5 parent: 2 - - uid: 34702 + - uid: 35172 components: - type: Transform - pos: 73.5,-13.5 + rot: 3.141592653589793 rad + pos: 8.5,12.5 parent: 2 - - uid: 34703 + - uid: 35173 components: - type: Transform - pos: 77.5,-13.5 + rot: 3.141592653589793 rad + pos: 7.5,12.5 parent: 2 - - uid: 34704 + - uid: 35174 components: - type: Transform - pos: 73.5,-14.5 + rot: 3.141592653589793 rad + pos: 6.5,12.5 parent: 2 - - uid: 34705 + - uid: 35175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-10.5 + rot: 3.141592653589793 rad + pos: 5.5,12.5 parent: 2 - - uid: 34706 + - uid: 35176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-12.5 + rot: 3.141592653589793 rad + pos: 4.5,12.5 parent: 2 - - uid: 34707 + - uid: 35177 components: - type: Transform - pos: 57.5,-79.5 + rot: 3.141592653589793 rad + pos: 3.5,12.5 parent: 2 - - uid: 34708 + - uid: 35178 components: - type: Transform - pos: 58.5,-83.5 + rot: 3.141592653589793 rad + pos: 2.5,13.5 parent: 2 - - uid: 34709 + - uid: 35179 components: - type: Transform - pos: 59.5,-79.5 + rot: 3.141592653589793 rad + pos: 2.5,17.5 parent: 2 - - uid: 34710 + - uid: 35180 components: - type: Transform - pos: 89.5,-11.5 + rot: 3.141592653589793 rad + pos: 3.5,18.5 parent: 2 - - uid: 34711 + - uid: 35181 components: - type: Transform - pos: 88.5,-11.5 + rot: 3.141592653589793 rad + pos: 4.5,18.5 parent: 2 - - uid: 34712 + - uid: 35182 components: - type: Transform - pos: 86.5,-11.5 + rot: 3.141592653589793 rad + pos: 5.5,18.5 parent: 2 - - uid: 34713 + - uid: 35183 components: - type: Transform - pos: 85.5,-11.5 + rot: 3.141592653589793 rad + pos: 6.5,18.5 parent: 2 - - uid: 34714 + - uid: 35184 components: - type: Transform - pos: 84.5,-11.5 + rot: 3.141592653589793 rad + pos: 6.5,17.5 parent: 2 - - uid: 34715 + - uid: 35185 components: - type: Transform - pos: 83.5,-11.5 + rot: 3.141592653589793 rad + pos: 6.5,16.5 parent: 2 - - uid: 34716 + - uid: 35186 components: - type: Transform - pos: 81.5,-11.5 + rot: 3.141592653589793 rad + pos: 6.5,15.5 parent: 2 - - uid: 34717 + - uid: 35187 components: - type: Transform - pos: -12.5,9.5 + rot: 3.141592653589793 rad + pos: 6.5,14.5 parent: 2 - - uid: 34718 + - uid: 35188 components: - type: Transform - pos: -12.5,-55.5 + rot: 3.141592653589793 rad + pos: 6.5,13.5 parent: 2 - - uid: 34719 + - uid: 35189 components: - type: Transform - pos: 87.5,-11.5 + rot: 3.141592653589793 rad + pos: 7.5,18.5 parent: 2 - - uid: 34720 + - uid: 35190 components: - type: Transform - pos: 80.5,-11.5 + rot: 3.141592653589793 rad + pos: 11.5,9.5 parent: 2 - - uid: 34721 + - uid: 35191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,2.5 + rot: 3.141592653589793 rad + pos: 11.5,8.5 parent: 2 - - uid: 34722 + - uid: 35192 components: - type: Transform - pos: -11.5,-34.5 + rot: 3.141592653589793 rad + pos: 11.5,11.5 parent: 2 - - uid: 34723 + - uid: 35193 components: - type: Transform - pos: -7.5,-37.5 + rot: 3.141592653589793 rad + pos: 11.5,10.5 parent: 2 - - uid: 34724 + - uid: 35194 components: - type: Transform - pos: -6.5,-37.5 + rot: 3.141592653589793 rad + pos: 12.5,16.5 parent: 2 - - uid: 34725 + - uid: 35195 components: - type: Transform - pos: -5.5,-38.5 + rot: 3.141592653589793 rad + pos: 13.5,12.5 parent: 2 - - uid: 34726 + - uid: 35196 components: - type: Transform - pos: -5.5,-39.5 + rot: 3.141592653589793 rad + pos: 12.5,12.5 parent: 2 - - uid: 34727 + - uid: 35197 components: - type: Transform - pos: -11.5,-37.5 + rot: 3.141592653589793 rad + pos: 13.5,10.5 parent: 2 - - uid: 34728 + - uid: 35198 components: - type: Transform - pos: -5.5,-40.5 + rot: 3.141592653589793 rad + pos: 12.5,15.5 parent: 2 - - uid: 34729 + - uid: 35199 components: - type: Transform - pos: -5.5,-41.5 + rot: 3.141592653589793 rad + pos: 12.5,17.5 parent: 2 - - uid: 34730 + - uid: 35200 components: - type: Transform - pos: -9.5,-34.5 + rot: 3.141592653589793 rad + pos: 12.5,18.5 parent: 2 - - uid: 34731 + - uid: 35201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 131.5,-39.5 + rot: 3.141592653589793 rad + pos: 18.5,8.5 parent: 2 - - uid: 34732 + - uid: 35202 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,20.5 + pos: 18.5,7.5 parent: 2 - - uid: 34733 + - uid: 35203 components: - type: Transform - pos: 45.5,14.5 + rot: 3.141592653589793 rad + pos: 18.5,5.5 parent: 2 - - uid: 34734 + - uid: 35204 components: - type: Transform - pos: 57.5,-83.5 + rot: 3.141592653589793 rad + pos: 18.5,4.5 parent: 2 - - uid: 34735 + - uid: 35205 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,20.5 + pos: 18.5,3.5 parent: 2 - - uid: 34736 + - uid: 35206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,18.5 + rot: 3.141592653589793 rad + pos: 18.5,2.5 parent: 2 - - uid: 34737 + - uid: 35207 components: - type: Transform - pos: 17.5,-32.5 + rot: 3.141592653589793 rad + pos: -15.5,21.5 parent: 2 - - uid: 34738 + - uid: 35208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-24.5 + rot: 3.141592653589793 rad + pos: -11.5,20.5 parent: 2 - - uid: 34739 + - uid: 35209 components: - type: Transform - pos: -13.5,-31.5 + rot: 3.141592653589793 rad + pos: -11.5,21.5 parent: 2 - - uid: 34740 + - uid: 35210 components: - type: Transform - pos: -19.5,-31.5 + rot: 3.141592653589793 rad + pos: -11.5,22.5 parent: 2 - - uid: 34741 + - uid: 35211 components: - type: Transform - pos: -13.5,-40.5 + rot: 3.141592653589793 rad + pos: 12.5,21.5 parent: 2 - - uid: 34742 + - uid: 35212 components: - type: Transform - pos: -3.5,-42.5 + rot: 3.141592653589793 rad + pos: 12.5,22.5 parent: 2 - - uid: 34743 + - uid: 35213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-44.5 + rot: 3.141592653589793 rad + pos: -15.5,15.5 parent: 2 - - uid: 34745 + - uid: 35214 components: - type: Transform - pos: 33.5,-105.5 + rot: 3.141592653589793 rad + pos: 11.5,-1.5 parent: 2 - - uid: 34746 + - uid: 35215 components: - type: Transform - pos: 33.5,-84.5 + rot: 3.141592653589793 rad + pos: 16.5,-1.5 parent: 2 - - uid: 34747 + - uid: 35216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-27.5 + rot: 3.141592653589793 rad + pos: 17.5,-1.5 parent: 2 - - uid: 34748 + - uid: 35217 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,-53.5 + pos: 17.5,-2.5 parent: 2 - - uid: 34749 + - uid: 35218 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,15.5 + pos: 18.5,-2.5 parent: 2 - - uid: 34750 + - uid: 35219 components: - type: Transform - pos: -33.5,-32.5 + rot: 3.141592653589793 rad + pos: 19.5,-2.5 parent: 2 - - uid: 34751 + - uid: 35220 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,15.5 + pos: 19.5,-3.5 parent: 2 - - uid: 34752 + - uid: 35221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,7.5 + rot: 3.141592653589793 rad + pos: 25.5,-9.5 parent: 2 - - uid: 34753 + - uid: 35222 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-33.5 + pos: 26.5,-9.5 parent: 2 - - uid: 34754 + - uid: 35223 components: - type: Transform - pos: -71.5,-79.5 + rot: 3.141592653589793 rad + pos: 26.5,-10.5 parent: 2 - - uid: 34755 + - uid: 35224 components: - type: Transform - pos: 41.5,8.5 + rot: 3.141592653589793 rad + pos: 26.5,-11.5 parent: 2 - - uid: 34756 + - uid: 35225 components: - type: Transform - pos: 36.5,-80.5 + rot: 3.141592653589793 rad + pos: 27.5,-11.5 parent: 2 - - uid: 34757 + - uid: 35226 components: - type: Transform - pos: 102.5,-54.5 + rot: 3.141592653589793 rad + pos: 27.5,-12.5 parent: 2 - - uid: 34758 + - uid: 35227 components: - type: Transform - pos: 103.5,-54.5 + rot: 3.141592653589793 rad + pos: 38.5,-84.5 parent: 2 - - uid: 34759 + - uid: 35228 components: - type: Transform - pos: 93.5,-56.5 + rot: 3.141592653589793 rad + pos: 20.5,17.5 parent: 2 - - uid: 34760 + - uid: 35229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-45.5 + rot: 3.141592653589793 rad + pos: 21.5,17.5 parent: 2 - - uid: 34761 + - uid: 35230 components: - type: Transform - pos: -59.5,-77.5 + rot: 3.141592653589793 rad + pos: 23.5,17.5 parent: 2 - - uid: 34762 + - uid: 35231 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-6.5 + pos: 39.5,6.5 parent: 2 - - uid: 34763 + - uid: 35232 components: - type: Transform - pos: 41.5,7.5 + rot: 3.141592653589793 rad + pos: 44.5,-110.5 parent: 2 - - uid: 34764 + - uid: 35233 components: - type: Transform - pos: 98.5,-56.5 + rot: -1.5707963267948966 rad + pos: 31.5,-94.5 parent: 2 - - uid: 34765 + - uid: 35234 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,9.5 + pos: 41.5,-11.5 parent: 2 - - uid: 34766 + - uid: 35235 components: - type: Transform - pos: 110.5,-55.5 + rot: 3.141592653589793 rad + pos: 41.5,-6.5 parent: 2 - - uid: 34767 + - uid: 35236 components: - type: Transform rot: 3.141592653589793 rad - pos: -74.5,9.5 + pos: 40.5,-6.5 parent: 2 - - uid: 34768 + - uid: 35237 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,8.5 + pos: 38.5,-1.5 parent: 2 - - uid: 34769 + - uid: 35238 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,13.5 + pos: 38.5,-0.5 parent: 2 - - uid: 34770 + - uid: 35239 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,13.5 + pos: 38.5,0.5 parent: 2 - - uid: 34771 + - uid: 35240 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,9.5 + pos: 38.5,1.5 parent: 2 - - uid: 34772 + - uid: 35241 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,8.5 + pos: 38.5,2.5 parent: 2 - - uid: 34773 + - uid: 35242 components: - type: Transform rot: 3.141592653589793 rad - pos: -72.5,8.5 + pos: 38.5,3.5 parent: 2 - - uid: 34774 + - uid: 35243 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,8.5 + pos: 38.5,4.5 parent: 2 - - uid: 34775 + - uid: 35244 components: - type: Transform rot: 3.141592653589793 rad - pos: -70.5,8.5 + pos: 38.5,5.5 parent: 2 - - uid: 34776 + - uid: 35245 components: - type: Transform rot: 3.141592653589793 rad - pos: -74.5,11.5 + pos: 38.5,6.5 parent: 2 - - uid: 34777 + - uid: 35246 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,11.5 + pos: 40.5,6.5 parent: 2 - - uid: 34778 + - uid: 35247 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,9.5 + pos: 41.5,6.5 parent: 2 - - uid: 34779 + - uid: 35248 components: - type: Transform - pos: 110.5,-50.5 + rot: 3.141592653589793 rad + pos: 39.5,-1.5 parent: 2 - - uid: 34780 + - uid: 35249 components: - type: Transform - pos: 110.5,-48.5 + rot: 3.141592653589793 rad + pos: 56.5,-78.5 parent: 2 - - uid: 34781 + - uid: 35250 components: - type: Transform - pos: 41.5,-81.5 + rot: 3.141592653589793 rad + pos: 47.5,11.5 parent: 2 - - uid: 34782 + - uid: 35251 components: - type: Transform - pos: -73.5,-79.5 + rot: 1.5707963267948966 rad + pos: 18.5,-90.5 parent: 2 - - uid: 34783 + - uid: 35252 components: - type: Transform - pos: -73.5,-72.5 + rot: 1.5707963267948966 rad + pos: 8.5,-104.5 parent: 2 - - uid: 34784 + - uid: 35253 components: - type: Transform - pos: -73.5,-74.5 + rot: 1.5707963267948966 rad + pos: 58.5,-48.5 parent: 2 - - uid: 34785 + - uid: 35254 components: - type: Transform - pos: -45.5,-70.5 + pos: 79.5,7.5 parent: 2 - - uid: 34786 + - uid: 35255 components: - type: Transform - pos: -45.5,-68.5 + pos: -70.5,-46.5 parent: 2 - - uid: 34787 + - uid: 35256 components: - type: Transform - pos: -59.5,-75.5 + pos: 59.5,-67.5 parent: 2 - - uid: 34788 + - uid: 35257 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-124.5 + pos: -81.5,-36.5 parent: 2 - - uid: 34789 + - uid: 35258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-57.5 + rot: 3.141592653589793 rad + pos: 41.5,-110.5 parent: 2 - - uid: 34790 + - uid: 35259 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-61.5 + pos: 10.5,-104.5 parent: 2 - - uid: 34791 + - uid: 35261 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-124.5 + pos: 32.5,-91.5 parent: 2 - - uid: 34792 + - uid: 35262 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,13.5 + rot: -1.5707963267948966 rad + pos: 33.5,-85.5 parent: 2 - - uid: 34793 + - uid: 35263 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,13.5 + rot: -1.5707963267948966 rad + pos: 32.5,-85.5 parent: 2 - - uid: 34794 + - uid: 35264 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-124.5 + pos: 31.5,-85.5 parent: 2 - - uid: 34795 + - uid: 35265 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,12.5 + pos: 81.5,-19.5 parent: 2 - - uid: 34796 + - uid: 35266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-51.5 + pos: 35.5,-84.5 parent: 2 - - uid: 34797 + - uid: 35267 components: - type: Transform rot: 3.141592653589793 rad - pos: 80.5,-51.5 + pos: 89.5,-19.5 parent: 2 - - uid: 34798 + - uid: 35268 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,-51.5 + pos: 90.5,-19.5 parent: 2 - - uid: 34799 + - uid: 35269 components: - type: Transform - pos: 43.5,-81.5 + rot: 3.141592653589793 rad + pos: 85.5,-25.5 parent: 2 - - uid: 34800 + - uid: 35270 components: - type: Transform - pos: 110.5,-51.5 + rot: 3.141592653589793 rad + pos: 79.5,-15.5 parent: 2 - - uid: 34801 + - uid: 35271 components: - type: Transform - pos: -52.5,-73.5 + rot: 3.141592653589793 rad + pos: 80.5,-15.5 parent: 2 - - uid: 34802 + - uid: 35272 components: - type: Transform - pos: -53.5,-72.5 + pos: 53.5,15.5 parent: 2 - - uid: 34803 + - uid: 35273 components: - type: Transform - pos: -59.5,-74.5 + pos: 52.5,17.5 parent: 2 - - uid: 34804 + - uid: 35274 components: - type: Transform - pos: -72.5,-75.5 + rot: 3.141592653589793 rad + pos: 58.5,-26.5 parent: 2 - - uid: 34805 + - uid: 35275 components: - type: Transform - pos: -71.5,-75.5 + rot: 1.5707963267948966 rad + pos: 61.5,-48.5 parent: 2 - - uid: 34806 + - uid: 35276 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-71.5 + pos: 58.5,-24.5 parent: 2 - - uid: 34807 + - uid: 35277 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-72.5 + pos: 78.5,-15.5 parent: 2 - - uid: 34808 + - uid: 35278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-73.5 + rot: 1.5707963267948966 rad + pos: 57.5,-48.5 parent: 2 - - uid: 34809 + - uid: 35279 components: - type: Transform - pos: -34.5,-27.5 + rot: 3.141592653589793 rad + pos: 77.5,-15.5 parent: 2 - - uid: 34810 + - uid: 35280 components: - type: Transform - pos: -70.5,-75.5 + rot: 3.141592653589793 rad + pos: 41.5,-12.5 parent: 2 - - uid: 34811 + - uid: 35281 components: - type: Transform - pos: -59.5,-70.5 + rot: 3.141592653589793 rad + pos: 41.5,-14.5 parent: 2 - - uid: 34812 + - uid: 35282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-123.5 + rot: 3.141592653589793 rad + pos: 41.5,-16.5 parent: 2 - - uid: 34813 + - uid: 35283 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-66.5 + pos: 41.5,-15.5 parent: 2 - - uid: 34814 + - uid: 35284 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-56.5 + pos: 58.5,-22.5 parent: 2 - - uid: 34815 + - uid: 35285 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-52.5 + pos: 75.5,-15.5 parent: 2 - - uid: 34816 + - uid: 35286 components: - type: Transform - pos: 87.5,-57.5 + rot: 3.141592653589793 rad + pos: 41.5,-13.5 parent: 2 - - uid: 34817 + - uid: 35287 components: - type: Transform - pos: 71.5,-67.5 + rot: 3.141592653589793 rad + pos: 58.5,-23.5 parent: 2 - - uid: 34818 + - uid: 35288 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-57.5 + pos: 76.5,-15.5 parent: 2 - - uid: 34819 + - uid: 35289 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-51.5 + pos: 56.5,-79.5 parent: 2 - - uid: 34820 + - uid: 35290 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,-51.5 + pos: 46.5,-26.5 parent: 2 - - uid: 34821 + - uid: 35291 components: - type: Transform - pos: 70.5,-67.5 + pos: 41.5,-76.5 parent: 2 - - uid: 34822 + - uid: 35292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-51.5 + pos: 64.5,-63.5 parent: 2 - - uid: 34823 + - uid: 35293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-51.5 + pos: 67.5,-64.5 parent: 2 - - uid: 34824 + - uid: 35294 components: - type: Transform - pos: 87.5,-58.5 + rot: 3.141592653589793 rad + pos: 80.5,-16.5 parent: 2 - - uid: 34825 + - uid: 35295 components: - type: Transform - pos: 83.5,-56.5 + rot: -1.5707963267948966 rad + pos: -69.5,-52.5 parent: 2 - - uid: 34826 + - uid: 35296 components: - type: Transform - pos: 87.5,-59.5 + rot: 3.141592653589793 rad + pos: 80.5,-20.5 parent: 2 - - uid: 34827 + - uid: 35297 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-55.5 + pos: 80.5,-19.5 parent: 2 - - uid: 34828 + - uid: 35298 components: - type: Transform - pos: 87.5,-56.5 + rot: 3.141592653589793 rad + pos: 80.5,-18.5 parent: 2 - - uid: 34829 + - uid: 35299 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-51.5 + pos: 80.5,-17.5 parent: 2 - - uid: 34830 + - uid: 35300 components: - type: Transform - pos: 69.5,-67.5 + rot: 3.141592653589793 rad + pos: 85.5,-19.5 parent: 2 - - uid: 34831 + - uid: 35301 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-54.5 + pos: 83.5,-19.5 parent: 2 - - uid: 34832 + - uid: 35302 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-53.5 + pos: 82.5,-19.5 parent: 2 - - uid: 34833 + - uid: 35303 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,13.5 + pos: 84.5,-19.5 parent: 2 - - uid: 34834 + - uid: 35304 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,13.5 + pos: 84.5,-18.5 parent: 2 - - uid: 34835 + - uid: 35305 components: - type: Transform rot: 3.141592653589793 rad - pos: -60.5,13.5 + pos: 84.5,-26.5 parent: 2 - - uid: 34836 + - uid: 35306 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,13.5 + pos: 84.5,-25.5 parent: 2 - - uid: 34837 + - uid: 35307 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,-51.5 + pos: 97.5,-24.5 parent: 2 - - uid: 34838 + - uid: 35308 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,13.5 + pos: 50.5,-26.5 parent: 2 - - uid: 34839 + - uid: 35309 components: - type: Transform - pos: 37.5,-81.5 + rot: 3.141592653589793 rad + pos: 49.5,-26.5 parent: 2 - - uid: 34840 + - uid: 35310 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,13.5 + pos: 48.5,-26.5 parent: 2 - - uid: 34841 + - uid: 35311 components: - type: Transform - pos: 87.5,-60.5 + rot: 3.141592653589793 rad + pos: 47.5,-26.5 parent: 2 - - uid: 34842 + - uid: 35312 components: - type: Transform - pos: 87.5,-61.5 + rot: 3.141592653589793 rad + pos: 89.5,-25.5 parent: 2 - - uid: 34843 + - uid: 35313 components: - type: Transform - pos: 86.5,-62.5 + rot: 3.141592653589793 rad + pos: 90.5,-24.5 parent: 2 - - uid: 34844 + - uid: 35314 components: - type: Transform - pos: 85.5,-56.5 + rot: 3.141592653589793 rad + pos: 90.5,-25.5 parent: 2 - - uid: 34845 + - uid: 35315 components: - type: Transform - pos: 84.5,-56.5 + rot: 3.141592653589793 rad + pos: 92.5,-24.5 parent: 2 - - uid: 34846 + - uid: 35316 components: - type: Transform - pos: 84.5,-62.5 + rot: 3.141592653589793 rad + pos: 92.5,-19.5 parent: 2 - - uid: 34847 + - uid: 35317 components: - type: Transform - pos: 68.5,-67.5 + pos: 108.5,-23.5 parent: 2 - - uid: 34848 + - uid: 35318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-27.5 + pos: 97.5,-20.5 parent: 2 - - uid: 34849 + - uid: 35319 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-64.5 + pos: 92.5,-26.5 parent: 2 - - uid: 34850 + - uid: 35320 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-63.5 + pos: 90.5,-26.5 parent: 2 - - uid: 34851 + - uid: 35321 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-66.5 + pos: 99.5,-24.5 parent: 2 - - uid: 34852 + - uid: 35322 components: - type: Transform - pos: 85.5,-62.5 + rot: 3.141592653589793 rad + pos: 99.5,-25.5 parent: 2 - - uid: 34853 + - uid: 35323 components: - type: Transform - pos: 83.5,-62.5 + rot: 3.141592653589793 rad + pos: 99.5,-19.5 parent: 2 - - uid: 34854 + - uid: 35324 components: - type: Transform - pos: 87.5,-62.5 + rot: 3.141592653589793 rad + pos: 97.5,-19.5 parent: 2 - - uid: 34855 + - uid: 35325 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-51.5 + pos: 99.5,-26.5 parent: 2 - - uid: 34856 + - uid: 35326 components: - type: Transform - pos: 72.5,-67.5 + rot: 3.141592653589793 rad + pos: 97.5,-26.5 parent: 2 - - uid: 34857 + - uid: 35327 components: - type: Transform - pos: 73.5,-67.5 + pos: 92.5,-20.5 parent: 2 - - uid: 34858 + - uid: 35328 components: - type: Transform - pos: 74.5,-67.5 + rot: 3.141592653589793 rad + pos: 103.5,-19.5 parent: 2 - - uid: 34859 + - uid: 35331 components: - type: Transform - pos: 75.5,-67.5 + rot: 3.141592653589793 rad + pos: 103.5,-25.5 parent: 2 - - uid: 34860 + - uid: 35332 components: - type: Transform - pos: 79.5,-67.5 + rot: 3.141592653589793 rad + pos: 103.5,-24.5 parent: 2 - - uid: 34861 + - uid: 35333 components: - type: Transform - pos: 80.5,-67.5 + rot: 3.141592653589793 rad + pos: 103.5,-23.5 parent: 2 - - uid: 34862 + - uid: 35334 components: - type: Transform - pos: 81.5,-67.5 + pos: 90.5,-20.5 parent: 2 - - uid: 34863 + - uid: 35335 components: - type: Transform - pos: 82.5,-67.5 + rot: 3.141592653589793 rad + pos: 40.5,-84.5 parent: 2 - - uid: 34864 + - uid: 35336 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-62.5 + pos: 39.5,-84.5 parent: 2 - - uid: 34865 + - uid: 35337 components: - type: Transform rot: 3.141592653589793 rad - pos: 82.5,-61.5 + pos: 41.5,-84.5 parent: 2 - - uid: 34866 + - uid: 35338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-57.5 + rot: 3.141592653589793 rad + pos: 43.5,-84.5 parent: 2 - - uid: 34867 + - uid: 35339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-61.5 + rot: 3.141592653589793 rad + pos: 84.5,-31.5 parent: 2 - - uid: 34868 + - uid: 35340 components: - type: Transform - pos: -56.5,-68.5 + rot: 3.141592653589793 rad + pos: 84.5,-36.5 parent: 2 - - uid: 34869 + - uid: 35341 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,11.5 + pos: 84.5,-37.5 parent: 2 - - uid: 34870 + - uid: 35342 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,13.5 + pos: 97.5,-36.5 parent: 2 - - uid: 34871 + - uid: 35343 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,19.5 + pos: 97.5,-38.5 parent: 2 - - uid: 34872 + - uid: 35344 components: - type: Transform - pos: 20.5,22.5 + rot: 3.141592653589793 rad + pos: 99.5,-36.5 parent: 2 - - uid: 34873 + - uid: 35345 components: - type: Transform - pos: 21.5,22.5 + rot: 3.141592653589793 rad + pos: 99.5,-37.5 parent: 2 - - uid: 34874 + - uid: 35346 components: - type: Transform - pos: 20.5,21.5 + rot: 3.141592653589793 rad + pos: 99.5,-38.5 parent: 2 - - uid: 34875 + - uid: 35347 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,12.5 + pos: 92.5,-36.5 parent: 2 - - uid: 34876 + - uid: 35348 components: - type: Transform rot: 3.141592653589793 rad - pos: -72.5,12.5 + pos: 92.5,-38.5 parent: 2 - - uid: 34877 + - uid: 35349 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,11.5 + pos: 90.5,-38.5 parent: 2 - - uid: 34878 + - uid: 35350 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,12.5 + pos: 90.5,-37.5 parent: 2 - - uid: 34879 + - uid: 35351 components: - type: Transform - pos: -80.5,8.5 + rot: 3.141592653589793 rad + pos: 90.5,-36.5 parent: 2 - - uid: 34880 + - uid: 35352 components: - type: Transform - pos: -75.5,8.5 + rot: 3.141592653589793 rad + pos: 89.5,-37.5 parent: 2 - - uid: 34881 + - uid: 35353 components: - type: Transform - pos: -79.5,8.5 + rot: 3.141592653589793 rad + pos: 85.5,-37.5 parent: 2 - - uid: 34882 + - uid: 35354 components: - type: Transform - pos: -80.5,-53.5 + rot: 3.141592653589793 rad + pos: 103.5,-37.5 parent: 2 - - uid: 34883 + - uid: 35355 components: - type: Transform - pos: -79.5,-53.5 + pos: 106.5,-60.5 parent: 2 - - uid: 34884 + - uid: 35356 components: - type: Transform - pos: 76.5,-67.5 + rot: -1.5707963267948966 rad + pos: -57.5,-98.5 parent: 2 - - uid: 34885 + - uid: 35357 components: - type: Transform - pos: 77.5,-67.5 + rot: -1.5707963267948966 rad + pos: -57.5,-102.5 parent: 2 - - uid: 34886 + - uid: 35358 components: - type: Transform - pos: 78.5,-67.5 + rot: -1.5707963267948966 rad + pos: -57.5,-96.5 parent: 2 - - uid: 34887 + - uid: 35359 components: - type: Transform - pos: -78.5,-53.5 + rot: 3.141592653589793 rad + pos: 42.5,-84.5 parent: 2 - - uid: 34888 + - uid: 35360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-76.5 + rot: 3.141592653589793 rad + pos: 44.5,-84.5 parent: 2 - - uid: 34889 + - uid: 35361 components: - type: Transform - pos: -59.5,-71.5 + rot: 3.141592653589793 rad + pos: 42.5,-39.5 parent: 2 - - uid: 34890 + - uid: 35362 components: - type: Transform - pos: -73.5,-75.5 + rot: 3.141592653589793 rad + pos: 42.5,-40.5 parent: 2 - - uid: 34891 + - uid: 35363 components: - type: Transform - pos: -70.5,-79.5 + rot: 3.141592653589793 rad + pos: 42.5,-34.5 parent: 2 - - uid: 34892 + - uid: 35364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-77.5 + rot: 3.141592653589793 rad + pos: 42.5,-35.5 parent: 2 - - uid: 34893 + - uid: 35365 components: - type: Transform - pos: 45.5,11.5 + rot: 3.141592653589793 rad + pos: 42.5,-36.5 parent: 2 - - uid: 34894 + - uid: 35366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-75.5 + rot: 3.141592653589793 rad + pos: 42.5,-41.5 parent: 2 - - uid: 34895 + - uid: 35367 components: - type: Transform - pos: 27.5,31.5 + rot: 3.141592653589793 rad + pos: 41.5,-41.5 parent: 2 - - uid: 34896 + - uid: 35368 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,-18.5 + pos: 40.5,-41.5 parent: 2 - - uid: 34897 + - uid: 35369 components: - type: Transform rot: 3.141592653589793 rad - pos: -86.5,-18.5 + pos: 40.5,-40.5 parent: 2 - - uid: 34898 + - uid: 35370 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,-22.5 + pos: 39.5,-40.5 parent: 2 - - uid: 34899 + - uid: 35371 components: - type: Transform - pos: -56.5,-70.5 + rot: 3.141592653589793 rad + pos: 37.5,-40.5 parent: 2 - - uid: 34900 + - uid: 35372 components: - type: Transform rot: 3.141592653589793 rad - pos: -86.5,-22.5 + pos: 36.5,-40.5 parent: 2 - - uid: 34901 + - uid: 35373 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,-22.5 + pos: 36.5,-41.5 parent: 2 - - uid: 34902 + - uid: 35374 components: - type: Transform - pos: -69.5,-75.5 + rot: 3.141592653589793 rad + pos: 36.5,-42.5 parent: 2 - - uid: 34903 + - uid: 35375 components: - type: Transform - pos: 43.5,11.5 + rot: 3.141592653589793 rad + pos: 36.5,-43.5 parent: 2 - - uid: 34904 + - uid: 35376 components: - type: Transform - pos: -59.5,-72.5 + rot: 3.141592653589793 rad + pos: 35.5,-41.5 parent: 2 - - uid: 34905 + - uid: 35377 components: - type: Transform - pos: -69.5,-48.5 + rot: 3.141592653589793 rad + pos: 34.5,-41.5 parent: 2 - - uid: 34906 + - uid: 35378 components: - type: Transform - pos: -69.5,-49.5 + rot: 3.141592653589793 rad + pos: 40.5,-43.5 parent: 2 - - uid: 34907 + - uid: 35379 components: - type: Transform - pos: -77.5,8.5 + rot: 3.141592653589793 rad + pos: 40.5,-42.5 parent: 2 - - uid: 34908 + - uid: 35380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,6.5 + rot: 3.141592653589793 rad + pos: 34.5,-40.5 parent: 2 - - uid: 34909 + - uid: 35381 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,-44.5 + pos: 34.5,-39.5 parent: 2 - - uid: 34910 + - uid: 35382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-48.5 + rot: 3.141592653589793 rad + pos: 34.5,-38.5 parent: 2 - - uid: 34911 + - uid: 35383 components: - type: Transform - pos: 108.5,-60.5 + rot: 3.141592653589793 rad + pos: 34.5,-37.5 parent: 2 - - uid: 34912 + - uid: 35384 components: - type: Transform - pos: 30.5,-103.5 + rot: 3.141592653589793 rad + pos: 34.5,-36.5 parent: 2 - - uid: 34913 + - uid: 35385 components: - type: Transform - pos: 33.5,-103.5 + rot: 3.141592653589793 rad + pos: 34.5,-35.5 parent: 2 - - uid: 34914 + - uid: 35386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-86.5 + rot: 3.141592653589793 rad + pos: 34.5,-34.5 parent: 2 - - uid: 34915 + - uid: 35387 components: - type: Transform - pos: 32.5,-103.5 + rot: 3.141592653589793 rad + pos: 35.5,-34.5 parent: 2 - - uid: 34916 + - uid: 35388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-89.5 + rot: 3.141592653589793 rad + pos: 36.5,-34.5 parent: 2 - - uid: 34917 + - uid: 35389 components: - type: Transform - pos: 31.5,-103.5 + rot: 3.141592653589793 rad + pos: 37.5,-34.5 parent: 2 - - uid: 34918 + - uid: 35390 components: - type: Transform - pos: 102.5,-75.5 + rot: 3.141592653589793 rad + pos: 38.5,-34.5 parent: 2 - - uid: 34919 + - uid: 35391 components: - type: Transform - pos: 77.5,-68.5 + rot: 3.141592653589793 rad + pos: 39.5,-34.5 parent: 2 - - uid: 34920 + - uid: 35392 components: - type: Transform - pos: 68.5,-68.5 + rot: 3.141592653589793 rad + pos: 40.5,-34.5 parent: 2 - - uid: 34921 + - uid: 35393 components: - type: Transform - pos: -45.5,-67.5 + rot: 3.141592653589793 rad + pos: 41.5,-34.5 parent: 2 - - uid: 34922 + - uid: 35394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-101.5 + rot: 3.141592653589793 rad + pos: 34.5,-42.5 parent: 2 - - uid: 34924 + - uid: 35395 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,-4.5 + pos: 34.5,-43.5 parent: 2 - - uid: 34927 + - uid: 35396 components: - type: Transform - pos: 42.5,-81.5 + rot: 3.141592653589793 rad + pos: 34.5,-44.5 parent: 2 - - uid: 34928 + - uid: 35397 components: - type: Transform - pos: 35.5,-94.5 + rot: 3.141592653589793 rad + pos: 35.5,-45.5 parent: 2 - - uid: 34929 + - uid: 35398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-69.5 + rot: 3.141592653589793 rad + pos: 36.5,-45.5 parent: 2 - - uid: 34930 + - uid: 35401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-87.5 + rot: 3.141592653589793 rad + pos: 39.5,-45.5 parent: 2 - - uid: 34931 + - uid: 35402 components: - type: Transform - pos: 35.5,-100.5 + rot: 3.141592653589793 rad + pos: 40.5,-45.5 parent: 2 - - uid: 34932 + - uid: 35403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,-48.5 + rot: 3.141592653589793 rad + pos: 41.5,-45.5 parent: 2 - - uid: 34933 + - uid: 35404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-36.5 + rot: 3.141592653589793 rad + pos: 42.5,-45.5 parent: 2 - - uid: 34934 + - uid: 35405 components: - type: Transform - pos: 27.5,30.5 + rot: 3.141592653589793 rad + pos: 42.5,-44.5 parent: 2 - - uid: 34935 + - uid: 35406 components: - type: Transform - pos: -45.5,-71.5 + rot: 3.141592653589793 rad + pos: 42.5,-43.5 parent: 2 - - uid: 34936 + - uid: 35407 components: - type: Transform - pos: 51.5,-95.5 + rot: 3.141592653589793 rad + pos: 42.5,-42.5 parent: 2 - - uid: 34937 + - uid: 35408 components: - type: Transform - pos: 99.5,-93.5 + rot: 3.141592653589793 rad + pos: 66.5,-19.5 parent: 2 - - uid: 34938 + - uid: 35409 components: - type: Transform - pos: 93.5,-86.5 + rot: 3.141592653589793 rad + pos: 66.5,-18.5 parent: 2 - - uid: 34939 + - uid: 35410 components: - type: Transform - pos: 103.5,-87.5 + rot: 3.141592653589793 rad + pos: 54.5,-27.5 parent: 2 - - uid: 34940 + - uid: 35411 components: - type: Transform - pos: 102.5,-91.5 + rot: 3.141592653589793 rad + pos: 55.5,-27.5 parent: 2 - - uid: 34941 + - uid: 35412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-104.5 + rot: 3.141592653589793 rad + pos: 66.5,-20.5 parent: 2 - - uid: 34942 + - uid: 35413 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-104.5 + pos: 66.5,-21.5 parent: 2 - - uid: 34943 + - uid: 35414 components: - type: Transform - pos: 35.5,-88.5 + rot: 3.141592653589793 rad + pos: 54.5,-49.5 parent: 2 - - uid: 34944 + - uid: 35415 components: - type: Transform - pos: 93.5,-87.5 + rot: 3.141592653589793 rad + pos: 54.5,-53.5 parent: 2 - - uid: 34945 + - uid: 35416 components: - type: Transform - pos: 96.5,-91.5 + pos: 60.5,-65.5 parent: 2 - - uid: 34946 + - uid: 35417 components: - type: Transform - pos: 97.5,-92.5 + rot: 3.141592653589793 rad + pos: 61.5,-49.5 parent: 2 - - uid: 34947 + - uid: 35418 components: - type: Transform - pos: 26.5,27.5 + rot: 3.141592653589793 rad + pos: 61.5,-51.5 parent: 2 - - uid: 34948 + - uid: 35419 components: - type: Transform - pos: 29.5,35.5 + rot: 3.141592653589793 rad + pos: 61.5,-52.5 parent: 2 - - uid: 34949 + - uid: 35420 components: - type: Transform - pos: -81.5,-52.5 + rot: 3.141592653589793 rad + pos: 54.5,-50.5 parent: 2 - - uid: 34950 + - uid: 35421 components: - type: Transform - pos: -59.5,-120.5 + rot: 3.141592653589793 rad + pos: 54.5,-51.5 parent: 2 - - uid: 34951 + - uid: 35422 components: - type: Transform - pos: -59.5,-121.5 + rot: 3.141592653589793 rad + pos: 54.5,-52.5 parent: 2 - - uid: 34952 + - uid: 35423 components: - type: Transform - pos: -58.5,-121.5 + rot: 3.141592653589793 rad + pos: 54.5,-54.5 parent: 2 - - uid: 34953 + - uid: 35424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-95.5 + rot: 3.141592653589793 rad + pos: 54.5,-55.5 parent: 2 - - uid: 34954 + - uid: 35425 components: - type: Transform - pos: -78.5,8.5 + pos: 61.5,-55.5 parent: 2 - - uid: 34955 + - uid: 35426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-6.5 + pos: 56.5,-57.5 parent: 2 - - uid: 34956 + - uid: 35427 components: - type: Transform - pos: -81.5,-51.5 + pos: 55.5,-57.5 parent: 2 - - uid: 34957 + - uid: 35428 components: - type: Transform - pos: -81.5,-49.5 + pos: 54.5,-57.5 parent: 2 - - uid: 34958 + - uid: 35429 components: - type: Transform - pos: -81.5,-50.5 + pos: 54.5,-59.5 parent: 2 - - uid: 34959 + - uid: 35430 components: - type: Transform - pos: -58.5,-89.5 + pos: 54.5,-61.5 parent: 2 - - uid: 34961 + - uid: 35431 components: - type: Transform - pos: 103.5,-89.5 + pos: 55.5,-61.5 parent: 2 - - uid: 34962 + - uid: 35432 components: - type: Transform - pos: -15.5,-102.5 + pos: 59.5,-61.5 parent: 2 - - uid: 34963 + - uid: 35433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-86.5 + pos: 60.5,-61.5 parent: 2 - - uid: 34964 + - uid: 35434 components: - type: Transform - pos: 99.5,-82.5 + pos: 53.5,-61.5 parent: 2 - - uid: 34965 + - uid: 35435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 92.5,-65.5 + pos: 52.5,-61.5 parent: 2 - - uid: 34966 + - uid: 35436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-119.5 + pos: 52.5,-62.5 parent: 2 - - uid: 34967 + - uid: 35437 components: - type: Transform - pos: -81.5,-53.5 + pos: 52.5,-66.5 parent: 2 - - uid: 34968 + - uid: 35438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-120.5 + pos: 52.5,-67.5 parent: 2 - - uid: 34969 + - uid: 35439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-121.5 + pos: 53.5,-67.5 parent: 2 - - uid: 34970 + - uid: 35440 components: - type: Transform - pos: 28.5,32.5 + pos: 54.5,-67.5 parent: 2 - - uid: 34971 + - uid: 35441 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,13.5 + pos: 55.5,-67.5 parent: 2 - - uid: 34972 + - uid: 35442 components: - type: Transform - pos: -46.5,-70.5 + pos: 56.5,-67.5 parent: 2 - - uid: 34973 + - uid: 35443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-76.5 + pos: 57.5,-67.5 parent: 2 - - uid: 34974 + - uid: 35444 components: - type: Transform - pos: 26.5,29.5 + pos: 58.5,-67.5 parent: 2 - - uid: 34975 + - uid: 35445 components: - type: Transform - pos: 27.5,29.5 + pos: 65.5,-63.5 parent: 2 - - uid: 34976 + - uid: 35446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-122.5 + pos: 65.5,-64.5 parent: 2 - - uid: 34977 + - uid: 35447 components: - type: Transform - pos: -76.5,8.5 + pos: 65.5,-65.5 parent: 2 - - uid: 34978 + - uid: 35448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-122.5 + pos: 65.5,-66.5 parent: 2 - - uid: 34979 + - uid: 35449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-122.5 + pos: 64.5,-66.5 parent: 2 - - uid: 34980 + - uid: 35450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-123.5 + pos: 63.5,-66.5 parent: 2 - - uid: 34981 + - uid: 35451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-124.5 + pos: 62.5,-66.5 parent: 2 - - uid: 34982 + - uid: 35452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-124.5 + pos: 62.5,-67.5 parent: 2 - - uid: 34983 + - uid: 35453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-89.5 + pos: 62.5,-70.5 parent: 2 - - uid: 34984 + - uid: 35454 components: - type: Transform - pos: 28.5,33.5 + pos: 63.5,-70.5 parent: 2 - - uid: 34985 + - uid: 35455 components: - type: Transform - pos: 97.5,-81.5 + pos: 62.5,-71.5 parent: 2 - - uid: 34986 + - uid: 35456 components: - type: Transform - pos: 101.5,-81.5 + pos: 65.5,-70.5 parent: 2 - - uid: 34987 + - uid: 35457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-75.5 + pos: 66.5,-70.5 parent: 2 - - uid: 34988 + - uid: 35458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-81.5 + pos: 66.5,-71.5 parent: 2 - - uid: 34989 + - uid: 35459 components: - type: Transform - pos: -52.5,-70.5 + pos: 66.5,-72.5 parent: 2 - - uid: 34990 + - uid: 35460 components: - type: Transform - pos: -52.5,-69.5 + pos: 65.5,-72.5 parent: 2 - - uid: 34991 + - uid: 35461 components: - type: Transform - pos: 28.5,35.5 + pos: 63.5,-72.5 parent: 2 - - uid: 34992 + - uid: 35462 components: - type: Transform - pos: 37.5,36.5 + pos: 62.5,-72.5 parent: 2 - - uid: 34993 + - uid: 35463 components: - type: Transform - pos: 38.5,36.5 + pos: 66.5,-68.5 parent: 2 - - uid: 34994 + - uid: 35464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-124.5 + pos: 66.5,-66.5 parent: 2 - - uid: 34995 + - uid: 35465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-124.5 + pos: 67.5,-66.5 parent: 2 - - uid: 34996 + - uid: 35466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-124.5 + pos: 64.5,-52.5 parent: 2 - - uid: 34997 + - uid: 35467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-124.5 + pos: 64.5,-51.5 parent: 2 - - uid: 34998 + - uid: 35468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-65.5 + pos: 67.5,-51.5 parent: 2 - - uid: 34999 + - uid: 35469 components: - type: Transform - pos: -52.5,-67.5 + pos: 64.5,-55.5 parent: 2 - - uid: 35000 + - uid: 35470 components: - type: Transform - pos: -50.5,-67.5 + pos: 63.5,-55.5 parent: 2 - - uid: 35001 + - uid: 35471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-77.5 + pos: 62.5,-55.5 parent: 2 - - uid: 35002 + - uid: 35472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 92.5,-81.5 + rot: 3.141592653589793 rad + pos: 66.5,-15.5 parent: 2 - - uid: 35003 + - uid: 35473 components: - type: Transform - pos: 93.5,-85.5 + rot: 3.141592653589793 rad + pos: 66.5,-16.5 parent: 2 - - uid: 35004 + - uid: 35474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-81.5 + rot: 3.141592653589793 rad + pos: 66.5,-17.5 parent: 2 - - uid: 35005 + - uid: 35475 components: - type: Transform rot: -1.5707963267948966 rad - pos: 101.5,-61.5 + pos: -69.5,-53.5 parent: 2 - - uid: 35006 + - uid: 35476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-78.5 + pos: 51.5,-77.5 parent: 2 - - uid: 35007 + - uid: 35477 components: - type: Transform - pos: 94.5,-75.5 + pos: 51.5,-76.5 parent: 2 - - uid: 35008 + - uid: 35478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-73.5 + pos: 51.5,-75.5 parent: 2 - - uid: 35009 + - uid: 35479 components: - type: Transform - pos: 28.5,31.5 + pos: 51.5,-74.5 parent: 2 - - uid: 35010 + - uid: 35480 components: - type: Transform - pos: -56.5,-71.5 + pos: 51.5,-73.5 parent: 2 - - uid: 35011 + - uid: 35481 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,12.5 + pos: 51.5,-72.5 parent: 2 - - uid: 35012 + - uid: 35482 components: - type: Transform - pos: -52.5,-72.5 + pos: 51.5,-71.5 parent: 2 - - uid: 35015 + - uid: 35483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-104.5 + pos: 51.5,-70.5 parent: 2 - - uid: 35016 + - uid: 35484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,-48.5 + pos: 52.5,-70.5 parent: 2 - - uid: 35017 + - uid: 35485 components: - type: Transform - pos: 19.5,11.5 + pos: 53.5,-70.5 parent: 2 - - uid: 35018 + - uid: 35486 components: - type: Transform - pos: -56.5,-72.5 + pos: 58.5,-70.5 parent: 2 - - uid: 35019 + - uid: 35487 components: - type: Transform - pos: 83.5,-67.5 + pos: 58.5,-71.5 parent: 2 - - uid: 35020 + - uid: 35488 components: - type: Transform - pos: 87.5,-63.5 + pos: 58.5,-72.5 parent: 2 - - uid: 35021 + - uid: 35489 components: - type: Transform - pos: 46.5,11.5 + pos: 58.5,-73.5 parent: 2 - - uid: 35022 + - uid: 35490 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-21.5 + pos: 58.5,-74.5 parent: 2 - - uid: 35023 + - uid: 35491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,0.5 + pos: 58.5,-77.5 parent: 2 - - uid: 35024 + - uid: 35492 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-22.5 + pos: 57.5,-77.5 parent: 2 - - uid: 35025 + - uid: 35493 components: - type: Transform - pos: 102.5,-76.5 + pos: 56.5,-77.5 parent: 2 - - uid: 35026 + - uid: 35494 components: - type: Transform - pos: 105.5,-60.5 + pos: 55.5,-77.5 parent: 2 - - uid: 35027 + - uid: 35495 components: - type: Transform - pos: -52.5,-75.5 + pos: 54.5,-77.5 parent: 2 - - uid: 35028 + - uid: 35496 components: - type: Transform - pos: 82.5,-68.5 + pos: 53.5,-77.5 parent: 2 - - uid: 35029 + - uid: 35497 components: - type: Transform - pos: -51.5,-67.5 + pos: 52.5,-77.5 parent: 2 - - uid: 35030 + - uid: 35498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-100.5 + pos: 67.5,-54.5 parent: 2 - - uid: 35031 + - uid: 35499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-99.5 + pos: 20.5,-68.5 parent: 2 - - uid: 35032 + - uid: 35500 components: - type: Transform - pos: -58.5,-91.5 + pos: 20.5,-69.5 parent: 2 - - uid: 35033 + - uid: 35501 components: - type: Transform - pos: -58.5,-92.5 + pos: 99.5,-92.5 parent: 2 - - uid: 35034 + - uid: 35502 components: - type: Transform rot: 3.141592653589793 rad - pos: -90.5,-18.5 + pos: 56.5,-85.5 parent: 2 - - uid: 35035 + - uid: 35503 components: - type: Transform rot: 3.141592653589793 rad - pos: -90.5,-19.5 + pos: 56.5,-83.5 parent: 2 - - uid: 35036 + - uid: 35504 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-22.5 + pos: 43.5,-76.5 parent: 2 - - uid: 35037 + - uid: 35505 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-21.5 + pos: 44.5,-76.5 parent: 2 - - uid: 35038 + - uid: 35506 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-18.5 + pos: 56.5,-84.5 parent: 2 - - uid: 35039 + - uid: 35508 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-22.5 + pos: 88.5,-56.5 parent: 2 - - uid: 35040 + - uid: 35509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-65.5 + pos: 4.5,-94.5 parent: 2 - - uid: 35041 + - uid: 35510 components: - type: Transform - pos: 103.5,-85.5 + pos: 3.5,-94.5 parent: 2 - - uid: 35042 + - uid: 35511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-61.5 + pos: 2.5,-94.5 parent: 2 - - uid: 35043 + - uid: 35512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-78.5 + pos: 1.5,-94.5 parent: 2 - - uid: 35044 + - uid: 35513 components: - type: Transform - pos: 39.5,32.5 + pos: 1.5,-93.5 parent: 2 - - uid: 35045 + - uid: 35514 components: - type: Transform - pos: -72.5,-79.5 + pos: 1.5,-92.5 parent: 2 - - uid: 35046 + - uid: 35515 components: - type: Transform - pos: 44.5,11.5 + pos: -2.5,-92.5 parent: 2 - - uid: 35047 + - uid: 35516 components: - type: Transform - pos: 26.5,28.5 + pos: -3.5,-92.5 parent: 2 - - uid: 35049 + - uid: 35517 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-3.5 + pos: 1.5,-95.5 parent: 2 - - uid: 35050 + - uid: 35518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-76.5 + pos: 1.5,-96.5 parent: 2 - - uid: 35051 + - uid: 35519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-75.5 + pos: 1.5,-97.5 parent: 2 - - uid: 35052 + - uid: 35520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-75.5 + pos: 0.5,-97.5 parent: 2 - - uid: 35053 + - uid: 35521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-76.5 + pos: -0.5,-97.5 parent: 2 - - uid: 35054 + - uid: 35522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-78.5 + pos: -2.5,-97.5 parent: 2 - - uid: 35055 + - uid: 35523 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-79.5 + pos: -3.5,-97.5 parent: 2 - - uid: 35056 + - uid: 35524 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-79.5 + pos: -4.5,-97.5 parent: 2 - - uid: 35057 + - uid: 35525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-60.5 + pos: -4.5,-96.5 parent: 2 - - uid: 35058 + - uid: 35526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 106.5,-70.5 + pos: -4.5,-95.5 parent: 2 - - uid: 35059 + - uid: 35527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 106.5,-71.5 + pos: -4.5,-94.5 parent: 2 - - uid: 35060 + - uid: 35528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-61.5 + pos: -4.5,-93.5 parent: 2 - - uid: 35061 + - uid: 35529 components: - type: Transform - pos: 95.5,-81.5 + pos: -4.5,-92.5 parent: 2 - - uid: 35062 + - uid: 35530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-65.5 + pos: 0.5,-101.5 parent: 2 - - uid: 35063 + - uid: 35533 components: - type: Transform - pos: 106.5,-64.5 + pos: -1.5,-101.5 parent: 2 - - uid: 35064 + - uid: 35549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-103.5 + rot: 3.141592653589793 rad + pos: -4.5,-104.5 parent: 2 - - uid: 35065 + - uid: 35553 components: - type: Transform - pos: 102.5,-90.5 + pos: 0.5,-100.5 parent: 2 - - uid: 35066 + - uid: 35554 components: - type: Transform - pos: 100.5,-59.5 + pos: -1.5,-82.5 parent: 2 - - uid: 35067 + - uid: 35555 components: - type: Transform - pos: 100.5,-91.5 + pos: -10.5,-86.5 parent: 2 - - uid: 35068 + - uid: 35556 components: - type: Transform - pos: 102.5,-89.5 + pos: -10.5,-87.5 parent: 2 - - uid: 35069 + - uid: 35557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-73.5 + pos: -10.5,-88.5 parent: 2 - - uid: 35070 + - uid: 35558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 92.5,-77.5 + pos: -10.5,-89.5 parent: 2 - - uid: 35071 + - uid: 35560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-73.5 + rot: 1.5707963267948966 rad + pos: -56.5,-117.5 parent: 2 - - uid: 35072 + - uid: 35561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-65.5 + pos: -37.5,-75.5 parent: 2 - - uid: 35073 + - uid: 35562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-65.5 + pos: -36.5,-75.5 parent: 2 - - uid: 35074 + - uid: 35563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-80.5 + pos: -35.5,-75.5 parent: 2 - - uid: 35075 + - uid: 35564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,12.5 + pos: -34.5,-75.5 parent: 2 - - uid: 35076 + - uid: 35565 components: - type: Transform - pos: -3.5,-1.5 + pos: -33.5,-75.5 parent: 2 - - uid: 35077 + - uid: 35566 components: - type: Transform - pos: -2.5,-1.5 + pos: -33.5,-74.5 parent: 2 - - uid: 35078 + - uid: 35567 components: - type: Transform - pos: 3.5,-1.5 + pos: -33.5,-73.5 parent: 2 - - uid: 35079 + - uid: 35568 components: - type: Transform - pos: -4.5,-1.5 + pos: -33.5,-72.5 parent: 2 - - uid: 35080 + - uid: 35569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,9.5 + pos: -33.5,-71.5 parent: 2 - - uid: 35081 + - uid: 35570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,16.5 + pos: -34.5,-71.5 parent: 2 - - uid: 35083 + - uid: 35571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,12.5 + pos: -36.5,-71.5 parent: 2 - - uid: 35084 + - uid: 35572 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,13.5 + pos: -37.5,-71.5 parent: 2 - - uid: 35085 + - uid: 35573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,2.5 + pos: -37.5,-72.5 parent: 2 - - uid: 35086 + - uid: 35575 components: - type: Transform - pos: -5.5,-1.5 + pos: -40.5,-75.5 parent: 2 - - uid: 35087 + - uid: 35576 components: - type: Transform - pos: -6.5,-1.5 + pos: -39.5,-75.5 parent: 2 - - uid: 35088 + - uid: 35577 components: - type: Transform - pos: -7.5,-1.5 + pos: -38.5,-75.5 parent: 2 - - uid: 35089 + - uid: 35578 components: - type: Transform - pos: -8.5,-1.5 + pos: -38.5,-71.5 parent: 2 - - uid: 35090 + - uid: 35579 components: - type: Transform - pos: -9.5,-1.5 + pos: -39.5,-71.5 parent: 2 - - uid: 35091 + - uid: 35580 components: - type: Transform - pos: -10.5,-1.5 + pos: -40.5,-71.5 parent: 2 - - uid: 35092 + - uid: 35581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,10.5 + pos: -41.5,-71.5 parent: 2 - - uid: 35093 + - uid: 35582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,11.5 + pos: -41.5,-75.5 parent: 2 - - uid: 35094 + - uid: 35583 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,10.5 + pos: -41.5,-66.5 parent: 2 - - uid: 35095 + - uid: 35584 components: - type: Transform - pos: 12.5,5.5 + pos: -40.5,-66.5 parent: 2 - - uid: 35096 + - uid: 35585 components: - type: Transform - pos: 11.5,5.5 + pos: -39.5,-66.5 parent: 2 - - uid: 35097 + - uid: 35586 components: - type: Transform - pos: 10.5,5.5 + pos: -38.5,-66.5 parent: 2 - - uid: 35098 + - uid: 35587 components: - type: Transform - pos: 9.5,5.5 + pos: -37.5,-66.5 parent: 2 - - uid: 35099 + - uid: 35588 components: - type: Transform - pos: 8.5,5.5 + pos: -36.5,-66.5 parent: 2 - - uid: 35100 + - uid: 35589 components: - type: Transform - pos: 7.5,5.5 + pos: -35.5,-66.5 parent: 2 - - uid: 35101 + - uid: 35590 components: - type: Transform - pos: 6.5,5.5 + pos: -34.5,-66.5 parent: 2 - - uid: 35102 + - uid: 35591 components: - type: Transform - pos: 5.5,5.5 + pos: -33.5,-66.5 parent: 2 - - uid: 35103 + - uid: 35592 components: - type: Transform - pos: 4.5,5.5 + pos: -33.5,-67.5 parent: 2 - - uid: 35104 + - uid: 35593 components: - type: Transform - pos: 3.5,5.5 + pos: -33.5,-68.5 parent: 2 - - uid: 35105 + - uid: 35594 components: - type: Transform - pos: 2.5,5.5 + pos: -33.5,-69.5 parent: 2 - - uid: 35106 + - uid: 35595 components: - type: Transform - pos: -1.5,7.5 + pos: -33.5,-70.5 parent: 2 - - uid: 35107 + - uid: 35596 components: - type: Transform - pos: -1.5,8.5 + pos: -46.5,-72.5 parent: 2 - - uid: 35108 + - uid: 35597 components: - type: Transform - pos: -1.5,11.5 + pos: -46.5,-76.5 parent: 2 - - uid: 35109 + - uid: 35598 components: - type: Transform - pos: -1.5,12.5 + pos: -47.5,-76.5 parent: 2 - - uid: 35110 + - uid: 35599 components: - type: Transform - pos: -2.5,12.5 + pos: -48.5,-76.5 parent: 2 - - uid: 35111 + - uid: 35600 components: - type: Transform - pos: -3.5,12.5 + pos: -49.5,-76.5 parent: 2 - - uid: 35112 + - uid: 35601 components: - type: Transform - pos: -4.5,12.5 + pos: -50.5,-76.5 parent: 2 - - uid: 35113 + - uid: 35602 components: - type: Transform - pos: -5.5,12.5 + rot: -1.5707963267948966 rad + pos: -11.5,-89.5 parent: 2 - - uid: 35114 + - uid: 35603 components: - type: Transform - pos: -6.5,12.5 + pos: -54.5,-76.5 parent: 2 - - uid: 35115 + - uid: 35604 components: - type: Transform - pos: -7.5,12.5 + pos: -53.5,-76.5 parent: 2 - - uid: 35116 + - uid: 35605 components: - type: Transform - pos: -9.5,12.5 + pos: -52.5,-76.5 parent: 2 - - uid: 35117 + - uid: 35606 components: - type: Transform - pos: -10.5,12.5 + pos: -51.5,-76.5 parent: 2 - - uid: 35118 + - uid: 35607 components: - type: Transform - pos: -6.5,7.5 + pos: -54.5,-55.5 parent: 2 - - uid: 35119 + - uid: 35608 components: - type: Transform - pos: -7.5,7.5 + pos: -55.5,-55.5 parent: 2 - - uid: 35120 + - uid: 35609 components: - type: Transform - pos: -8.5,7.5 + pos: -56.5,-55.5 parent: 2 - - uid: 35121 + - uid: 35610 components: - type: Transform - pos: -8.5,6.5 + pos: -54.5,-59.5 parent: 2 - - uid: 35122 + - uid: 35611 components: - type: Transform - pos: -8.5,5.5 + pos: -55.5,-59.5 parent: 2 - - uid: 35123 + - uid: 35612 components: - type: Transform - pos: -9.5,5.5 + pos: -56.5,-59.5 parent: 2 - - uid: 35124 + - uid: 35613 components: - type: Transform - pos: -10.5,5.5 + rot: 1.5707963267948966 rad + pos: 55.5,-48.5 parent: 2 - - uid: 35125 + - uid: 35614 components: - type: Transform - pos: -11.5,5.5 + rot: 1.5707963267948966 rad + pos: 54.5,-48.5 parent: 2 - - uid: 35126 + - uid: 35615 components: - type: Transform - pos: -12.5,5.5 + pos: -59.5,-67.5 parent: 2 - - uid: 35127 + - uid: 35616 components: - type: Transform - pos: -12.5,6.5 + pos: -60.5,-59.5 parent: 2 - - uid: 35128 + - uid: 35617 components: - type: Transform - pos: -12.5,7.5 + pos: -60.5,-55.5 parent: 2 - - uid: 35129 + - uid: 35618 components: - type: Transform - pos: -12.5,8.5 + pos: -59.5,-55.5 parent: 2 - - uid: 35130 + - uid: 35619 components: - type: Transform - pos: -8.5,8.5 + pos: -58.5,-55.5 parent: 2 - - uid: 35131 + - uid: 35620 components: - type: Transform - pos: -11.5,8.5 + pos: -57.5,-55.5 parent: 2 - - uid: 35132 + - uid: 35621 components: - type: Transform - pos: -9.5,8.5 + pos: -57.5,-59.5 parent: 2 - - uid: 35133 + - uid: 35622 components: - type: Transform - pos: -12.5,11.5 + pos: -58.5,-59.5 parent: 2 - - uid: 35134 + - uid: 35623 components: - type: Transform - pos: -12.5,12.5 + pos: -59.5,-59.5 parent: 2 - - uid: 35135 + - uid: 35624 components: - type: Transform - pos: -11.5,12.5 + pos: -65.5,-63.5 parent: 2 - - uid: 35136 + - uid: 35625 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,16.5 + pos: -66.5,-63.5 parent: 2 - - uid: 35137 + - uid: 35626 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,16.5 + pos: -66.5,-62.5 parent: 2 - - uid: 35138 + - uid: 35627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,17.5 + pos: -67.5,-62.5 parent: 2 - - uid: 35139 + - uid: 35628 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,17.5 + pos: -67.5,-61.5 parent: 2 - - uid: 35140 + - uid: 35629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,15.5 + pos: -68.5,-61.5 parent: 2 - - uid: 35141 + - uid: 35630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,16.5 + pos: -68.5,-60.5 parent: 2 - - uid: 35142 + - uid: 35631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,13.5 + pos: -69.5,-60.5 parent: 2 - - uid: 35143 + - uid: 35632 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,14.5 + pos: -69.5,-59.5 parent: 2 - - uid: 35144 + - uid: 35633 components: - type: Transform - pos: -7.5,18.5 + pos: -70.5,-59.5 parent: 2 - - uid: 35145 + - uid: 35634 components: - type: Transform - pos: -11.5,18.5 + pos: -66.5,-67.5 parent: 2 - - uid: 35146 + - uid: 35635 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,18.5 + pos: -61.5,-67.5 parent: 2 - - uid: 35147 + - uid: 35636 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,18.5 + pos: -60.5,-67.5 parent: 2 - - uid: 35148 + - uid: 35637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,18.5 + pos: -67.5,-68.5 parent: 2 - - uid: 35149 + - uid: 35638 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,18.5 + pos: -68.5,-69.5 parent: 2 - - uid: 35150 + - uid: 35639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,18.5 + pos: -69.5,-70.5 parent: 2 - - uid: 35151 + - uid: 35640 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,18.5 + pos: -71.5,-59.5 parent: 2 - - uid: 35152 + - uid: 35641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,17.5 + pos: -72.5,-59.5 parent: 2 - - uid: 35153 + - uid: 35642 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,13.5 + pos: -73.5,-59.5 parent: 2 - - uid: 35154 + - uid: 35643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,19.5 + pos: -74.5,-59.5 parent: 2 - - uid: 35155 + - uid: 35644 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,20.5 + pos: -75.5,-59.5 parent: 2 - - uid: 35156 + - uid: 35645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,20.5 + pos: -75.5,-60.5 parent: 2 - - uid: 35157 + - uid: 35646 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,19.5 + pos: -75.5,-70.5 parent: 2 - - uid: 35158 + - uid: 35647 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,18.5 + pos: -76.5,-60.5 parent: 2 - - uid: 35159 + - uid: 35648 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,12.5 + pos: -76.5,-61.5 parent: 2 - - uid: 35160 + - uid: 35649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,6.5 + pos: -77.5,-61.5 parent: 2 - - uid: 35161 + - uid: 35650 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,8.5 + pos: -77.5,-62.5 parent: 2 - - uid: 35162 + - uid: 35651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,7.5 + pos: -78.5,-62.5 parent: 2 - - uid: 35163 + - uid: 35652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,8.5 + pos: -78.5,-63.5 parent: 2 - - uid: 35164 + - uid: 35653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,10.5 + pos: -78.5,-64.5 parent: 2 - - uid: 35165 + - uid: 35654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,10.5 + pos: -78.5,-65.5 parent: 2 - - uid: 35166 + - uid: 35655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,10.5 + pos: -78.5,-66.5 parent: 2 - - uid: 35167 + - uid: 35656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,6.5 + pos: -78.5,-67.5 parent: 2 - - uid: 35168 + - uid: 35657 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,7.5 + pos: -59.5,-68.5 parent: 2 - - uid: 35169 + - uid: 35658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,5.5 + pos: -77.5,-68.5 parent: 2 - - uid: 35170 + - uid: 35659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,12.5 + pos: -59.5,-69.5 parent: 2 - - uid: 35171 + - uid: 35660 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,12.5 + pos: -76.5,-69.5 parent: 2 - - uid: 35172 + - uid: 35661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,12.5 + pos: -78.5,-68.5 parent: 2 - - uid: 35173 + - uid: 35662 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,12.5 + pos: -77.5,-69.5 parent: 2 - - uid: 35174 + - uid: 35663 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,12.5 + pos: -76.5,-70.5 parent: 2 - - uid: 35175 + - uid: 35664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,12.5 + pos: -75.5,-71.5 parent: 2 - - uid: 35176 + - uid: 35665 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,12.5 + pos: -74.5,-71.5 parent: 2 - - uid: 35177 + - uid: 35666 + components: + - type: Transform + pos: -73.5,-71.5 + parent: 2 + - uid: 35667 + components: + - type: Transform + pos: -72.5,-71.5 + parent: 2 + - uid: 35668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,12.5 + pos: -71.5,-71.5 parent: 2 - - uid: 35178 + - uid: 35669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,13.5 + pos: -70.5,-71.5 parent: 2 - - uid: 35179 + - uid: 35670 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,17.5 + pos: -69.5,-71.5 parent: 2 - - uid: 35180 + - uid: 35671 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,18.5 + pos: -68.5,-70.5 parent: 2 - - uid: 35181 + - uid: 35672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,18.5 + pos: -67.5,-69.5 parent: 2 - - uid: 35182 + - uid: 35673 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,18.5 + pos: -66.5,-68.5 parent: 2 - - uid: 35183 + - uid: 35674 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,18.5 + pos: -57.5,-78.5 parent: 2 - - uid: 35184 + - uid: 35675 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,17.5 + pos: -57.5,-79.5 parent: 2 - - uid: 35185 + - uid: 35676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,16.5 + pos: -56.5,-79.5 parent: 2 - - uid: 35186 + - uid: 35677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,15.5 + pos: -55.5,-79.5 parent: 2 - - uid: 35187 + - uid: 35678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,14.5 + pos: -54.5,-79.5 parent: 2 - - uid: 35188 + - uid: 35681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,13.5 + pos: -54.5,-82.5 parent: 2 - - uid: 35189 + - uid: 35682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,18.5 + pos: -54.5,-83.5 parent: 2 - - uid: 35190 + - uid: 35683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,9.5 + pos: -54.5,-84.5 parent: 2 - - uid: 35191 + - uid: 35684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,8.5 + pos: -54.5,-85.5 parent: 2 - - uid: 35192 + - uid: 35685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,11.5 + pos: -55.5,-84.5 parent: 2 - - uid: 35193 + - uid: 35686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,10.5 + pos: -56.5,-84.5 parent: 2 - - uid: 35194 + - uid: 35687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,16.5 + pos: -57.5,-84.5 parent: 2 - - uid: 35195 + - uid: 35688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,12.5 + pos: -58.5,-84.5 parent: 2 - - uid: 35196 + - uid: 35689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,12.5 + pos: -58.5,-85.5 parent: 2 - - uid: 35197 + - uid: 35690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,10.5 + pos: -58.5,-87.5 parent: 2 - - uid: 35198 + - uid: 35691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,15.5 + pos: -58.5,-88.5 parent: 2 - - uid: 35199 + - uid: 35692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,17.5 + pos: -57.5,-88.5 parent: 2 - - uid: 35200 + - uid: 35693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,18.5 + pos: -56.5,-88.5 parent: 2 - - uid: 35201 + - uid: 35694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,8.5 + pos: -55.5,-88.5 parent: 2 - - uid: 35202 + - uid: 35695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,7.5 + pos: -54.5,-88.5 parent: 2 - - uid: 35203 + - uid: 35696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,5.5 + pos: -54.5,-87.5 parent: 2 - - uid: 35204 + - uid: 35697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,4.5 + pos: 33.5,-80.5 parent: 2 - - uid: 35205 + - uid: 35698 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,3.5 + pos: -59.5,-87.5 parent: 2 - - uid: 35206 + - uid: 35699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,2.5 + pos: -60.5,-87.5 parent: 2 - - uid: 35207 + - uid: 35700 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,21.5 + pos: -59.5,-85.5 parent: 2 - - uid: 35208 + - uid: 35701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,20.5 + pos: -60.5,-85.5 parent: 2 - - uid: 35209 + - uid: 35702 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,21.5 + pos: -65.5,-51.5 parent: 2 - - uid: 35210 + - uid: 35703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,22.5 + pos: -66.5,-51.5 parent: 2 - - uid: 35211 + - uid: 35704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,21.5 + pos: -67.5,-51.5 parent: 2 - - uid: 35212 + - uid: 35705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,22.5 + pos: -68.5,-51.5 parent: 2 - - uid: 35213 + - uid: 35706 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,15.5 + pos: -69.5,-51.5 parent: 2 - - uid: 35214 + - uid: 35707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-1.5 + pos: -73.5,-51.5 parent: 2 - - uid: 35215 + - uid: 35708 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-1.5 + pos: -77.5,-51.5 parent: 2 - - uid: 35216 + - uid: 35709 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-1.5 + pos: -77.5,-50.5 parent: 2 - - uid: 35217 + - uid: 35710 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-2.5 + pos: -77.5,-48.5 parent: 2 - - uid: 35218 + - uid: 35711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-2.5 + pos: -77.5,-46.5 parent: 2 - - uid: 35219 + - uid: 35712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-2.5 + pos: -77.5,-40.5 parent: 2 - - uid: 35220 + - uid: 35713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-3.5 + pos: -77.5,-38.5 parent: 2 - - uid: 35221 + - uid: 35714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-9.5 + pos: -77.5,-34.5 parent: 2 - - uid: 35222 + - uid: 35715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-9.5 + pos: -76.5,-34.5 parent: 2 - - uid: 35223 + - uid: 35716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-10.5 + pos: -75.5,-34.5 parent: 2 - - uid: 35224 + - uid: 35717 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-11.5 + pos: -74.5,-34.5 parent: 2 - - uid: 35225 + - uid: 35718 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-11.5 + pos: -73.5,-34.5 parent: 2 - - uid: 35226 + - uid: 35719 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-12.5 + pos: -58.5,-4.5 parent: 2 - - uid: 35227 + - uid: 35720 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-84.5 + rot: -1.5707963267948966 rad + pos: -58.5,-3.5 parent: 2 - - uid: 35228 + - uid: 35724 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,17.5 + pos: -54.5,-80.5 parent: 2 - - uid: 35229 + - uid: 35725 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,17.5 + pos: -81.5,-46.5 parent: 2 - - uid: 35230 + - uid: 35726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,17.5 + pos: -81.5,-48.5 parent: 2 - - uid: 35231 + - uid: 35727 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,6.5 + pos: -81.5,-40.5 parent: 2 - - uid: 35232 + - uid: 35728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-110.5 + pos: -81.5,-38.5 parent: 2 - - uid: 35233 + - uid: 35730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-94.5 + pos: -56.5,-5.5 parent: 2 - - uid: 35234 + - uid: 35731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-11.5 + pos: -56.5,-4.5 parent: 2 - - uid: 35235 + - uid: 35732 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-6.5 + pos: -56.5,1.5 parent: 2 - - uid: 35236 + - uid: 35733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-6.5 + pos: -55.5,1.5 parent: 2 - - uid: 35237 + - uid: 35735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-1.5 + pos: -53.5,1.5 parent: 2 - - uid: 35238 + - uid: 35736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-0.5 + pos: -52.5,1.5 parent: 2 - - uid: 35239 + - uid: 35737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,0.5 + pos: -51.5,1.5 parent: 2 - - uid: 35240 + - uid: 35738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,1.5 + pos: -56.5,-3.5 parent: 2 - - uid: 35241 + - uid: 35739 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,2.5 + pos: -40.5,-6.5 parent: 2 - - uid: 35242 + - uid: 35740 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,3.5 + pos: -36.5,-13.5 parent: 2 - - uid: 35243 + - uid: 35741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,4.5 + pos: -33.5,-6.5 parent: 2 - - uid: 35244 + - uid: 35742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,5.5 + pos: -33.5,-7.5 parent: 2 - - uid: 35245 + - uid: 35743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,6.5 + pos: -33.5,-8.5 parent: 2 - - uid: 35246 + - uid: 35744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,6.5 + pos: -33.5,-9.5 parent: 2 - - uid: 35247 + - uid: 35745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,6.5 + pos: -33.5,-10.5 parent: 2 - - uid: 35248 + - uid: 35746 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-1.5 + pos: -40.5,-9.5 parent: 2 - - uid: 35249 + - uid: 35747 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-78.5 + pos: -34.5,-6.5 parent: 2 - - uid: 35250 + - uid: 35748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,11.5 + pos: -35.5,-6.5 parent: 2 - - uid: 35251 + - uid: 35749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-90.5 + pos: -36.5,-6.5 parent: 2 - - uid: 35252 + - uid: 35750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-104.5 + pos: -37.5,-6.5 parent: 2 - - uid: 35253 + - uid: 35751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-48.5 + pos: -38.5,-6.5 parent: 2 - - uid: 35254 + - uid: 35752 components: - type: Transform - pos: 79.5,7.5 + pos: -39.5,-6.5 parent: 2 - - uid: 35255 + - uid: 35753 components: - type: Transform - pos: -70.5,-46.5 + pos: -40.5,-10.5 parent: 2 - - uid: 35256 + - uid: 35754 components: - type: Transform - pos: 59.5,-67.5 + pos: -40.5,-11.5 parent: 2 - - uid: 35257 + - uid: 35755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-36.5 + pos: -40.5,-12.5 parent: 2 - - uid: 35258 + - uid: 35756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-110.5 + pos: -40.5,-13.5 parent: 2 - - uid: 35259 + - uid: 35757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-104.5 + pos: -37.5,-13.5 parent: 2 - - uid: 35261 + - uid: 35758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-91.5 + pos: -38.5,-13.5 parent: 2 - - uid: 35262 + - uid: 35759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-85.5 + pos: -39.5,-13.5 parent: 2 - - uid: 35263 + - uid: 35760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-85.5 + pos: -35.5,-13.5 parent: 2 - - uid: 35264 + - uid: 35761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-85.5 + pos: -34.5,-13.5 parent: 2 - - uid: 35265 + - uid: 35762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-19.5 + pos: -33.5,-13.5 parent: 2 - - uid: 35266 + - uid: 35763 components: - type: Transform - pos: 35.5,-84.5 + pos: -33.5,-12.5 parent: 2 - - uid: 35267 + - uid: 35764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-19.5 + pos: -33.5,-11.5 parent: 2 - - uid: 35268 + - uid: 35765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-19.5 + pos: -33.5,-28.5 parent: 2 - - uid: 35269 + - uid: 35766 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-25.5 + pos: -39.5,-30.5 parent: 2 - - uid: 35270 + - uid: 35767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-15.5 + pos: -39.5,-31.5 parent: 2 - - uid: 35271 + - uid: 35768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-15.5 + pos: -39.5,-32.5 parent: 2 - - uid: 35272 + - uid: 35769 components: - type: Transform - pos: 53.5,15.5 + pos: -39.5,-33.5 parent: 2 - - uid: 35273 + - uid: 35770 components: - type: Transform - pos: 52.5,17.5 + pos: -39.5,-34.5 parent: 2 - - uid: 35274 + - uid: 35771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-26.5 + pos: -39.5,-35.5 parent: 2 - - uid: 35275 + - uid: 35772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-48.5 + pos: -38.5,-35.5 parent: 2 - - uid: 35276 + - uid: 35773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-24.5 + pos: -34.5,-35.5 parent: 2 - - uid: 35277 + - uid: 35774 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-15.5 + pos: -33.5,-35.5 parent: 2 - - uid: 35278 + - uid: 35775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-48.5 + pos: -33.5,-31.5 parent: 2 - - uid: 35279 + - uid: 35776 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-15.5 + pos: 92.5,-37.5 parent: 2 - - uid: 35280 + - uid: 35777 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-12.5 + pos: 97.5,-37.5 parent: 2 - - uid: 35281 + - uid: 35779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-14.5 + pos: -69.5,-14.5 parent: 2 - - uid: 35282 + - uid: 35780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-16.5 + pos: -69.5,-13.5 parent: 2 - - uid: 35283 + - uid: 35781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-15.5 + pos: -69.5,-12.5 parent: 2 - - uid: 35284 + - uid: 35782 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-22.5 + pos: -69.5,-11.5 parent: 2 - - uid: 35285 + - uid: 35783 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-15.5 + pos: -69.5,-10.5 parent: 2 - - uid: 35286 + - uid: 35784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-13.5 + pos: -69.5,-9.5 parent: 2 - - uid: 35287 + - uid: 35785 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-23.5 + pos: -69.5,-8.5 parent: 2 - - uid: 35288 + - uid: 35786 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-15.5 + pos: -69.5,-7.5 parent: 2 - - uid: 35289 + - uid: 35787 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-79.5 + pos: -69.5,-6.5 parent: 2 - - uid: 35290 + - uid: 35788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-26.5 + pos: -69.5,-5.5 parent: 2 - - uid: 35291 + - uid: 35789 components: - type: Transform - pos: 41.5,-76.5 + pos: -33.5,-30.5 parent: 2 - - uid: 35292 + - uid: 35790 components: - type: Transform - pos: 64.5,-63.5 + pos: -51.5,5.5 parent: 2 - - uid: 35293 + - uid: 35791 components: - type: Transform - pos: 67.5,-64.5 + pos: -51.5,4.5 parent: 2 - - uid: 35294 + - uid: 35794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-16.5 + pos: -18.5,9.5 parent: 2 - - uid: 35295 + - uid: 35795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-52.5 + pos: -14.5,2.5 parent: 2 - - uid: 35296 + - uid: 35796 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-20.5 + pos: -14.5,4.5 parent: 2 - - uid: 35297 + - uid: 35797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-19.5 + pos: -18.5,10.5 parent: 2 - - uid: 35298 + - uid: 35798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-18.5 + pos: -18.5,11.5 parent: 2 - - uid: 35299 + - uid: 35799 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-17.5 + pos: -17.5,11.5 parent: 2 - - uid: 35300 + - uid: 35800 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-19.5 + pos: -13.5,11.5 parent: 2 - - uid: 35301 + - uid: 35801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 83.5,-19.5 + pos: -24.5,18.5 parent: 2 - - uid: 35302 + - uid: 35802 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-19.5 + pos: -21.5,17.5 parent: 2 - - uid: 35303 + - uid: 35803 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-19.5 + pos: -34.5,21.5 parent: 2 - - uid: 35304 + - uid: 35804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-18.5 + pos: -33.5,21.5 parent: 2 - - uid: 35305 + - uid: 35805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-26.5 + pos: -25.5,18.5 parent: 2 - - uid: 35306 + - uid: 35806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-25.5 + pos: -26.5,18.5 parent: 2 - - uid: 35307 + - uid: 35807 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-24.5 + pos: -40.5,19.5 parent: 2 - - uid: 35308 + - uid: 35808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-26.5 + pos: -39.5,19.5 parent: 2 - - uid: 35309 + - uid: 35809 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-26.5 + pos: -38.5,19.5 parent: 2 - - uid: 35310 + - uid: 35810 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-26.5 + pos: -71.5,-16.5 parent: 2 - - uid: 35311 + - uid: 35811 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-26.5 + pos: -71.5,-15.5 parent: 2 - - uid: 35312 + - uid: 35812 components: - type: Transform rot: 3.141592653589793 rad - pos: 89.5,-25.5 + pos: -71.5,-14.5 parent: 2 - - uid: 35313 + - uid: 35813 components: - type: Transform rot: 3.141592653589793 rad - pos: 90.5,-24.5 + pos: -70.5,-14.5 parent: 2 - - uid: 35314 + - uid: 35814 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-25.5 + pos: -51.5,7.5 parent: 2 - - uid: 35315 + - uid: 35815 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-24.5 + pos: -51.5,6.5 parent: 2 - - uid: 35316 + - uid: 35816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-19.5 + pos: -15.5,-1.5 parent: 2 - - uid: 35317 + - uid: 35817 components: - type: Transform - pos: 108.5,-23.5 + pos: -16.5,-1.5 parent: 2 - - uid: 35318 + - uid: 35818 components: - type: Transform - pos: 97.5,-20.5 + pos: -16.5,-2.5 parent: 2 - - uid: 35319 + - uid: 35819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-26.5 + pos: -17.5,-2.5 parent: 2 - - uid: 35320 + - uid: 35820 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-26.5 + pos: -18.5,-2.5 parent: 2 - - uid: 35321 + - uid: 35821 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-24.5 + pos: -18.5,-3.5 parent: 2 - - uid: 35322 + - uid: 35822 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-25.5 + pos: -26.5,-27.5 parent: 2 - - uid: 35323 + - uid: 35823 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-19.5 + pos: -26.5,-18.5 parent: 2 - - uid: 35324 + - uid: 35824 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-19.5 + pos: -24.5,-9.5 parent: 2 - - uid: 35325 + - uid: 35825 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-26.5 + pos: -25.5,-9.5 parent: 2 - - uid: 35326 + - uid: 35826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-26.5 + pos: -25.5,-10.5 parent: 2 - - uid: 35327 + - uid: 35827 components: - type: Transform - pos: 92.5,-20.5 + pos: -25.5,-11.5 parent: 2 - - uid: 35328 + - uid: 35828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 103.5,-19.5 + pos: -26.5,-11.5 parent: 2 - - uid: 35331 + - uid: 35829 components: - type: Transform - rot: 3.141592653589793 rad - pos: 103.5,-25.5 + pos: -26.5,-12.5 parent: 2 - - uid: 35332 + - uid: 35830 components: - type: Transform - rot: 3.141592653589793 rad - pos: 103.5,-24.5 + pos: -26.5,-19.5 parent: 2 - - uid: 35333 + - uid: 35831 components: - type: Transform - rot: 3.141592653589793 rad - pos: 103.5,-23.5 + pos: -26.5,-20.5 parent: 2 - - uid: 35334 + - uid: 35832 components: - type: Transform - pos: 90.5,-20.5 + pos: -26.5,-25.5 parent: 2 - - uid: 35335 + - uid: 35833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-84.5 + pos: -26.5,-26.5 parent: 2 - - uid: 35336 + - uid: 35834 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-84.5 + pos: -26.5,-33.5 parent: 2 - - uid: 35337 + - uid: 35835 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-84.5 + pos: -26.5,-34.5 parent: 2 - - uid: 35338 + - uid: 35836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-84.5 + pos: -27.5,-34.5 parent: 2 - - uid: 35339 + - uid: 35837 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-31.5 + pos: -28.5,-34.5 parent: 2 - - uid: 35340 + - uid: 35838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-36.5 + pos: -29.5,-35.5 parent: 2 - - uid: 35341 + - uid: 35839 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-37.5 + pos: -29.5,-41.5 parent: 2 - - uid: 35342 + - uid: 35840 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-36.5 + pos: -29.5,-45.5 parent: 2 - - uid: 35343 + - uid: 35841 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-38.5 + pos: -29.5,-51.5 parent: 2 - - uid: 35344 + - uid: 35842 components: - type: Transform rot: 3.141592653589793 rad - pos: 99.5,-36.5 + pos: -66.5,-69.5 parent: 2 - - uid: 35345 + - uid: 35843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-37.5 + pos: -28.5,-52.5 parent: 2 - - uid: 35346 + - uid: 35844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-38.5 + pos: -27.5,-52.5 parent: 2 - - uid: 35347 + - uid: 35845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-36.5 + pos: -26.5,-52.5 parent: 2 - - uid: 35348 + - uid: 35846 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-38.5 + pos: -26.5,-53.5 parent: 2 - - uid: 35349 + - uid: 35847 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-38.5 + pos: -26.5,-58.5 parent: 2 - - uid: 35350 + - uid: 35848 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-37.5 + pos: -26.5,-59.5 parent: 2 - - uid: 35351 + - uid: 35849 components: - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,-36.5 + pos: -26.5,-60.5 parent: 2 - - uid: 35352 + - uid: 35850 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-37.5 + pos: -26.5,-65.5 parent: 2 - - uid: 35353 + - uid: 35851 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-37.5 + pos: -26.5,-66.5 parent: 2 - - uid: 35354 + - uid: 35852 components: - type: Transform - rot: 3.141592653589793 rad - pos: 103.5,-37.5 + pos: -25.5,-66.5 parent: 2 - - uid: 35355 + - uid: 35853 components: - type: Transform - pos: 106.5,-60.5 + pos: -25.5,-67.5 parent: 2 - - uid: 35356 + - uid: 35854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-98.5 + rot: 3.141592653589793 rad + pos: -66.5,-70.5 parent: 2 - - uid: 35357 + - uid: 35855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-102.5 + pos: -24.5,-68.5 parent: 2 - - uid: 35358 + - uid: 35856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-96.5 + pos: -20.5,-68.5 parent: 2 - - uid: 35359 + - uid: 35857 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-84.5 + pos: -19.5,-68.5 parent: 2 - - uid: 35360 + - uid: 35858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-84.5 + pos: -19.5,-69.5 parent: 2 - - uid: 35361 + - uid: 35859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-39.5 + pos: -18.5,-70.5 parent: 2 - - uid: 35362 + - uid: 35860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-40.5 + pos: -14.5,-70.5 parent: 2 - - uid: 35363 + - uid: 35861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-34.5 + pos: -13.5,-70.5 parent: 2 - - uid: 35364 + - uid: 35862 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-35.5 + pos: -8.5,-70.5 parent: 2 - - uid: 35365 + - uid: 35863 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-36.5 + pos: -9.5,-70.5 parent: 2 - - uid: 35366 + - uid: 35864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-41.5 + pos: 9.5,-70.5 parent: 2 - - uid: 35367 + - uid: 35865 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-41.5 + pos: 10.5,-70.5 parent: 2 - - uid: 35368 + - uid: 35866 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-41.5 + pos: 27.5,-25.5 parent: 2 - - uid: 35369 + - uid: 35867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-40.5 + pos: 14.5,-70.5 parent: 2 - - uid: 35370 + - uid: 35868 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-40.5 + pos: 15.5,-70.5 parent: 2 - - uid: 35371 + - uid: 35869 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-40.5 + pos: 27.5,-26.5 parent: 2 - - uid: 35372 + - uid: 35870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-40.5 + pos: 30.5,-46.5 parent: 2 - - uid: 35373 + - uid: 35871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-41.5 + pos: 30.5,-47.5 parent: 2 - - uid: 35374 + - uid: 35872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-42.5 + pos: 19.5,-70.5 parent: 2 - - uid: 35375 + - uid: 35873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-43.5 + pos: 21.5,-68.5 parent: 2 - - uid: 35376 + - uid: 35874 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-41.5 + pos: 25.5,-68.5 parent: 2 - - uid: 35377 + - uid: 35875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-41.5 + pos: 27.5,-66.5 parent: 2 - - uid: 35378 + - uid: 35876 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-43.5 + pos: 27.5,-30.5 parent: 2 - - uid: 35379 + - uid: 35877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-42.5 + pos: 27.5,-20.5 parent: 2 - - uid: 35380 + - uid: 35878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-40.5 + pos: 27.5,-19.5 parent: 2 - - uid: 35381 + - uid: 35879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-39.5 + pos: 27.5,-18.5 parent: 2 - - uid: 35382 + - uid: 35880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-38.5 + pos: 24.5,-34.5 parent: 2 - - uid: 35383 + - uid: 35881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-37.5 + pos: 30.5,-41.5 parent: 2 - - uid: 35384 + - uid: 35882 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-36.5 + pos: 30.5,-42.5 parent: 2 - - uid: 35385 + - uid: 35883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-35.5 + pos: 30.5,-51.5 parent: 2 - - uid: 35386 + - uid: 35884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-34.5 + pos: 30.5,-52.5 parent: 2 - - uid: 35387 + - uid: 35885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-34.5 + pos: 23.5,-34.5 + parent: 2 + - uid: 35886 + components: + - type: Transform + pos: 24.5,-41.5 parent: 2 - - uid: 35388 + - uid: 35887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-34.5 + pos: 29.5,-52.5 parent: 2 - - uid: 35389 + - uid: 35888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-34.5 + pos: 28.5,-52.5 parent: 2 - - uid: 35390 + - uid: 35889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-34.5 + pos: 27.5,-52.5 parent: 2 - - uid: 35391 + - uid: 35890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-34.5 + pos: 27.5,-53.5 parent: 2 - - uid: 35392 + - uid: 35891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-34.5 + pos: 27.5,-58.5 parent: 2 - - uid: 35393 + - uid: 35892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-34.5 + pos: 27.5,-59.5 parent: 2 - - uid: 35394 + - uid: 35893 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-42.5 + pos: 27.5,-60.5 parent: 2 - - uid: 35395 + - uid: 35894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-43.5 + pos: 27.5,-65.5 parent: 2 - - uid: 35396 + - uid: 35895 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-44.5 + pos: 26.5,-66.5 parent: 2 - - uid: 35397 + - uid: 35896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-45.5 + pos: 26.5,-67.5 parent: 2 - - uid: 35398 + - uid: 35897 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-45.5 + pos: 12.5,14.5 parent: 2 - - uid: 35401 + - uid: 35898 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-45.5 + pos: 36.5,-79.5 parent: 2 - - uid: 35402 + - uid: 35899 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-45.5 + pos: 35.5,-79.5 parent: 2 - - uid: 35403 + - uid: 35900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-45.5 + rot: -1.5707963267948966 rad + pos: -31.5,18.5 parent: 2 - - uid: 35404 + - uid: 35901 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-45.5 + rot: -1.5707963267948966 rad + pos: 27.5,-83.5 parent: 2 - - uid: 35405 + - uid: 35902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-44.5 + rot: -1.5707963267948966 rad + pos: 30.5,-83.5 parent: 2 - - uid: 35406 + - uid: 35903 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-43.5 + pos: 34.5,-79.5 parent: 2 - - uid: 35407 + - uid: 35904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-42.5 + rot: -1.5707963267948966 rad + pos: 28.5,-83.5 parent: 2 - - uid: 35408 + - uid: 35905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-19.5 + rot: -1.5707963267948966 rad + pos: -32.5,18.5 parent: 2 - - uid: 35409 + - uid: 35906 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-18.5 + pos: 33.5,-81.5 parent: 2 - - uid: 35410 + - uid: 35907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-27.5 + rot: -1.5707963267948966 rad + pos: -81.5,-44.5 parent: 2 - - uid: 35411 + - uid: 35908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-27.5 + pos: -29.5,18.5 parent: 2 - - uid: 35412 + - uid: 35909 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-20.5 + pos: 60.5,-64.5 parent: 2 - - uid: 35413 + - uid: 35910 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-21.5 + rot: 1.5707963267948966 rad + pos: 18.5,-103.5 parent: 2 - - uid: 35414 + - uid: 35911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-49.5 + pos: 60.5,-63.5 parent: 2 - - uid: 35415 + - uid: 35912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-53.5 + pos: 60.5,-62.5 parent: 2 - - uid: 35416 + - uid: 35913 components: - type: Transform - pos: 60.5,-65.5 + rot: 1.5707963267948966 rad + pos: 15.5,-104.5 parent: 2 - - uid: 35417 + - uid: 35914 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-49.5 + rot: 1.5707963267948966 rad + pos: 16.5,-104.5 parent: 2 - - uid: 35418 + - uid: 35915 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,-51.5 + pos: 58.5,-27.5 parent: 2 - - uid: 35419 + - uid: 35916 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-52.5 + rot: -1.5707963267948966 rad + pos: 30.5,-88.5 parent: 2 - - uid: 35420 + - uid: 35917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-50.5 + rot: -1.5707963267948966 rad + pos: 32.5,-88.5 parent: 2 - - uid: 35421 + - uid: 35918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-51.5 + rot: -1.5707963267948966 rad + pos: 29.5,-86.5 parent: 2 - - uid: 35422 + - uid: 35919 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-52.5 + rot: -1.5707963267948966 rad + pos: 35.5,-104.5 parent: 2 - - uid: 35423 + - uid: 35920 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,-54.5 + pos: 35.5,-109.5 parent: 2 - - uid: 35424 + - uid: 35921 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,-55.5 + pos: 36.5,-110.5 parent: 2 - - uid: 35425 + - uid: 35922 components: - type: Transform - pos: 61.5,-55.5 + rot: -1.5707963267948966 rad + pos: 35.5,-83.5 parent: 2 - - uid: 35426 + - uid: 35923 components: - type: Transform - pos: 56.5,-57.5 + rot: 3.141592653589793 rad + pos: -33.5,-29.5 parent: 2 - - uid: 35427 + - uid: 35924 components: - type: Transform - pos: 55.5,-57.5 + rot: 3.141592653589793 rad + pos: 35.5,-107.5 parent: 2 - - uid: 35428 + - uid: 35925 components: - type: Transform - pos: 54.5,-57.5 + rot: 3.141592653589793 rad + pos: 47.5,-106.5 parent: 2 - - uid: 35429 + - uid: 35926 components: - type: Transform - pos: 54.5,-59.5 + pos: 65.5,-51.5 parent: 2 - - uid: 35430 + - uid: 35927 components: - type: Transform - pos: 54.5,-61.5 + pos: 69.5,-54.5 parent: 2 - - uid: 35431 + - uid: 35928 components: - type: Transform - pos: 55.5,-61.5 + pos: 68.5,-54.5 parent: 2 - - uid: 35432 + - uid: 35929 components: - type: Transform - pos: 59.5,-61.5 + rot: 3.141592653589793 rad + pos: 43.5,-110.5 parent: 2 - - uid: 35433 + - uid: 35930 components: - type: Transform - pos: 60.5,-61.5 + pos: 68.5,-64.5 parent: 2 - - uid: 35434 + - uid: 35931 components: - type: Transform - pos: 53.5,-61.5 + pos: 66.5,-51.5 parent: 2 - - uid: 35435 + - uid: 35932 components: - type: Transform - pos: 52.5,-61.5 + rot: 3.141592653589793 rad + pos: 45.5,-110.5 parent: 2 - - uid: 35436 + - uid: 35933 components: - type: Transform - pos: 52.5,-62.5 + pos: 56.5,-92.5 parent: 2 - - uid: 35437 + - uid: 35934 components: - type: Transform - pos: 52.5,-66.5 + rot: 1.5707963267948966 rad + pos: 4.5,-102.5 parent: 2 - - uid: 35438 + - uid: 35935 components: - type: Transform - pos: 52.5,-67.5 + pos: 26.5,-84.5 parent: 2 - - uid: 35439 + - uid: 35936 components: - type: Transform - pos: 53.5,-67.5 + pos: 60.5,-67.5 parent: 2 - - uid: 35440 + - uid: 35937 components: - type: Transform - pos: 54.5,-67.5 + pos: 42.5,-76.5 parent: 2 - - uid: 35441 + - uid: 35938 components: - type: Transform - pos: 55.5,-67.5 + rot: 3.141592653589793 rad + pos: 62.5,-69.5 parent: 2 - - uid: 35442 + - uid: 35939 components: - type: Transform - pos: 56.5,-67.5 + rot: -1.5707963267948966 rad + pos: 30.5,-85.5 parent: 2 - - uid: 35443 + - uid: 35940 components: - type: Transform - pos: 57.5,-67.5 + rot: -1.5707963267948966 rad + pos: 31.5,-88.5 parent: 2 - - uid: 35444 + - uid: 35941 components: - type: Transform - pos: 58.5,-67.5 + rot: -1.5707963267948966 rad + pos: 29.5,-85.5 parent: 2 - - uid: 35445 + - uid: 35942 components: - type: Transform - pos: 65.5,-63.5 + rot: 1.5707963267948966 rad + pos: 4.5,-95.5 parent: 2 - - uid: 35446 + - uid: 35943 components: - type: Transform - pos: 65.5,-64.5 + rot: -1.5707963267948966 rad + pos: 29.5,-83.5 parent: 2 - - uid: 35447 + - uid: 35944 components: - type: Transform - pos: 65.5,-65.5 + rot: -1.5707963267948966 rad + pos: 32.5,-83.5 parent: 2 - - uid: 35448 + - uid: 35945 components: - type: Transform - pos: 65.5,-66.5 + rot: -1.5707963267948966 rad + pos: 34.5,-83.5 parent: 2 - - uid: 35449 + - uid: 35946 components: - type: Transform - pos: 64.5,-66.5 + rot: -1.5707963267948966 rad + pos: 31.5,-83.5 parent: 2 - - uid: 35450 + - uid: 35947 components: - type: Transform - pos: 63.5,-66.5 + rot: 3.141592653589793 rad + pos: 39.5,-106.5 parent: 2 - - uid: 35451 + - uid: 35948 components: - type: Transform - pos: 62.5,-66.5 + pos: 56.5,-86.5 parent: 2 - - uid: 35452 + - uid: 35949 components: - type: Transform - pos: 62.5,-67.5 + pos: 56.5,-94.5 parent: 2 - - uid: 35453 + - uid: 35950 components: - type: Transform - pos: 62.5,-70.5 + pos: 48.5,-94.5 parent: 2 - - uid: 35454 + - uid: 35951 components: - type: Transform - pos: 63.5,-70.5 + pos: 44.5,-82.5 parent: 2 - - uid: 35455 + - uid: 35952 components: - type: Transform - pos: 62.5,-71.5 + pos: 48.5,-95.5 parent: 2 - - uid: 35456 + - uid: 35953 components: - type: Transform - pos: 65.5,-70.5 + pos: 44.5,-80.5 parent: 2 - - uid: 35457 + - uid: 35954 components: - type: Transform - pos: 66.5,-70.5 + pos: 44.5,-81.5 parent: 2 - - uid: 35458 + - uid: 35955 components: - type: Transform - pos: 66.5,-71.5 + pos: 36.5,-81.5 parent: 2 - - uid: 35459 + - uid: 35956 components: - type: Transform - pos: 66.5,-72.5 + pos: 38.5,-76.5 parent: 2 - - uid: 35460 + - uid: 35957 components: - type: Transform - pos: 65.5,-72.5 + pos: 37.5,-76.5 parent: 2 - - uid: 35461 + - uid: 35958 components: - type: Transform - pos: 63.5,-72.5 + pos: 37.5,-84.5 parent: 2 - - uid: 35462 + - uid: 35959 components: - type: Transform - pos: 62.5,-72.5 + pos: 56.5,-100.5 parent: 2 - - uid: 35463 + - uid: 35960 components: - type: Transform - pos: 66.5,-68.5 + pos: 56.5,-95.5 parent: 2 - - uid: 35464 + - uid: 35961 components: - type: Transform - pos: 66.5,-66.5 + pos: 40.5,-76.5 parent: 2 - - uid: 35465 + - uid: 35962 components: - type: Transform - pos: 67.5,-66.5 + pos: 21.5,-67.5 parent: 2 - - uid: 35466 + - uid: 35963 components: - type: Transform - pos: 64.5,-52.5 + rot: 3.141592653589793 rad + pos: 35.5,-106.5 parent: 2 - - uid: 35467 + - uid: 35964 components: - type: Transform - pos: 64.5,-51.5 + rot: -1.5707963267948966 rad + pos: 36.5,-78.5 parent: 2 - - uid: 35468 + - uid: 35965 components: - type: Transform - pos: 67.5,-51.5 + pos: 39.5,-76.5 parent: 2 - - uid: 35469 + - uid: 35966 components: - type: Transform - pos: 64.5,-55.5 + pos: 56.5,-101.5 parent: 2 - - uid: 35470 + - uid: 35968 components: - type: Transform - pos: 63.5,-55.5 + pos: 69.5,-64.5 parent: 2 - - uid: 35471 + - uid: 35969 components: - type: Transform - pos: 62.5,-55.5 + rot: -1.5707963267948966 rad + pos: 33.5,-83.5 parent: 2 - - uid: 35472 + - uid: 35970 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-15.5 + pos: 35.5,-110.5 parent: 2 - - uid: 35473 + - uid: 35971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-16.5 + rot: 1.5707963267948966 rad + pos: 4.5,-104.5 parent: 2 - - uid: 35474 + - uid: 35972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-17.5 + pos: 26.5,-88.5 parent: 2 - - uid: 35475 + - uid: 35973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-53.5 + rot: 1.5707963267948966 rad + pos: 4.5,-97.5 parent: 2 - - uid: 35476 + - uid: 35974 components: - type: Transform - pos: 51.5,-77.5 + rot: 1.5707963267948966 rad + pos: 18.5,-104.5 parent: 2 - - uid: 35477 + - uid: 35975 components: - type: Transform - pos: 51.5,-76.5 + rot: 1.5707963267948966 rad + pos: 11.5,-104.5 parent: 2 - - uid: 35478 + - uid: 35976 components: - type: Transform - pos: 51.5,-75.5 + rot: -1.5707963267948966 rad + pos: -12.5,-89.5 parent: 2 - - uid: 35479 + - uid: 35977 components: - type: Transform - pos: 51.5,-74.5 + rot: -1.5707963267948966 rad + pos: -14.5,-89.5 parent: 2 - - uid: 35480 + - uid: 35978 components: - type: Transform - pos: 51.5,-73.5 + rot: -1.5707963267948966 rad + pos: -14.5,-88.5 parent: 2 - - uid: 35481 + - uid: 35979 components: - type: Transform - pos: 51.5,-72.5 + rot: -1.5707963267948966 rad + pos: -14.5,-87.5 parent: 2 - - uid: 35482 + - uid: 35980 components: - type: Transform - pos: 51.5,-71.5 + rot: -1.5707963267948966 rad + pos: -14.5,-86.5 parent: 2 - - uid: 35483 + - uid: 35981 components: - type: Transform - pos: 51.5,-70.5 + pos: 48.5,-93.5 parent: 2 - - uid: 35484 + - uid: 35982 components: - type: Transform - pos: 52.5,-70.5 + rot: -1.5707963267948966 rad + pos: -69.5,-54.5 parent: 2 - - uid: 35485 + - uid: 35983 components: - type: Transform - pos: 53.5,-70.5 + rot: -1.5707963267948966 rad + pos: -70.5,-54.5 parent: 2 - - uid: 35486 + - uid: 35984 components: - type: Transform - pos: 58.5,-70.5 + rot: -1.5707963267948966 rad + pos: -71.5,-54.5 parent: 2 - - uid: 35487 + - uid: 35985 components: - type: Transform - pos: 58.5,-71.5 + rot: -1.5707963267948966 rad + pos: -72.5,-54.5 parent: 2 - - uid: 35488 + - uid: 35986 components: - type: Transform - pos: 58.5,-72.5 + rot: -1.5707963267948966 rad + pos: -73.5,-54.5 parent: 2 - - uid: 35489 + - uid: 35987 components: - type: Transform - pos: 58.5,-73.5 + rot: -1.5707963267948966 rad + pos: -73.5,-53.5 parent: 2 - - uid: 35490 + - uid: 35988 components: - type: Transform - pos: 58.5,-74.5 + rot: -1.5707963267948966 rad + pos: -73.5,-52.5 parent: 2 - - uid: 35491 + - uid: 35989 components: - type: Transform - pos: 58.5,-77.5 + rot: -1.5707963267948966 rad + pos: -74.5,-54.5 parent: 2 - - uid: 35492 + - uid: 35990 components: - type: Transform - pos: 57.5,-77.5 + rot: -1.5707963267948966 rad + pos: -75.5,-54.5 parent: 2 - - uid: 35493 + - uid: 35991 components: - type: Transform - pos: 56.5,-77.5 + rot: -1.5707963267948966 rad + pos: -76.5,-54.5 parent: 2 - - uid: 35494 + - uid: 35992 components: - type: Transform - pos: 55.5,-77.5 + rot: -1.5707963267948966 rad + pos: -77.5,-54.5 parent: 2 - - uid: 35495 + - uid: 35993 components: - type: Transform - pos: 54.5,-77.5 + rot: -1.5707963267948966 rad + pos: -77.5,-53.5 parent: 2 - - uid: 35496 + - uid: 35994 components: - type: Transform - pos: 53.5,-77.5 + rot: -1.5707963267948966 rad + pos: -77.5,-52.5 parent: 2 - - uid: 35497 + - uid: 35995 components: - type: Transform - pos: 52.5,-77.5 + pos: 33.5,-79.5 parent: 2 - - uid: 35498 + - uid: 35997 components: - type: Transform - pos: 67.5,-54.5 + rot: -1.5707963267948966 rad + pos: 14.5,3.5 parent: 2 - - uid: 35499 + - uid: 35998 components: - type: Transform - pos: 20.5,-68.5 + rot: -1.5707963267948966 rad + pos: 14.5,4.5 parent: 2 - - uid: 35500 + - uid: 35999 components: - type: Transform - pos: 20.5,-69.5 + rot: -1.5707963267948966 rad + pos: 14.5,5.5 parent: 2 - - uid: 35501 + - uid: 36000 components: - type: Transform - pos: 99.5,-92.5 + pos: -6.5,-70.5 parent: 2 - - uid: 35502 + - uid: 36002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-85.5 + pos: 44.5,-77.5 parent: 2 - - uid: 35503 + - uid: 36004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-83.5 + pos: -5.5,-70.5 parent: 2 - - uid: 35504 + - uid: 36005 components: - type: Transform - pos: 43.5,-76.5 + rot: 1.5707963267948966 rad + pos: 9.5,-104.5 parent: 2 - - uid: 35505 + - uid: 36006 components: - type: Transform - pos: 44.5,-76.5 + rot: 3.141592653589793 rad + pos: -68.5,-79.5 parent: 2 - - uid: 35506 + - uid: 36007 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-84.5 + pos: -67.5,-79.5 parent: 2 - - uid: 35508 + - uid: 36008 components: - type: Transform - pos: 88.5,-56.5 + rot: 3.141592653589793 rad + pos: -59.5,-79.5 parent: 2 - - uid: 35509 + - uid: 36009 components: - type: Transform - pos: 4.5,-94.5 + pos: 26.5,-86.5 parent: 2 - - uid: 35510 + - uid: 36010 components: - type: Transform - pos: 3.5,-94.5 + rot: 1.5707963267948966 rad + pos: 4.5,-103.5 parent: 2 - - uid: 35511 + - uid: 36011 components: - type: Transform - pos: 2.5,-94.5 + rot: 1.5707963267948966 rad + pos: 18.5,-102.5 parent: 2 - - uid: 35512 + - uid: 36012 components: - type: Transform - pos: 1.5,-94.5 + pos: 26.5,-87.5 parent: 2 - - uid: 35513 + - uid: 36013 components: - type: Transform - pos: 1.5,-93.5 + pos: 26.5,-85.5 parent: 2 - - uid: 35514 + - uid: 36014 components: - type: Transform - pos: 1.5,-92.5 + pos: 56.5,-103.5 parent: 2 - - uid: 35515 + - uid: 36015 components: - type: Transform - pos: -2.5,-92.5 + pos: 24.5,-88.5 parent: 2 - - uid: 35516 + - uid: 36016 components: - type: Transform - pos: -3.5,-92.5 + pos: 55.5,-95.5 parent: 2 - - uid: 35517 + - uid: 36017 components: - type: Transform - pos: 1.5,-95.5 + pos: 48.5,-92.5 parent: 2 - - uid: 35518 + - uid: 36018 components: - type: Transform - pos: 1.5,-96.5 + pos: 56.5,-102.5 parent: 2 - - uid: 35519 + - uid: 36019 components: - type: Transform - pos: 1.5,-97.5 + rot: 1.5707963267948966 rad + pos: 34.5,-45.5 parent: 2 - - uid: 35520 + - uid: 36020 components: - type: Transform - pos: 0.5,-97.5 + rot: 3.141592653589793 rad + pos: 47.5,-105.5 parent: 2 - - uid: 35521 + - uid: 36021 components: - type: Transform - pos: -0.5,-97.5 + pos: 56.5,-104.5 parent: 2 - - uid: 35522 + - uid: 36022 components: - type: Transform - pos: -2.5,-97.5 + pos: -38.5,21.5 parent: 2 - - uid: 35523 + - uid: 36023 components: - type: Transform - pos: -3.5,-97.5 + pos: -38.5,20.5 parent: 2 - - uid: 35524 + - uid: 36024 components: - type: Transform - pos: -4.5,-97.5 + pos: -22.5,17.5 parent: 2 - - uid: 35525 + - uid: 36025 components: - type: Transform - pos: -4.5,-96.5 + rot: -1.5707963267948966 rad + pos: 33.5,-91.5 parent: 2 - - uid: 35526 + - uid: 36026 components: - type: Transform - pos: -4.5,-95.5 + rot: -1.5707963267948966 rad + pos: 31.5,-100.5 parent: 2 - - uid: 35527 + - uid: 36027 components: - type: Transform - pos: -4.5,-94.5 + rot: -1.5707963267948966 rad + pos: 30.5,-94.5 parent: 2 - - uid: 35528 + - uid: 36028 components: - type: Transform - pos: -4.5,-93.5 + rot: 3.141592653589793 rad + pos: 39.5,-107.5 parent: 2 - - uid: 35529 + - uid: 36029 components: - type: Transform - pos: -4.5,-92.5 + rot: 3.141592653589793 rad + pos: 35.5,-108.5 parent: 2 - - uid: 35530 + - uid: 36030 components: - type: Transform - pos: 0.5,-101.5 + rot: -1.5707963267948966 rad + pos: 32.5,-100.5 parent: 2 - - uid: 35533 + - uid: 36031 components: - type: Transform - pos: -1.5,-101.5 + rot: -1.5707963267948966 rad + pos: 33.5,-100.5 parent: 2 - - uid: 35549 + - uid: 36033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-104.5 + rot: 1.5707963267948966 rad + pos: -65.5,-62.5 parent: 2 - - uid: 35553 + - uid: 36034 components: - type: Transform - pos: 0.5,-100.5 + rot: -1.5707963267948966 rad + pos: -28.5,-45.5 parent: 2 - - uid: 35554 + - uid: 36035 components: - type: Transform - pos: -1.5,-82.5 + rot: -1.5707963267948966 rad + pos: -27.5,-45.5 parent: 2 - - uid: 35555 + - uid: 36036 components: - type: Transform - pos: -10.5,-86.5 + rot: -1.5707963267948966 rad + pos: -26.5,-45.5 parent: 2 - - uid: 35556 + - uid: 36037 components: - type: Transform - pos: -10.5,-87.5 + rot: 1.5707963267948966 rad + pos: 59.5,-48.5 parent: 2 - - uid: 35557 + - uid: 36038 components: - type: Transform - pos: -10.5,-88.5 + rot: 1.5707963267948966 rad + pos: 56.5,-48.5 parent: 2 - - uid: 35558 + - uid: 36039 components: - type: Transform - pos: -10.5,-89.5 + rot: -1.5707963267948966 rad + pos: 29.5,-103.5 parent: 2 - - uid: 35560 + - uid: 36040 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-117.5 + pos: 60.5,-48.5 parent: 2 - - uid: 35561 + - uid: 36041 components: - type: Transform - pos: -37.5,-75.5 + rot: -1.5707963267948966 rad + pos: 53.5,-104.5 parent: 2 - - uid: 35562 + - uid: 36042 components: - type: Transform - pos: -36.5,-75.5 + pos: 43.5,-89.5 parent: 2 - - uid: 35563 + - uid: 36043 components: - type: Transform - pos: -35.5,-75.5 + pos: 43.5,-90.5 parent: 2 - - uid: 35564 + - uid: 36044 components: - type: Transform - pos: -34.5,-75.5 + pos: 43.5,-88.5 parent: 2 - - uid: 35565 + - uid: 36045 components: - type: Transform - pos: -33.5,-75.5 + pos: 44.5,-88.5 parent: 2 - - uid: 35566 + - uid: 36046 components: - type: Transform - pos: -33.5,-74.5 + pos: 43.5,-91.5 parent: 2 - - uid: 35567 + - uid: 36047 components: - type: Transform - pos: -33.5,-73.5 + pos: 48.5,-90.5 parent: 2 - - uid: 35568 + - uid: 36048 components: - type: Transform - pos: -33.5,-72.5 + pos: 48.5,-88.5 parent: 2 - - uid: 35569 + - uid: 36049 components: - type: Transform - pos: -33.5,-71.5 + pos: 47.5,-88.5 parent: 2 - - uid: 35570 + - uid: 36050 components: - type: Transform - pos: -34.5,-71.5 + pos: 44.5,-91.5 parent: 2 - - uid: 35571 + - uid: 36051 components: - type: Transform - pos: -36.5,-71.5 + pos: 48.5,-89.5 parent: 2 - - uid: 35572 + - uid: 36052 components: - type: Transform - pos: -37.5,-71.5 + pos: 47.5,-91.5 parent: 2 - - uid: 35573 + - uid: 36053 components: - type: Transform - pos: -37.5,-72.5 + pos: 48.5,-91.5 parent: 2 - - uid: 35575 + - uid: 36054 components: - type: Transform - pos: -40.5,-75.5 + pos: 60.5,-66.5 parent: 2 - - uid: 35576 + - uid: 36055 components: - type: Transform - pos: -39.5,-75.5 + rot: -1.5707963267948966 rad + pos: 55.5,-64.5 parent: 2 - - uid: 35577 + - uid: 36056 components: - type: Transform - pos: -38.5,-75.5 + rot: -1.5707963267948966 rad + pos: 55.5,-63.5 parent: 2 - - uid: 35578 + - uid: 36057 components: - type: Transform - pos: -38.5,-71.5 + rot: -1.5707963267948966 rad + pos: 55.5,-62.5 parent: 2 - - uid: 35579 + - uid: 36058 components: - type: Transform - pos: -39.5,-71.5 + rot: -1.5707963267948966 rad + pos: 56.5,-61.5 parent: 2 - - uid: 35580 + - uid: 36059 components: - type: Transform - pos: -40.5,-71.5 + rot: -1.5707963267948966 rad + pos: 29.5,-90.5 parent: 2 - - uid: 35581 + - uid: 36060 components: - type: Transform - pos: -41.5,-71.5 + rot: -1.5707963267948966 rad + pos: 52.5,-104.5 parent: 2 - - uid: 35582 + - uid: 36061 components: - type: Transform - pos: -41.5,-75.5 + rot: -1.5707963267948966 rad + pos: 54.5,-104.5 parent: 2 - - uid: 35583 + - uid: 36062 components: - type: Transform - pos: -41.5,-66.5 + rot: -1.5707963267948966 rad + pos: 29.5,-92.5 parent: 2 - - uid: 35584 + - uid: 36063 components: - type: Transform - pos: -40.5,-66.5 + rot: 3.141592653589793 rad + pos: 39.5,-108.5 parent: 2 - - uid: 35585 + - uid: 36064 components: - type: Transform - pos: -39.5,-66.5 + rot: -1.5707963267948966 rad + pos: 55.5,-65.5 parent: 2 - - uid: 35586 + - uid: 36065 components: - type: Transform - pos: -38.5,-66.5 + rot: -1.5707963267948966 rad + pos: 55.5,-66.5 parent: 2 - - uid: 35587 + - uid: 36066 components: - type: Transform - pos: -37.5,-66.5 + rot: -1.5707963267948966 rad + pos: 29.5,-88.5 parent: 2 - - uid: 35588 + - uid: 36067 components: - type: Transform - pos: -36.5,-66.5 + rot: -1.5707963267948966 rad + pos: 29.5,-94.5 parent: 2 - - uid: 35589 + - uid: 36068 components: - type: Transform - pos: -35.5,-66.5 + rot: 3.141592653589793 rad + pos: 39.5,-109.5 parent: 2 - - uid: 35590 + - uid: 36069 components: - type: Transform - pos: -34.5,-66.5 + rot: -1.5707963267948966 rad + pos: 33.5,-88.5 parent: 2 - - uid: 35591 + - uid: 36070 components: - type: Transform - pos: -33.5,-66.5 + rot: -1.5707963267948966 rad + pos: 29.5,-93.5 parent: 2 - - uid: 35592 + - uid: 36071 components: - type: Transform - pos: -33.5,-67.5 + rot: -1.5707963267948966 rad + pos: 30.5,-91.5 parent: 2 - - uid: 35593 + - uid: 36072 components: - type: Transform - pos: -33.5,-68.5 + rot: -1.5707963267948966 rad + pos: 29.5,-89.5 parent: 2 - - uid: 35594 + - uid: 36073 components: - type: Transform - pos: -33.5,-69.5 + rot: -1.5707963267948966 rad + pos: 31.5,-91.5 parent: 2 - - uid: 35595 + - uid: 36074 components: - type: Transform - pos: -33.5,-70.5 + pos: 64.5,-54.5 parent: 2 - - uid: 35596 + - uid: 36075 components: - type: Transform - pos: -46.5,-72.5 + pos: 64.5,-53.5 parent: 2 - - uid: 35597 + - uid: 36076 components: - type: Transform - pos: -46.5,-76.5 + rot: -1.5707963267948966 rad + pos: 29.5,-95.5 parent: 2 - - uid: 35598 + - uid: 36077 components: - type: Transform - pos: -47.5,-76.5 + rot: 1.5707963267948966 rad + pos: -65.5,-61.5 parent: 2 - - uid: 35599 + - uid: 36078 components: - type: Transform - pos: -48.5,-76.5 + rot: 3.141592653589793 rad + pos: 57.5,-27.5 parent: 2 - - uid: 35600 + - uid: 36079 components: - type: Transform - pos: -49.5,-76.5 + rot: 3.141592653589793 rad + pos: 56.5,-27.5 parent: 2 - - uid: 35601 + - uid: 36080 components: - type: Transform - pos: -50.5,-76.5 + rot: 3.141592653589793 rad + pos: 65.5,-21.5 parent: 2 - - uid: 35602 + - uid: 36081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-89.5 + rot: 3.141592653589793 rad + pos: 64.5,-21.5 parent: 2 - - uid: 35603 + - uid: 36082 components: - type: Transform - pos: -54.5,-76.5 + rot: 3.141592653589793 rad + pos: 63.5,-21.5 parent: 2 - - uid: 35604 + - uid: 36083 components: - type: Transform - pos: -53.5,-76.5 + rot: 3.141592653589793 rad + pos: 62.5,-21.5 parent: 2 - - uid: 35605 + - uid: 36084 components: - type: Transform - pos: -52.5,-76.5 + rot: 3.141592653589793 rad + pos: 60.5,-21.5 parent: 2 - - uid: 35606 + - uid: 36085 components: - type: Transform - pos: -51.5,-76.5 + rot: 3.141592653589793 rad + pos: 59.5,-21.5 parent: 2 - - uid: 35607 + - uid: 36086 components: - type: Transform - pos: -54.5,-55.5 + rot: 1.5707963267948966 rad + pos: 41.5,-8.5 parent: 2 - - uid: 35608 + - uid: 36087 components: - type: Transform - pos: -55.5,-55.5 + rot: -1.5707963267948966 rad + pos: 70.5,-15.5 parent: 2 - - uid: 35609 + - uid: 36088 components: - type: Transform - pos: -56.5,-55.5 + rot: -1.5707963267948966 rad + pos: 67.5,-15.5 parent: 2 - - uid: 35610 + - uid: 36089 components: - type: Transform - pos: -54.5,-59.5 + rot: 1.5707963267948966 rad + pos: 41.5,-9.5 parent: 2 - - uid: 35611 + - uid: 36090 components: - type: Transform - pos: -55.5,-59.5 + rot: 1.5707963267948966 rad + pos: 41.5,-7.5 parent: 2 - - uid: 35612 + - uid: 36091 components: - type: Transform - pos: -56.5,-59.5 + rot: 1.5707963267948966 rad + pos: 41.5,-10.5 parent: 2 - - uid: 35613 + - uid: 36092 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,-48.5 + pos: -65.5,-52.5 parent: 2 - - uid: 35614 + - uid: 36093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-48.5 + rot: 3.141592653589793 rad + pos: 39.5,-110.5 parent: 2 - - uid: 35615 + - uid: 36094 components: - type: Transform - pos: -59.5,-67.5 + rot: 3.141592653589793 rad + pos: 38.5,-110.5 parent: 2 - - uid: 35616 + - uid: 36095 components: - type: Transform - pos: -60.5,-59.5 + rot: 3.141592653589793 rad + pos: 40.5,-110.5 parent: 2 - - uid: 35617 + - uid: 36096 components: - type: Transform - pos: -60.5,-55.5 + rot: 3.141592653589793 rad + pos: 37.5,-110.5 parent: 2 - - uid: 35618 + - uid: 36097 components: - type: Transform - pos: -59.5,-55.5 + rot: 3.141592653589793 rad + pos: 49.5,-104.5 parent: 2 - - uid: 35619 + - uid: 36098 components: - type: Transform - pos: -58.5,-55.5 + rot: -1.5707963267948966 rad + pos: 36.5,-83.5 parent: 2 - - uid: 35620 + - uid: 36099 components: - type: Transform - pos: -57.5,-55.5 + rot: 3.141592653589793 rad + pos: 48.5,-104.5 parent: 2 - - uid: 35621 + - uid: 36100 components: - type: Transform - pos: -57.5,-59.5 + rot: -1.5707963267948966 rad + pos: 45.5,-106.5 parent: 2 - - uid: 35622 + - uid: 36101 components: - type: Transform - pos: -58.5,-59.5 + rot: 3.141592653589793 rad + pos: 47.5,-104.5 parent: 2 - - uid: 35623 + - uid: 36102 components: - type: Transform - pos: -59.5,-59.5 + rot: -1.5707963267948966 rad + pos: 55.5,-104.5 parent: 2 - - uid: 35624 + - uid: 36103 components: - type: Transform - pos: -65.5,-63.5 + rot: -1.5707963267948966 rad + pos: 29.5,-99.5 parent: 2 - - uid: 35625 + - uid: 36104 components: - type: Transform - pos: -66.5,-63.5 + rot: -1.5707963267948966 rad + pos: 32.5,-97.5 + parent: 2 + - uid: 36105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-101.5 parent: 2 - - uid: 35626 + - uid: 36106 components: - type: Transform - pos: -66.5,-62.5 + rot: -1.5707963267948966 rad + pos: 32.5,-94.5 parent: 2 - - uid: 35627 + - uid: 36107 components: - type: Transform - pos: -67.5,-62.5 + rot: -1.5707963267948966 rad + pos: 30.5,-97.5 parent: 2 - - uid: 35628 + - uid: 36108 components: - type: Transform - pos: -67.5,-61.5 + rot: -1.5707963267948966 rad + pos: 33.5,-94.5 parent: 2 - - uid: 35629 + - uid: 36109 components: - type: Transform - pos: -68.5,-61.5 + rot: -1.5707963267948966 rad + pos: 29.5,-102.5 parent: 2 - - uid: 35630 + - uid: 36110 components: - type: Transform - pos: -68.5,-60.5 + rot: -1.5707963267948966 rad + pos: 29.5,-96.5 parent: 2 - - uid: 35631 + - uid: 36111 components: - type: Transform - pos: -69.5,-60.5 + rot: -1.5707963267948966 rad + pos: 29.5,-97.5 parent: 2 - - uid: 35632 + - uid: 36112 components: - type: Transform - pos: -69.5,-59.5 + rot: -1.5707963267948966 rad + pos: 29.5,-98.5 parent: 2 - - uid: 35633 + - uid: 36113 components: - type: Transform - pos: -70.5,-59.5 + rot: -1.5707963267948966 rad + pos: 29.5,-100.5 parent: 2 - - uid: 35634 + - uid: 36114 components: - type: Transform - pos: -66.5,-67.5 + rot: -1.5707963267948966 rad + pos: 29.5,-91.5 parent: 2 - - uid: 35635 + - uid: 36115 components: - type: Transform - pos: -61.5,-67.5 + rot: -1.5707963267948966 rad + pos: 29.5,-87.5 parent: 2 - - uid: 35636 + - uid: 36116 components: - type: Transform - pos: -60.5,-67.5 + rot: -1.5707963267948966 rad + pos: 31.5,-97.5 parent: 2 - - uid: 35637 + - uid: 36117 components: - type: Transform - pos: -67.5,-68.5 + rot: -1.5707963267948966 rad + pos: 33.5,-97.5 parent: 2 - - uid: 35638 + - uid: 36118 components: - type: Transform - pos: -68.5,-69.5 + rot: -1.5707963267948966 rad + pos: 30.5,-100.5 parent: 2 - - uid: 35639 + - uid: 36119 components: - type: Transform - pos: -69.5,-70.5 + rot: 3.141592653589793 rad + pos: 42.5,-110.5 parent: 2 - - uid: 35640 + - uid: 36120 components: - type: Transform - pos: -71.5,-59.5 + pos: 88.5,-62.5 parent: 2 - - uid: 35641 + - uid: 36121 components: - type: Transform - pos: -72.5,-59.5 + rot: -1.5707963267948966 rad + pos: 77.5,-25.5 parent: 2 - - uid: 35642 + - uid: 36122 components: - type: Transform - pos: -73.5,-59.5 + rot: -1.5707963267948966 rad + pos: 78.5,-25.5 parent: 2 - - uid: 35643 + - uid: 36123 components: - type: Transform - pos: -74.5,-59.5 + rot: -1.5707963267948966 rad + pos: 79.5,-25.5 parent: 2 - - uid: 35644 + - uid: 36124 components: - type: Transform - pos: -75.5,-59.5 + rot: -1.5707963267948966 rad + pos: 80.5,-25.5 parent: 2 - - uid: 35645 + - uid: 36125 components: - type: Transform - pos: -75.5,-60.5 + rot: -1.5707963267948966 rad + pos: 80.5,-24.5 parent: 2 - - uid: 35646 + - uid: 36126 components: - type: Transform - pos: -75.5,-70.5 + pos: 109.5,-23.5 parent: 2 - - uid: 35647 + - uid: 36128 components: - type: Transform - pos: -76.5,-60.5 + pos: 99.5,-20.5 parent: 2 - - uid: 35648 + - uid: 36129 components: - type: Transform - pos: -76.5,-61.5 + pos: 108.5,-39.5 parent: 2 - - uid: 35649 + - uid: 36130 components: - type: Transform - pos: -77.5,-61.5 + pos: 105.5,-39.5 parent: 2 - - uid: 35650 + - uid: 36131 components: - type: Transform - pos: -77.5,-62.5 + rot: -1.5707963267948966 rad + pos: 105.5,-73.5 parent: 2 - - uid: 35651 + - uid: 36132 components: - type: Transform - pos: -78.5,-62.5 + rot: -1.5707963267948966 rad + pos: 101.5,-74.5 parent: 2 - - uid: 35652 + - uid: 36133 components: - type: Transform - pos: -78.5,-63.5 + rot: -1.5707963267948966 rad + pos: 100.5,-85.5 parent: 2 - - uid: 35653 + - uid: 36134 components: - type: Transform - pos: -78.5,-64.5 + pos: 19.5,13.5 parent: 2 - - uid: 35654 + - uid: 36135 components: - type: Transform - pos: -78.5,-65.5 + pos: 20.5,13.5 parent: 2 - - uid: 35655 + - uid: 36136 components: - type: Transform - pos: -78.5,-66.5 + pos: 20.5,14.5 parent: 2 - - uid: 35656 + - uid: 36137 components: - type: Transform - pos: -78.5,-67.5 + pos: 20.5,15.5 parent: 2 - - uid: 35657 + - uid: 36138 components: - type: Transform - pos: -59.5,-68.5 + pos: 20.5,16.5 parent: 2 - - uid: 35658 + - uid: 36139 components: - type: Transform - pos: -77.5,-68.5 + rot: 3.141592653589793 rad + pos: -14.5,-69.5 parent: 2 - - uid: 35659 + - uid: 36140 components: - type: Transform - pos: -59.5,-69.5 + rot: 3.141592653589793 rad + pos: -25.5,-53.5 parent: 2 - - uid: 35660 + - uid: 36141 components: - type: Transform - pos: -76.5,-69.5 + rot: 3.141592653589793 rad + pos: -25.5,-58.5 parent: 2 - - uid: 35661 + - uid: 36142 components: - type: Transform - pos: -78.5,-68.5 + rot: 3.141592653589793 rad + pos: -25.5,-60.5 parent: 2 - - uid: 35662 + - uid: 36143 components: - type: Transform - pos: -77.5,-69.5 + rot: 3.141592653589793 rad + pos: -20.5,-67.5 parent: 2 - - uid: 35663 + - uid: 36144 components: - type: Transform - pos: -76.5,-70.5 + rot: 3.141592653589793 rad + pos: -13.5,-69.5 parent: 2 - - uid: 35664 + - uid: 36145 components: - type: Transform - pos: -75.5,-71.5 + rot: 3.141592653589793 rad + pos: -18.5,-69.5 parent: 2 - - uid: 35665 + - uid: 36146 components: - type: Transform - pos: -74.5,-71.5 + rot: 3.141592653589793 rad + pos: -24.5,-67.5 parent: 2 - - uid: 35666 + - uid: 36147 components: - type: Transform - pos: -73.5,-71.5 + rot: 3.141592653589793 rad + pos: -25.5,-65.5 parent: 2 - - uid: 35667 + - uid: 36148 components: - type: Transform - pos: -72.5,-71.5 + rot: 3.141592653589793 rad + pos: -28.5,-51.5 parent: 2 - - uid: 35668 + - uid: 36149 components: - type: Transform - pos: -71.5,-71.5 + rot: 3.141592653589793 rad + pos: -28.5,-35.5 parent: 2 - - uid: 35669 + - uid: 36150 components: - type: Transform - pos: -70.5,-71.5 + rot: 3.141592653589793 rad + pos: -25.5,-33.5 parent: 2 - - uid: 35670 + - uid: 36151 components: - type: Transform - pos: -69.5,-71.5 + rot: 3.141592653589793 rad + pos: -25.5,-27.5 parent: 2 - - uid: 35671 + - uid: 36152 components: - type: Transform - pos: -68.5,-70.5 + rot: 3.141592653589793 rad + pos: -25.5,-25.5 parent: 2 - - uid: 35672 + - uid: 36153 components: - type: Transform - pos: -67.5,-69.5 + rot: 3.141592653589793 rad + pos: -25.5,-20.5 parent: 2 - - uid: 35673 + - uid: 36154 components: - type: Transform - pos: -66.5,-68.5 + rot: 3.141592653589793 rad + pos: -25.5,-18.5 parent: 2 - - uid: 35674 + - uid: 36155 components: - type: Transform - pos: -57.5,-78.5 + rot: 3.141592653589793 rad + pos: -25.5,-12.5 parent: 2 - - uid: 35675 + - uid: 36156 components: - type: Transform - pos: -57.5,-79.5 + rot: 3.141592653589793 rad + pos: -23.5,-9.5 parent: 2 - - uid: 35676 + - uid: 36157 components: - type: Transform - pos: -56.5,-79.5 + rot: 3.141592653589793 rad + pos: -18.5,-4.5 parent: 2 - - uid: 35677 + - uid: 36158 components: - type: Transform - pos: -55.5,-79.5 + rot: 3.141592653589793 rad + pos: -15.5,-2.5 parent: 2 - - uid: 35678 + - uid: 36159 components: - type: Transform - pos: -54.5,-79.5 + rot: 3.141592653589793 rad + pos: -10.5,-2.5 parent: 2 - - uid: 35681 + - uid: 36161 components: - type: Transform - pos: -54.5,-82.5 + rot: 3.141592653589793 rad + pos: 16.5,-2.5 parent: 2 - - uid: 35682 + - uid: 36162 components: - type: Transform - pos: -54.5,-83.5 + rot: 3.141592653589793 rad + pos: 24.5,-9.5 parent: 2 - - uid: 35683 + - uid: 36163 components: - type: Transform - pos: -54.5,-84.5 + rot: 3.141592653589793 rad + pos: 19.5,-4.5 parent: 2 - - uid: 35684 + - uid: 36164 components: - type: Transform - pos: -54.5,-85.5 + rot: 3.141592653589793 rad + pos: 26.5,-12.5 parent: 2 - - uid: 35685 + - uid: 36165 components: - type: Transform - pos: -55.5,-84.5 + rot: 3.141592653589793 rad + pos: 26.5,-18.5 parent: 2 - - uid: 35686 + - uid: 36166 components: - type: Transform - pos: -56.5,-84.5 + rot: 3.141592653589793 rad + pos: 26.5,-20.5 parent: 2 - - uid: 35687 + - uid: 36167 components: - type: Transform - pos: -57.5,-84.5 + rot: 3.141592653589793 rad + pos: 26.5,-25.5 parent: 2 - - uid: 35688 + - uid: 36168 components: - type: Transform - pos: -58.5,-84.5 + rot: 3.141592653589793 rad + pos: 26.5,-26.5 parent: 2 - - uid: 35689 + - uid: 36169 components: - type: Transform - pos: -58.5,-85.5 + rot: 3.141592653589793 rad + pos: 26.5,-53.5 parent: 2 - - uid: 35690 + - uid: 36170 components: - type: Transform - pos: -58.5,-87.5 + rot: 3.141592653589793 rad + pos: 26.5,-58.5 parent: 2 - - uid: 35691 + - uid: 36171 components: - type: Transform - pos: -58.5,-88.5 + rot: 3.141592653589793 rad + pos: 26.5,-60.5 parent: 2 - - uid: 35692 + - uid: 36172 components: - type: Transform - pos: -57.5,-88.5 + rot: 3.141592653589793 rad + pos: 26.5,-65.5 parent: 2 - - uid: 35693 + - uid: 36173 components: - type: Transform - pos: -56.5,-88.5 + rot: 3.141592653589793 rad + pos: 25.5,-67.5 parent: 2 - - uid: 35694 + - uid: 36174 components: - type: Transform - pos: -55.5,-88.5 + rot: 3.141592653589793 rad + pos: 19.5,-69.5 parent: 2 - - uid: 35695 + - uid: 36175 components: - type: Transform - pos: -54.5,-88.5 + rot: 3.141592653589793 rad + pos: 15.5,-69.5 parent: 2 - - uid: 35696 + - uid: 36176 components: - type: Transform - pos: -54.5,-87.5 + rot: 3.141592653589793 rad + pos: 14.5,-69.5 parent: 2 - - uid: 35697 + - uid: 36177 components: - type: Transform - pos: 33.5,-80.5 + rot: 3.141592653589793 rad + pos: 10.5,-69.5 parent: 2 - - uid: 35698 + - uid: 36178 components: - type: Transform - pos: -59.5,-87.5 + rot: 3.141592653589793 rad + pos: 8.5,-70.5 parent: 2 - - uid: 35699 + - uid: 36179 components: - type: Transform - pos: -60.5,-87.5 + rot: 3.141592653589793 rad + pos: 3.5,-70.5 parent: 2 - - uid: 35700 + - uid: 36181 components: - type: Transform - pos: -59.5,-85.5 + rot: 3.141592653589793 rad + pos: -7.5,-70.5 parent: 2 - - uid: 35701 + - uid: 36182 components: - type: Transform - pos: -60.5,-85.5 + rot: 3.141592653589793 rad + pos: -9.5,-69.5 parent: 2 - - uid: 35702 + - uid: 36183 components: - type: Transform - pos: -65.5,-51.5 + rot: 1.5707963267948966 rad + pos: 4.5,-96.5 parent: 2 - - uid: 35703 + - uid: 36184 components: - type: Transform - pos: -66.5,-51.5 + pos: 25.5,-88.5 parent: 2 - - uid: 35704 + - uid: 36185 components: - type: Transform - pos: -67.5,-51.5 + rot: 1.5707963267948966 rad + pos: 5.5,-104.5 parent: 2 - - uid: 35705 + - uid: 36186 components: - type: Transform - pos: -68.5,-51.5 + pos: 36.5,-84.5 parent: 2 - - uid: 35706 + - uid: 36187 components: - type: Transform - pos: -69.5,-51.5 + pos: -27.5,18.5 parent: 2 - - uid: 35707 + - uid: 36188 components: - type: Transform - pos: -73.5,-51.5 + pos: 104.5,-37.5 parent: 2 - - uid: 35708 + - uid: 36189 components: - type: Transform - pos: -77.5,-51.5 + pos: 105.5,-37.5 parent: 2 - - uid: 35709 + - uid: 36190 components: - type: Transform - pos: -77.5,-50.5 + pos: 105.5,-36.5 parent: 2 - - uid: 35710 + - uid: 36191 components: - type: Transform - pos: -77.5,-48.5 + pos: 108.5,-36.5 parent: 2 - - uid: 35711 + - uid: 36192 components: - type: Transform - pos: -77.5,-46.5 + pos: 108.5,-26.5 parent: 2 - - uid: 35712 + - uid: 36193 components: - type: Transform - pos: -77.5,-40.5 + pos: 105.5,-26.5 parent: 2 - - uid: 35713 + - uid: 36194 components: - type: Transform - pos: -77.5,-38.5 + pos: 105.5,-25.5 parent: 2 - - uid: 35714 + - uid: 36195 components: - type: Transform - pos: -77.5,-34.5 + pos: 104.5,-25.5 parent: 2 - - uid: 35715 + - uid: 36196 components: - type: Transform - pos: -76.5,-34.5 + rot: 3.141592653589793 rad + pos: 99.5,-18.5 parent: 2 - - uid: 35716 + - uid: 36197 components: - type: Transform - pos: -75.5,-34.5 + rot: 3.141592653589793 rad + pos: 97.5,-18.5 parent: 2 - - uid: 35717 + - uid: 36198 components: - type: Transform - pos: -74.5,-34.5 + pos: 105.5,-38.5 parent: 2 - - uid: 35718 + - uid: 36199 components: - type: Transform - pos: -73.5,-34.5 + pos: 105.5,-24.5 parent: 2 - - uid: 35719 + - uid: 36200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-4.5 + pos: 109.5,-24.5 parent: 2 - - uid: 35720 + - uid: 36201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-3.5 + pos: 109.5,-25.5 parent: 2 - - uid: 35724 + - uid: 36202 components: - type: Transform - pos: -54.5,-80.5 + pos: 109.5,-26.5 parent: 2 - - uid: 35725 + - uid: 36203 components: - type: Transform - pos: -81.5,-46.5 + pos: 105.5,-23.5 parent: 2 - - uid: 35726 + - uid: 36204 components: - type: Transform - pos: -81.5,-48.5 + pos: 104.5,-23.5 parent: 2 - - uid: 35727 + - uid: 36205 components: - type: Transform - pos: -81.5,-40.5 + pos: 109.5,-39.5 parent: 2 - - uid: 35728 + - uid: 36206 components: - type: Transform - pos: -81.5,-38.5 + pos: 109.5,-38.5 parent: 2 - - uid: 35730 + - uid: 36207 components: - type: Transform - pos: -56.5,-5.5 + pos: 109.5,-37.5 parent: 2 - - uid: 35731 + - uid: 36208 components: - type: Transform - pos: -56.5,-4.5 + pos: 109.5,-36.5 parent: 2 - - uid: 35732 + - uid: 36210 components: - type: Transform - pos: -56.5,1.5 + pos: 103.5,-20.5 parent: 2 - - uid: 35733 + - uid: 36220 components: - type: Transform - pos: -55.5,1.5 + pos: 110.5,-23.5 parent: 2 - - uid: 35735 + - uid: 36222 components: - type: Transform - pos: -53.5,1.5 + rot: 3.141592653589793 rad + pos: 92.5,-18.5 parent: 2 - - uid: 35736 + - uid: 36223 components: - type: Transform - pos: -52.5,1.5 + rot: 3.141592653589793 rad + pos: 90.5,-18.5 parent: 2 - - uid: 35737 + - uid: 36224 components: - type: Transform - pos: -51.5,1.5 + rot: 3.141592653589793 rad + pos: 110.5,-43.5 parent: 2 - - uid: 35738 + - uid: 36225 components: - type: Transform - pos: -56.5,-3.5 + rot: -1.5707963267948966 rad + pos: 101.5,-76.5 parent: 2 - - uid: 35739 + - uid: 36226 components: - type: Transform - pos: -40.5,-6.5 + rot: -1.5707963267948966 rad + pos: 80.5,-23.5 parent: 2 - - uid: 35740 + - uid: 36227 components: - type: Transform - pos: -36.5,-13.5 + rot: 3.141592653589793 rad + pos: -66.5,-66.5 parent: 2 - - uid: 35741 + - uid: 36228 components: - type: Transform - pos: -33.5,-6.5 + rot: -1.5707963267948966 rad + pos: 80.5,-22.5 parent: 2 - - uid: 35742 + - uid: 36229 components: - type: Transform - pos: -33.5,-7.5 + rot: -1.5707963267948966 rad + pos: 52.5,-49.5 parent: 2 - - uid: 35743 + - uid: 36230 components: - type: Transform - pos: -33.5,-8.5 + rot: -1.5707963267948966 rad + pos: 53.5,-49.5 parent: 2 - - uid: 35744 + - uid: 36231 components: - type: Transform - pos: -33.5,-9.5 + pos: 22.5,-88.5 parent: 2 - - uid: 35745 + - uid: 36232 components: - type: Transform - pos: -33.5,-10.5 + pos: -40.5,-87.5 parent: 2 - - uid: 35746 + - uid: 36233 components: - type: Transform - pos: -40.5,-9.5 + pos: -42.5,-87.5 parent: 2 - - uid: 35747 + - uid: 36234 components: - type: Transform - pos: -34.5,-6.5 + pos: -43.5,-87.5 parent: 2 - - uid: 35748 + - uid: 36235 components: - type: Transform - pos: -35.5,-6.5 + pos: -43.5,-88.5 parent: 2 - - uid: 35749 + - uid: 36236 components: - type: Transform - pos: -36.5,-6.5 + pos: -43.5,-89.5 parent: 2 - - uid: 35750 + - uid: 36237 components: - type: Transform - pos: -37.5,-6.5 + pos: -41.5,-87.5 parent: 2 - - uid: 35751 + - uid: 36238 components: - type: Transform - pos: -38.5,-6.5 + rot: 1.5707963267948966 rad + pos: -58.5,-26.5 parent: 2 - - uid: 35752 + - uid: 36239 components: - type: Transform - pos: -39.5,-6.5 + rot: 1.5707963267948966 rad + pos: -57.5,-26.5 parent: 2 - - uid: 35753 + - uid: 36240 components: - type: Transform - pos: -40.5,-10.5 + rot: 1.5707963267948966 rad + pos: -56.5,-26.5 parent: 2 - - uid: 35754 + - uid: 36241 components: - type: Transform - pos: -40.5,-11.5 + rot: 1.5707963267948966 rad + pos: -56.5,-23.5 parent: 2 - - uid: 35755 + - uid: 36242 components: - type: Transform - pos: -40.5,-12.5 + pos: 26.5,-83.5 parent: 2 - - uid: 35756 + - uid: 36243 components: - type: Transform - pos: -40.5,-13.5 + rot: 3.141592653589793 rad + pos: -15.5,22.5 parent: 2 - - uid: 35757 + - uid: 36244 components: - type: Transform - pos: -37.5,-13.5 + rot: 1.5707963267948966 rad + pos: -56.5,-25.5 parent: 2 - - uid: 35758 + - uid: 36245 components: - type: Transform - pos: -38.5,-13.5 + rot: 1.5707963267948966 rad + pos: -34.5,6.5 parent: 2 - - uid: 35759 + - uid: 36246 components: - type: Transform - pos: -39.5,-13.5 + rot: 1.5707963267948966 rad + pos: -35.5,6.5 parent: 2 - - uid: 35760 + - uid: 36247 components: - type: Transform - pos: -35.5,-13.5 + rot: 1.5707963267948966 rad + pos: -36.5,6.5 parent: 2 - - uid: 35761 + - uid: 36248 components: - type: Transform - pos: -34.5,-13.5 + rot: 1.5707963267948966 rad + pos: -37.5,6.5 parent: 2 - - uid: 35762 + - uid: 36249 components: - type: Transform - pos: -33.5,-13.5 + rot: 1.5707963267948966 rad + pos: -65.5,-60.5 parent: 2 - - uid: 35763 + - uid: 36255 components: - type: Transform - pos: -33.5,-12.5 + rot: 1.5707963267948966 rad + pos: -65.5,-54.5 parent: 2 - - uid: 35764 + - uid: 36256 components: - type: Transform - pos: -33.5,-11.5 + rot: 1.5707963267948966 rad + pos: -34.5,9.5 parent: 2 - - uid: 35765 + - uid: 36257 components: - type: Transform - pos: -33.5,-28.5 + rot: 1.5707963267948966 rad + pos: -34.5,7.5 parent: 2 - - uid: 35766 + - uid: 36258 components: - type: Transform - pos: -39.5,-30.5 + rot: 1.5707963267948966 rad + pos: -34.5,8.5 parent: 2 - - uid: 35767 + - uid: 36259 components: - type: Transform - pos: -39.5,-31.5 + rot: 1.5707963267948966 rad + pos: -38.5,6.5 parent: 2 - - uid: 35768 + - uid: 36260 components: - type: Transform - pos: -39.5,-32.5 + rot: -1.5707963267948966 rad + pos: 52.5,-46.5 parent: 2 - - uid: 35769 + - uid: 36261 components: - type: Transform - pos: -39.5,-33.5 + rot: -1.5707963267948966 rad + pos: 52.5,-45.5 parent: 2 - - uid: 35770 + - uid: 36262 components: - type: Transform - pos: -39.5,-34.5 + pos: -43.5,-90.5 parent: 2 - - uid: 35771 + - uid: 36263 components: - type: Transform - pos: -39.5,-35.5 + rot: -1.5707963267948966 rad + pos: 52.5,-47.5 parent: 2 - - uid: 35772 + - uid: 36264 components: - type: Transform - pos: -38.5,-35.5 + rot: -1.5707963267948966 rad + pos: 52.5,-48.5 parent: 2 - - uid: 35773 + - uid: 36265 components: - type: Transform - pos: -34.5,-35.5 + rot: -1.5707963267948966 rad + pos: 18.5,-86.5 parent: 2 - - uid: 35774 + - uid: 36266 components: - type: Transform - pos: -33.5,-35.5 + rot: -1.5707963267948966 rad + pos: 18.5,-87.5 parent: 2 - - uid: 35775 + - uid: 36267 components: - type: Transform - pos: -33.5,-31.5 + rot: -1.5707963267948966 rad + pos: 18.5,-85.5 parent: 2 - - uid: 35776 + - uid: 36268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-37.5 + rot: -1.5707963267948966 rad + pos: 18.5,-88.5 parent: 2 - - uid: 35777 + - uid: 36269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-37.5 + rot: -1.5707963267948966 rad + pos: 53.5,-45.5 parent: 2 - - uid: 35779 + - uid: 36270 components: - type: Transform - pos: -69.5,-14.5 + rot: -1.5707963267948966 rad + pos: 55.5,-45.5 parent: 2 - - uid: 35780 + - uid: 36271 components: - type: Transform - pos: -69.5,-13.5 + rot: -1.5707963267948966 rad + pos: 55.5,-46.5 parent: 2 - - uid: 35781 + - uid: 36272 components: - type: Transform - pos: -69.5,-12.5 + rot: -1.5707963267948966 rad + pos: 7.5,-70.5 parent: 2 - - uid: 35782 + - uid: 36273 components: - type: Transform - pos: -69.5,-11.5 + rot: -1.5707963267948966 rad + pos: 5.5,-70.5 parent: 2 - - uid: 35783 + - uid: 36274 components: - type: Transform - pos: -69.5,-10.5 + rot: -1.5707963267948966 rad + pos: 77.5,-24.5 parent: 2 - - uid: 35784 + - uid: 36275 components: - type: Transform - pos: -69.5,-9.5 + rot: -1.5707963267948966 rad + pos: 77.5,-22.5 parent: 2 - - uid: 35785 + - uid: 36276 components: - type: Transform - pos: -69.5,-8.5 + rot: -1.5707963267948966 rad + pos: 78.5,-22.5 parent: 2 - - uid: 35786 + - uid: 36277 components: - type: Transform - pos: -69.5,-7.5 + rot: -1.5707963267948966 rad + pos: 79.5,-22.5 parent: 2 - - uid: 35787 + - uid: 36278 components: - type: Transform - pos: -69.5,-6.5 + rot: 3.141592653589793 rad + pos: -66.5,-54.5 parent: 2 - - uid: 35788 + - uid: 36279 components: - type: Transform - pos: -69.5,-5.5 + pos: 2.5,-97.5 parent: 2 - - uid: 35789 + - uid: 36280 components: - type: Transform - pos: -33.5,-30.5 + pos: 23.5,-88.5 parent: 2 - - uid: 35790 + - uid: 36282 components: - type: Transform - pos: -51.5,5.5 + rot: -1.5707963267948966 rad + pos: 23.5,20.5 parent: 2 - - uid: 35791 + - uid: 36283 components: - type: Transform - pos: -51.5,4.5 + rot: -1.5707963267948966 rad + pos: 21.5,20.5 parent: 2 - - uid: 35794 + - uid: 36284 components: - type: Transform - pos: -18.5,9.5 + rot: -1.5707963267948966 rad + pos: 20.5,20.5 parent: 2 - - uid: 35795 + - uid: 36285 components: - type: Transform - pos: -14.5,2.5 + rot: -1.5707963267948966 rad + pos: 20.5,19.5 parent: 2 - - uid: 35796 + - uid: 36286 components: - type: Transform - pos: -14.5,4.5 + rot: -1.5707963267948966 rad + pos: 20.5,18.5 parent: 2 - - uid: 35797 + - uid: 36287 components: - type: Transform - pos: -18.5,10.5 + rot: 1.5707963267948966 rad + pos: -60.5,-26.5 parent: 2 - - uid: 35798 + - uid: 36288 components: - type: Transform - pos: -18.5,11.5 + rot: 1.5707963267948966 rad + pos: -60.5,-25.5 parent: 2 - - uid: 35799 + - uid: 36289 components: - type: Transform - pos: -17.5,11.5 + rot: 1.5707963267948966 rad + pos: -60.5,-24.5 parent: 2 - - uid: 35800 + - uid: 36290 components: - type: Transform - pos: -13.5,11.5 + rot: 3.141592653589793 rad + pos: -15.5,19.5 parent: 2 - - uid: 35801 + - uid: 36291 components: - type: Transform - pos: -24.5,18.5 + rot: 1.5707963267948966 rad + pos: -20.5,20.5 parent: 2 - - uid: 35802 + - uid: 36292 components: - type: Transform - pos: -21.5,17.5 + rot: 1.5707963267948966 rad + pos: -20.5,21.5 parent: 2 - - uid: 35803 + - uid: 36293 components: - type: Transform - pos: -34.5,21.5 + rot: 1.5707963267948966 rad + pos: -60.5,-23.5 parent: 2 - - uid: 35804 + - uid: 36294 components: - type: Transform - pos: -33.5,21.5 + rot: 1.5707963267948966 rad + pos: -34.5,10.5 parent: 2 - - uid: 35805 + - uid: 36295 components: - type: Transform - pos: -25.5,18.5 + rot: 1.5707963267948966 rad + pos: -35.5,10.5 parent: 2 - - uid: 35806 + - uid: 36296 components: - type: Transform - pos: -26.5,18.5 + rot: 1.5707963267948966 rad + pos: -36.5,10.5 parent: 2 - - uid: 35807 + - uid: 36297 components: - type: Transform - pos: -40.5,19.5 + rot: 1.5707963267948966 rad + pos: -37.5,10.5 parent: 2 - - uid: 35808 + - uid: 36298 components: - type: Transform - pos: -39.5,19.5 + rot: 1.5707963267948966 rad + pos: -38.5,10.5 parent: 2 - - uid: 35809 + - uid: 36299 components: - type: Transform - pos: -38.5,19.5 + rot: 1.5707963267948966 rad + pos: -38.5,9.5 parent: 2 - - uid: 35810 + - uid: 36300 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-16.5 + rot: 1.5707963267948966 rad + pos: -38.5,7.5 parent: 2 - - uid: 35811 + - uid: 36301 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,-15.5 + pos: -67.5,-54.5 parent: 2 - - uid: 35812 + - uid: 36302 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,-14.5 + pos: -68.5,-54.5 parent: 2 - - uid: 35813 + - uid: 36303 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-14.5 + pos: -42.5,-90.5 parent: 2 - - uid: 35814 + - uid: 36304 components: - type: Transform - pos: -51.5,7.5 + pos: -41.5,-90.5 parent: 2 - - uid: 35815 + - uid: 36305 components: - type: Transform - pos: -51.5,6.5 + pos: -40.5,-90.5 parent: 2 - - uid: 35816 + - uid: 36306 components: - type: Transform - pos: -15.5,-1.5 + pos: -40.5,-89.5 parent: 2 - - uid: 35817 + - uid: 36307 components: - type: Transform - pos: -16.5,-1.5 + pos: -40.5,-91.5 parent: 2 - - uid: 35818 + - uid: 36308 components: - type: Transform - pos: -16.5,-2.5 + pos: -40.5,-93.5 parent: 2 - - uid: 35819 + - uid: 36309 components: - type: Transform - pos: -17.5,-2.5 + pos: -41.5,-93.5 parent: 2 - - uid: 35820 + - uid: 36310 components: - type: Transform - pos: -18.5,-2.5 + pos: -42.5,-93.5 parent: 2 - - uid: 35821 + - uid: 36311 components: - type: Transform - pos: -18.5,-3.5 + pos: -43.5,-93.5 parent: 2 - - uid: 35822 + - uid: 36312 components: - type: Transform - pos: -26.5,-27.5 + pos: -43.5,-92.5 parent: 2 - - uid: 35823 + - uid: 36313 components: - type: Transform - pos: -26.5,-18.5 + pos: -43.5,-91.5 parent: 2 - - uid: 35824 + - uid: 36314 components: - type: Transform - pos: -24.5,-9.5 + rot: -1.5707963267948966 rad + pos: 19.5,-85.5 parent: 2 - - uid: 35825 + - uid: 36315 components: - type: Transform - pos: -25.5,-9.5 + rot: -1.5707963267948966 rad + pos: 20.5,-85.5 parent: 2 - - uid: 35826 + - uid: 36316 components: - type: Transform - pos: -25.5,-10.5 + rot: -1.5707963267948966 rad + pos: 21.5,-85.5 parent: 2 - - uid: 35827 + - uid: 36317 components: - type: Transform - pos: -25.5,-11.5 + rot: -1.5707963267948966 rad + pos: 21.5,-86.5 parent: 2 - - uid: 35828 + - uid: 36318 components: - type: Transform - pos: -26.5,-11.5 + rot: -1.5707963267948966 rad + pos: 21.5,-88.5 parent: 2 - - uid: 35829 + - uid: 36319 components: - type: Transform - pos: -26.5,-12.5 + rot: -1.5707963267948966 rad + pos: 20.5,-88.5 parent: 2 - - uid: 35830 + - uid: 36320 components: - type: Transform - pos: -26.5,-19.5 + rot: -1.5707963267948966 rad + pos: 19.5,-88.5 parent: 2 - - uid: 35831 + - uid: 36321 components: - type: Transform - pos: -26.5,-20.5 + rot: 3.141592653589793 rad + pos: 92.5,-25.5 parent: 2 - - uid: 35832 + - uid: 36322 components: - type: Transform - pos: -26.5,-25.5 + rot: 3.141592653589793 rad + pos: 97.5,-25.5 parent: 2 - - uid: 35833 + - uid: 36323 components: - type: Transform - pos: -26.5,-26.5 + pos: -30.5,18.5 parent: 2 - - uid: 35834 + - uid: 36324 components: - type: Transform - pos: -26.5,-33.5 + rot: -1.5707963267948966 rad + pos: -54.5,14.5 parent: 2 - - uid: 35835 + - uid: 36325 components: - type: Transform - pos: -26.5,-34.5 + rot: -1.5707963267948966 rad + pos: -54.5,13.5 parent: 2 - - uid: 35836 + - uid: 36326 components: - type: Transform - pos: -27.5,-34.5 + rot: -1.5707963267948966 rad + pos: -58.5,1.5 parent: 2 - - uid: 35837 + - uid: 36327 components: - type: Transform - pos: -28.5,-34.5 + rot: 3.141592653589793 rad + pos: -70.5,-19.5 parent: 2 - - uid: 35838 + - uid: 36328 components: - type: Transform - pos: -29.5,-35.5 + rot: 3.141592653589793 rad + pos: 61.5,-56.5 parent: 2 - - uid: 35839 + - uid: 36329 components: - type: Transform - pos: -29.5,-41.5 + pos: -66.5,-15.5 parent: 2 - - uid: 35840 + - uid: 36330 components: - type: Transform - pos: -29.5,-45.5 + rot: 3.141592653589793 rad + pos: -73.5,-32.5 parent: 2 - - uid: 35841 + - uid: 36331 components: - type: Transform - pos: -29.5,-51.5 + rot: 3.141592653589793 rad + pos: -73.5,-33.5 parent: 2 - - uid: 35842 + - uid: 36332 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-69.5 + pos: -66.5,-19.5 parent: 2 - - uid: 35843 + - uid: 36333 components: - type: Transform - pos: -28.5,-52.5 + pos: -66.5,-18.5 parent: 2 - - uid: 35844 + - uid: 36334 components: - type: Transform - pos: -27.5,-52.5 + pos: -66.5,-16.5 parent: 2 - - uid: 35845 + - uid: 36335 components: - type: Transform - pos: -26.5,-52.5 + pos: -66.5,-14.5 parent: 2 - - uid: 35846 + - uid: 36336 components: - type: Transform - pos: -26.5,-53.5 + rot: 3.141592653589793 rad + pos: -71.5,-17.5 parent: 2 - - uid: 35847 + - uid: 36337 components: - type: Transform - pos: -26.5,-58.5 + rot: 3.141592653589793 rad + pos: -71.5,-18.5 parent: 2 - - uid: 35848 + - uid: 36338 components: - type: Transform - pos: -26.5,-59.5 + rot: 3.141592653589793 rad + pos: -71.5,-19.5 parent: 2 - - uid: 35849 + - uid: 36339 components: - type: Transform - pos: -26.5,-60.5 + pos: -68.5,-14.5 parent: 2 - - uid: 35850 + - uid: 36340 components: - type: Transform - pos: -26.5,-65.5 + rot: 3.141592653589793 rad + pos: 59.5,-57.5 parent: 2 - - uid: 35851 + - uid: 36341 components: - type: Transform - pos: -26.5,-66.5 + pos: -67.5,-19.5 parent: 2 - - uid: 35852 + - uid: 36342 components: - type: Transform - pos: -25.5,-66.5 + pos: -68.5,-19.5 parent: 2 - - uid: 35853 + - uid: 36343 components: - type: Transform - pos: -25.5,-67.5 + rot: 3.141592653589793 rad + pos: 57.5,-57.5 parent: 2 - - uid: 35854 + - uid: 36344 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-70.5 + pos: 58.5,-57.5 parent: 2 - - uid: 35855 + - uid: 36345 components: - type: Transform - pos: -24.5,-68.5 + rot: -1.5707963267948966 rad + pos: 4.5,-70.5 parent: 2 - - uid: 35856 + - uid: 36346 components: - type: Transform - pos: -20.5,-68.5 + rot: -1.5707963267948966 rad + pos: 6.5,-70.5 parent: 2 - - uid: 35857 + - uid: 36347 components: - type: Transform - pos: -19.5,-68.5 + pos: 43.5,25.5 parent: 2 - - uid: 35858 + - uid: 36348 components: - type: Transform - pos: -19.5,-69.5 + pos: -76.5,-46.5 parent: 2 - - uid: 35859 + - uid: 36349 components: - type: Transform - pos: -18.5,-70.5 + pos: -75.5,-46.5 parent: 2 - - uid: 35860 + - uid: 36350 components: - type: Transform - pos: -14.5,-70.5 + pos: -69.5,-50.5 parent: 2 - - uid: 35861 + - uid: 36351 components: - type: Transform - pos: -13.5,-70.5 + pos: -69.5,-47.5 parent: 2 - - uid: 35862 + - uid: 36352 components: - type: Transform - pos: -8.5,-70.5 + pos: -69.5,-46.5 parent: 2 - - uid: 35863 + - uid: 36353 components: - type: Transform - pos: -9.5,-70.5 + pos: 26.5,26.5 parent: 2 - - uid: 35864 + - uid: 36354 components: - type: Transform - pos: 9.5,-70.5 + pos: 25.5,26.5 parent: 2 - - uid: 35865 + - uid: 36355 components: - type: Transform - pos: 10.5,-70.5 + pos: 24.5,26.5 parent: 2 - - uid: 35866 + - uid: 36356 components: - type: Transform - pos: 27.5,-25.5 + pos: 23.5,26.5 parent: 2 - - uid: 35867 + - uid: 36357 components: - type: Transform - pos: 14.5,-70.5 + pos: 23.5,25.5 parent: 2 - - uid: 35868 + - uid: 36358 components: - type: Transform - pos: 15.5,-70.5 + pos: 23.5,24.5 parent: 2 - - uid: 35869 + - uid: 36360 components: - type: Transform - pos: 27.5,-26.5 + pos: 23.5,22.5 parent: 2 - - uid: 35870 + - uid: 36361 components: - type: Transform - pos: 30.5,-46.5 + pos: 23.5,23.5 parent: 2 - - uid: 35871 + - uid: 36362 components: - type: Transform - pos: 30.5,-47.5 + pos: -45.5,-69.5 parent: 2 - - uid: 35872 + - uid: 36363 components: - type: Transform - pos: 19.5,-70.5 + rot: 3.141592653589793 rad + pos: -69.5,-79.5 parent: 2 - - uid: 35873 + - uid: 36364 components: - type: Transform - pos: 21.5,-68.5 + pos: -59.5,-76.5 parent: 2 - - uid: 35874 + - uid: 36365 components: - type: Transform - pos: 25.5,-68.5 + rot: 3.141592653589793 rad + pos: -59.5,-78.5 parent: 2 - - uid: 35875 + - uid: 36366 components: - type: Transform - pos: 27.5,-66.5 + rot: 3.141592653589793 rad + pos: -58.5,-78.5 parent: 2 - - uid: 35876 + - uid: 36367 components: - type: Transform - pos: 27.5,-30.5 + rot: 3.141592653589793 rad + pos: -67.5,-70.5 parent: 2 - - uid: 35877 + - uid: 36368 components: - type: Transform - pos: 27.5,-20.5 + rot: 3.141592653589793 rad + pos: -63.5,-79.5 parent: 2 - - uid: 35878 + - uid: 36369 components: - type: Transform - pos: 27.5,-19.5 + rot: 3.141592653589793 rad + pos: -64.5,-79.5 parent: 2 - - uid: 35879 + - uid: 36370 components: - type: Transform - pos: 27.5,-18.5 + rot: 3.141592653589793 rad + pos: -65.5,-79.5 parent: 2 - - uid: 35880 + - uid: 36371 components: - type: Transform - pos: 24.5,-34.5 + rot: 3.141592653589793 rad + pos: -66.5,-79.5 parent: 2 - - uid: 35881 + - uid: 36372 components: - type: Transform - pos: 30.5,-41.5 + rot: 1.5707963267948966 rad + pos: 18.5,-89.5 parent: 2 - - uid: 35882 + - uid: 36374 components: - type: Transform - pos: 30.5,-42.5 + rot: -1.5707963267948966 rad + pos: -16.5,11.5 parent: 2 - - uid: 35883 + - uid: 36375 components: - type: Transform - pos: 30.5,-51.5 + rot: -1.5707963267948966 rad + pos: -15.5,11.5 parent: 2 - - uid: 35884 + - uid: 36376 components: - type: Transform - pos: 30.5,-52.5 + rot: -1.5707963267948966 rad + pos: -14.5,11.5 parent: 2 - - uid: 35885 + - uid: 36377 components: - type: Transform - pos: 23.5,-34.5 + pos: 3.5,-97.5 parent: 2 - - uid: 35886 + - uid: 36378 components: - type: Transform - pos: 24.5,-41.5 + pos: -40.5,21.5 parent: 2 - - uid: 35887 + - uid: 36379 components: - type: Transform - pos: 29.5,-52.5 + pos: -44.5,21.5 parent: 2 - - uid: 35888 + - uid: 36380 components: - type: Transform - pos: 28.5,-52.5 + pos: -44.5,19.5 parent: 2 - - uid: 35889 + - uid: 36381 components: - type: Transform - pos: 27.5,-52.5 + pos: -48.5,21.5 parent: 2 - - uid: 35890 + - uid: 36382 components: - type: Transform - pos: 27.5,-53.5 + pos: -48.5,19.5 parent: 2 - - uid: 35891 + - uid: 36383 components: - type: Transform - pos: 27.5,-58.5 + pos: -52.5,21.5 parent: 2 - - uid: 35892 + - uid: 36384 components: - type: Transform - pos: 27.5,-59.5 + pos: -52.5,19.5 parent: 2 - - uid: 35893 + - uid: 36385 components: - type: Transform - pos: 27.5,-60.5 + pos: -67.5,-14.5 parent: 2 - - uid: 35894 + - uid: 36386 components: - type: Transform - pos: 27.5,-65.5 + pos: -54.5,19.5 parent: 2 - - uid: 35895 + - uid: 36387 components: - type: Transform - pos: 26.5,-66.5 + pos: -53.5,19.5 parent: 2 - - uid: 35896 + - uid: 36388 components: - type: Transform - pos: 26.5,-67.5 + pos: -77.5,-28.5 parent: 2 - - uid: 35897 + - uid: 36389 components: - type: Transform - pos: 12.5,14.5 + pos: -77.5,-32.5 parent: 2 - - uid: 35898 + - uid: 36390 components: - type: Transform - pos: 36.5,-79.5 + pos: -76.5,-32.5 parent: 2 - - uid: 35899 + - uid: 36391 components: - type: Transform - pos: 35.5,-79.5 + pos: -75.5,-32.5 parent: 2 - - uid: 35900 + - uid: 36392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,18.5 + pos: -74.5,-32.5 parent: 2 - - uid: 35901 + - uid: 36393 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-83.5 + pos: -78.5,-28.5 parent: 2 - - uid: 35902 + - uid: 36394 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-83.5 + pos: -79.5,-28.5 parent: 2 - - uid: 35903 + - uid: 36395 components: - type: Transform - pos: 34.5,-79.5 + rot: -1.5707963267948966 rad + pos: -80.5,-28.5 parent: 2 - - uid: 35904 + - uid: 36396 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-83.5 + pos: -81.5,-28.5 parent: 2 - - uid: 35905 + - uid: 36397 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,18.5 + pos: -81.5,-32.5 parent: 2 - - uid: 35906 + - uid: 36398 components: - type: Transform - pos: 33.5,-81.5 + rot: -1.5707963267948966 rad + pos: -80.5,-32.5 parent: 2 - - uid: 35907 + - uid: 36399 components: - type: Transform rot: -1.5707963267948966 rad - pos: -81.5,-44.5 + pos: -79.5,-32.5 parent: 2 - - uid: 35908 + - uid: 36400 components: - type: Transform - pos: -29.5,18.5 + rot: -1.5707963267948966 rad + pos: -78.5,-32.5 parent: 2 - - uid: 35909 + - uid: 36401 components: - type: Transform - pos: 60.5,-64.5 + pos: -77.5,-31.5 parent: 2 - - uid: 35910 + - uid: 36402 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-103.5 + pos: -18.5,21.5 parent: 2 - - uid: 35911 + - uid: 36403 components: - type: Transform - pos: 60.5,-63.5 + rot: 3.141592653589793 rad + pos: -13.5,15.5 parent: 2 - - uid: 35912 + - uid: 36404 components: - type: Transform - pos: 60.5,-62.5 + rot: 1.5707963267948966 rad + pos: -19.5,16.5 parent: 2 - - uid: 35913 + - uid: 36405 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-104.5 + pos: -16.5,16.5 parent: 2 - - uid: 35914 + - uid: 36406 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-104.5 + pos: -17.5,16.5 parent: 2 - - uid: 35915 + - uid: 36407 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-27.5 + pos: -22.5,18.5 parent: 2 - - uid: 35916 + - uid: 36408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-88.5 + pos: -35.5,18.5 parent: 2 - - uid: 35917 + - uid: 36409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-88.5 + pos: -34.5,18.5 parent: 2 - - uid: 35918 + - uid: 36410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-86.5 + pos: -23.5,18.5 parent: 2 - - uid: 35919 + - uid: 36411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-104.5 + pos: -28.5,18.5 parent: 2 - - uid: 35920 + - uid: 36412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-109.5 + pos: 47.5,24.5 parent: 2 - - uid: 35921 + - uid: 36413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-110.5 + pos: 47.5,25.5 parent: 2 - - uid: 35922 + - uid: 36414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-83.5 + pos: 46.5,25.5 parent: 2 - - uid: 35923 + - uid: 36415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-29.5 + pos: 45.5,25.5 parent: 2 - - uid: 35924 + - uid: 36416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-107.5 + pos: 44.5,25.5 parent: 2 - - uid: 35925 + - uid: 36417 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-106.5 - parent: 2 - - uid: 35926 - components: - - type: Transform - pos: 65.5,-51.5 - parent: 2 - - uid: 35927 - components: - - type: Transform - pos: 69.5,-54.5 + pos: 60.5,-57.5 parent: 2 - - uid: 35928 + - uid: 36418 components: - type: Transform - pos: 68.5,-54.5 + pos: -20.5,17.5 parent: 2 - - uid: 35929 + - uid: 36419 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-110.5 - parent: 2 - - uid: 35930 - components: - - type: Transform - pos: 68.5,-64.5 + pos: 61.5,-57.5 parent: 2 - - uid: 35931 + - uid: 36420 components: - type: Transform - pos: 66.5,-51.5 + pos: -35.5,21.5 parent: 2 - - uid: 35932 + - uid: 36421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-110.5 + pos: -36.5,21.5 parent: 2 - - uid: 35933 + - uid: 36422 components: - type: Transform - pos: 56.5,-92.5 + pos: -37.5,21.5 parent: 2 - - uid: 35934 + - uid: 36423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-102.5 + pos: -33.5,20.5 parent: 2 - - uid: 35935 + - uid: 36424 components: - type: Transform - pos: 26.5,-84.5 + pos: -33.5,19.5 parent: 2 - - uid: 35936 + - uid: 36425 components: - type: Transform - pos: 60.5,-67.5 + rot: 1.5707963267948966 rad + pos: 47.5,17.5 parent: 2 - - uid: 35937 + - uid: 36426 components: - type: Transform - pos: 42.5,-76.5 + rot: -1.5707963267948966 rad + pos: 95.5,-85.5 parent: 2 - - uid: 35938 + - uid: 36427 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-69.5 + rot: -1.5707963267948966 rad + pos: 102.5,-77.5 parent: 2 - - uid: 35939 + - uid: 36428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-85.5 + pos: 86.5,-56.5 parent: 2 - - uid: 35940 + - uid: 36429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-88.5 + pos: 72.5,-68.5 parent: 2 - - uid: 35941 + - uid: 36430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-85.5 + rot: 1.5707963267948966 rad + pos: -66.5,-60.5 parent: 2 - - uid: 35942 + - uid: 36431 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-95.5 + pos: -67.5,-60.5 parent: 2 - - uid: 35943 + - uid: 36432 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-83.5 + pos: 91.5,-77.5 parent: 2 - - uid: 35944 + - uid: 36433 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,-83.5 + pos: 102.5,-73.5 parent: 2 - - uid: 35945 + - uid: 36434 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-83.5 + pos: 101.5,-85.5 parent: 2 - - uid: 35946 + - uid: 36435 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-83.5 + pos: 90.5,-71.5 parent: 2 - - uid: 35947 + - uid: 36436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-106.5 + rot: -1.5707963267948966 rad + pos: 102.5,-83.5 parent: 2 - - uid: 35948 + - uid: 36437 components: - type: Transform - pos: 56.5,-86.5 + rot: -1.5707963267948966 rad + pos: 103.5,-77.5 parent: 2 - - uid: 35949 + - uid: 36438 components: - type: Transform - pos: 56.5,-94.5 + rot: 1.5707963267948966 rad + pos: 39.5,-2.5 parent: 2 - - uid: 35950 + - uid: 36439 components: - type: Transform - pos: 48.5,-94.5 + rot: -1.5707963267948966 rad + pos: 103.5,-80.5 parent: 2 - - uid: 35951 + - uid: 36440 components: - type: Transform - pos: 44.5,-82.5 + rot: -1.5707963267948966 rad + pos: 96.5,-85.5 parent: 2 - - uid: 35952 + - uid: 36441 components: - type: Transform - pos: 48.5,-95.5 + rot: -1.5707963267948966 rad + pos: 90.5,-67.5 parent: 2 - - uid: 35953 + - uid: 36442 components: - type: Transform - pos: 44.5,-80.5 + rot: -1.5707963267948966 rad + pos: 90.5,-65.5 parent: 2 - - uid: 35954 + - uid: 36443 components: - type: Transform - pos: 44.5,-81.5 + rot: -1.5707963267948966 rad + pos: 90.5,-68.5 parent: 2 - - uid: 35955 + - uid: 36444 components: - type: Transform - pos: 36.5,-81.5 + rot: -1.5707963267948966 rad + pos: 103.5,-65.5 parent: 2 - - uid: 35956 + - uid: 36445 components: - type: Transform - pos: 38.5,-76.5 + rot: -1.5707963267948966 rad + pos: 101.5,-63.5 parent: 2 - - uid: 35957 + - uid: 36446 components: - type: Transform - pos: 37.5,-76.5 + rot: -1.5707963267948966 rad + pos: 97.5,-60.5 parent: 2 - - uid: 35958 + - uid: 36447 components: - type: Transform - pos: 37.5,-84.5 + rot: -1.5707963267948966 rad + pos: 96.5,-60.5 parent: 2 - - uid: 35959 + - uid: 36448 components: - type: Transform - pos: 56.5,-100.5 + rot: -1.5707963267948966 rad + pos: 96.5,-70.5 parent: 2 - - uid: 35960 + - uid: 36449 components: - type: Transform - pos: 56.5,-95.5 + rot: -1.5707963267948966 rad + pos: 101.5,-65.5 parent: 2 - - uid: 35961 + - uid: 36450 components: - type: Transform - pos: 40.5,-76.5 + pos: 106.5,-74.5 parent: 2 - - uid: 35962 + - uid: 36451 components: - type: Transform - pos: 21.5,-67.5 + rot: -1.5707963267948966 rad + pos: 100.5,-68.5 parent: 2 - - uid: 35963 + - uid: 36452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-106.5 + rot: -1.5707963267948966 rad + pos: 96.5,-66.5 parent: 2 - - uid: 35964 + - uid: 36453 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-78.5 + pos: 101.5,-62.5 parent: 2 - - uid: 35965 + - uid: 36454 components: - type: Transform - pos: 39.5,-76.5 + rot: -1.5707963267948966 rad + pos: 95.5,-62.5 parent: 2 - - uid: 35966 + - uid: 36455 components: - type: Transform - pos: 56.5,-101.5 + rot: -1.5707963267948966 rad + pos: 92.5,-73.5 parent: 2 - - uid: 35968 + - uid: 36456 components: - type: Transform - pos: 69.5,-64.5 + rot: -1.5707963267948966 rad + pos: 106.5,-65.5 parent: 2 - - uid: 35969 + - uid: 36457 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-83.5 + pos: 98.5,-60.5 parent: 2 - - uid: 35970 + - uid: 36458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-110.5 + pos: 110.5,-60.5 parent: 2 - - uid: 35971 + - uid: 36459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-104.5 + rot: -1.5707963267948966 rad + pos: 100.5,-70.5 parent: 2 - - uid: 35972 + - uid: 36460 components: - type: Transform - pos: 26.5,-88.5 + pos: 96.5,-59.5 parent: 2 - - uid: 35973 + - uid: 36461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-97.5 + rot: -1.5707963267948966 rad + pos: 94.5,-82.5 parent: 2 - - uid: 35974 + - uid: 36462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-104.5 + rot: -1.5707963267948966 rad + pos: 93.5,-80.5 parent: 2 - - uid: 35975 + - uid: 36463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-104.5 + pos: 111.5,-56.5 parent: 2 - - uid: 35976 + - uid: 36464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-89.5 + pos: 94.5,-90.5 parent: 2 - - uid: 35977 + - uid: 36465 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-89.5 + pos: 101.5,-64.5 parent: 2 - - uid: 35978 + - uid: 36466 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-88.5 + pos: 95.5,-77.5 parent: 2 - - uid: 35979 + - uid: 36467 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-87.5 + pos: 94.5,-77.5 parent: 2 - - uid: 35980 + - uid: 36468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-86.5 + pos: 100.5,-77.5 parent: 2 - - uid: 35981 + - uid: 36469 components: - type: Transform - pos: 48.5,-93.5 + pos: 93.5,-89.5 parent: 2 - - uid: 35982 + - uid: 36470 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,-54.5 + pos: 95.5,-64.5 parent: 2 - - uid: 35983 + - uid: 36471 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,-54.5 + pos: 104.5,-65.5 parent: 2 - - uid: 35984 + - uid: 36472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-54.5 + pos: 109.5,-60.5 parent: 2 - - uid: 35985 + - uid: 36473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-54.5 + pos: 97.5,-93.5 parent: 2 - - uid: 35986 + - uid: 36474 components: - type: Transform rot: -1.5707963267948966 rad - pos: -73.5,-54.5 + pos: 94.5,-81.5 parent: 2 - - uid: 35987 + - uid: 36475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-53.5 + pos: 103.5,-88.5 parent: 2 - - uid: 35988 + - uid: 36476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-52.5 + pos: 98.5,-92.5 parent: 2 - - uid: 35989 + - uid: 36477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-54.5 + pos: 97.5,-84.5 parent: 2 - - uid: 35990 + - uid: 36478 components: - type: Transform rot: -1.5707963267948966 rad - pos: -75.5,-54.5 + pos: 91.5,-73.5 parent: 2 - - uid: 35991 + - uid: 36479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-54.5 + pos: 94.5,-91.5 parent: 2 - - uid: 35992 + - uid: 36480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-54.5 + pos: 94.5,-76.5 parent: 2 - - uid: 35993 + - uid: 36481 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.5,-53.5 + pos: 102.5,-82.5 parent: 2 - - uid: 35994 + - uid: 36482 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.5,-52.5 + pos: 99.5,-85.5 parent: 2 - - uid: 35995 + - uid: 36483 components: - type: Transform - pos: 33.5,-79.5 + pos: 96.5,-92.5 parent: 2 - - uid: 35997 + - uid: 36484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,3.5 + pos: 101.5,-91.5 parent: 2 - - uid: 35998 + - uid: 36485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,4.5 + pos: 100.5,-81.5 parent: 2 - - uid: 35999 + - uid: 36486 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,5.5 + pos: 106.5,-67.5 parent: 2 - - uid: 36000 + - uid: 36487 components: - type: Transform - pos: -6.5,-70.5 + pos: 100.5,-92.5 parent: 2 - - uid: 36001 + - uid: 36488 components: - type: Transform - pos: -3.5,-70.5 + pos: 110.5,-56.5 parent: 2 - - uid: 36002 + - uid: 36489 components: - type: Transform - pos: 44.5,-77.5 + rot: -1.5707963267948966 rad + pos: 102.5,-81.5 parent: 2 - - uid: 36003 + - uid: 36490 components: - type: Transform - pos: -4.5,-70.5 + pos: 109.5,-56.5 parent: 2 - - uid: 36004 + - uid: 36491 components: - type: Transform - pos: -5.5,-70.5 + rot: -1.5707963267948966 rad + pos: 106.5,-72.5 parent: 2 - - uid: 36005 + - uid: 36492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-104.5 + pos: 93.5,-88.5 parent: 2 - - uid: 36006 + - uid: 36493 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-79.5 + pos: 110.5,-52.5 parent: 2 - - uid: 36007 + - uid: 36494 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-79.5 + rot: -1.5707963267948966 rad + pos: 101.5,-75.5 parent: 2 - - uid: 36008 + - uid: 36495 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-79.5 + rot: -1.5707963267948966 rad + pos: 103.5,-73.5 parent: 2 - - uid: 36009 + - uid: 36496 components: - type: Transform - pos: 26.5,-86.5 + rot: -1.5707963267948966 rad + pos: 95.5,-74.5 parent: 2 - - uid: 36010 + - uid: 36497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-103.5 + rot: -1.5707963267948966 rad + pos: 102.5,-84.5 parent: 2 - - uid: 36011 + - uid: 36498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-102.5 + rot: -1.5707963267948966 rad + pos: 93.5,-73.5 parent: 2 - - uid: 36012 + - uid: 36499 components: - type: Transform - pos: 26.5,-87.5 + rot: -1.5707963267948966 rad + pos: 103.5,-79.5 parent: 2 - - uid: 36013 + - uid: 36500 components: - type: Transform - pos: 26.5,-85.5 + rot: -1.5707963267948966 rad + pos: 95.5,-73.5 parent: 2 - - uid: 36014 + - uid: 36501 components: - type: Transform - pos: 56.5,-103.5 + rot: -1.5707963267948966 rad + pos: 102.5,-85.5 parent: 2 - - uid: 36015 + - uid: 36502 components: - type: Transform - pos: 24.5,-88.5 + rot: -1.5707963267948966 rad + pos: 102.5,-65.5 parent: 2 - - uid: 36016 + - uid: 36503 components: - type: Transform - pos: 55.5,-95.5 + rot: -1.5707963267948966 rad + pos: 90.5,-73.5 parent: 2 - - uid: 36017 + - uid: 36504 components: - type: Transform - pos: 48.5,-92.5 + pos: 110.5,-49.5 parent: 2 - - uid: 36018 + - uid: 36505 components: - type: Transform - pos: 56.5,-102.5 + rot: -1.5707963267948966 rad + pos: 96.5,-68.5 parent: 2 - - uid: 36019 + - uid: 36506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-45.5 + rot: -1.5707963267948966 rad + pos: 98.5,-77.5 parent: 2 - - uid: 36020 + - uid: 36507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-105.5 + pos: 99.5,-84.5 parent: 2 - - uid: 36021 + - uid: 36508 components: - type: Transform - pos: 56.5,-104.5 + pos: 95.5,-91.5 parent: 2 - - uid: 36022 + - uid: 36509 components: - type: Transform - pos: -38.5,21.5 + pos: 96.5,-77.5 parent: 2 - - uid: 36023 + - uid: 36510 components: - type: Transform - pos: -38.5,20.5 + pos: 110.5,-46.5 parent: 2 - - uid: 36024 + - uid: 36511 components: - type: Transform - pos: -22.5,17.5 + pos: 110.5,-53.5 parent: 2 - - uid: 36025 + - uid: 36512 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-91.5 + pos: 106.5,-73.5 parent: 2 - - uid: 36026 + - uid: 36513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-100.5 + pos: 90.5,-74.5 parent: 2 - - uid: 36027 + - uid: 36514 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-94.5 - parent: 2 - - uid: 36028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-107.5 - parent: 2 - - uid: 36029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-108.5 + pos: 98.5,-65.5 parent: 2 - - uid: 36030 + - uid: 36515 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,-100.5 + pos: 100.5,-73.5 parent: 2 - - uid: 36031 + - uid: 36516 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-100.5 + pos: 100.5,-66.5 parent: 2 - - uid: 36033 + - uid: 36517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-62.5 + rot: -1.5707963267948966 rad + pos: 106.5,-68.5 parent: 2 - - uid: 36034 + - uid: 36518 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-45.5 + pos: 101.5,-73.5 parent: 2 - - uid: 36035 + - uid: 36519 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-45.5 + pos: 101.5,-77.5 parent: 2 - - uid: 36036 + - uid: 36520 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-45.5 + pos: 90.5,-66.5 parent: 2 - - uid: 36037 + - uid: 36521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-48.5 + pos: 94.5,-89.5 parent: 2 - - uid: 36038 + - uid: 36522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-48.5 + pos: 107.5,-60.5 parent: 2 - - uid: 36039 + - uid: 36523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-103.5 + pos: 97.5,-82.5 parent: 2 - - uid: 36040 + - uid: 36524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-48.5 + pos: 103.5,-60.5 parent: 2 - - uid: 36041 + - uid: 36525 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-104.5 - parent: 2 - - uid: 36042 - components: - - type: Transform - pos: 43.5,-89.5 - parent: 2 - - uid: 36043 - components: - - type: Transform - pos: 43.5,-90.5 + pos: 100.5,-69.5 parent: 2 - - uid: 36044 + - uid: 36526 components: - type: Transform - pos: 43.5,-88.5 + rot: -1.5707963267948966 rad + pos: 100.5,-72.5 parent: 2 - - uid: 36045 + - uid: 36527 components: - type: Transform - pos: 44.5,-88.5 + rot: -1.5707963267948966 rad + pos: 106.5,-69.5 parent: 2 - - uid: 36046 + - uid: 36528 components: - type: Transform - pos: 43.5,-91.5 + rot: -1.5707963267948966 rad + pos: 100.5,-60.5 parent: 2 - - uid: 36047 + - uid: 36529 components: - type: Transform - pos: 48.5,-90.5 + rot: -1.5707963267948966 rad + pos: 106.5,-66.5 parent: 2 - - uid: 36048 + - uid: 36530 components: - type: Transform - pos: 48.5,-88.5 + rot: -1.5707963267948966 rad + pos: 96.5,-72.5 parent: 2 - - uid: 36049 + - uid: 36531 components: - type: Transform - pos: 47.5,-88.5 + rot: -1.5707963267948966 rad + pos: 105.5,-65.5 parent: 2 - - uid: 36050 + - uid: 36532 components: - type: Transform - pos: 44.5,-91.5 + pos: 90.5,-64.5 parent: 2 - - uid: 36051 + - uid: 36533 components: - type: Transform - pos: 48.5,-89.5 + rot: -1.5707963267948966 rad + pos: 90.5,-70.5 parent: 2 - - uid: 36052 + - uid: 36534 components: - type: Transform - pos: 47.5,-91.5 + pos: 99.5,-81.5 parent: 2 - - uid: 36053 + - uid: 36535 components: - type: Transform - pos: 48.5,-91.5 + pos: 96.5,-81.5 parent: 2 - - uid: 36054 + - uid: 36536 components: - type: Transform - pos: 60.5,-66.5 + pos: -52.5,-74.5 parent: 2 - - uid: 36055 + - uid: 36537 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-64.5 + pos: 90.5,-72.5 parent: 2 - - uid: 36056 + - uid: 36538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-63.5 + pos: 103.5,-86.5 parent: 2 - - uid: 36057 + - uid: 36539 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-62.5 + pos: 95.5,-63.5 parent: 2 - - uid: 36058 + - uid: 36540 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-61.5 + pos: 91.5,-78.5 parent: 2 - - uid: 36059 + - uid: 36541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-90.5 + pos: 110.5,-54.5 parent: 2 - - uid: 36060 + - uid: 36542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-104.5 + pos: 111.5,-60.5 parent: 2 - - uid: 36061 + - uid: 36543 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-104.5 + pos: 94.5,-84.5 parent: 2 - - uid: 36062 + - uid: 36544 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-92.5 - parent: 2 - - uid: 36063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-108.5 + pos: 94.5,-83.5 parent: 2 - - uid: 36064 + - uid: 36545 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-65.5 + pos: 103.5,-81.5 parent: 2 - - uid: 36065 + - uid: 36546 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-66.5 + pos: 96.5,-73.5 parent: 2 - - uid: 36066 + - uid: 36547 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-88.5 + pos: 94.5,-85.5 parent: 2 - - uid: 36067 + - uid: 36548 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-94.5 + pos: 100.5,-61.5 parent: 2 - - uid: 36068 + - uid: 36549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-109.5 + rot: -1.5707963267948966 rad + pos: 93.5,-65.5 parent: 2 - - uid: 36069 + - uid: 36550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-88.5 + pos: 89.5,-55.5 parent: 2 - - uid: 36070 + - uid: 36551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-93.5 + pos: 90.5,-55.5 parent: 2 - - uid: 36071 + - uid: 36552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-91.5 + pos: 112.5,-47.5 parent: 2 - - uid: 36072 + - uid: 36553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-89.5 + pos: 111.5,-47.5 parent: 2 - - uid: 36073 + - uid: 36554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-91.5 + pos: 110.5,-47.5 parent: 2 - - uid: 36074 + - uid: 36555 components: - type: Transform - pos: 64.5,-54.5 + pos: 112.5,-46.5 parent: 2 - - uid: 36075 + - uid: 36556 components: - type: Transform - pos: 64.5,-53.5 + pos: 93.5,-55.5 parent: 2 - - uid: 36076 + - uid: 36557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-95.5 + pos: 103.5,-56.5 parent: 2 - - uid: 36077 + - uid: 36558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-61.5 + pos: 111.5,-43.5 parent: 2 - - uid: 36078 + - uid: 36559 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-27.5 + rot: -1.5707963267948966 rad + pos: 96.5,-69.5 parent: 2 - - uid: 36079 + - uid: 36560 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-27.5 + pos: 103.5,-57.5 parent: 2 - - uid: 36080 + - uid: 36561 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-21.5 + pos: 112.5,-44.5 parent: 2 - - uid: 36081 + - uid: 36562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-21.5 + pos: 104.5,-60.5 parent: 2 - - uid: 36082 + - uid: 36563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-21.5 + pos: 103.5,-58.5 parent: 2 - - uid: 36083 + - uid: 36564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-21.5 + pos: 110.5,-44.5 parent: 2 - - uid: 36084 + - uid: 36565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-21.5 + pos: 103.5,-55.5 parent: 2 - - uid: 36085 + - uid: 36566 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-21.5 + pos: 103.5,-59.5 parent: 2 - - uid: 36086 + - uid: 36567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-8.5 + pos: 112.5,-43.5 parent: 2 - - uid: 36087 + - uid: 36568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-15.5 + pos: 92.5,-55.5 parent: 2 - - uid: 36088 + - uid: 36569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-15.5 + pos: 91.5,-55.5 parent: 2 - - uid: 36089 + - uid: 36570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-9.5 + pos: 97.5,-56.5 parent: 2 - - uid: 36090 + - uid: 36571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-7.5 + pos: 99.5,-56.5 parent: 2 - - uid: 36091 + - uid: 36572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-10.5 + pos: 95.5,-56.5 parent: 2 - - uid: 36092 + - uid: 36573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-52.5 + pos: 96.5,-56.5 parent: 2 - - uid: 36093 + - uid: 36574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-110.5 + pos: 94.5,-56.5 parent: 2 - - uid: 36094 + - uid: 36575 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-110.5 + pos: 88.5,-55.5 parent: 2 - - uid: 36095 + - uid: 36576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-110.5 + pos: -45.5,-72.5 parent: 2 - - uid: 36096 + - uid: 36577 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-110.5 + pos: -46.5,-67.5 parent: 2 - - uid: 36097 + - uid: 36578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-104.5 + pos: -47.5,-67.5 parent: 2 - - uid: 36098 + - uid: 36579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-83.5 + pos: -48.5,-67.5 parent: 2 - - uid: 36099 + - uid: 36580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-104.5 + pos: -55.5,-76.5 parent: 2 - - uid: 36100 + - uid: 36581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-106.5 + pos: -56.5,-76.5 parent: 2 - - uid: 36101 + - uid: 36582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-104.5 + pos: -56.5,-74.5 parent: 2 - - uid: 36102 + - uid: 36583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-104.5 + pos: -56.5,-69.5 parent: 2 - - uid: 36103 + - uid: 36584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-99.5 + pos: -56.5,-73.5 parent: 2 - - uid: 36104 + - uid: 36585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-97.5 + pos: -54.5,-67.5 parent: 2 - - uid: 36105 + - uid: 36586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-101.5 + pos: -53.5,-67.5 parent: 2 - - uid: 36106 + - uid: 36587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-94.5 + pos: -56.5,-67.5 parent: 2 - - uid: 36107 + - uid: 36588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-97.5 + pos: -33.5,18.5 parent: 2 - - uid: 36108 + - uid: 36589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-94.5 + pos: -55.5,-67.5 parent: 2 - - uid: 36109 + - uid: 36590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-102.5 + pos: -55.5,-72.5 parent: 2 - - uid: 36110 + - uid: 36591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-96.5 + rot: 3.141592653589793 rad + pos: -46.5,-30.5 parent: 2 - - uid: 36111 + - uid: 36592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-97.5 + rot: 3.141592653589793 rad + pos: -43.5,-35.5 parent: 2 - - uid: 36112 + - uid: 36593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-98.5 + rot: 3.141592653589793 rad + pos: -43.5,-31.5 parent: 2 - - uid: 36113 + - uid: 36594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-100.5 + rot: 3.141592653589793 rad + pos: -43.5,-30.5 parent: 2 - - uid: 36114 + - uid: 36595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-91.5 + rot: 3.141592653589793 rad + pos: -45.5,-35.5 parent: 2 - - uid: 36115 + - uid: 36596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-87.5 + rot: 3.141592653589793 rad + pos: -46.5,-35.5 parent: 2 - - uid: 36116 + - uid: 36597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-97.5 + rot: 3.141592653589793 rad + pos: -47.5,-35.5 parent: 2 - - uid: 36117 + - uid: 36598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-97.5 + rot: 3.141592653589793 rad + pos: -47.5,-34.5 parent: 2 - - uid: 36118 + - uid: 36599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-100.5 + rot: 3.141592653589793 rad + pos: -47.5,-32.5 parent: 2 - - uid: 36119 + - uid: 36600 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,-110.5 + pos: -47.5,-31.5 parent: 2 - - uid: 36120 + - uid: 36601 components: - type: Transform - pos: 88.5,-62.5 + pos: 19.5,12.5 parent: 2 - - uid: 36121 + - uid: 36602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-25.5 + pos: 42.5,11.5 parent: 2 - - uid: 36122 + - uid: 36603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-25.5 + rot: 3.141592653589793 rad + pos: -1.5,-73.5 parent: 2 - - uid: 36123 + - uid: 36604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-25.5 + pos: 41.5,11.5 parent: 2 - - uid: 36124 + - uid: 36605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-25.5 + pos: 41.5,9.5 parent: 2 - - uid: 36125 + - uid: 36606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-24.5 + pos: 41.5,10.5 parent: 2 - - uid: 36126 + - uid: 36607 components: - type: Transform - pos: 109.5,-23.5 + rot: 3.141592653589793 rad + pos: 2.5,-70.5 parent: 2 - - uid: 36128 + - uid: 36608 components: - type: Transform - pos: 99.5,-20.5 + pos: 100.5,-54.5 parent: 2 - - uid: 36129 + - uid: 36609 components: - type: Transform - pos: 108.5,-39.5 + pos: 101.5,-54.5 parent: 2 - - uid: 36130 + - uid: 36610 components: - type: Transform - pos: 105.5,-39.5 + pos: 99.5,-54.5 parent: 2 - - uid: 36131 + - uid: 36611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 105.5,-73.5 + pos: 99.5,-55.5 parent: 2 - - uid: 36132 + - uid: 36615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-74.5 + pos: -59.5,-117.5 parent: 2 - - uid: 36133 + - uid: 36616 components: - type: Transform rot: -1.5707963267948966 rad - pos: 100.5,-85.5 + pos: 36.5,-104.5 parent: 2 - - uid: 36134 + - uid: 36617 components: - type: Transform - pos: 19.5,13.5 + pos: -58.5,-117.5 parent: 2 - - uid: 36135 + - uid: 36618 components: - type: Transform - pos: 20.5,13.5 + pos: -59.5,-118.5 parent: 2 - - uid: 36136 + - uid: 36619 components: - type: Transform - pos: 20.5,14.5 + pos: 19.5,10.5 parent: 2 - - uid: 36137 + - uid: 36620 components: - type: Transform - pos: 20.5,15.5 + rot: 3.141592653589793 rad + pos: -47.5,-30.5 parent: 2 - - uid: 36138 + - uid: 36626 components: - type: Transform - pos: 20.5,16.5 + rot: 1.5707963267948966 rad + pos: -57.5,-117.5 parent: 2 - - uid: 36139 + - uid: 36627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-69.5 + pos: -58.5,-93.5 parent: 2 - - uid: 36140 + - uid: 36628 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-53.5 + pos: -57.5,-93.5 parent: 2 - - uid: 36141 + - uid: 36629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-58.5 + pos: -25.5,-112.5 parent: 2 - - uid: 36142 + - uid: 36630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-60.5 + pos: -33.5,-27.5 parent: 2 - - uid: 36143 + - uid: 36631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-67.5 + pos: -37.5,-74.5 parent: 2 - - uid: 36144 + - uid: 36633 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-69.5 + pos: 36.5,36.5 parent: 2 - - uid: 36145 + - uid: 36634 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-69.5 + rot: -1.5707963267948966 rad + pos: -57.5,-94.5 parent: 2 - - uid: 36146 + - uid: 36635 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-67.5 + rot: -1.5707963267948966 rad + pos: -57.5,-97.5 parent: 2 - - uid: 36147 + - uid: 36636 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-65.5 + pos: -40.5,-108.5 parent: 2 - - uid: 36148 + - uid: 36637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-51.5 + pos: -41.5,-108.5 parent: 2 - - uid: 36149 + - uid: 36638 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-35.5 + pos: -42.5,-108.5 parent: 2 - - uid: 36150 + - uid: 36639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-33.5 + pos: -43.5,-108.5 parent: 2 - - uid: 36151 + - uid: 36640 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-27.5 + pos: -74.5,-0.5 parent: 2 - - uid: 36152 + - uid: 36641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-25.5 + pos: -53.5,-108.5 parent: 2 - - uid: 36153 + - uid: 36642 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-20.5 + pos: -54.5,-108.5 parent: 2 - - uid: 36154 + - uid: 36643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-18.5 + pos: -56.5,-108.5 parent: 2 - - uid: 36155 + - uid: 36644 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-12.5 + pos: -57.5,-108.5 parent: 2 - - uid: 36156 + - uid: 36645 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-9.5 + pos: -57.5,-107.5 parent: 2 - - uid: 36157 + - uid: 36646 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-4.5 + pos: -57.5,-106.5 parent: 2 - - uid: 36158 + - uid: 36647 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-2.5 + pos: -57.5,-105.5 parent: 2 - - uid: 36159 + - uid: 36648 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-2.5 + rot: -1.5707963267948966 rad + pos: -41.5,-111.5 parent: 2 - - uid: 36160 + - uid: 36649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-49.5 + pos: -40.5,-110.5 parent: 2 - - uid: 36161 + - uid: 36650 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-2.5 + pos: -40.5,-111.5 parent: 2 - - uid: 36162 + - uid: 36654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-9.5 + pos: -25.5,-108.5 parent: 2 - - uid: 36163 + - uid: 36655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-4.5 + pos: -25.5,-109.5 parent: 2 - - uid: 36164 + - uid: 36656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-12.5 + pos: -25.5,-110.5 parent: 2 - - uid: 36165 + - uid: 36657 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-18.5 + pos: -25.5,-111.5 parent: 2 - - uid: 36166 + - uid: 36658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-20.5 + rot: -1.5707963267948966 rad + pos: -42.5,-111.5 parent: 2 - - uid: 36167 + - uid: 36659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-25.5 + rot: -1.5707963267948966 rad + pos: -43.5,-111.5 parent: 2 - - uid: 36168 + - uid: 36660 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-26.5 + rot: -1.5707963267948966 rad + pos: -43.5,-110.5 parent: 2 - - uid: 36169 + - uid: 36661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-53.5 + rot: -1.5707963267948966 rad + pos: -43.5,-109.5 parent: 2 - - uid: 36170 + - uid: 36662 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-58.5 + rot: 1.5707963267948966 rad + pos: -57.5,-121.5 parent: 2 - - uid: 36171 + - uid: 36663 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-60.5 + rot: 1.5707963267948966 rad + pos: -56.5,-121.5 parent: 2 - - uid: 36172 + - uid: 36665 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-65.5 + rot: 1.5707963267948966 rad + pos: -53.5,-121.5 parent: 2 - - uid: 36173 + - uid: 36666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-67.5 + rot: 1.5707963267948966 rad + pos: -54.5,-121.5 parent: 2 - - uid: 36174 + - uid: 36667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-69.5 + rot: 1.5707963267948966 rad + pos: -53.5,-120.5 parent: 2 - - uid: 36175 + - uid: 36668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-69.5 + rot: 1.5707963267948966 rad + pos: -53.5,-117.5 parent: 2 - - uid: 36176 + - uid: 36669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-69.5 + rot: 1.5707963267948966 rad + pos: -54.5,-117.5 parent: 2 - - uid: 36177 + - uid: 36670 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-69.5 + pos: -52.5,-113.5 parent: 2 - - uid: 36178 + - uid: 36671 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-70.5 + pos: -52.5,-112.5 parent: 2 - - uid: 36179 + - uid: 36672 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-70.5 + pos: -52.5,-111.5 parent: 2 - - uid: 36180 + - uid: 36673 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-70.5 + pos: -52.5,-110.5 parent: 2 - - uid: 36181 + - uid: 36674 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-70.5 + pos: -52.5,-109.5 parent: 2 - - uid: 36182 + - uid: 36675 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-69.5 + pos: -52.5,-108.5 parent: 2 - - uid: 36183 + - uid: 36676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-96.5 + pos: -52.5,-120.5 parent: 2 - - uid: 36184 + - uid: 36677 components: - type: Transform - pos: 25.5,-88.5 + pos: -51.5,-120.5 parent: 2 - - uid: 36185 + - uid: 36678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-104.5 + pos: -52.5,-117.5 parent: 2 - - uid: 36186 + - uid: 36679 components: - type: Transform - pos: 36.5,-84.5 + pos: -52.5,-116.5 parent: 2 - - uid: 36187 + - uid: 36680 components: - type: Transform - pos: -27.5,18.5 + pos: -52.5,-115.5 parent: 2 - - uid: 36188 + - uid: 36681 components: - type: Transform - pos: 104.5,-37.5 + pos: -52.5,-114.5 parent: 2 - - uid: 36189 + - uid: 36682 components: - type: Transform - pos: 105.5,-37.5 + pos: -50.5,-120.5 parent: 2 - - uid: 36190 + - uid: 36683 components: - type: Transform - pos: 105.5,-36.5 + pos: -49.5,-120.5 parent: 2 - - uid: 36191 + - uid: 36684 components: - type: Transform - pos: 108.5,-36.5 + pos: -49.5,-121.5 parent: 2 - - uid: 36192 + - uid: 36685 components: - type: Transform - pos: 108.5,-26.5 + pos: -49.5,-122.5 parent: 2 - - uid: 36193 + - uid: 36686 components: - type: Transform - pos: 105.5,-26.5 + pos: -48.5,-122.5 parent: 2 - - uid: 36194 + - uid: 36687 components: - type: Transform - pos: 105.5,-25.5 + pos: -47.5,-122.5 parent: 2 - - uid: 36195 + - uid: 36688 components: - type: Transform - pos: 104.5,-25.5 + pos: -46.5,-122.5 parent: 2 - - uid: 36196 + - uid: 36689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-18.5 + pos: -45.5,-122.5 parent: 2 - - uid: 36197 + - uid: 36690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-18.5 + pos: -44.5,-122.5 parent: 2 - - uid: 36198 + - uid: 36691 components: - type: Transform - pos: 105.5,-38.5 + pos: -43.5,-122.5 parent: 2 - - uid: 36199 + - uid: 36692 components: - type: Transform - pos: 105.5,-24.5 + pos: -42.5,-122.5 parent: 2 - - uid: 36200 + - uid: 36693 components: - type: Transform - pos: 109.5,-24.5 + pos: -74.5,-1.5 parent: 2 - - uid: 36201 + - uid: 36694 components: - type: Transform - pos: 109.5,-25.5 + pos: -74.5,-2.5 parent: 2 - - uid: 36202 + - uid: 36695 components: - type: Transform - pos: 109.5,-26.5 + rot: 1.5707963267948966 rad + pos: -75.5,5.5 parent: 2 - - uid: 36203 + - uid: 36696 components: - type: Transform - pos: 105.5,-23.5 + rot: 3.141592653589793 rad + pos: -97.5,2.5 parent: 2 - - uid: 36204 + - uid: 36697 components: - type: Transform - pos: 104.5,-23.5 + pos: -77.5,-0.5 parent: 2 - - uid: 36205 + - uid: 36698 components: - type: Transform - pos: 109.5,-39.5 + pos: -77.5,-1.5 parent: 2 - - uid: 36206 + - uid: 36699 components: - type: Transform - pos: 109.5,-38.5 + pos: -77.5,-2.5 parent: 2 - - uid: 36207 + - uid: 36700 components: - type: Transform - pos: 109.5,-37.5 + pos: -76.5,-2.5 parent: 2 - - uid: 36208 + - uid: 36701 components: - type: Transform - pos: 109.5,-36.5 + pos: -75.5,-2.5 parent: 2 - - uid: 36210 + - uid: 36702 components: - type: Transform - pos: 103.5,-20.5 + pos: -77.5,5.5 parent: 2 - - uid: 36220 + - uid: 36703 components: - type: Transform - pos: 110.5,-23.5 + pos: -76.5,5.5 parent: 2 - - uid: 36222 + - uid: 36704 components: - type: Transform rot: 3.141592653589793 rad - pos: 92.5,-18.5 + pos: -80.5,7.5 parent: 2 - - uid: 36223 + - uid: 36705 components: - type: Transform rot: 3.141592653589793 rad - pos: 90.5,-18.5 + pos: -80.5,6.5 parent: 2 - - uid: 36224 + - uid: 36706 components: - type: Transform rot: 3.141592653589793 rad - pos: 110.5,-43.5 - parent: 2 - - uid: 36225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-76.5 + pos: -80.5,5.5 parent: 2 - - uid: 36226 + - uid: 36707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-23.5 + rot: 3.141592653589793 rad + pos: -81.5,5.5 parent: 2 - - uid: 36227 + - uid: 36708 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-66.5 + pos: -84.5,-18.5 parent: 2 - - uid: 36228 + - uid: 36709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-22.5 + rot: 3.141592653589793 rad + pos: -85.5,-18.5 parent: 2 - - uid: 36229 + - uid: 36710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-49.5 + rot: 3.141592653589793 rad + pos: -85.5,-17.5 parent: 2 - - uid: 36230 + - uid: 36711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-49.5 + rot: 3.141592653589793 rad + pos: -85.5,-16.5 parent: 2 - - uid: 36231 + - uid: 36712 components: - type: Transform - pos: 22.5,-88.5 + rot: 3.141592653589793 rad + pos: -85.5,-15.5 parent: 2 - - uid: 36232 + - uid: 36713 components: - type: Transform - pos: -40.5,-87.5 + rot: 3.141592653589793 rad + pos: -85.5,-14.5 parent: 2 - - uid: 36233 + - uid: 36714 components: - type: Transform - pos: -42.5,-87.5 + rot: 3.141592653589793 rad + pos: -85.5,-13.5 parent: 2 - - uid: 36234 + - uid: 36715 components: - type: Transform - pos: -43.5,-87.5 + rot: 3.141592653589793 rad + pos: -85.5,-12.5 parent: 2 - - uid: 36235 + - uid: 36716 components: - type: Transform - pos: -43.5,-88.5 + rot: 3.141592653589793 rad + pos: -86.5,5.5 parent: 2 - - uid: 36236 + - uid: 36717 components: - type: Transform - pos: -43.5,-89.5 + rot: 3.141592653589793 rad + pos: -87.5,5.5 parent: 2 - - uid: 36237 + - uid: 36718 components: - type: Transform - pos: -41.5,-87.5 + rot: 3.141592653589793 rad + pos: -87.5,4.5 parent: 2 - - uid: 36238 + - uid: 36719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-26.5 + rot: 3.141592653589793 rad + pos: -88.5,2.5 parent: 2 - - uid: 36239 + - uid: 36720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-26.5 + rot: 3.141592653589793 rad + pos: -87.5,2.5 parent: 2 - - uid: 36240 + - uid: 36721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-26.5 + rot: 3.141592653589793 rad + pos: -87.5,-0.5 parent: 2 - - uid: 36241 + - uid: 36722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-23.5 + rot: 3.141592653589793 rad + pos: -87.5,0.5 parent: 2 - - uid: 36242 + - uid: 36723 components: - type: Transform - pos: 26.5,-83.5 + rot: 3.141592653589793 rad + pos: -87.5,3.5 parent: 2 - - uid: 36243 + - uid: 36724 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,22.5 + pos: -87.5,-1.5 parent: 2 - - uid: 36244 + - uid: 36725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-25.5 + rot: 3.141592653589793 rad + pos: -87.5,-2.5 parent: 2 - - uid: 36245 + - uid: 36726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,6.5 + rot: 3.141592653589793 rad + pos: -88.5,-2.5 parent: 2 - - uid: 36246 + - uid: 36727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,6.5 + rot: 3.141592653589793 rad + pos: -89.5,-6.5 parent: 2 - - uid: 36247 + - uid: 36728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,6.5 + rot: 3.141592653589793 rad + pos: -90.5,-5.5 parent: 2 - - uid: 36248 + - uid: 36729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,6.5 + rot: 3.141592653589793 rad + pos: -89.5,2.5 parent: 2 - - uid: 36249 + - uid: 36730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-60.5 + rot: 3.141592653589793 rad + pos: -89.5,-2.5 parent: 2 - - uid: 36250 + - uid: 36731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-59.5 + rot: 3.141592653589793 rad + pos: -90.5,-3.5 parent: 2 - - uid: 36252 + - uid: 36732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-57.5 + rot: 3.141592653589793 rad + pos: -90.5,-2.5 parent: 2 - - uid: 36255 + - uid: 36733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-54.5 + rot: 3.141592653589793 rad + pos: -89.5,3.5 parent: 2 - - uid: 36256 + - uid: 36734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,9.5 + rot: 3.141592653589793 rad + pos: -86.5,-12.5 parent: 2 - - uid: 36257 + - uid: 36735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,7.5 + rot: 3.141592653589793 rad + pos: -87.5,-12.5 parent: 2 - - uid: 36258 + - uid: 36736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,8.5 + rot: 3.141592653589793 rad + pos: -88.5,-12.5 parent: 2 - - uid: 36259 + - uid: 36737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,6.5 + rot: 3.141592653589793 rad + pos: -88.5,-11.5 parent: 2 - - uid: 36260 + - uid: 36738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-46.5 + rot: 3.141592653589793 rad + pos: -88.5,-10.5 parent: 2 - - uid: 36261 + - uid: 36739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-45.5 + rot: 3.141592653589793 rad + pos: -88.5,-9.5 parent: 2 - - uid: 36262 + - uid: 36740 components: - type: Transform - pos: -43.5,-90.5 + rot: 3.141592653589793 rad + pos: -88.5,-8.5 parent: 2 - - uid: 36263 + - uid: 36741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-47.5 + rot: 3.141592653589793 rad + pos: -88.5,-7.5 parent: 2 - - uid: 36264 + - uid: 36742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-48.5 + rot: 3.141592653589793 rad + pos: -88.5,-6.5 parent: 2 - - uid: 36265 + - uid: 36743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-86.5 + rot: 3.141592653589793 rad + pos: -91.5,3.5 parent: 2 - - uid: 36266 + - uid: 36744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-87.5 + rot: 3.141592653589793 rad + pos: -91.5,2.5 parent: 2 - - uid: 36267 + - uid: 36745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-85.5 + rot: 3.141592653589793 rad + pos: -93.5,3.5 parent: 2 - - uid: 36268 + - uid: 36746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-88.5 + rot: 3.141592653589793 rad + pos: -93.5,2.5 parent: 2 - - uid: 36269 + - uid: 36747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-45.5 + rot: 3.141592653589793 rad + pos: -90.5,0.5 parent: 2 - - uid: 36270 + - uid: 36748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-45.5 + rot: 3.141592653589793 rad + pos: -90.5,-0.5 parent: 2 - - uid: 36271 + - uid: 36749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-46.5 + rot: 3.141592653589793 rad + pos: -94.5,0.5 parent: 2 - - uid: 36272 + - uid: 36750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-70.5 + rot: 3.141592653589793 rad + pos: -94.5,-0.5 parent: 2 - - uid: 36273 + - uid: 36751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-70.5 + rot: 3.141592653589793 rad + pos: -95.5,0.5 parent: 2 - - uid: 36274 + - uid: 36752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-24.5 + rot: 3.141592653589793 rad + pos: -96.5,0.5 parent: 2 - - uid: 36275 + - uid: 36753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-22.5 + rot: 3.141592653589793 rad + pos: -96.5,2.5 parent: 2 - - uid: 36276 + - uid: 36754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-22.5 + rot: 3.141592653589793 rad + pos: -95.5,2.5 parent: 2 - - uid: 36277 + - uid: 36755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-22.5 + rot: 3.141592653589793 rad + pos: -95.5,3.5 parent: 2 - - uid: 36278 + - uid: 36756 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-54.5 + pos: -89.5,0.5 parent: 2 - - uid: 36279 + - uid: 36757 components: - type: Transform - pos: 2.5,-97.5 + rot: 3.141592653589793 rad + pos: -88.5,0.5 parent: 2 - - uid: 36280 + - uid: 36758 components: - type: Transform - pos: 23.5,-88.5 + rot: 3.141592653589793 rad + pos: -97.5,0.5 parent: 2 - - uid: 36282 + - uid: 36759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,20.5 + pos: 35.5,36.5 parent: 2 - - uid: 36283 + - uid: 36760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,20.5 + pos: 28.5,34.5 parent: 2 - - uid: 36284 + - uid: 36761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,20.5 + rot: 3.141592653589793 rad + pos: -84.5,-19.5 parent: 2 - - uid: 36285 + - uid: 36762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,19.5 + rot: 3.141592653589793 rad + pos: -84.5,-21.5 parent: 2 - - uid: 36286 + - uid: 36763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,18.5 + rot: 3.141592653589793 rad + pos: -84.5,-22.5 parent: 2 - - uid: 36287 + - uid: 36764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-26.5 + rot: 3.141592653589793 rad + pos: -83.5,-22.5 parent: 2 - - uid: 36288 + - uid: 36765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-25.5 + rot: 3.141592653589793 rad + pos: -88.5,-19.5 parent: 2 - - uid: 36289 + - uid: 36766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-24.5 + pos: -25.5,-113.5 parent: 2 - - uid: 36290 + - uid: 36767 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,19.5 + pos: -25.5,-114.5 parent: 2 - - uid: 36291 + - uid: 36768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,20.5 + pos: -25.5,-115.5 parent: 2 - - uid: 36292 + - uid: 36769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,21.5 + pos: -25.5,-116.5 parent: 2 - - uid: 36293 + - uid: 36770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-23.5 + pos: -26.5,-116.5 parent: 2 - - uid: 36294 + - uid: 36771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,10.5 + pos: -27.5,-116.5 parent: 2 - - uid: 36295 + - uid: 36772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,10.5 + pos: -28.5,-116.5 parent: 2 - - uid: 36296 + - uid: 36773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,10.5 + pos: -28.5,-117.5 parent: 2 - - uid: 36297 + - uid: 36774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,10.5 + pos: -28.5,-118.5 parent: 2 - - uid: 36298 + - uid: 36775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,10.5 + pos: -28.5,-119.5 parent: 2 - - uid: 36299 + - uid: 36776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,9.5 + pos: -29.5,-119.5 parent: 2 - - uid: 36300 + - uid: 36777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,7.5 + pos: -30.5,-119.5 parent: 2 - - uid: 36301 + - uid: 36778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-54.5 + pos: -31.5,-119.5 parent: 2 - - uid: 36302 + - uid: 36779 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,-54.5 + pos: 97.5,-85.5 parent: 2 - - uid: 36303 + - uid: 36780 components: - type: Transform - pos: -42.5,-90.5 + rot: -1.5707963267948966 rad + pos: -60.5,-117.5 parent: 2 - - uid: 36304 + - uid: 36781 components: - type: Transform - pos: -41.5,-90.5 + rot: -1.5707963267948966 rad + pos: -61.5,-117.5 parent: 2 - - uid: 36305 + - uid: 36782 components: - type: Transform - pos: -40.5,-90.5 + rot: -1.5707963267948966 rad + pos: -62.5,-117.5 parent: 2 - - uid: 36306 + - uid: 36783 components: - type: Transform - pos: -40.5,-89.5 + rot: -1.5707963267948966 rad + pos: -63.5,-117.5 parent: 2 - - uid: 36307 + - uid: 36784 components: - type: Transform - pos: -40.5,-91.5 + rot: -1.5707963267948966 rad + pos: -63.5,-121.5 parent: 2 - - uid: 36308 + - uid: 36785 components: - type: Transform - pos: -40.5,-93.5 + rot: -1.5707963267948966 rad + pos: -62.5,-121.5 parent: 2 - - uid: 36309 + - uid: 36786 components: - type: Transform - pos: -41.5,-93.5 + rot: -1.5707963267948966 rad + pos: -61.5,-121.5 parent: 2 - - uid: 36310 + - uid: 36787 components: - type: Transform - pos: -42.5,-93.5 + rot: -1.5707963267948966 rad + pos: -60.5,-121.5 parent: 2 - - uid: 36311 + - uid: 36788 components: - type: Transform - pos: -43.5,-93.5 + pos: 45.5,29.5 parent: 2 - - uid: 36312 + - uid: 36789 components: - type: Transform - pos: -43.5,-92.5 + pos: 40.5,32.5 parent: 2 - - uid: 36313 + - uid: 36790 components: - type: Transform - pos: -43.5,-91.5 + pos: 42.5,32.5 parent: 2 - - uid: 36314 + - uid: 36791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-85.5 + pos: 43.5,32.5 parent: 2 - - uid: 36315 + - uid: 36792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-85.5 + pos: 45.5,28.5 parent: 2 - - uid: 36316 + - uid: 36793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-85.5 + pos: 45.5,27.5 parent: 2 - - uid: 36317 + - uid: 36794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-86.5 + pos: 45.5,26.5 parent: 2 - - uid: 36318 + - uid: 36795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-88.5 + pos: 45.5,30.5 parent: 2 - - uid: 36319 + - uid: 36796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-88.5 + pos: 45.5,31.5 parent: 2 - - uid: 36320 + - uid: 36797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-88.5 + pos: 45.5,32.5 parent: 2 - - uid: 36321 + - uid: 36798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-25.5 + pos: 44.5,32.5 parent: 2 - - uid: 36322 + - uid: 36799 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-25.5 + pos: 30.5,35.5 parent: 2 - - uid: 36323 + - uid: 36800 components: - type: Transform - pos: -30.5,18.5 + pos: 31.5,35.5 parent: 2 - - uid: 36324 + - uid: 36801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,14.5 + rot: 3.141592653589793 rad + pos: 43.5,33.5 parent: 2 - - uid: 36325 + - uid: 36802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,13.5 + rot: 3.141592653589793 rad + pos: 43.5,34.5 parent: 2 - - uid: 36326 + - uid: 36803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,1.5 + rot: 3.141592653589793 rad + pos: 43.5,35.5 parent: 2 - - uid: 36327 + - uid: 36804 components: - type: Transform rot: 3.141592653589793 rad - pos: -70.5,-19.5 + pos: 43.5,36.5 parent: 2 - - uid: 36328 + - uid: 36805 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,-56.5 + pos: 39.5,33.5 parent: 2 - - uid: 36329 + - uid: 36806 components: - type: Transform - pos: -66.5,-15.5 + rot: 3.141592653589793 rad + pos: 39.5,34.5 parent: 2 - - uid: 36330 + - uid: 36807 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,-32.5 + pos: 39.5,35.5 parent: 2 - - uid: 36331 + - uid: 36808 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,-33.5 + pos: 39.5,36.5 parent: 2 - - uid: 36332 + - uid: 36809 components: - type: Transform - pos: -66.5,-19.5 + pos: 32.5,35.5 parent: 2 - - uid: 36333 + - uid: 36810 components: - type: Transform - pos: -66.5,-18.5 + pos: 20.5,27.5 parent: 2 - - uid: 36334 + - uid: 36811 components: - type: Transform - pos: -66.5,-16.5 + pos: 20.5,26.5 parent: 2 - - uid: 36335 + - uid: 36812 components: - type: Transform - pos: -66.5,-14.5 + pos: 20.5,25.5 parent: 2 - - uid: 36336 + - uid: 36813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-17.5 + pos: 20.5,24.5 parent: 2 - - uid: 36337 + - uid: 36814 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-18.5 + pos: 20.5,23.5 parent: 2 - - uid: 36338 + - uid: 36815 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,-19.5 + pos: -82.5,-28.5 parent: 2 - - uid: 36339 + - uid: 36816 components: - type: Transform - pos: -68.5,-14.5 + rot: 3.141592653589793 rad + pos: -83.5,-28.5 parent: 2 - - uid: 36340 + - uid: 36817 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-57.5 + pos: -84.5,-28.5 parent: 2 - - uid: 36341 + - uid: 36818 components: - type: Transform - pos: -67.5,-19.5 + rot: 3.141592653589793 rad + pos: -85.5,-28.5 parent: 2 - - uid: 36342 + - uid: 36819 components: - type: Transform - pos: -68.5,-19.5 + rot: 3.141592653589793 rad + pos: -86.5,-28.5 parent: 2 - - uid: 36343 + - uid: 36820 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,-57.5 + pos: -87.5,-28.5 parent: 2 - - uid: 36344 + - uid: 36821 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-57.5 + pos: -87.5,-27.5 parent: 2 - - uid: 36345 + - uid: 36822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-70.5 + rot: 3.141592653589793 rad + pos: -87.5,-26.5 parent: 2 - - uid: 36346 + - uid: 36823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-70.5 + rot: 3.141592653589793 rad + pos: -87.5,-25.5 parent: 2 - - uid: 36347 + - uid: 36824 components: - type: Transform - pos: 43.5,25.5 + rot: 3.141592653589793 rad + pos: -87.5,-24.5 parent: 2 - - uid: 36348 + - uid: 36825 components: - type: Transform - pos: -76.5,-46.5 + rot: 3.141592653589793 rad + pos: -86.5,-24.5 parent: 2 - - uid: 36349 + - uid: 36826 components: - type: Transform - pos: -75.5,-46.5 + rot: 3.141592653589793 rad + pos: -85.5,-24.5 parent: 2 - - uid: 36350 + - uid: 36827 components: - type: Transform - pos: -69.5,-50.5 + rot: 3.141592653589793 rad + pos: -84.5,-24.5 parent: 2 - - uid: 36351 + - uid: 36828 components: - type: Transform - pos: -69.5,-47.5 + rot: 3.141592653589793 rad + pos: -83.5,-24.5 parent: 2 - - uid: 36352 + - uid: 36829 components: - type: Transform - pos: -69.5,-46.5 + rot: 3.141592653589793 rad + pos: -83.5,-23.5 parent: 2 - - uid: 36353 + - uid: 36830 components: - type: Transform - pos: 26.5,26.5 + rot: 3.141592653589793 rad + pos: -89.5,-18.5 parent: 2 - - uid: 36354 + - uid: 36831 components: - type: Transform - pos: 25.5,26.5 + pos: 32.5,36.5 parent: 2 - - uid: 36355 + - uid: 36832 components: - type: Transform - pos: 24.5,26.5 + pos: 33.5,36.5 parent: 2 - - uid: 36356 + - uid: 36833 components: - type: Transform - pos: 23.5,26.5 + pos: 34.5,36.5 parent: 2 - - uid: 36357 + - uid: 36834 components: - type: Transform - pos: 23.5,25.5 + rot: 3.141592653589793 rad + pos: -45.5,-53.5 parent: 2 - - uid: 36358 + - uid: 36835 components: - type: Transform - pos: 23.5,24.5 + rot: 3.141592653589793 rad + pos: -45.5,-54.5 parent: 2 - - uid: 36360 + - uid: 36836 components: - type: Transform - pos: 23.5,22.5 + rot: 3.141592653589793 rad + pos: -45.5,-55.5 parent: 2 - - uid: 36361 + - uid: 36837 components: - type: Transform - pos: 23.5,23.5 + rot: 3.141592653589793 rad + pos: -45.5,-56.5 parent: 2 - - uid: 36362 + - uid: 36838 components: - type: Transform - pos: -45.5,-69.5 + rot: 3.141592653589793 rad + pos: -45.5,-57.5 parent: 2 - - uid: 36363 + - uid: 36839 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,-79.5 + pos: -45.5,-58.5 parent: 2 - - uid: 36364 + - uid: 36840 components: - type: Transform - pos: -59.5,-76.5 + rot: 3.141592653589793 rad + pos: -45.5,-59.5 parent: 2 - - uid: 36365 + - uid: 36841 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-78.5 + pos: -45.5,-60.5 parent: 2 - - uid: 36366 + - uid: 36842 components: - type: Transform rot: 3.141592653589793 rad - pos: -58.5,-78.5 + pos: -45.5,-61.5 parent: 2 - - uid: 36367 + - uid: 36843 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-70.5 + pos: -45.5,-62.5 parent: 2 - - uid: 36368 + - uid: 36844 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-79.5 + pos: -45.5,-63.5 parent: 2 - - uid: 36369 + - uid: 36845 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,-79.5 + pos: -46.5,-63.5 parent: 2 - - uid: 36370 + - uid: 36846 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,-79.5 + pos: -47.5,-63.5 parent: 2 - - uid: 36371 + - uid: 36847 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-79.5 + pos: -48.5,-63.5 parent: 2 - - uid: 36372 + - uid: 36848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-89.5 + rot: 3.141592653589793 rad + pos: -49.5,-63.5 parent: 2 - - uid: 36374 + - uid: 36849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,11.5 + rot: 3.141592653589793 rad + pos: -49.5,-62.5 parent: 2 - - uid: 36375 + - uid: 36850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,11.5 + rot: 3.141592653589793 rad + pos: -49.5,-61.5 parent: 2 - - uid: 36376 + - uid: 36851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,11.5 + rot: 3.141592653589793 rad + pos: -49.5,-60.5 parent: 2 - - uid: 36377 + - uid: 36852 components: - type: Transform - pos: 3.5,-97.5 + rot: 3.141592653589793 rad + pos: -49.5,-59.5 parent: 2 - - uid: 36378 + - uid: 36853 components: - type: Transform - pos: -40.5,21.5 + rot: 3.141592653589793 rad + pos: -49.5,-57.5 parent: 2 - - uid: 36379 + - uid: 36854 components: - type: Transform - pos: -44.5,21.5 + rot: 3.141592653589793 rad + pos: -48.5,-57.5 parent: 2 - - uid: 36380 + - uid: 36855 components: - type: Transform - pos: -44.5,19.5 + rot: 3.141592653589793 rad + pos: -47.5,-57.5 parent: 2 - - uid: 36381 + - uid: 36856 components: - type: Transform - pos: -48.5,21.5 + rot: 3.141592653589793 rad + pos: -46.5,-57.5 parent: 2 - - uid: 36382 + - uid: 36857 components: - type: Transform - pos: -48.5,19.5 + rot: 3.141592653589793 rad + pos: -46.5,-53.5 parent: 2 - - uid: 36383 + - uid: 36858 components: - type: Transform - pos: -52.5,21.5 + rot: 3.141592653589793 rad + pos: -47.5,-53.5 parent: 2 - - uid: 36384 + - uid: 36859 components: - type: Transform - pos: -52.5,19.5 + rot: 3.141592653589793 rad + pos: -48.5,-53.5 parent: 2 - - uid: 36385 + - uid: 36860 components: - type: Transform - pos: -67.5,-14.5 + rot: 3.141592653589793 rad + pos: -51.5,-53.5 parent: 2 - - uid: 36386 + - uid: 36861 components: - type: Transform - pos: -54.5,19.5 + rot: 3.141592653589793 rad + pos: -52.5,-53.5 parent: 2 - - uid: 36387 + - uid: 36862 components: - type: Transform - pos: -53.5,19.5 + rot: 3.141592653589793 rad + pos: -53.5,-53.5 parent: 2 - - uid: 36388 + - uid: 36863 components: - type: Transform - pos: -77.5,-28.5 + rot: 3.141592653589793 rad + pos: -54.5,-53.5 parent: 2 - - uid: 36389 + - uid: 36864 components: - type: Transform - pos: -77.5,-32.5 + pos: 33.5,-106.5 parent: 2 - - uid: 36390 + - uid: 36865 components: - type: Transform - pos: -76.5,-32.5 + pos: 34.5,-106.5 parent: 2 - - uid: 36391 + - uid: 36866 components: - type: Transform - pos: -75.5,-32.5 + pos: 33.5,-104.5 parent: 2 - - uid: 36392 + - uid: 36867 components: - type: Transform - pos: -74.5,-32.5 + rot: 3.141592653589793 rad + pos: -54.5,-54.5 parent: 2 - - uid: 36393 + - uid: 36868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-28.5 + rot: 3.141592653589793 rad + pos: -54.5,-63.5 parent: 2 - - uid: 36394 + - uid: 36869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-28.5 + rot: 3.141592653589793 rad + pos: -55.5,-63.5 parent: 2 - - uid: 36395 + - uid: 36870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-28.5 + rot: 3.141592653589793 rad + pos: -55.5,-62.5 parent: 2 - - uid: 36396 + - uid: 36871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-28.5 + rot: 3.141592653589793 rad + pos: -55.5,-61.5 parent: 2 - - uid: 36397 + - uid: 36872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-32.5 + rot: 3.141592653589793 rad + pos: -55.5,-60.5 parent: 2 - - uid: 36398 + - uid: 36873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-32.5 + pos: 94.5,-92.5 parent: 2 - - uid: 36399 + - uid: 36874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-32.5 + pos: 95.5,-92.5 parent: 2 - - uid: 36400 + - uid: 36875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-32.5 + pos: 95.5,-93.5 parent: 2 - - uid: 36401 + - uid: 36876 components: - type: Transform - pos: -77.5,-31.5 + pos: 96.5,-93.5 parent: 2 - - uid: 36402 + - uid: 36877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,21.5 + pos: 93.5,-92.5 parent: 2 - - uid: 36403 + - uid: 36878 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,15.5 + pos: 93.5,-91.5 parent: 2 - - uid: 36404 + - uid: 36879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,16.5 + pos: 93.5,-90.5 parent: 2 - - uid: 36405 + - uid: 36880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,16.5 + pos: 92.5,-90.5 parent: 2 - - uid: 36406 + - uid: 36881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,16.5 + pos: 92.5,-89.5 parent: 2 - - uid: 36407 + - uid: 36882 components: - type: Transform - pos: -22.5,18.5 + pos: 92.5,-88.5 parent: 2 - - uid: 36408 + - uid: 36883 components: - type: Transform - pos: -35.5,18.5 + pos: 92.5,-87.5 parent: 2 - - uid: 36409 + - uid: 36884 components: - type: Transform - pos: -34.5,18.5 + pos: 92.5,-86.5 parent: 2 - - uid: 36410 + - uid: 36885 components: - type: Transform - pos: -23.5,18.5 + pos: 92.5,-85.5 parent: 2 - - uid: 36411 + - uid: 36886 components: - type: Transform - pos: -28.5,18.5 + pos: 92.5,-84.5 parent: 2 - - uid: 36412 + - uid: 36887 components: - type: Transform - pos: 47.5,24.5 + pos: 93.5,-84.5 parent: 2 - - uid: 36413 + - uid: 36888 components: - type: Transform - pos: 47.5,25.5 + pos: 103.5,-84.5 parent: 2 - - uid: 36414 + - uid: 36889 components: - type: Transform - pos: 46.5,25.5 + pos: 104.5,-84.5 parent: 2 - - uid: 36415 + - uid: 36890 components: - type: Transform - pos: 45.5,25.5 + pos: 104.5,-85.5 parent: 2 - - uid: 36416 + - uid: 36891 components: - type: Transform - pos: 44.5,25.5 + pos: 104.5,-86.5 parent: 2 - - uid: 36417 + - uid: 36892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-57.5 + pos: 104.5,-87.5 parent: 2 - - uid: 36418 + - uid: 36893 components: - type: Transform - pos: -20.5,17.5 + pos: 104.5,-88.5 parent: 2 - - uid: 36419 + - uid: 36894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-57.5 + pos: 104.5,-89.5 parent: 2 - - uid: 36420 + - uid: 36895 components: - type: Transform - pos: -35.5,21.5 + pos: 104.5,-90.5 parent: 2 - - uid: 36421 + - uid: 36896 components: - type: Transform - pos: -36.5,21.5 + pos: 103.5,-90.5 parent: 2 - - uid: 36422 + - uid: 36897 components: - type: Transform - pos: -37.5,21.5 + pos: 103.5,-91.5 parent: 2 - - uid: 36423 + - uid: 36898 components: - type: Transform - pos: -33.5,20.5 + pos: 103.5,-92.5 parent: 2 - - uid: 36424 + - uid: 36899 components: - type: Transform - pos: -33.5,19.5 + pos: 102.5,-92.5 parent: 2 - - uid: 36425 + - uid: 36900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,17.5 + pos: 101.5,-92.5 parent: 2 - - uid: 36426 + - uid: 36901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-85.5 + pos: 101.5,-93.5 parent: 2 - - uid: 36427 + - uid: 36902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-77.5 + pos: 100.5,-93.5 parent: 2 - - uid: 36428 + - uid: 36903 components: - type: Transform - pos: 86.5,-56.5 + pos: 100.5,-94.5 parent: 2 - - uid: 36429 + - uid: 36904 components: - type: Transform - pos: 72.5,-68.5 + pos: 99.5,-94.5 parent: 2 - - uid: 36430 + - uid: 36905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-60.5 + pos: 98.5,-93.5 parent: 2 - - uid: 36431 + - uid: 36906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-60.5 + pos: 97.5,-94.5 parent: 2 - - uid: 36432 + - uid: 36907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-77.5 + pos: 96.5,-94.5 parent: 2 - - uid: 36433 + - uid: 36921 components: - type: Transform rot: -1.5707963267948966 rad - pos: 102.5,-73.5 + pos: -60.5,-19.5 parent: 2 - - uid: 36434 + - uid: 36931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-85.5 + pos: 19.5,24.5 parent: 2 - - uid: 36435 + - uid: 36932 components: - type: Transform rot: -1.5707963267948966 rad - pos: 90.5,-71.5 + pos: -61.5,-19.5 parent: 2 - - uid: 36436 + - uid: 36933 components: - type: Transform rot: -1.5707963267948966 rad - pos: 102.5,-83.5 + pos: -63.5,-19.5 parent: 2 - - uid: 36437 + - uid: 36934 components: - type: Transform rot: -1.5707963267948966 rad - pos: 103.5,-77.5 + pos: -63.5,-18.5 parent: 2 - - uid: 36438 + - uid: 36935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-2.5 + rot: -1.5707963267948966 rad + pos: -63.5,-17.5 parent: 2 - - uid: 36439 + - uid: 36936 components: - type: Transform rot: -1.5707963267948966 rad - pos: 103.5,-80.5 + pos: -63.5,-16.5 parent: 2 - - uid: 36440 + - uid: 36937 components: - type: Transform rot: -1.5707963267948966 rad - pos: 96.5,-85.5 + pos: -63.5,-15.5 parent: 2 - - uid: 36441 + - uid: 36938 components: - type: Transform rot: -1.5707963267948966 rad - pos: 90.5,-67.5 + pos: -62.5,-15.5 parent: 2 - - uid: 36442 + - uid: 36939 components: - type: Transform rot: -1.5707963267948966 rad - pos: 90.5,-65.5 + pos: -61.5,-15.5 parent: 2 - - uid: 36443 + - uid: 36940 components: - type: Transform rot: -1.5707963267948966 rad - pos: 90.5,-68.5 + pos: -60.5,-15.5 parent: 2 - - uid: 36444 + - uid: 36941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-65.5 + rot: 3.141592653589793 rad + pos: -14.5,15.5 parent: 2 - - uid: 36445 + - uid: 36942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-63.5 + rot: 3.141592653589793 rad + pos: -15.5,16.5 parent: 2 - - uid: 36446 + - uid: 36943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-60.5 + pos: -60.5,-18.5 parent: 2 - - uid: 36447 + - uid: 36947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-60.5 + pos: -18.5,4.5 parent: 2 - - uid: 36448 + - uid: 36948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-70.5 + pos: -18.5,3.5 parent: 2 - - uid: 36449 + - uid: 36949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-65.5 + pos: -18.5,5.5 parent: 2 - - uid: 36450 + - uid: 36950 components: - type: Transform - pos: 106.5,-74.5 + pos: -18.5,2.5 parent: 2 - - uid: 36451 + - uid: 36951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-68.5 + pos: -18.5,6.5 parent: 2 - - uid: 36452 + - uid: 36952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-66.5 + pos: -18.5,7.5 parent: 2 - - uid: 36453 + - uid: 36953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-62.5 + pos: -18.5,8.5 parent: 2 - - uid: 36454 + - uid: 36963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-62.5 + pos: 48.5,24.5 parent: 2 - - uid: 36455 + - uid: 36964 components: - type: Transform rot: -1.5707963267948966 rad - pos: 92.5,-73.5 + pos: 54.5,19.5 parent: 2 - - uid: 36456 + - uid: 36965 components: - type: Transform rot: -1.5707963267948966 rad - pos: 106.5,-65.5 + pos: 54.5,20.5 parent: 2 - - uid: 36457 + - uid: 36966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-60.5 + pos: 48.5,-6.5 parent: 2 - - uid: 36458 + - uid: 36967 components: - type: Transform - pos: 110.5,-60.5 + rot: -1.5707963267948966 rad + pos: 116.5,-37.5 parent: 2 - - uid: 36459 + - uid: 36968 components: - type: Transform rot: -1.5707963267948966 rad - pos: 100.5,-70.5 + pos: 121.5,-37.5 parent: 2 - - uid: 36460 + - uid: 36969 components: - type: Transform - pos: 96.5,-59.5 + rot: -1.5707963267948966 rad + pos: 123.5,-37.5 parent: 2 - - uid: 36461 + - uid: 36970 components: - type: Transform rot: -1.5707963267948966 rad - pos: 94.5,-82.5 + pos: 67.5,-13.5 parent: 2 - - uid: 36462 + - uid: 36971 components: - type: Transform rot: -1.5707963267948966 rad - pos: 93.5,-80.5 + pos: 128.5,-37.5 parent: 2 - - uid: 36463 + - uid: 36972 components: - type: Transform - pos: 111.5,-56.5 + pos: 68.5,-13.5 parent: 2 - - uid: 36464 + - uid: 36973 components: - type: Transform - pos: 94.5,-90.5 + rot: 3.141592653589793 rad + pos: 44.5,16.5 parent: 2 - - uid: 36465 + - uid: 36974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-64.5 + rot: 3.141592653589793 rad + pos: 43.5,16.5 parent: 2 - - uid: 36466 + - uid: 36975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-77.5 + rot: 3.141592653589793 rad + pos: 42.5,16.5 parent: 2 - - uid: 36467 + - uid: 36976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-77.5 + pos: 67.5,-14.5 parent: 2 - - uid: 36468 + - uid: 36977 components: - type: Transform - pos: 100.5,-77.5 + rot: -1.5707963267948966 rad + pos: 50.5,-6.5 parent: 2 - - uid: 36469 + - uid: 36978 components: - type: Transform - pos: 93.5,-89.5 + rot: 3.141592653589793 rad + pos: 42.5,13.5 parent: 2 - - uid: 36470 + - uid: 36979 components: - type: Transform rot: -1.5707963267948966 rad - pos: 95.5,-64.5 + pos: 130.5,-37.5 parent: 2 - - uid: 36471 + - uid: 36980 components: - type: Transform rot: -1.5707963267948966 rad - pos: 104.5,-65.5 + pos: 131.5,-37.5 parent: 2 - - uid: 36472 + - uid: 36981 components: - type: Transform - pos: 109.5,-60.5 + rot: -1.5707963267948966 rad + pos: 133.5,-37.5 parent: 2 - - uid: 36473 + - uid: 36982 components: - type: Transform - pos: 97.5,-93.5 + rot: -1.5707963267948966 rad + pos: 133.5,-41.5 parent: 2 - - uid: 36474 + - uid: 36983 components: - type: Transform rot: -1.5707963267948966 rad - pos: 94.5,-81.5 + pos: 132.5,-41.5 parent: 2 - - uid: 36475 + - uid: 36984 components: - type: Transform - pos: 103.5,-88.5 + rot: -1.5707963267948966 rad + pos: 131.5,-41.5 parent: 2 - - uid: 36476 + - uid: 36985 components: - type: Transform - pos: 98.5,-92.5 + rot: -1.5707963267948966 rad + pos: 130.5,-41.5 parent: 2 - - uid: 36477 + - uid: 36986 components: - type: Transform - pos: 97.5,-84.5 + rot: -1.5707963267948966 rad + pos: 128.5,-41.5 parent: 2 - - uid: 36478 + - uid: 36988 components: - type: Transform rot: -1.5707963267948966 rad - pos: 91.5,-73.5 + pos: 123.5,-41.5 parent: 2 - - uid: 36479 + - uid: 36989 components: - type: Transform - pos: 94.5,-91.5 + rot: 1.5707963267948966 rad + pos: 54.5,-45.5 parent: 2 - - uid: 36480 + - uid: 36993 components: - type: Transform - pos: 94.5,-76.5 + pos: -2.5,-3.5 parent: 2 - - uid: 36481 + - uid: 36994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-82.5 + pos: -2.5,-9.5 parent: 2 - - uid: 36482 + - uid: 36995 components: - type: Transform rot: -1.5707963267948966 rad - pos: 99.5,-85.5 - parent: 2 - - uid: 36483 - components: - - type: Transform - pos: 96.5,-92.5 + pos: 121.5,-41.5 parent: 2 - - uid: 36484 + - uid: 36996 components: - type: Transform - pos: 101.5,-91.5 + rot: -1.5707963267948966 rad + pos: 116.5,-41.5 parent: 2 - - uid: 36485 + - uid: 36997 components: - type: Transform - pos: 100.5,-81.5 + rot: 1.5707963267948966 rad + pos: 51.5,12.5 parent: 2 - - uid: 36486 + - uid: 36998 components: - type: Transform rot: -1.5707963267948966 rad - pos: 106.5,-67.5 + pos: 115.5,-41.5 parent: 2 - - uid: 36487 + - uid: 36999 components: - type: Transform - pos: 100.5,-92.5 + pos: 82.5,-11.5 parent: 2 - - uid: 36488 + - uid: 37000 components: - type: Transform - pos: 110.5,-56.5 + rot: -1.5707963267948966 rad + pos: 114.5,-41.5 parent: 2 - - uid: 36489 + - uid: 37001 components: - type: Transform rot: -1.5707963267948966 rad - pos: 102.5,-81.5 + pos: 113.5,-41.5 parent: 2 - - uid: 36490 + - uid: 37002 components: - type: Transform - pos: 109.5,-56.5 + rot: 1.5707963267948966 rad + pos: 113.5,-39.5 parent: 2 - - uid: 36491 + - uid: 37003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 106.5,-72.5 + pos: -14.5,8.5 parent: 2 - - uid: 36492 + - uid: 37004 components: - type: Transform - pos: 93.5,-88.5 + pos: -12.5,13.5 parent: 2 - - uid: 36493 + - uid: 37005 components: - type: Transform - pos: 110.5,-52.5 + pos: -12.5,15.5 parent: 2 - - uid: 36494 + - uid: 37341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-75.5 + rot: 3.141592653589793 rad + pos: 50.5,19.5 parent: 2 - - uid: 36495 + - uid: 37342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-73.5 + rot: 3.141592653589793 rad + pos: 47.5,19.5 parent: 2 - - uid: 36496 + - uid: 37343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-74.5 + rot: 3.141592653589793 rad + pos: 47.5,20.5 parent: 2 - - uid: 36497 + - uid: 37344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-84.5 + rot: 3.141592653589793 rad + pos: 47.5,21.5 parent: 2 - - uid: 36498 + - uid: 37345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-73.5 + rot: 3.141592653589793 rad + pos: 47.5,22.5 parent: 2 - - uid: 36499 + - uid: 37346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-79.5 + rot: 3.141592653589793 rad + pos: 47.5,23.5 parent: 2 - - uid: 36500 + - uid: 37796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-73.5 + rot: 3.141592653589793 rad + pos: 48.5,19.5 parent: 2 - - uid: 36501 + - uid: 37810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-85.5 + rot: 3.141592653589793 rad + pos: 51.5,19.5 parent: 2 - - uid: 36502 + - uid: 37811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-65.5 + rot: 3.141592653589793 rad + pos: 53.5,19.5 parent: 2 - - uid: 36503 + - uid: 37812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-73.5 + rot: 3.141592653589793 rad + pos: 52.5,19.5 parent: 2 - - uid: 36504 + - uid: 38479 components: - type: Transform - pos: 110.5,-49.5 + rot: 3.141592653589793 rad + pos: 24.5,18.5 parent: 2 - - uid: 36505 + - uid: 39818 components: - type: Transform rot: -1.5707963267948966 rad - pos: 96.5,-68.5 + pos: 2.5,-3.5 parent: 2 - - uid: 36506 + - uid: 40221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-77.5 + rot: 3.141592653589793 rad + pos: 23.5,-30.5 parent: 2 - - uid: 36507 + - uid: 42104 components: - type: Transform - pos: 99.5,-84.5 + pos: 11.5,-2.5 parent: 2 - - uid: 36508 + - uid: 42215 components: - type: Transform - pos: 95.5,-91.5 + rot: -1.5707963267948966 rad + pos: -58.5,-90.5 parent: 2 - - uid: 36509 + - uid: 42217 components: - type: Transform - pos: 96.5,-77.5 + pos: 11.5,-3.5 parent: 2 - - uid: 36510 + - uid: 42218 components: - type: Transform - pos: 110.5,-46.5 + pos: 11.5,-4.5 parent: 2 - - uid: 36511 + - uid: 42466 components: - type: Transform - pos: 110.5,-53.5 + rot: 1.5707963267948966 rad + pos: 37.5,-45.5 parent: 2 - - uid: 36512 + - uid: 43666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 106.5,-73.5 + pos: 103.5,-18.5 parent: 2 - - uid: 36513 + - uid: 43667 components: - type: Transform - pos: 90.5,-74.5 + pos: 103.5,-17.5 parent: 2 - - uid: 36514 + - uid: 43669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-65.5 + rot: 3.141592653589793 rad + pos: 104.5,-16.5 parent: 2 - - uid: 36515 + - uid: 43756 components: - type: Transform rot: -1.5707963267948966 rad - pos: 100.5,-73.5 + pos: 107.5,-16.5 parent: 2 - - uid: 36516 + - uid: 43757 components: - type: Transform rot: -1.5707963267948966 rad - pos: 100.5,-66.5 + pos: 109.5,-16.5 parent: 2 - - uid: 36517 + - uid: 43765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 106.5,-68.5 + rot: 1.5707963267948966 rad + pos: -56.5,-128.5 parent: 2 - - uid: 36518 + - uid: 43766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-73.5 + rot: 1.5707963267948966 rad + pos: -54.5,-128.5 parent: 2 - - uid: 36519 + - uid: 43767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-77.5 + rot: 1.5707963267948966 rad + pos: -57.5,-128.5 parent: 2 - - uid: 36520 + - uid: 43768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-66.5 + rot: 1.5707963267948966 rad + pos: -57.5,-129.5 parent: 2 - - uid: 36521 + - uid: 43770 components: - type: Transform - pos: 94.5,-89.5 + rot: 1.5707963267948966 rad + pos: -58.5,-129.5 parent: 2 - - uid: 36522 + - uid: 43771 components: - type: Transform - pos: 107.5,-60.5 + rot: 1.5707963267948966 rad + pos: -52.5,-129.5 parent: 2 - - uid: 36523 + - uid: 43772 components: - type: Transform - pos: 97.5,-82.5 + rot: 1.5707963267948966 rad + pos: -53.5,-128.5 parent: 2 - - uid: 36524 + - uid: 43773 components: - type: Transform - pos: 103.5,-60.5 + rot: 1.5707963267948966 rad + pos: -53.5,-129.5 parent: 2 - - uid: 36525 + - uid: 44166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-69.5 + rot: 1.5707963267948966 rad + pos: -73.5,-55.5 parent: 2 - - uid: 36526 + - uid: 44167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-72.5 + rot: 1.5707963267948966 rad + pos: -73.5,-56.5 parent: 2 - - uid: 36527 + - uid: 44168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 106.5,-69.5 + rot: 1.5707963267948966 rad + pos: -73.5,-57.5 parent: 2 - - uid: 36528 + - uid: 44169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-60.5 + rot: 1.5707963267948966 rad + pos: -73.5,-58.5 parent: 2 - - uid: 36529 + - uid: 44175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 106.5,-66.5 + rot: 3.141592653589793 rad + pos: -62.5,-55.5 parent: 2 - - uid: 36530 + - uid: 44179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-72.5 + rot: 1.5707963267948966 rad + pos: -62.5,-59.5 parent: 2 - - uid: 36531 + - uid: 44188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 105.5,-65.5 + rot: 1.5707963267948966 rad + pos: -57.5,-80.5 parent: 2 - - uid: 36532 + - uid: 44189 components: - type: Transform - pos: 90.5,-64.5 + rot: 1.5707963267948966 rad + pos: -57.5,-81.5 parent: 2 - - uid: 36533 + - uid: 44190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-70.5 + rot: 1.5707963267948966 rad + pos: -57.5,-82.5 parent: 2 - - uid: 36534 + - uid: 44191 components: - type: Transform - pos: 99.5,-81.5 + rot: 1.5707963267948966 rad + pos: -57.5,-83.5 parent: 2 - - uid: 36535 +- proto: WallReinforcedRust + entities: + - uid: 33269 components: - type: Transform - pos: 96.5,-81.5 + pos: -54.5,1.5 parent: 2 - - uid: 36536 + - uid: 33270 components: - type: Transform - pos: -52.5,-74.5 + pos: -51.5,3.5 parent: 2 - - uid: 36537 + - uid: 33271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-72.5 + pos: -51.5,2.5 parent: 2 - - uid: 36538 +- proto: WallRockAndesitePlasma + entities: + - uid: 12248 components: - type: Transform - pos: 103.5,-86.5 + pos: -13.5,-38.5 parent: 2 - - uid: 36539 + - uid: 14683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-63.5 + pos: -10.5,-42.5 parent: 2 - - uid: 36540 + - uid: 16296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-78.5 + pos: -10.5,-43.5 parent: 2 - - uid: 36541 +- proto: WallRockChromite + entities: + - uid: 826 components: - type: Transform - pos: 110.5,-54.5 + pos: 6.5,-18.5 parent: 2 - - uid: 36542 + - uid: 1081 components: - type: Transform - pos: 111.5,-60.5 + pos: 6.5,-19.5 parent: 2 - - uid: 36543 + - uid: 1083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-84.5 + pos: 13.5,-21.5 parent: 2 - - uid: 36544 + - uid: 1363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-83.5 + pos: 3.5,-16.5 parent: 2 - - uid: 36545 + - uid: 1364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-81.5 + pos: -7.5,-19.5 parent: 2 - - uid: 36546 + - uid: 2305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-73.5 + pos: 17.5,-15.5 parent: 2 - - uid: 36547 + - uid: 2517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-85.5 + pos: 19.5,-15.5 parent: 2 - - uid: 36548 + - uid: 7077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-61.5 + pos: 15.5,-24.5 parent: 2 - - uid: 36549 + - uid: 7436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-65.5 + pos: 6.5,-62.5 parent: 2 - - uid: 36550 + - uid: 7437 components: - type: Transform - pos: 89.5,-55.5 + pos: 11.5,-14.5 parent: 2 - - uid: 36551 + - uid: 7441 components: - type: Transform - pos: 90.5,-55.5 + pos: 13.5,-14.5 parent: 2 - - uid: 36552 + - uid: 7491 components: - type: Transform - pos: 112.5,-47.5 + pos: 9.5,-17.5 parent: 2 - - uid: 36553 + - uid: 7492 components: - type: Transform - pos: 111.5,-47.5 + pos: 8.5,-19.5 parent: 2 - - uid: 36554 + - uid: 7498 components: - type: Transform - pos: 110.5,-47.5 + pos: 12.5,-17.5 parent: 2 - - uid: 36555 + - uid: 7499 components: - type: Transform - pos: 112.5,-46.5 + pos: 12.5,-15.5 parent: 2 - - uid: 36556 + - uid: 7504 components: - type: Transform - pos: 93.5,-55.5 + pos: 18.5,-59.5 parent: 2 - - uid: 36557 + - uid: 7511 components: - type: Transform - pos: 103.5,-56.5 + pos: 10.5,-21.5 parent: 2 - - uid: 36558 + - uid: 7512 components: - type: Transform - pos: 111.5,-43.5 + pos: 10.5,-20.5 parent: 2 - - uid: 36559 + - uid: 7533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-69.5 + pos: 7.5,-20.5 parent: 2 - - uid: 36560 + - uid: 7539 components: - type: Transform - pos: 103.5,-57.5 + pos: 7.5,-18.5 parent: 2 - - uid: 36561 + - uid: 7543 components: - type: Transform - pos: 112.5,-44.5 + pos: 8.5,-18.5 parent: 2 - - uid: 36562 + - uid: 7545 components: - type: Transform - pos: 104.5,-60.5 + pos: 7.5,-19.5 parent: 2 - - uid: 36563 + - uid: 7547 components: - type: Transform - pos: 103.5,-58.5 + pos: 8.5,-17.5 parent: 2 - - uid: 36564 + - uid: 7549 components: - type: Transform - pos: 110.5,-44.5 + pos: 6.5,-20.5 parent: 2 - - uid: 36565 + - uid: 7561 components: - type: Transform - pos: 103.5,-55.5 + pos: -6.5,-20.5 parent: 2 - - uid: 36566 + - uid: 7595 components: - type: Transform - pos: 103.5,-59.5 + pos: 11.5,-17.5 parent: 2 - - uid: 36567 + - uid: 7597 components: - type: Transform - pos: 112.5,-43.5 + pos: 12.5,-14.5 parent: 2 - - uid: 36568 + - uid: 10078 components: - type: Transform - pos: 92.5,-55.5 + pos: 17.5,-16.5 parent: 2 - - uid: 36569 + - uid: 12249 components: - type: Transform - pos: 91.5,-55.5 + pos: 15.5,-17.5 parent: 2 - - uid: 36570 + - uid: 12250 components: - type: Transform - pos: 97.5,-56.5 + pos: 16.5,-21.5 parent: 2 - - uid: 36571 + - uid: 12252 components: - type: Transform - pos: 99.5,-56.5 + pos: 18.5,-58.5 parent: 2 - - uid: 36572 + - uid: 12256 components: - type: Transform - pos: 95.5,-56.5 + pos: 16.5,-59.5 parent: 2 - - uid: 36573 + - uid: 12265 components: - type: Transform - pos: 96.5,-56.5 + pos: 14.5,-23.5 parent: 2 - - uid: 36574 + - uid: 12266 components: - type: Transform - pos: 94.5,-56.5 + pos: 15.5,-19.5 parent: 2 - - uid: 36575 + - uid: 12268 components: - type: Transform - pos: 88.5,-55.5 + pos: 15.5,-21.5 parent: 2 - - uid: 36576 + - uid: 12269 components: - type: Transform - pos: -45.5,-72.5 + pos: 15.5,-22.5 parent: 2 - - uid: 36577 + - uid: 12276 components: - type: Transform - pos: -46.5,-67.5 + pos: 12.5,-22.5 parent: 2 - - uid: 36578 + - uid: 12277 components: - type: Transform - pos: -47.5,-67.5 + pos: 12.5,-21.5 parent: 2 - - uid: 36579 + - uid: 14569 components: - type: Transform - pos: -48.5,-67.5 + pos: 13.5,-23.5 parent: 2 - - uid: 36580 + - uid: 14570 components: - type: Transform - pos: -55.5,-76.5 + pos: 13.5,-22.5 parent: 2 - - uid: 36581 + - uid: 14595 components: - type: Transform - pos: -56.5,-76.5 + pos: 7.5,-16.5 parent: 2 - - uid: 36582 + - uid: 14643 components: - type: Transform - pos: -56.5,-74.5 + pos: 14.5,-14.5 parent: 2 - - uid: 36583 + - uid: 14645 components: - type: Transform - pos: -56.5,-69.5 + pos: 12.5,-20.5 parent: 2 - - uid: 36584 + - uid: 14650 components: - type: Transform - pos: -56.5,-73.5 + pos: -18.5,-30.5 parent: 2 - - uid: 36585 + - uid: 14678 components: - type: Transform - pos: -54.5,-67.5 + pos: -13.5,-61.5 parent: 2 - - uid: 36586 + - uid: 14692 components: - type: Transform - pos: -53.5,-67.5 + pos: 17.5,-23.5 parent: 2 - - uid: 36587 + - uid: 14697 components: - type: Transform - pos: -56.5,-67.5 + pos: 14.5,-16.5 parent: 2 - - uid: 36588 + - uid: 14699 components: - type: Transform - pos: -33.5,18.5 + pos: 15.5,-23.5 parent: 2 - - uid: 36589 + - uid: 14710 components: - type: Transform - pos: -55.5,-67.5 + pos: 17.5,-22.5 parent: 2 - - uid: 36590 + - uid: 14711 components: - type: Transform - pos: -55.5,-72.5 + pos: 16.5,-23.5 parent: 2 - - uid: 36591 + - uid: 14731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-30.5 + pos: 17.5,-21.5 parent: 2 - - uid: 36592 + - uid: 14733 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-35.5 + pos: 19.5,-16.5 parent: 2 - - uid: 36593 + - uid: 14734 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-31.5 + pos: 19.5,-18.5 parent: 2 - - uid: 36594 + - uid: 14741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-30.5 + pos: 19.5,-17.5 parent: 2 - - uid: 36595 + - uid: 14742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-35.5 + pos: 18.5,-23.5 parent: 2 - - uid: 36596 + - uid: 14743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-35.5 + pos: 18.5,-22.5 parent: 2 - - uid: 36597 + - uid: 15008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-35.5 + pos: -13.5,-23.5 parent: 2 - - uid: 36598 + - uid: 15068 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-34.5 + pos: 6.5,-16.5 parent: 2 - - uid: 36599 + - uid: 15161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-32.5 + pos: 7.5,-14.5 parent: 2 - - uid: 36600 + - uid: 15444 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-31.5 + pos: 16.5,-20.5 parent: 2 - - uid: 36601 + - uid: 15514 components: - type: Transform - pos: 19.5,12.5 + pos: 17.5,-17.5 parent: 2 - - uid: 36602 + - uid: 15712 components: - type: Transform - pos: 42.5,11.5 + pos: 7.5,-15.5 parent: 2 - - uid: 36603 + - uid: 15733 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-73.5 + pos: -5.5,-19.5 parent: 2 - - uid: 36604 + - uid: 15857 components: - type: Transform - pos: 41.5,11.5 + pos: -2.5,-16.5 parent: 2 - - uid: 36605 + - uid: 15886 components: - type: Transform - pos: 41.5,9.5 + pos: 8.5,-14.5 parent: 2 - - uid: 36606 + - uid: 16233 components: - type: Transform - pos: 41.5,10.5 + pos: 4.5,-15.5 parent: 2 - - uid: 36607 + - uid: 16440 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-70.5 + pos: 11.5,-20.5 parent: 2 - - uid: 36608 + - uid: 16493 components: - type: Transform - pos: 100.5,-54.5 + pos: -5.5,-18.5 parent: 2 - - uid: 36609 + - uid: 16510 components: - type: Transform - pos: 101.5,-54.5 + pos: -12.5,-23.5 parent: 2 - - uid: 36610 + - uid: 16511 components: - type: Transform - pos: 99.5,-54.5 + pos: -12.5,-22.5 parent: 2 - - uid: 36611 + - uid: 16512 components: - type: Transform - pos: 99.5,-55.5 + pos: -11.5,-21.5 parent: 2 - - uid: 36612 + - uid: 16513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-70.5 + pos: -12.5,-21.5 parent: 2 - - uid: 36613 + - uid: 16648 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-71.5 + pos: 4.5,-16.5 parent: 2 - - uid: 36614 + - uid: 16746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-72.5 + pos: -18.5,-29.5 parent: 2 - - uid: 36615 + - uid: 16747 components: - type: Transform - pos: -59.5,-117.5 + pos: -18.5,-28.5 parent: 2 - - uid: 36616 + - uid: 16748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-104.5 + pos: -17.5,-28.5 parent: 2 - - uid: 36617 + - uid: 16890 components: - type: Transform - pos: -58.5,-117.5 + pos: -17.5,-29.5 parent: 2 - - uid: 36618 + - uid: 17067 components: - type: Transform - pos: -59.5,-118.5 + pos: -16.5,-27.5 parent: 2 - - uid: 36619 + - uid: 17197 components: - type: Transform - pos: 19.5,10.5 + pos: -17.5,-27.5 parent: 2 - - uid: 36620 + - uid: 17729 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-30.5 + pos: 6.5,-15.5 parent: 2 - - uid: 36626 + - uid: 17730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-117.5 + pos: 5.5,-15.5 parent: 2 - - uid: 36627 + - uid: 17816 components: - type: Transform - pos: -58.5,-93.5 + pos: 6.5,-14.5 parent: 2 - - uid: 36628 + - uid: 18250 components: - type: Transform - pos: -57.5,-93.5 + pos: -19.5,-30.5 parent: 2 - - uid: 36629 + - uid: 19878 components: - type: Transform - pos: -25.5,-112.5 + pos: -13.5,-60.5 parent: 2 - - uid: 36630 + - uid: 19883 components: - type: Transform - pos: -33.5,-27.5 + pos: -15.5,-60.5 parent: 2 - - uid: 36631 + - uid: 19930 components: - type: Transform - pos: -37.5,-74.5 + pos: -17.5,-59.5 parent: 2 - - uid: 36633 + - uid: 19932 components: - type: Transform - pos: 36.5,36.5 + pos: -17.5,-58.5 parent: 2 - - uid: 36634 + - uid: 19952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-94.5 + pos: -18.5,-58.5 parent: 2 - - uid: 36635 + - uid: 19954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-97.5 + pos: -18.5,-57.5 parent: 2 - - uid: 36636 + - uid: 19955 components: - type: Transform - pos: -40.5,-108.5 + pos: -18.5,-56.5 parent: 2 - - uid: 36637 + - uid: 19963 components: - type: Transform - pos: -41.5,-108.5 + pos: -18.5,-54.5 parent: 2 - - uid: 36638 + - uid: 19969 components: - type: Transform - pos: -42.5,-108.5 + pos: -18.5,-55.5 parent: 2 - - uid: 36639 + - uid: 19971 components: - type: Transform - pos: -43.5,-108.5 + pos: -17.5,-52.5 parent: 2 - - uid: 36640 + - uid: 19978 components: - type: Transform - pos: -74.5,-0.5 + pos: -17.5,-53.5 parent: 2 - - uid: 36641 + - uid: 19980 components: - type: Transform - pos: -53.5,-108.5 + pos: -17.5,-54.5 parent: 2 - - uid: 36642 + - uid: 19981 components: - type: Transform - pos: -54.5,-108.5 + pos: -17.5,-51.5 parent: 2 - - uid: 36643 + - uid: 19982 components: - type: Transform - pos: -56.5,-108.5 + pos: -16.5,-54.5 parent: 2 - - uid: 36644 + - uid: 19987 components: - type: Transform - pos: -57.5,-108.5 + pos: -15.5,-57.5 parent: 2 - - uid: 36645 + - uid: 19988 components: - type: Transform - pos: -57.5,-107.5 + pos: -15.5,-56.5 parent: 2 - - uid: 36646 + - uid: 19993 components: - type: Transform - pos: -57.5,-106.5 + pos: -13.5,-57.5 parent: 2 - - uid: 36647 + - uid: 20003 components: - type: Transform - pos: -57.5,-105.5 + pos: -14.5,-61.5 parent: 2 - - uid: 36648 + - uid: 20005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-111.5 + pos: 17.5,-59.5 parent: 2 - - uid: 36649 + - uid: 20021 components: - type: Transform - pos: -40.5,-110.5 + pos: -14.5,-58.5 parent: 2 - - uid: 36650 + - uid: 20023 components: - type: Transform - pos: -40.5,-111.5 + pos: -13.5,-62.5 parent: 2 - - uid: 36654 + - uid: 20025 components: - type: Transform - pos: -25.5,-108.5 + pos: -12.5,-62.5 parent: 2 - - uid: 36655 + - uid: 20028 components: - type: Transform - pos: -25.5,-109.5 + pos: -11.5,-63.5 parent: 2 - - uid: 36656 + - uid: 20029 components: - type: Transform - pos: -25.5,-110.5 + pos: -10.5,-64.5 parent: 2 - - uid: 36657 + - uid: 20050 components: - type: Transform - pos: -25.5,-111.5 + pos: -11.5,-64.5 parent: 2 - - uid: 36658 + - uid: 20069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-111.5 + pos: -11.5,-62.5 parent: 2 - - uid: 36659 + - uid: 20340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-111.5 + pos: -8.5,-64.5 parent: 2 - - uid: 36660 + - uid: 20341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-110.5 + pos: -7.5,-64.5 parent: 2 - - uid: 36661 + - uid: 20342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-109.5 + pos: -7.5,-65.5 parent: 2 - - uid: 36662 + - uid: 20343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-121.5 + pos: -6.5,-65.5 parent: 2 - - uid: 36663 + - uid: 20344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-121.5 + pos: -6.5,-64.5 parent: 2 - - uid: 36665 + - uid: 20346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-121.5 + pos: -5.5,-65.5 parent: 2 - - uid: 36666 + - uid: 20360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-121.5 + pos: -9.5,-62.5 parent: 2 - - uid: 36667 + - uid: 20377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-120.5 + pos: -8.5,-62.5 parent: 2 - - uid: 36668 + - uid: 20378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-117.5 + pos: -6.5,-63.5 parent: 2 - - uid: 36669 + - uid: 20382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-117.5 + pos: -7.5,-62.5 parent: 2 - - uid: 36670 + - uid: 20386 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-113.5 + pos: -6.5,-62.5 parent: 2 - - uid: 36671 + - uid: 20401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-112.5 + pos: -4.5,-63.5 parent: 2 - - uid: 36672 + - uid: 20402 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-111.5 + pos: -4.5,-62.5 parent: 2 - - uid: 36673 + - uid: 20403 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-110.5 + pos: -4.5,-61.5 parent: 2 - - uid: 36674 + - uid: 20522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-109.5 + pos: -3.5,-65.5 parent: 2 - - uid: 36675 + - uid: 20572 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-108.5 + pos: -3.5,-64.5 parent: 2 - - uid: 36676 + - uid: 20749 components: - type: Transform - pos: -52.5,-120.5 + pos: 5.5,-63.5 parent: 2 - - uid: 36677 + - uid: 22919 components: - type: Transform - pos: -51.5,-120.5 + pos: 10.5,-64.5 parent: 2 - - uid: 36678 + - uid: 23106 components: - type: Transform - pos: -52.5,-117.5 + pos: 6.5,-64.5 parent: 2 - - uid: 36679 + - uid: 23107 components: - type: Transform - pos: -52.5,-116.5 + pos: 7.5,-64.5 parent: 2 - - uid: 36680 + - uid: 23109 components: - type: Transform - pos: -52.5,-115.5 + pos: 9.5,-64.5 parent: 2 - - uid: 36681 + - uid: 23110 components: - type: Transform - pos: -52.5,-114.5 + pos: 10.5,-63.5 parent: 2 - - uid: 36682 + - uid: 23113 components: - type: Transform - pos: -50.5,-120.5 + pos: 11.5,-63.5 parent: 2 - - uid: 36683 + - uid: 23115 components: - type: Transform - pos: -49.5,-120.5 + pos: 5.5,-62.5 parent: 2 - - uid: 36684 + - uid: 23116 components: - type: Transform - pos: -49.5,-121.5 + pos: 18.5,-52.5 parent: 2 - - uid: 36685 + - uid: 23157 components: - type: Transform - pos: -49.5,-122.5 + pos: 13.5,-58.5 parent: 2 - - uid: 36686 + - uid: 23219 components: - type: Transform - pos: -48.5,-122.5 + pos: 6.5,-61.5 parent: 2 - - uid: 36687 + - uid: 23226 components: - type: Transform - pos: -47.5,-122.5 + pos: 9.5,-61.5 parent: 2 - - uid: 36688 + - uid: 23229 components: - type: Transform - pos: -46.5,-122.5 + pos: 11.5,-60.5 parent: 2 - - uid: 36689 + - uid: 23230 components: - type: Transform - pos: -45.5,-122.5 + pos: 5.5,-64.5 parent: 2 - - uid: 36690 + - uid: 23241 components: - type: Transform - pos: -44.5,-122.5 + pos: 16.5,-57.5 parent: 2 - - uid: 36691 + - uid: 23242 components: - type: Transform - pos: -43.5,-122.5 + pos: 14.5,-58.5 parent: 2 - - uid: 36692 + - uid: 23260 components: - type: Transform - pos: -42.5,-122.5 + pos: 19.5,-50.5 parent: 2 - - uid: 36693 + - uid: 23261 components: - type: Transform - pos: -74.5,-1.5 + pos: 19.5,-51.5 parent: 2 - - uid: 36694 + - uid: 23265 components: - type: Transform - pos: -74.5,-2.5 + pos: 20.5,-48.5 parent: 2 - - uid: 36695 + - uid: 23266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,5.5 + pos: 19.5,-48.5 parent: 2 - - uid: 36696 + - uid: 23267 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,2.5 + pos: 19.5,-47.5 parent: 2 - - uid: 36697 + - uid: 23268 components: - type: Transform - pos: -77.5,-0.5 + pos: 19.5,-46.5 parent: 2 - - uid: 36698 + - uid: 23570 components: - type: Transform - pos: -77.5,-1.5 + pos: -14.5,-62.5 parent: 2 - - uid: 36699 + - uid: 24226 components: - type: Transform - pos: -77.5,-2.5 + pos: 12.5,-59.5 parent: 2 - - uid: 36700 + - uid: 24229 components: - type: Transform - pos: -76.5,-2.5 + pos: 12.5,-58.5 parent: 2 - - uid: 36701 + - uid: 26039 components: - type: Transform - pos: -75.5,-2.5 + pos: 8.5,-15.5 parent: 2 - - uid: 36702 + - uid: 26040 components: - type: Transform - pos: -77.5,5.5 + pos: 8.5,-16.5 parent: 2 - - uid: 36703 + - uid: 26642 components: - type: Transform - pos: -76.5,5.5 + pos: 17.5,-19.5 parent: 2 - - uid: 36704 + - uid: 26645 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,7.5 + pos: 16.5,-18.5 parent: 2 - - uid: 36705 + - uid: 26646 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,6.5 + pos: 15.5,-18.5 parent: 2 - - uid: 36706 + - uid: 26647 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,5.5 + pos: 10.5,-16.5 parent: 2 - - uid: 36707 + - uid: 26648 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,5.5 + pos: 9.5,-14.5 parent: 2 - - uid: 36708 + - uid: 26777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-18.5 + pos: 12.5,-61.5 parent: 2 - - uid: 36709 + - uid: 26778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-18.5 + pos: 12.5,-62.5 parent: 2 - - uid: 36710 + - uid: 26779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-17.5 + pos: 13.5,-61.5 parent: 2 - - uid: 36711 + - uid: 26784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-16.5 + pos: 14.5,-61.5 parent: 2 - - uid: 36712 + - uid: 26785 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-15.5 + pos: 15.5,-59.5 parent: 2 - - uid: 36713 + - uid: 26786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-14.5 + pos: 15.5,-60.5 parent: 2 - - uid: 36714 + - uid: 26787 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-13.5 + pos: 16.5,-60.5 parent: 2 - - uid: 36715 + - uid: 26793 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-12.5 + pos: 15.5,-61.5 parent: 2 - - uid: 36716 + - uid: 26794 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,5.5 + pos: 13.5,-62.5 parent: 2 - - uid: 36717 + - uid: 26795 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,5.5 + pos: 17.5,-58.5 parent: 2 - - uid: 36718 + - uid: 26796 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,4.5 + pos: 18.5,-57.5 parent: 2 - - uid: 36719 + - uid: 26797 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,2.5 + pos: 19.5,-57.5 parent: 2 - - uid: 36720 + - uid: 26798 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,2.5 + pos: 19.5,-56.5 parent: 2 - - uid: 36721 + - uid: 26810 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-0.5 + pos: 20.5,-56.5 parent: 2 - - uid: 36722 + - uid: 26811 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,0.5 + pos: 20.5,-54.5 parent: 2 - - uid: 36723 + - uid: 26895 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,3.5 + pos: 19.5,-54.5 parent: 2 - - uid: 36724 + - uid: 26896 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-1.5 + pos: 18.5,-54.5 parent: 2 - - uid: 36725 + - uid: 26907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-2.5 + pos: 17.5,-54.5 parent: 2 - - uid: 36726 + - uid: 26908 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-2.5 + pos: 18.5,-53.5 parent: 2 - - uid: 36727 + - uid: 26957 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-6.5 + pos: 20.5,-55.5 parent: 2 - - uid: 36728 + - uid: 26959 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-5.5 + pos: -15.5,-62.5 parent: 2 - - uid: 36729 + - uid: 26961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,2.5 + pos: -16.5,-61.5 parent: 2 - - uid: 36730 + - uid: 26992 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-2.5 + pos: -16.5,-60.5 parent: 2 - - uid: 36731 + - uid: 27003 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-3.5 + pos: -14.5,-20.5 parent: 2 - - uid: 36732 + - uid: 27016 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-2.5 + pos: -11.5,-16.5 parent: 2 - - uid: 36733 + - uid: 27032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,3.5 + pos: -13.5,-16.5 parent: 2 - - uid: 36734 + - uid: 27049 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-12.5 + pos: -13.5,-17.5 parent: 2 - - uid: 36735 + - uid: 27050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-12.5 + pos: -12.5,-17.5 parent: 2 - - uid: 36736 + - uid: 27052 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-12.5 + pos: -10.5,-16.5 parent: 2 - - uid: 36737 + - uid: 27067 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-11.5 + pos: -16.5,-21.5 parent: 2 - - uid: 36738 + - uid: 27071 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-10.5 + pos: -14.5,-22.5 parent: 2 - - uid: 36739 + - uid: 27185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-9.5 + pos: -15.5,-20.5 parent: 2 - - uid: 36740 + - uid: 27186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-8.5 + pos: -11.5,-18.5 parent: 2 - - uid: 36741 + - uid: 27187 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-7.5 + pos: -12.5,-18.5 parent: 2 - - uid: 36742 + - uid: 27188 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-6.5 + pos: -17.5,-20.5 parent: 2 - - uid: 36743 + - uid: 27189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,3.5 + pos: -16.5,-23.5 parent: 2 - - uid: 36744 + - uid: 27190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,2.5 + pos: -15.5,-23.5 parent: 2 - - uid: 36745 + - uid: 27207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,3.5 + pos: -17.5,-21.5 parent: 2 - - uid: 36746 + - uid: 27228 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,2.5 + pos: -17.5,-19.5 parent: 2 - - uid: 36747 + - uid: 27258 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,0.5 + pos: -16.5,-22.5 parent: 2 - - uid: 36748 + - uid: 27259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-0.5 + pos: -15.5,-22.5 parent: 2 - - uid: 36749 + - uid: 27263 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,0.5 + pos: -17.5,-22.5 parent: 2 - - uid: 36750 + - uid: 27264 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-0.5 + pos: -19.5,-21.5 parent: 2 - - uid: 36751 + - uid: 27265 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,0.5 + pos: -19.5,-20.5 parent: 2 - - uid: 36752 + - uid: 27266 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,0.5 + pos: -18.5,-20.5 parent: 2 - - uid: 36753 + - uid: 27271 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,2.5 + pos: -16.5,-18.5 parent: 2 - - uid: 36754 + - uid: 27276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,2.5 + pos: -15.5,-16.5 parent: 2 - - uid: 36755 + - uid: 27277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,3.5 + pos: -14.5,-16.5 parent: 2 - - uid: 36756 + - uid: 27278 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,0.5 + pos: -14.5,-15.5 parent: 2 - - uid: 36757 + - uid: 27442 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,0.5 + pos: -8.5,-16.5 parent: 2 - - uid: 36758 + - uid: 27444 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,0.5 + pos: -8.5,-15.5 parent: 2 - - uid: 36759 + - uid: 27445 components: - type: Transform - pos: 35.5,36.5 + pos: -7.5,-17.5 parent: 2 - - uid: 36760 + - uid: 27446 components: - type: Transform - pos: 28.5,34.5 + pos: -6.5,-16.5 parent: 2 - - uid: 36761 + - uid: 27448 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-19.5 + pos: -7.5,-15.5 parent: 2 - - uid: 36762 + - uid: 27449 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-21.5 + pos: -8.5,-14.5 parent: 2 - - uid: 36763 + - uid: 27451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-22.5 + pos: -8.5,-17.5 parent: 2 - - uid: 36764 + - uid: 27452 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-22.5 + pos: -9.5,-17.5 parent: 2 - - uid: 36765 + - uid: 27454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-19.5 + pos: -9.5,-18.5 parent: 2 - - uid: 36766 + - uid: 27456 components: - type: Transform - pos: -25.5,-113.5 + pos: -11.5,-19.5 parent: 2 - - uid: 36767 + - uid: 27458 components: - type: Transform - pos: -25.5,-114.5 + pos: -10.5,-19.5 parent: 2 - - uid: 36768 + - uid: 27469 components: - type: Transform - pos: -25.5,-115.5 + pos: -12.5,-20.5 parent: 2 - - uid: 36769 + - uid: 27470 components: - type: Transform - pos: -25.5,-116.5 + pos: -7.5,-18.5 parent: 2 - - uid: 36770 + - uid: 27471 components: - type: Transform - pos: -26.5,-116.5 + pos: -6.5,-18.5 parent: 2 - - uid: 36771 + - uid: 27688 components: - type: Transform - pos: -27.5,-116.5 + pos: 3.5,-15.5 parent: 2 - - uid: 36772 + - uid: 27691 components: - type: Transform - pos: -28.5,-116.5 + pos: 5.5,-17.5 parent: 2 - - uid: 36773 + - uid: 27692 components: - type: Transform - pos: -28.5,-117.5 + pos: 10.5,-14.5 parent: 2 - - uid: 36774 + - uid: 27693 components: - type: Transform - pos: -28.5,-118.5 + pos: 10.5,-13.5 parent: 2 - - uid: 36775 + - uid: 27739 components: - type: Transform - pos: -28.5,-119.5 + pos: 11.5,-13.5 parent: 2 - - uid: 36776 + - uid: 27740 components: - type: Transform - pos: -29.5,-119.5 + pos: 12.5,-13.5 parent: 2 - - uid: 36777 + - uid: 27741 components: - type: Transform - pos: -30.5,-119.5 + pos: 13.5,-13.5 parent: 2 - - uid: 36778 + - uid: 27742 components: - type: Transform - pos: -31.5,-119.5 + pos: 14.5,-13.5 parent: 2 - - uid: 36779 + - uid: 27743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-85.5 + pos: 13.5,-12.5 parent: 2 - - uid: 36780 + - uid: 27744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-117.5 + pos: 14.5,-12.5 parent: 2 - - uid: 36781 + - uid: 27745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-117.5 + pos: 15.5,-12.5 parent: 2 - - uid: 36782 + - uid: 27746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-117.5 + pos: 15.5,-13.5 parent: 2 - - uid: 36783 + - uid: 27747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-117.5 + pos: 15.5,-14.5 parent: 2 - - uid: 36784 + - uid: 27748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-121.5 + pos: 16.5,-13.5 parent: 2 - - uid: 36785 + - uid: 27749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-121.5 + pos: 16.5,-14.5 parent: 2 - - uid: 36786 + - uid: 27751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-121.5 + pos: 17.5,-13.5 parent: 2 - - uid: 36787 + - uid: 27775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-121.5 + pos: 17.5,-14.5 parent: 2 - - uid: 36788 + - uid: 27799 components: - type: Transform - pos: 45.5,29.5 + pos: 18.5,-13.5 parent: 2 - - uid: 36789 + - uid: 27812 components: - type: Transform - pos: 40.5,32.5 + pos: 18.5,-14.5 parent: 2 - - uid: 36790 + - uid: 27814 components: - type: Transform - pos: 42.5,32.5 + pos: 19.5,-13.5 parent: 2 - - uid: 36791 + - uid: 27815 components: - type: Transform - pos: 43.5,32.5 + pos: 19.5,-14.5 parent: 2 - - uid: 36792 + - uid: 27834 components: - type: Transform - pos: 45.5,28.5 + pos: 19.5,-20.5 parent: 2 - - uid: 36793 + - uid: 27871 components: - type: Transform - pos: 45.5,27.5 + pos: 19.5,-21.5 parent: 2 - - uid: 36794 + - uid: 27872 components: - type: Transform - pos: 45.5,26.5 + pos: 19.5,-22.5 parent: 2 - - uid: 36795 + - uid: 27885 components: - type: Transform - pos: 45.5,30.5 + pos: 19.5,-23.5 parent: 2 - - uid: 36796 + - uid: 27896 components: - type: Transform - pos: 45.5,31.5 + pos: 20.5,-20.5 parent: 2 - - uid: 36797 + - uid: 27897 components: - type: Transform - pos: 45.5,32.5 + pos: 20.5,-21.5 parent: 2 - - uid: 36798 + - uid: 27903 components: - type: Transform - pos: 44.5,32.5 + pos: 20.5,-22.5 parent: 2 - - uid: 36799 + - uid: 27908 components: - type: Transform - pos: 30.5,35.5 + pos: 20.5,-23.5 parent: 2 - - uid: 36800 + - uid: 27909 components: - type: Transform - pos: 31.5,35.5 + pos: 18.5,-25.5 parent: 2 - - uid: 36801 + - uid: 27910 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,33.5 + pos: 18.5,-24.5 parent: 2 - - uid: 36802 + - uid: 27911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,34.5 + pos: 17.5,-25.5 parent: 2 - - uid: 36803 + - uid: 27912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,35.5 + pos: 17.5,-24.5 parent: 2 - - uid: 36804 + - uid: 27913 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,36.5 + pos: 16.5,-25.5 parent: 2 - - uid: 36805 + - uid: 27919 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,33.5 + pos: -2.5,-15.5 parent: 2 - - uid: 36806 + - uid: 27921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,34.5 + pos: -3.5,-15.5 parent: 2 - - uid: 36807 + - uid: 27922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,35.5 + pos: -4.5,-16.5 parent: 2 - - uid: 36808 + - uid: 27939 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,36.5 + pos: -1.5,-15.5 parent: 2 - - uid: 36809 + - uid: 27941 components: - type: Transform - pos: 32.5,35.5 + pos: -5.5,-15.5 parent: 2 - - uid: 36810 + - uid: 27946 components: - type: Transform - pos: 20.5,27.5 + pos: -5.5,-14.5 parent: 2 - - uid: 36811 + - uid: 27947 components: - type: Transform - pos: 20.5,26.5 + pos: -6.5,-15.5 parent: 2 - - uid: 36812 + - uid: 27948 components: - type: Transform - pos: 20.5,25.5 + pos: -6.5,-14.5 parent: 2 - - uid: 36813 + - uid: 29347 components: - type: Transform - pos: 20.5,24.5 + pos: 4.5,-64.5 parent: 2 - - uid: 36814 + - uid: 29351 components: - type: Transform - pos: 20.5,23.5 + pos: 3.5,-64.5 parent: 2 - - uid: 36815 + - uid: 29359 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-28.5 + pos: -2.5,-64.5 parent: 2 - - uid: 36816 + - uid: 29366 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-28.5 + pos: -2.5,-65.5 parent: 2 - - uid: 36817 + - uid: 29499 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-28.5 + pos: -1.5,-64.5 parent: 2 - - uid: 36818 + - uid: 29527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-28.5 + pos: 2.5,-64.5 parent: 2 - - uid: 36819 +- proto: WallRockChromiteArtifactFragment + entities: + - uid: 26611 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-28.5 + pos: 13.5,-20.5 parent: 2 - - uid: 36820 + - uid: 26612 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-28.5 + pos: 15.5,-58.5 parent: 2 - - uid: 36821 + - uid: 26615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-27.5 + pos: 16.5,-58.5 parent: 2 - - uid: 36822 +- proto: WallRockChromiteBananium + entities: + - uid: 17732 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-26.5 + pos: 5.5,-16.5 parent: 2 - - uid: 36823 + - uid: 18248 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-25.5 + pos: -19.5,-31.5 parent: 2 - - uid: 36824 + - uid: 26643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-24.5 + pos: 16.5,-19.5 parent: 2 - - uid: 36825 + - uid: 27184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-24.5 + pos: -13.5,-20.5 parent: 2 - - uid: 36826 + - uid: 27461 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-24.5 + pos: -9.5,-19.5 parent: 2 - - uid: 36827 + - uid: 27915 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-24.5 + pos: 16.5,-24.5 parent: 2 - - uid: 36828 + - uid: 28993 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-24.5 + pos: -13.5,-22.5 parent: 2 - - uid: 36829 + - uid: 28994 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-23.5 + pos: -15.5,-24.5 parent: 2 - - uid: 36830 +- proto: WallRockChromiteCoal + entities: + - uid: 22920 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-18.5 + pos: -6.5,-19.5 parent: 2 - - uid: 36831 + - uid: 23220 components: - type: Transform - pos: 32.5,36.5 + pos: 14.5,-19.5 parent: 2 - - uid: 36832 + - uid: 23258 components: - type: Transform - pos: 33.5,36.5 + pos: -7.5,-20.5 parent: 2 - - uid: 36833 + - uid: 24216 components: - type: Transform - pos: 34.5,36.5 + pos: 13.5,-60.5 parent: 2 - - uid: 36834 + - uid: 24222 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-53.5 + pos: 14.5,-60.5 parent: 2 - - uid: 36835 + - uid: 24223 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-54.5 + pos: 14.5,-59.5 parent: 2 - - uid: 36836 + - uid: 26595 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-55.5 + pos: 11.5,-18.5 parent: 2 - - uid: 36837 + - uid: 26599 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-56.5 + pos: 6.5,-17.5 parent: 2 - - uid: 36838 + - uid: 26600 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-57.5 + pos: 7.5,-17.5 parent: 2 - - uid: 36839 + - uid: 26601 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-58.5 + pos: 9.5,-15.5 parent: 2 - - uid: 36840 + - uid: 26602 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-59.5 + pos: 9.5,-16.5 parent: 2 - - uid: 36841 + - uid: 26603 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-60.5 + pos: 10.5,-18.5 parent: 2 - - uid: 36842 + - uid: 26604 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-61.5 + pos: 10.5,-17.5 parent: 2 - - uid: 36843 + - uid: 27004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-62.5 + pos: -14.5,-19.5 parent: 2 - - uid: 36844 + - uid: 27011 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-63.5 + pos: -13.5,-18.5 parent: 2 - - uid: 36845 + - uid: 27012 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-63.5 + pos: -11.5,-17.5 parent: 2 - - uid: 36846 + - uid: 27033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-63.5 + pos: -14.5,-17.5 parent: 2 - - uid: 36847 + - uid: 27034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-63.5 + pos: -15.5,-18.5 parent: 2 - - uid: 36848 + - uid: 27930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-63.5 + pos: -4.5,-15.5 parent: 2 - - uid: 36849 +- proto: WallRockChromiteDiamond + entities: + - uid: 23217 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-62.5 + pos: 5.5,-61.5 parent: 2 - - uid: 36850 +- proto: WallRockChromiteGold + entities: + - uid: 19996 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-61.5 + pos: -17.5,-55.5 parent: 2 - - uid: 36851 + - uid: 24220 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-60.5 + pos: 13.5,-59.5 parent: 2 - - uid: 36852 + - uid: 24227 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-59.5 + pos: 12.5,-60.5 parent: 2 - - uid: 36853 + - uid: 24228 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-57.5 + pos: 11.5,-58.5 parent: 2 - - uid: 36854 + - uid: 26653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-57.5 + pos: 7.5,-63.5 parent: 2 - - uid: 36855 + - uid: 26654 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-57.5 + pos: 6.5,-63.5 parent: 2 - - uid: 36856 + - uid: 26655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-57.5 + pos: 9.5,-63.5 parent: 2 - - uid: 36857 +- proto: WallRockChromitePlasma + entities: + - uid: 22916 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-53.5 + pos: 12.5,-16.5 parent: 2 - - uid: 36858 + - uid: 23224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-53.5 + pos: 13.5,-17.5 parent: 2 - - uid: 36859 + - uid: 23225 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-53.5 + pos: 13.5,-16.5 parent: 2 - - uid: 36860 + - uid: 23259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-53.5 + pos: 16.5,-56.5 parent: 2 - - uid: 36861 + - uid: 26656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-53.5 + pos: 8.5,-63.5 parent: 2 - - uid: 36862 + - uid: 26741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-53.5 + pos: 8.5,-64.5 parent: 2 - - uid: 36863 + - uid: 27070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-53.5 + pos: -14.5,-21.5 parent: 2 - - uid: 36864 + - uid: 27072 components: - type: Transform - pos: 33.5,-106.5 + pos: -13.5,-21.5 parent: 2 - - uid: 36865 + - uid: 27076 components: - type: Transform - pos: 34.5,-106.5 + pos: -10.5,-18.5 parent: 2 - - uid: 36866 + - uid: 27079 components: - type: Transform - pos: 33.5,-104.5 + pos: -12.5,-19.5 parent: 2 - - uid: 36867 + - uid: 27103 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-54.5 + pos: -11.5,-20.5 parent: 2 - - uid: 36868 +- proto: WallRockChromiteQuartz + entities: + - uid: 20114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-63.5 + pos: 17.5,-56.5 parent: 2 - - uid: 36869 + - uid: 20115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-63.5 + pos: 11.5,-15.5 parent: 2 - - uid: 36870 + - uid: 23112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-62.5 + pos: 11.5,-16.5 parent: 2 - - uid: 36871 + - uid: 23158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-61.5 + pos: 18.5,-17.5 parent: 2 - - uid: 36872 + - uid: 23221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-60.5 + pos: 14.5,-17.5 parent: 2 - - uid: 36873 + - uid: 23222 components: - type: Transform - pos: 94.5,-92.5 + pos: 16.5,-15.5 parent: 2 - - uid: 36874 + - uid: 23223 components: - type: Transform - pos: 95.5,-92.5 + pos: 18.5,-16.5 parent: 2 - - uid: 36875 + - uid: 23227 components: - type: Transform - pos: 95.5,-93.5 + pos: 10.5,-15.5 parent: 2 - - uid: 36876 + - uid: 23240 components: - type: Transform - pos: 96.5,-93.5 + pos: 18.5,-56.5 parent: 2 - - uid: 36877 + - uid: 23435 components: - type: Transform - pos: 93.5,-92.5 + pos: 18.5,-15.5 parent: 2 - - uid: 36878 + - uid: 24204 components: - type: Transform - pos: 93.5,-91.5 + pos: 17.5,-55.5 parent: 2 - - uid: 36879 + - uid: 24217 components: - type: Transform - pos: 93.5,-90.5 + pos: 19.5,-53.5 parent: 2 - - uid: 36880 + - uid: 27036 components: - type: Transform - pos: 92.5,-90.5 + pos: -14.5,-18.5 parent: 2 - - uid: 36881 + - uid: 27051 components: - type: Transform - pos: 92.5,-89.5 + pos: -12.5,-16.5 parent: 2 - - uid: 36882 + - uid: 27054 components: - type: Transform - pos: 92.5,-88.5 + pos: -10.5,-17.5 parent: 2 - - uid: 36883 + - uid: 27447 components: - type: Transform - pos: 92.5,-87.5 + pos: -7.5,-16.5 parent: 2 - - uid: 36884 + - uid: 27472 components: - type: Transform - pos: 92.5,-86.5 + pos: -6.5,-17.5 parent: 2 - - uid: 36885 +- proto: WallRockChromiteSalt + entities: + - uid: 19995 components: - type: Transform - pos: 92.5,-85.5 + pos: -17.5,-57.5 parent: 2 - - uid: 36886 + - uid: 24203 components: - type: Transform - pos: 92.5,-84.5 + pos: 19.5,-55.5 parent: 2 - - uid: 36887 + - uid: 24218 components: - type: Transform - pos: 93.5,-84.5 + pos: 18.5,-55.5 parent: 2 - - uid: 36888 + - uid: 26616 components: - type: Transform - pos: 103.5,-84.5 + pos: 14.5,-20.5 parent: 2 - - uid: 36889 + - uid: 26619 components: - type: Transform - pos: 104.5,-84.5 + pos: 15.5,-20.5 parent: 2 - - uid: 36890 + - uid: 26634 components: - type: Transform - pos: 104.5,-85.5 + pos: 17.5,-20.5 parent: 2 - - uid: 36891 + - uid: 26635 components: - type: Transform - pos: 104.5,-86.5 + pos: 18.5,-19.5 parent: 2 - - uid: 36892 + - uid: 26636 components: - type: Transform - pos: 104.5,-87.5 + pos: 18.5,-20.5 parent: 2 - - uid: 36893 +- proto: WallRockChromiteSilver + entities: + - uid: 26769 components: - type: Transform - pos: 104.5,-88.5 + pos: 9.5,-62.5 parent: 2 - - uid: 36894 + - uid: 26770 components: - type: Transform - pos: 104.5,-89.5 + pos: 10.5,-62.5 parent: 2 - - uid: 36895 + - uid: 26776 components: - type: Transform - pos: 104.5,-90.5 + pos: 11.5,-62.5 parent: 2 - - uid: 36896 + - uid: 27055 components: - type: Transform - pos: 103.5,-90.5 + pos: -15.5,-19.5 parent: 2 - - uid: 36897 + - uid: 27056 components: - type: Transform - pos: 103.5,-91.5 + pos: -15.5,-21.5 parent: 2 - - uid: 36898 + - uid: 27068 components: - type: Transform - pos: 103.5,-92.5 + pos: -16.5,-20.5 parent: 2 - - uid: 36899 + - uid: 27069 components: - type: Transform - pos: 102.5,-92.5 + pos: -13.5,-19.5 parent: 2 - - uid: 36900 +- proto: WallRockChromiteTin + entities: + - uid: 20020 components: - type: Transform - pos: 101.5,-92.5 + pos: -15.5,-58.5 parent: 2 - - uid: 36901 + - uid: 22917 components: - type: Transform - pos: 101.5,-93.5 + pos: 16.5,-22.5 parent: 2 - - uid: 36902 + - uid: 23108 components: - type: Transform - pos: 100.5,-93.5 + pos: 13.5,-15.5 parent: 2 - - uid: 36903 + - uid: 23114 components: - type: Transform - pos: 100.5,-94.5 + pos: 14.5,-15.5 parent: 2 - - uid: 36904 + - uid: 23228 components: - type: Transform - pos: 99.5,-94.5 + pos: 18.5,-18.5 parent: 2 - - uid: 36905 + - uid: 23438 components: - type: Transform - pos: 98.5,-93.5 + pos: -14.5,-59.5 parent: 2 - - uid: 36906 + - uid: 23579 components: - type: Transform - pos: 97.5,-94.5 + pos: -16.5,-55.5 parent: 2 - - uid: 36907 + - uid: 23581 components: - type: Transform - pos: 96.5,-94.5 + pos: -16.5,-57.5 parent: 2 - - uid: 36909 + - uid: 24182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-23.5 + pos: -17.5,-56.5 parent: 2 - - uid: 36910 + - uid: 24202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-21.5 + pos: -13.5,-59.5 parent: 2 - - uid: 36911 + - uid: 24205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-24.5 + pos: 15.5,-55.5 parent: 2 - - uid: 36912 + - uid: 24206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-24.5 + pos: 10.5,-61.5 parent: 2 - - uid: 36913 + - uid: 24221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-29.5 + pos: 15.5,-57.5 parent: 2 - - uid: 36914 + - uid: 24224 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-27.5 + pos: 15.5,-56.5 parent: 2 - - uid: 36915 + - uid: 24225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-37.5 + pos: 16.5,-55.5 parent: 2 - - uid: 36916 + - uid: 26580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-52.5 + pos: 11.5,-61.5 parent: 2 - - uid: 36917 + - uid: 26637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-52.5 + pos: 15.5,-15.5 parent: 2 - - uid: 36918 + - uid: 26638 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-52.5 + pos: 15.5,-16.5 parent: 2 - - uid: 36919 + - uid: 26639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-50.5 + pos: 16.5,-16.5 parent: 2 - - uid: 36920 + - uid: 26640 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-49.5 + pos: 16.5,-17.5 parent: 2 - - uid: 36921 + - uid: 26644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-19.5 + pos: 17.5,-18.5 parent: 2 - - uid: 36922 + - uid: 26649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-49.5 + pos: 8.5,-61.5 parent: 2 - - uid: 36923 + - uid: 26650 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-49.5 + pos: 7.5,-61.5 parent: 2 - - uid: 36924 + - uid: 26651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-49.5 + pos: 7.5,-62.5 parent: 2 - - uid: 36925 + - uid: 26652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-51.5 + pos: 8.5,-62.5 parent: 2 - - uid: 36926 + - uid: 27287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-46.5 + pos: -12.5,-14.5 parent: 2 - - uid: 36927 + - uid: 27325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-51.5 + pos: -12.5,-15.5 parent: 2 - - uid: 36928 + - uid: 27334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-51.5 + pos: -13.5,-14.5 parent: 2 - - uid: 36929 + - uid: 27401 components: - type: Transform - pos: 3.5,-47.5 + pos: -14.5,-14.5 parent: 2 - - uid: 36930 + - uid: 27402 components: - type: Transform - pos: 3.5,-46.5 + pos: -13.5,-15.5 parent: 2 - - uid: 36931 + - uid: 27403 components: - type: Transform - pos: 19.5,24.5 + pos: -11.5,-14.5 parent: 2 - - uid: 36932 + - uid: 27406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-19.5 + pos: -11.5,-15.5 parent: 2 - - uid: 36933 + - uid: 27412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-19.5 + pos: -10.5,-14.5 parent: 2 - - uid: 36934 + - uid: 27439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-18.5 + pos: -10.5,-15.5 parent: 2 - - uid: 36935 + - uid: 27440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-17.5 + pos: -9.5,-15.5 parent: 2 - - uid: 36936 + - uid: 27441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-16.5 + pos: -9.5,-16.5 parent: 2 - - uid: 36937 + - uid: 27920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-15.5 + pos: -3.5,-16.5 parent: 2 - - uid: 36938 + - uid: 28957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-15.5 + pos: -18.5,-21.5 parent: 2 - - uid: 36939 + - uid: 28992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-15.5 + pos: -18.5,-22.5 parent: 2 - - uid: 36940 +- proto: WallRockChromiteUranium + entities: + - uid: 19879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-15.5 + pos: -14.5,-60.5 parent: 2 - - uid: 36941 + - uid: 23439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,15.5 + pos: -16.5,-59.5 parent: 2 - - uid: 36942 + - uid: 23491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,16.5 + pos: -11.5,-22.5 parent: 2 - - uid: 36943 + - uid: 23569 components: - type: Transform - pos: -60.5,-18.5 + pos: -15.5,-59.5 parent: 2 - - uid: 36944 + - uid: 24183 components: - type: Transform - pos: -7.5,-51.5 + pos: -15.5,-61.5 parent: 2 - - uid: 36945 + - uid: 24201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-50.5 + pos: -16.5,-58.5 parent: 2 - - uid: 36946 + - uid: 24219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-47.5 + pos: 11.5,-59.5 parent: 2 - - uid: 36947 + - uid: 26605 components: - type: Transform - pos: -18.5,4.5 + pos: 10.5,-19.5 parent: 2 - - uid: 36948 + - uid: 26606 components: - type: Transform - pos: -18.5,3.5 + pos: 11.5,-19.5 parent: 2 - - uid: 36949 + - uid: 26607 components: - type: Transform - pos: -18.5,5.5 + pos: 14.5,-21.5 parent: 2 - - uid: 36950 + - uid: 26610 components: - type: Transform - pos: -18.5,2.5 + pos: 14.5,-22.5 parent: 2 - - uid: 36951 +- proto: WallRockSnow + entities: + - uid: 19785 components: - type: Transform - pos: -18.5,6.5 + pos: 47.5,-42.5 parent: 2 - - uid: 36952 + - uid: 28040 components: - type: Transform - pos: -18.5,7.5 + pos: 47.5,-35.5 parent: 2 - - uid: 36953 + - uid: 28041 components: - type: Transform - pos: -18.5,8.5 + pos: 48.5,-35.5 parent: 2 - - uid: 36954 +- proto: WallShuttle + entities: + - uid: 40789 components: - type: Transform - pos: -3.5,-45.5 - parent: 2 - - uid: 36955 + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 40666 + - uid: 40790 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-33.5 - parent: 2 - - uid: 36956 + pos: 2.5,3.5 + parent: 40666 + - uid: 40791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-33.5 - parent: 2 - - uid: 36957 + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 40666 + - uid: 40792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-33.5 - parent: 2 - - uid: 36958 + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 40666 + - uid: 40793 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-33.5 - parent: 2 - - uid: 36959 + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 40666 + - uid: 40794 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-33.5 - parent: 2 - - uid: 36960 + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 40666 + - uid: 40795 components: - type: Transform - pos: 3.5,-42.5 - parent: 2 - - uid: 36961 + pos: -3.5,0.5 + parent: 40666 + - uid: 40796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 40666 + - uid: 40797 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-52.5 - parent: 2 - - uid: 36962 + pos: 5.5,0.5 + parent: 40666 + - uid: 40798 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-52.5 - parent: 2 - - uid: 36963 + pos: 2.5,-1.5 + parent: 40666 + - uid: 40799 components: - type: Transform - pos: 48.5,24.5 - parent: 2 - - uid: 36964 + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 40666 + - uid: 40800 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,19.5 - parent: 2 - - uid: 36965 + pos: -4.5,1.5 + parent: 40666 + - uid: 40801 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,20.5 - parent: 2 - - uid: 36966 + pos: -2.5,2.5 + parent: 40666 + - uid: 40802 components: - type: Transform - pos: 48.5,-6.5 - parent: 2 - - uid: 36967 + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 40666 + - uid: 40803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 40666 + - uid: 40804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 40666 + - uid: 40805 components: - type: Transform rot: -1.5707963267948966 rad - pos: 116.5,-37.5 - parent: 2 - - uid: 36968 + pos: -4.5,0.5 + parent: 40666 + - uid: 40806 components: - type: Transform rot: -1.5707963267948966 rad - pos: 121.5,-37.5 - parent: 2 - - uid: 36969 + pos: 5.5,2.5 + parent: 40666 + - uid: 40807 components: - type: Transform rot: -1.5707963267948966 rad - pos: 123.5,-37.5 - parent: 2 - - uid: 36970 + pos: -1.5,-1.5 + parent: 40666 + - uid: 40808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 40666 + - uid: 40809 + components: + - type: Transform + pos: 4.5,0.5 + parent: 40666 + - uid: 40810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 40666 + - uid: 41437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 40828 + - uid: 41438 + components: + - type: Transform + pos: 0.5,0.5 + parent: 40828 + - uid: 41439 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 40828 + - uid: 41440 + components: + - type: Transform + pos: 2.5,0.5 + parent: 40828 + - uid: 41441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 40828 + - uid: 41442 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,-13.5 - parent: 2 - - uid: 36971 + pos: -3.5,-2.5 + parent: 40828 + - uid: 41443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 128.5,-37.5 - parent: 2 - - uid: 36972 + pos: 2.5,-3.5 + parent: 40828 + - uid: 41444 components: - type: Transform - pos: 68.5,-13.5 - parent: 2 - - uid: 36973 + pos: -1.5,0.5 + parent: 40828 + - uid: 41445 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,16.5 - parent: 2 - - uid: 36974 + pos: -2.5,0.5 + parent: 40828 + - uid: 41446 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,16.5 - parent: 2 - - uid: 36975 + pos: -2.5,-3.5 + parent: 40828 + - uid: 41447 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,16.5 - parent: 2 - - uid: 36976 + pos: 3.5,-3.5 + parent: 40828 + - uid: 41448 components: - type: Transform - pos: 67.5,-14.5 - parent: 2 - - uid: 36977 + pos: -1.5,-3.5 + parent: 40828 + - uid: 41449 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-6.5 - parent: 2 - - uid: 36978 + pos: -3.5,-1.5 + parent: 40828 + - uid: 41450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,13.5 - parent: 2 - - uid: 36979 + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 40828 + - uid: 41451 components: - type: Transform rot: -1.5707963267948966 rad - pos: 130.5,-37.5 - parent: 2 - - uid: 36980 + pos: -3.5,-0.5 + parent: 40828 + - uid: 41452 components: - type: Transform rot: -1.5707963267948966 rad - pos: 131.5,-37.5 - parent: 2 - - uid: 36981 + pos: 4.5,-1.5 + parent: 40828 + - uid: 41453 components: - type: Transform rot: -1.5707963267948966 rad - pos: 133.5,-37.5 - parent: 2 - - uid: 36982 + pos: 4.5,-0.5 + parent: 40828 + - uid: 41454 components: - type: Transform rot: -1.5707963267948966 rad - pos: 133.5,-41.5 - parent: 2 - - uid: 36983 + pos: -3.5,0.5 + parent: 40828 + - uid: 41455 components: - type: Transform rot: -1.5707963267948966 rad - pos: 132.5,-41.5 - parent: 2 - - uid: 36984 + pos: 6.5,-7.5 + parent: 40828 + - uid: 41456 components: - type: Transform rot: -1.5707963267948966 rad - pos: 131.5,-41.5 - parent: 2 - - uid: 36985 + pos: 7.5,-4.5 + parent: 40828 + - uid: 41457 components: - type: Transform rot: -1.5707963267948966 rad - pos: 130.5,-41.5 - parent: 2 - - uid: 36986 + pos: 7.5,-3.5 + parent: 40828 + - uid: 41458 components: - type: Transform rot: -1.5707963267948966 rad - pos: 128.5,-41.5 - parent: 2 - - uid: 36987 + pos: 5.5,-7.5 + parent: 40828 + - uid: 41459 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-50.5 - parent: 2 - - uid: 36988 + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 40828 + - uid: 41460 components: - type: Transform rot: -1.5707963267948966 rad - pos: 123.5,-41.5 - parent: 2 - - uid: 36989 + pos: -3.5,-3.5 + parent: 40828 + - uid: 41461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-45.5 - parent: 2 - - uid: 36990 + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 40828 + - uid: 41462 components: - type: Transform - pos: -9.5,-43.5 - parent: 2 - - uid: 36991 + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 40828 + - uid: 41463 components: - type: Transform - pos: -1.5,-44.5 - parent: 2 - - uid: 36992 + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 40828 + - uid: 41464 components: - type: Transform - pos: 5.5,-21.5 - parent: 2 - - uid: 36993 + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 40828 + - uid: 41465 components: - type: Transform - pos: -2.5,-3.5 - parent: 2 - - uid: 36994 + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 40828 + - uid: 41466 components: - type: Transform - pos: -2.5,-9.5 - parent: 2 - - uid: 36995 + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 40828 + - uid: 41467 components: - type: Transform rot: -1.5707963267948966 rad - pos: 121.5,-41.5 - parent: 2 - - uid: 36996 + pos: 4.5,-3.5 + parent: 40828 + - uid: 41468 components: - type: Transform rot: -1.5707963267948966 rad - pos: 116.5,-41.5 - parent: 2 - - uid: 36997 + pos: 7.5,-6.5 + parent: 40828 + - uid: 41469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,12.5 - parent: 2 - - uid: 36998 + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 40828 + - uid: 41470 components: - type: Transform rot: -1.5707963267948966 rad - pos: 115.5,-41.5 - parent: 2 - - uid: 36999 + pos: 7.5,-5.5 + parent: 40828 + - uid: 41471 components: - type: Transform - pos: 82.5,-11.5 - parent: 2 - - uid: 37000 + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 40828 + - uid: 41472 components: - type: Transform rot: -1.5707963267948966 rad - pos: 114.5,-41.5 - parent: 2 - - uid: 37001 + pos: -4.5,-3.5 + parent: 40828 + - uid: 41473 components: - type: Transform rot: -1.5707963267948966 rad - pos: 113.5,-41.5 - parent: 2 - - uid: 37002 + pos: -5.5,-3.5 + parent: 40828 + - uid: 41474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 113.5,-39.5 - parent: 2 - - uid: 37003 + rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 40828 + - uid: 41475 components: - type: Transform - pos: -14.5,8.5 - parent: 2 - - uid: 37004 + rot: -1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 40828 + - uid: 41476 components: - type: Transform - pos: -12.5,13.5 - parent: 2 - - uid: 37005 + rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 40828 + - uid: 41477 components: - type: Transform - pos: -12.5,15.5 - parent: 2 - - uid: 37341 + rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 40828 + - uid: 41478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,19.5 - parent: 2 - - uid: 37342 + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 40828 + - uid: 41479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,19.5 - parent: 2 - - uid: 37343 + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 40828 + - uid: 41480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,20.5 - parent: 2 - - uid: 37344 + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 40828 + - uid: 41481 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,21.5 - parent: 2 - - uid: 37345 + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 40828 + - uid: 41482 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,22.5 - parent: 2 - - uid: 37346 + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 40828 + - uid: 41483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,23.5 - parent: 2 - - uid: 37796 + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 40828 + - uid: 41484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,19.5 - parent: 2 - - uid: 37810 + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 40828 + - uid: 41485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,19.5 - parent: 2 - - uid: 37811 + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 40828 + - uid: 41486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,19.5 - parent: 2 - - uid: 37812 + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 40828 + - uid: 41487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,19.5 - parent: 2 - - uid: 38479 + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 40828 + - uid: 41488 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,18.5 - parent: 2 - - uid: 39245 + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 40828 + - uid: 41489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-57.5 - parent: 2 - - uid: 39474 + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 40828 + - uid: 41490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-57.5 - parent: 2 - - uid: 39818 + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 40828 + - uid: 41491 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 2 - - uid: 40221 + pos: -0.5,-13.5 + parent: 40828 + - uid: 41492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-30.5 - parent: 2 - - uid: 42104 + rot: -1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 40828 + - uid: 41493 components: - type: Transform - pos: 11.5,-2.5 - parent: 2 - - uid: 42215 + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 40828 + - uid: 41494 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,-90.5 - parent: 2 - - uid: 42217 + pos: 2.5,-13.5 + parent: 40828 + - uid: 41495 components: - type: Transform - pos: 11.5,-3.5 - parent: 2 - - uid: 42218 + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 40828 + - uid: 41496 components: - type: Transform - pos: 11.5,-4.5 - parent: 2 - - uid: 42466 + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 40828 + - uid: 41497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-45.5 - parent: 2 - - uid: 43666 + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 40828 + - uid: 41498 components: - type: Transform - pos: 103.5,-18.5 - parent: 2 - - uid: 43667 + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 40828 + - uid: 41499 components: - type: Transform - pos: 103.5,-17.5 - parent: 2 - - uid: 43669 + rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 40828 + - uid: 41500 components: - type: Transform - rot: 3.141592653589793 rad - pos: 104.5,-16.5 - parent: 2 - - uid: 43756 + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 40828 + - uid: 41501 components: - type: Transform rot: -1.5707963267948966 rad - pos: 107.5,-16.5 - parent: 2 - - uid: 43757 + pos: 4.5,-14.5 + parent: 40828 + - uid: 41502 components: - type: Transform rot: -1.5707963267948966 rad - pos: 109.5,-16.5 - parent: 2 - - uid: 43765 + pos: 5.5,-14.5 + parent: 40828 + - uid: 41503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-128.5 - parent: 2 - - uid: 43766 + rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 40828 + - uid: 41504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-128.5 - parent: 2 - - uid: 43767 + rot: -1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 40828 + - uid: 41505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-128.5 - parent: 2 - - uid: 43768 + rot: -1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 40828 + - uid: 41506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-129.5 - parent: 2 - - uid: 43770 + rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 40828 + - uid: 41507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-129.5 - parent: 2 - - uid: 43771 + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 40828 + - uid: 41508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-129.5 - parent: 2 - - uid: 43772 + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 40828 + - uid: 41509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-128.5 - parent: 2 - - uid: 43773 + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 40828 + - uid: 41510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-129.5 - parent: 2 - - uid: 44166 + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 40828 + - uid: 41511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-55.5 - parent: 2 - - uid: 44167 + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 40828 + - uid: 41512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-56.5 - parent: 2 - - uid: 44168 + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 40828 + - uid: 41513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-57.5 - parent: 2 - - uid: 44169 + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 40828 + - uid: 41514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-58.5 - parent: 2 - - uid: 44175 + rot: -1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 40828 + - uid: 41515 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-55.5 - parent: 2 - - uid: 44178 + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 40828 + - uid: 41516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-58.5 - parent: 2 - - uid: 44179 + rot: -1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 40828 + - uid: 41517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-59.5 - parent: 2 - - uid: 44188 + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 40828 + - uid: 41518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-80.5 - parent: 2 - - uid: 44189 + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 40828 + - uid: 41519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-81.5 - parent: 2 - - uid: 44190 + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 40828 + - uid: 41520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-82.5 - parent: 2 - - uid: 44191 + rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 40828 + - uid: 41521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-83.5 - parent: 2 - - uid: 44204 + rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 40828 + - uid: 41522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-58.5 - parent: 2 - - uid: 44215 + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 40828 + - uid: 41523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-57.5 - parent: 2 - - uid: 44216 + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 40828 + - uid: 41524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-55.5 - parent: 2 -- proto: WallReinforcedRust - entities: - - uid: 33269 + rot: -1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 40828 + - uid: 41525 components: - type: Transform - pos: -54.5,1.5 - parent: 2 - - uid: 33270 + rot: -1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 40828 + - uid: 41526 components: - type: Transform - pos: -51.5,3.5 - parent: 2 - - uid: 33271 + rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 40828 + - uid: 41527 components: - type: Transform - pos: -51.5,2.5 - parent: 2 - - uid: 37006 + rot: 3.141592653589793 rad + pos: 8.5,-8.5 + parent: 40828 + - uid: 41528 components: - type: Transform - pos: -14.5,-47.5 - parent: 2 - - uid: 37007 + rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 40828 + - uid: 41529 components: - type: Transform - pos: 3.5,-41.5 - parent: 2 - - uid: 37008 + rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 40828 + - uid: 41530 components: - type: Transform - pos: -6.5,-42.5 - parent: 2 - - uid: 37009 + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 40828 + - uid: 41531 components: - type: Transform - pos: 6.5,-42.5 - parent: 2 - - uid: 37010 + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 40828 + - uid: 41532 components: - type: Transform - pos: 6.5,-43.5 - parent: 2 - - uid: 37011 + rot: 3.141592653589793 rad + pos: -6.5,-15.5 + parent: 40828 + - uid: 41533 components: - type: Transform - pos: -0.5,-35.5 - parent: 2 - - uid: 37012 + rot: 3.141592653589793 rad + pos: -1.5,-14.5 + parent: 40828 + - uid: 41534 components: - type: Transform - pos: -1.5,-55.5 - parent: 2 - - uid: 37013 + rot: 3.141592653589793 rad + pos: -2.5,-15.5 + parent: 40828 + - uid: 41535 components: - type: Transform - pos: -0.5,-38.5 - parent: 2 - - uid: 37014 + rot: 3.141592653589793 rad + pos: -7.5,-14.5 + parent: 40828 + - uid: 41536 components: - type: Transform - pos: -7.5,-55.5 - parent: 2 - - uid: 37015 + rot: 3.141592653589793 rad + pos: -7.5,-9.5 + parent: 40828 + - uid: 41537 components: - type: Transform - pos: 4.5,-45.5 - parent: 2 - - uid: 37016 + rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 40828 + - uid: 41538 components: - type: Transform - pos: -18.5,-41.5 - parent: 2 - - uid: 37017 + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 40828 + - uid: 41539 components: - type: Transform - pos: -7.5,-42.5 - parent: 2 - - uid: 37018 + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 40828 + - uid: 41540 components: - type: Transform - pos: -0.5,-39.5 - parent: 2 - - uid: 37019 + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 40828 + - uid: 41541 components: - type: Transform - pos: 7.5,-49.5 - parent: 2 - - uid: 37020 + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 40828 + - uid: 41542 components: - type: Transform - pos: 8.5,-45.5 - parent: 2 - - uid: 37021 + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 40828 + - uid: 41543 components: - type: Transform - pos: -17.5,-44.5 - parent: 2 - - uid: 37022 + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 40828 + - uid: 41544 components: - type: Transform - pos: 16.5,-20.5 - parent: 2 - - uid: 37023 + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 40828 + - uid: 41545 components: - type: Transform - pos: 15.5,-20.5 - parent: 2 - - uid: 37024 + rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 40828 + - uid: 41546 components: - type: Transform - pos: 1.5,-37.5 - parent: 2 - - uid: 37025 + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 40828 + - uid: 41547 components: - type: Transform - pos: -17.5,-30.5 - parent: 2 - - uid: 37026 + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 40828 + - uid: 41548 components: - type: Transform - pos: -15.5,-30.5 - parent: 2 - - uid: 37027 + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 40828 + - uid: 41549 components: - type: Transform - pos: -17.5,-55.5 - parent: 2 - - uid: 37028 + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 40828 + - uid: 41550 components: - type: Transform - pos: -14.5,-55.5 - parent: 2 - - uid: 37029 + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 40828 + - uid: 41551 components: - type: Transform - pos: -13.5,-55.5 - parent: 2 - - uid: 37030 + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 40828 + - uid: 41552 components: - type: Transform - pos: -11.5,-55.5 - parent: 2 - - uid: 37031 + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 40828 + - uid: 41553 components: - type: Transform - pos: 7.5,-48.5 - parent: 2 - - uid: 37032 + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 40828 + - uid: 41554 components: - type: Transform - pos: 17.5,-31.5 - parent: 2 - - uid: 37033 + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 40828 + - uid: 41555 components: - type: Transform - pos: -0.5,-48.5 - parent: 2 - - uid: 37034 + rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 40828 + - uid: 41556 components: - type: Transform - pos: -0.5,-49.5 - parent: 2 - - uid: 37035 + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 40828 + - uid: 41557 components: - type: Transform - pos: -18.5,-55.5 - parent: 2 - - uid: 37036 + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 40828 + - uid: 41558 components: - type: Transform - pos: -1.5,-54.5 - parent: 2 - - uid: 37037 + rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 40828 + - uid: 41559 components: - type: Transform - pos: -16.5,-44.5 - parent: 2 - - uid: 37038 + rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 40828 + - uid: 41560 components: - type: Transform - pos: 12.5,-34.5 - parent: 2 - - uid: 37039 + pos: 7.5,15.5 + parent: 40828 + - uid: 41561 components: - type: Transform - pos: 13.5,-34.5 - parent: 2 - - uid: 37040 + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 40828 + - uid: 41562 components: - type: Transform - pos: -0.5,-14.5 - parent: 2 - - uid: 37041 + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 40828 + - uid: 41563 components: - type: Transform - pos: 4.5,-51.5 - parent: 2 - - uid: 37042 + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 40828 + - uid: 41564 components: - type: Transform - pos: -11.5,-20.5 - parent: 2 - - uid: 37043 + rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 40828 + - uid: 41565 components: - type: Transform - pos: 6.5,-49.5 - parent: 2 - - uid: 37044 + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 40828 + - uid: 41566 components: - type: Transform - pos: 9.5,-45.5 - parent: 2 - - uid: 37045 + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 40828 + - uid: 41567 components: - type: Transform - pos: 13.5,-45.5 - parent: 2 - - uid: 37046 + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 40828 + - uid: 41568 components: - type: Transform - pos: 14.5,-45.5 - parent: 2 - - uid: 37047 + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 40828 + - uid: 41569 components: - type: Transform - pos: 17.5,-47.5 - parent: 2 - - uid: 37048 + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 40828 + - uid: 41570 components: - type: Transform - pos: 18.5,-47.5 - parent: 2 - - uid: 37049 + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 40828 + - uid: 41571 components: - type: Transform - pos: -10.5,-31.5 - parent: 2 - - uid: 37050 + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 40828 + - uid: 41572 components: - type: Transform - pos: -7.5,-31.5 - parent: 2 - - uid: 37051 + rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 40828 + - uid: 41573 components: - type: Transform - pos: -0.5,-21.5 - parent: 2 - - uid: 37052 + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 40828 + - uid: 41574 components: - type: Transform - pos: 0.5,-21.5 - parent: 2 - - uid: 37053 + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 40828 + - uid: 41575 components: - type: Transform - pos: 1.5,-21.5 - parent: 2 - - uid: 37054 + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 40828 + - uid: 41576 components: - type: Transform - pos: -12.5,-20.5 - parent: 2 - - uid: 37055 + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 40828 + - uid: 41577 components: - type: Transform - pos: -9.5,-26.5 - parent: 2 - - uid: 37056 + rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 40828 + - uid: 41578 components: - type: Transform - pos: -9.5,-27.5 - parent: 2 - - uid: 37057 + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 40828 + - uid: 41579 components: - type: Transform - pos: -7.5,-20.5 - parent: 2 - - uid: 37058 + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 40828 + - uid: 41580 components: - type: Transform - pos: -8.5,-35.5 - parent: 2 - - uid: 37059 + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 40828 + - uid: 41581 components: - type: Transform - pos: -8.5,-34.5 - parent: 2 - - uid: 37060 + pos: -6.5,15.5 + parent: 40828 + - uid: 41582 components: - type: Transform - pos: 16.5,-25.5 - parent: 2 - - uid: 37061 + rot: 3.141592653589793 rad + pos: 7.5,14.5 + parent: 40828 + - uid: 41583 components: - type: Transform - pos: 19.5,-24.5 - parent: 2 - - uid: 37062 + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 40828 + - uid: 41584 components: - type: Transform - pos: 0.5,-14.5 - parent: 2 - - uid: 37063 + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 40828 + - uid: 41585 components: - type: Transform - pos: 18.5,-30.5 - parent: 2 - - uid: 37064 + rot: 3.141592653589793 rad + pos: -6.5,13.5 + parent: 40828 + - uid: 41901 components: - type: Transform - pos: -4.5,-51.5 - parent: 2 - - uid: 37065 + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 41669 + - uid: 41902 components: - type: Transform - pos: 12.5,-50.5 - parent: 2 - - uid: 37066 + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 41669 + - uid: 41903 components: - type: Transform - pos: -7.5,-52.5 - parent: 2 - - uid: 37067 + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 41669 + - uid: 41904 components: - type: Transform - pos: -6.5,-50.5 - parent: 2 - - uid: 37068 + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 41669 + - uid: 41905 components: - type: Transform - pos: 3.5,-45.5 - parent: 2 - - uid: 37069 + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 41669 + - uid: 41906 components: - type: Transform - pos: -9.5,-50.5 - parent: 2 -- proto: WallRiveted - entities: - - uid: 37070 + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 41669 + - uid: 41907 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-44.5 - parent: 2 - - uid: 37071 + pos: 1.5,-5.5 + parent: 41669 + - uid: 41908 components: - type: Transform - pos: 7.5,-64.5 - parent: 2 - - uid: 37072 + pos: 8.5,0.5 + parent: 41669 + - uid: 41909 components: - type: Transform - pos: -0.5,-11.5 - parent: 2 - - uid: 37073 + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 41669 + - uid: 41910 components: - type: Transform - pos: 22.5,-24.5 - parent: 2 - - uid: 37074 + pos: 0.5,1.5 + parent: 41669 + - uid: 41911 components: - type: Transform - pos: 23.5,-24.5 - parent: 2 - - uid: 37075 + pos: 8.5,1.5 + parent: 41669 + - uid: 41912 components: - type: Transform - pos: 1.5,-11.5 - parent: 2 - - uid: 37076 + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 41669 + - uid: 41913 components: - type: Transform - pos: 24.5,-24.5 - parent: 2 - - uid: 37077 + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 41669 + - uid: 41914 components: - type: Transform - pos: 7.5,-11.5 - parent: 2 - - uid: 37078 + pos: 7.5,-1.5 + parent: 41669 + - uid: 41915 components: - type: Transform - pos: -10.5,-10.5 - parent: 2 - - uid: 37079 + pos: 7.5,-2.5 + parent: 41669 + - uid: 41916 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 41669 + - uid: 41917 components: - type: Transform - pos: -8.5,-11.5 - parent: 2 - - uid: 37080 + pos: 7.5,-4.5 + parent: 41669 + - uid: 41918 components: - type: Transform - pos: -6.5,-11.5 - parent: 2 - - uid: 37081 + pos: 7.5,-5.5 + parent: 41669 + - uid: 41919 components: - type: Transform - pos: -2.5,-11.5 - parent: 2 - - uid: 37082 + pos: 7.5,-6.5 + parent: 41669 + - uid: 41920 components: - type: Transform - pos: 8.5,-11.5 - parent: 2 - - uid: 37083 + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 41669 + - uid: 41921 components: - type: Transform - pos: 2.5,-65.5 - parent: 2 - - uid: 37084 + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 41669 + - uid: 41922 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-34.5 - parent: 2 - - uid: 37085 + pos: 6.5,-10.5 + parent: 41669 + - uid: 41923 components: - type: Transform - pos: -3.5,-11.5 - parent: 2 - - uid: 37086 + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 41669 + - uid: 41924 components: - type: Transform - pos: -9.5,-11.5 - parent: 2 - - uid: 37087 + rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 41669 + - uid: 41925 components: - type: Transform - pos: -7.5,-11.5 - parent: 2 - - uid: 37088 + rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 41669 + - uid: 41926 components: - type: Transform - pos: -21.5,-41.5 - parent: 2 - - uid: 37089 + pos: 7.5,-7.5 + parent: 41669 + - uid: 41927 components: - type: Transform - pos: 2.5,-64.5 - parent: 2 - - uid: 37090 + pos: 1.5,-7.5 + parent: 41669 + - uid: 41928 components: - type: Transform - pos: 2.5,-66.5 - parent: 2 - - uid: 37091 + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 41669 + - uid: 41929 components: - type: Transform - pos: -6.5,-66.5 - parent: 2 - - uid: 37092 + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 41669 + - uid: 41930 components: - type: Transform - pos: -4.5,-66.5 - parent: 2 - - uid: 37093 + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 41669 + - uid: 41931 components: - type: Transform - pos: 9.5,-64.5 - parent: 2 - - uid: 37094 + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 41669 + - uid: 41932 components: - type: Transform - pos: -1.5,-66.5 - parent: 2 - - uid: 37095 + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 41669 + - uid: 41933 components: - type: Transform - pos: 21.5,-34.5 - parent: 2 - - uid: 37096 + pos: 2.5,-0.5 + parent: 41669 + - uid: 41934 components: - type: Transform - pos: 21.5,-30.5 - parent: 2 - - uid: 37097 + pos: 3.5,-9.5 + parent: 41669 + - uid: 41935 components: - type: Transform - pos: 21.5,-29.5 - parent: 2 - - uid: 37098 + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 41669 + - uid: 41936 components: - type: Transform - pos: 2.5,-63.5 - parent: 2 - - uid: 37099 + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 41669 + - uid: 41937 components: - type: Transform - pos: 6.5,-64.5 - parent: 2 - - uid: 37101 + pos: 5.5,-9.5 + parent: 41669 + - uid: 41938 components: - type: Transform - pos: -22.5,-41.5 - parent: 2 - - uid: 37102 + pos: 1.5,2.5 + parent: 41669 + - uid: 41939 components: - type: Transform - pos: 5.5,-11.5 - parent: 2 - - uid: 37103 + pos: 7.5,2.5 + parent: 41669 + - uid: 41940 components: - type: Transform - pos: -10.5,-11.5 - parent: 2 - - uid: 37104 + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 41669 + - uid: 41941 components: - type: Transform - pos: -5.5,-11.5 - parent: 2 - - uid: 37105 + pos: 4.5,-3.5 + parent: 41669 + - uid: 41942 components: - type: Transform - pos: -4.5,-11.5 - parent: 2 - - uid: 37106 + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 41669 + - uid: 41943 components: - type: Transform - pos: -1.5,-11.5 - parent: 2 - - uid: 37107 + pos: 2.5,-3.5 + parent: 41669 + - uid: 41944 components: - type: Transform - pos: 2.5,-11.5 - parent: 2 - - uid: 37108 + pos: 4.5,-0.5 + parent: 41669 + - uid: 41945 components: - type: Transform - pos: 3.5,-11.5 - parent: 2 - - uid: 37109 + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 41669 +- proto: WallShuttleDiagonal + entities: + - uid: 40811 components: - type: Transform - pos: 4.5,-11.5 - parent: 2 - - uid: 37110 + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 40666 + - uid: 40812 components: - type: Transform - pos: 6.5,-11.5 - parent: 2 - - uid: 37111 + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 40666 + - uid: 40813 components: - type: Transform - pos: -1.5,-65.5 - parent: 2 - - uid: 37112 + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 40666 + - uid: 40814 components: - type: Transform - pos: -18.5,-17.5 - parent: 2 - - uid: 37113 + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 40666 + - uid: 40815 components: - type: Transform - pos: 20.5,-11.5 - parent: 2 - - uid: 37114 + pos: -2.5,3.5 + parent: 40666 + - uid: 40816 components: - type: Transform - pos: 21.5,-12.5 - parent: 2 - - uid: 37115 + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 40666 + - uid: 40817 components: - type: Transform - pos: -18.5,-18.5 - parent: 2 - - uid: 37116 + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 40666 + - uid: 40818 components: - type: Transform - pos: -21.5,-19.5 - parent: 2 - - uid: 37117 + pos: -4.5,3.5 + parent: 40666 + - uid: 41586 components: - type: Transform - pos: -21.5,-20.5 - parent: 2 - - uid: 37118 + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 40828 + - uid: 41587 components: - type: Transform - pos: 21.5,-19.5 - parent: 2 - - uid: 37119 + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 40828 + - uid: 41588 components: - type: Transform - pos: 21.5,-20.5 - parent: 2 - - uid: 37120 + rot: 3.141592653589793 rad + pos: -1.5,-15.5 + parent: 40828 + - uid: 41589 components: - type: Transform - pos: -11.5,-10.5 - parent: 2 - - uid: 37121 + rot: 1.5707963267948966 rad + pos: -7.5,-15.5 + parent: 40828 + - uid: 41590 components: - type: Transform - pos: -19.5,-18.5 - parent: 2 - - uid: 37122 + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 40828 + - uid: 41591 components: - type: Transform - pos: -20.5,-18.5 - parent: 2 - - uid: 37123 + pos: 5.5,1.5 + parent: 40828 + - uid: 41592 components: - type: Transform - pos: 14.5,-11.5 - parent: 2 - - uid: 37124 + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 40828 + - uid: 41593 components: - type: Transform - pos: 11.5,-11.5 - parent: 2 - - uid: 37125 + pos: -6.5,16.5 + parent: 40828 + - uid: 41594 components: - type: Transform - pos: 13.5,-11.5 - parent: 2 - - uid: 37126 + rot: 3.141592653589793 rad + pos: 7.5,12.5 + parent: 40828 + - uid: 41595 components: - type: Transform - pos: -17.5,-10.5 - parent: 2 - - uid: 37127 + rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 40828 + - uid: 41946 components: - type: Transform - pos: -21.5,-18.5 - parent: 2 - - uid: 37128 + pos: 0.5,-4.5 + parent: 41669 + - uid: 41947 components: - type: Transform - pos: 20.5,-12.5 - parent: 2 - - uid: 37129 + rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 41669 + - uid: 41948 components: - type: Transform - pos: -18.5,-11.5 - parent: 2 - - uid: 37130 + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 41669 + - uid: 41949 components: - type: Transform - pos: -21.5,-40.5 - parent: 2 - - uid: 37131 + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 41669 + - uid: 41950 components: - type: Transform - pos: -21.5,-39.5 - parent: 2 - - uid: 37132 + pos: 0.5,2.5 + parent: 41669 + - uid: 41951 components: - type: Transform - pos: -17.5,-11.5 - parent: 2 - - uid: 37133 + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 41669 + - uid: 41952 components: - type: Transform - pos: 9.5,-11.5 - parent: 2 - - uid: 37134 + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 41669 + - uid: 41953 components: - type: Transform - pos: 10.5,-11.5 - parent: 2 - - uid: 37135 + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 41669 + - uid: 41954 components: - type: Transform - pos: 12.5,-11.5 - parent: 2 - - uid: 37136 + pos: 0.5,-7.5 + parent: 41669 + - uid: 41955 components: - type: Transform - pos: 13.5,-63.5 - parent: 2 - - uid: 37137 + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 41669 + - uid: 41956 components: - type: Transform - pos: 14.5,-63.5 - parent: 2 - - uid: 37138 + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 41669 + - uid: 41957 components: - type: Transform - pos: 15.5,-63.5 - parent: 2 - - uid: 37139 + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 41669 + - uid: 41958 components: - type: Transform - pos: 21.5,-31.5 - parent: 2 - - uid: 37140 + rot: 3.141592653589793 rad + pos: 8.5,-10.5 + parent: 41669 + - uid: 41959 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-24.5 - parent: 2 - - uid: 37141 - components: - - type: Transform - pos: -21.5,-38.5 - parent: 2 - - uid: 37142 + pos: 0.5,-10.5 + parent: 41669 + - uid: 41960 components: - type: Transform - pos: -21.5,-37.5 - parent: 2 - - uid: 37143 + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 41669 + - uid: 41961 components: - type: Transform - pos: -21.5,-36.5 - parent: 2 - - uid: 37144 + pos: 1.5,3.5 + parent: 41669 + - uid: 41962 components: - type: Transform - pos: -21.5,-35.5 - parent: 2 - - uid: 37145 + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 41669 + - uid: 41963 components: - type: Transform - pos: -21.5,-34.5 - parent: 2 - - uid: 37146 + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 41669 + - uid: 41964 components: - type: Transform - pos: -20.5,-34.5 - parent: 2 - - uid: 37147 + pos: 5.5,-7.5 + parent: 41669 + - uid: 41965 components: - type: Transform - pos: -20.5,-33.5 - parent: 2 - - uid: 37148 + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 41669 +- proto: WallSolid + entities: + - uid: 233 components: - type: Transform - pos: -20.5,-32.5 + pos: 29.5,23.5 parent: 2 - - uid: 37149 + - uid: 398 components: - type: Transform - pos: -20.5,-31.5 + pos: -10.5,-80.5 parent: 2 - - uid: 37150 + - uid: 742 components: - type: Transform - pos: -20.5,-30.5 + rot: 3.141592653589793 rad + pos: -26.5,-104.5 parent: 2 - - uid: 37151 + - uid: 1037 components: - type: Transform - pos: -23.5,-49.5 + pos: 38.5,18.5 parent: 2 - - uid: 37152 + - uid: 1837 components: - type: Transform - pos: -22.5,-49.5 + pos: -70.5,0.5 parent: 2 - - uid: 37153 + - uid: 2337 components: - type: Transform - pos: -21.5,-49.5 + pos: -18.5,-99.5 parent: 2 - - uid: 37154 + - uid: 2446 components: - type: Transform - pos: -21.5,-50.5 + rot: 3.141592653589793 rad + pos: 32.5,18.5 parent: 2 - - uid: 37155 + - uid: 2546 components: - type: Transform - pos: -21.5,-51.5 + rot: 3.141592653589793 rad + pos: 27.5,21.5 parent: 2 - - uid: 37156 + - uid: 4511 components: - type: Transform - pos: -21.5,-52.5 + rot: 3.141592653589793 rad + pos: -6.5,-97.5 parent: 2 - - uid: 37157 + - uid: 4620 components: - type: Transform - pos: -21.5,-53.5 + pos: -6.5,-92.5 parent: 2 - - uid: 37158 + - uid: 5143 components: - type: Transform - pos: -21.5,-54.5 + rot: 3.141592653589793 rad + pos: 29.5,22.5 parent: 2 - - uid: 37159 + - uid: 5820 components: - type: Transform - pos: -21.5,-55.5 + rot: 3.141592653589793 rad + pos: -27.5,-99.5 parent: 2 - - uid: 37160 + - uid: 6120 components: - type: Transform - pos: -22.5,-55.5 + rot: -1.5707963267948966 rad + pos: -65.5,1.5 parent: 2 - - uid: 37161 + - uid: 6330 components: - type: Transform - pos: -22.5,-56.5 + rot: 3.141592653589793 rad + pos: -25.5,-103.5 parent: 2 - - uid: 37162 + - uid: 6990 components: - type: Transform - pos: -22.5,-57.5 + rot: 3.141592653589793 rad + pos: 84.5,-45.5 parent: 2 - - uid: 37163 + - uid: 7680 components: - type: Transform - pos: -23.5,-61.5 + pos: 44.5,21.5 parent: 2 - - uid: 37164 + - uid: 8466 components: - type: Transform - pos: -23.5,-57.5 + pos: 43.5,21.5 parent: 2 - - uid: 37165 + - uid: 9709 components: - type: Transform - pos: -22.5,-61.5 + rot: 3.141592653589793 rad + pos: -26.5,-95.5 parent: 2 - - uid: 37166 + - uid: 9710 components: - type: Transform - pos: -22.5,-62.5 + rot: 3.141592653589793 rad + pos: -25.5,-95.5 parent: 2 - - uid: 37167 + - uid: 11520 components: - type: Transform - pos: -22.5,-63.5 + rot: 3.141592653589793 rad + pos: 27.5,19.5 parent: 2 - - uid: 37168 + - uid: 11673 components: - type: Transform - pos: -5.5,-66.5 + rot: 3.141592653589793 rad + pos: 30.5,22.5 parent: 2 - - uid: 37169 + - uid: 11737 components: - type: Transform - pos: 22.5,-20.5 + rot: 3.141592653589793 rad + pos: 27.5,18.5 parent: 2 - - uid: 37170 + - uid: 11985 components: - type: Transform - pos: -15.5,-63.5 + rot: 3.141592653589793 rad + pos: -21.5,-95.5 parent: 2 - - uid: 37171 + - uid: 11986 components: - type: Transform - pos: -17.5,-63.5 + rot: 3.141592653589793 rad + pos: -22.5,-95.5 parent: 2 - - uid: 37172 + - uid: 11987 components: - type: Transform - pos: -21.5,-63.5 + rot: 3.141592653589793 rad + pos: -24.5,-95.5 parent: 2 - - uid: 37173 + - uid: 12541 components: - type: Transform - pos: -20.5,-63.5 + rot: 1.5707963267948966 rad + pos: 80.5,4.5 parent: 2 - - uid: 37174 + - uid: 12719 components: - type: Transform - pos: -19.5,-63.5 + rot: 3.141592653589793 rad + pos: -8.5,-101.5 parent: 2 - - uid: 37175 + - uid: 12791 components: - type: Transform - pos: -18.5,-63.5 + pos: -56.5,-93.5 parent: 2 - - uid: 37176 + - uid: 13098 components: - type: Transform - pos: -16.5,-63.5 + rot: 3.141592653589793 rad + pos: -9.5,-98.5 parent: 2 - - uid: 37177 + - uid: 13349 components: - type: Transform - pos: -14.5,-63.5 + rot: 3.141592653589793 rad + pos: 84.5,-44.5 parent: 2 - - uid: 37178 + - uid: 13354 components: - type: Transform - pos: -13.5,-63.5 + rot: 3.141592653589793 rad + pos: 28.5,22.5 parent: 2 - - uid: 37179 + - uid: 13710 components: - type: Transform - pos: -12.5,-63.5 + rot: 3.141592653589793 rad + pos: 27.5,20.5 parent: 2 - - uid: 37180 + - uid: 15049 components: - type: Transform - pos: -11.5,-63.5 + pos: -71.5,0.5 parent: 2 - - uid: 37181 + - uid: 15105 components: - type: Transform - pos: -21.5,-44.5 + rot: 3.141592653589793 rad + pos: -25.5,-101.5 parent: 2 - - uid: 37182 + - uid: 15108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-33.5 + rot: 3.141592653589793 rad + pos: 27.5,22.5 parent: 2 - - uid: 37183 + - uid: 15566 components: - type: Transform - pos: -2.5,-65.5 + rot: 3.141592653589793 rad + pos: -9.5,-101.5 parent: 2 - - uid: 37184 + - uid: 15691 components: - type: Transform - pos: -3.5,-65.5 + pos: 25.5,22.5 parent: 2 - - uid: 37185 + - uid: 16084 components: - type: Transform - pos: -3.5,-66.5 + rot: 1.5707963267948966 rad + pos: -28.5,-98.5 parent: 2 - - uid: 37186 + - uid: 16141 components: - type: Transform - pos: -7.5,-65.5 + rot: 3.141592653589793 rad + pos: 80.5,6.5 parent: 2 - - uid: 37187 + - uid: 16285 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-41.5 - parent: 2 - - uid: 37188 - components: - - type: Transform - pos: -8.5,-65.5 + pos: 9.5,2.5 parent: 2 - - uid: 37189 + - uid: 17336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-41.5 + pos: 32.5,19.5 parent: 2 - - uid: 37190 + - uid: 17340 components: - type: Transform - pos: -9.5,-65.5 + rot: 3.141592653589793 rad + pos: 27.5,16.5 parent: 2 - - uid: 37191 + - uid: 17734 components: - type: Transform - pos: -10.5,-65.5 + pos: -32.5,-117.5 parent: 2 - - uid: 37192 + - uid: 18585 components: - type: Transform - pos: -11.5,-65.5 + rot: 3.141592653589793 rad + pos: 31.5,22.5 parent: 2 - - uid: 37193 + - uid: 19754 components: - type: Transform - pos: -11.5,-64.5 + pos: -1.5,-84.5 parent: 2 - - uid: 37194 + - uid: 19893 components: - type: Transform - pos: 3.5,-63.5 + rot: 3.141592653589793 rad + pos: 33.5,16.5 parent: 2 - - uid: 37195 + - uid: 19929 components: - type: Transform - pos: 4.5,-63.5 + rot: 1.5707963267948966 rad + pos: -23.5,-99.5 parent: 2 - - uid: 37196 + - uid: 19961 components: - type: Transform - pos: -20.5,-29.5 + rot: 3.141592653589793 rad + pos: 33.5,19.5 parent: 2 - - uid: 37197 + - uid: 22528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-31.5 + rot: 3.141592653589793 rad + pos: -9.5,-100.5 parent: 2 - - uid: 37198 + - uid: 24109 components: - type: Transform - pos: 12.5,-63.5 + rot: 3.141592653589793 rad + pos: 80.5,3.5 parent: 2 - - uid: 37199 + - uid: 26330 components: - type: Transform - pos: 9.5,-63.5 + rot: 3.141592653589793 rad + pos: -7.5,-101.5 parent: 2 - - uid: 37200 + - uid: 26698 components: - type: Transform - pos: 10.5,-63.5 + rot: 3.141592653589793 rad + pos: -5.5,-101.5 parent: 2 - - uid: 37201 + - uid: 28305 components: - type: Transform - pos: 11.5,-63.5 + rot: 1.5707963267948966 rad + pos: 88.5,-52.5 parent: 2 - - uid: 37202 + - uid: 28719 components: - type: Transform - pos: 5.5,-63.5 + rot: 1.5707963267948966 rad + pos: -24.5,-99.5 parent: 2 - - uid: 37203 + - uid: 28728 components: - type: Transform - pos: 16.5,-63.5 + rot: 1.5707963267948966 rad + pos: -21.5,-98.5 parent: 2 - - uid: 37204 + - uid: 29262 components: - type: Transform - pos: 17.5,-63.5 + pos: -65.5,-59.5 parent: 2 - - uid: 37205 + - uid: 29263 components: - type: Transform - pos: 18.5,-63.5 + pos: -65.5,-57.5 parent: 2 - - uid: 37206 + - uid: 29264 components: - type: Transform - pos: 19.5,-63.5 + pos: -66.5,-57.5 parent: 2 - - uid: 37207 + - uid: 29279 components: - type: Transform - pos: 20.5,-63.5 + pos: -68.5,-57.5 parent: 2 - - uid: 37208 + - uid: 29280 components: - type: Transform - pos: 20.5,-62.5 + pos: -65.5,-58.5 parent: 2 - - uid: 37209 + - uid: 29288 components: - type: Transform - pos: 20.5,-61.5 + pos: -69.5,-58.5 parent: 2 - - uid: 37210 + - uid: 29289 components: - type: Transform - pos: 20.5,-60.5 + pos: -69.5,-57.5 parent: 2 - - uid: 37211 + - uid: 29290 components: - type: Transform - pos: 20.5,-59.5 + pos: -69.5,-55.5 parent: 2 - - uid: 37212 + - uid: 30825 components: - type: Transform - pos: 20.5,-58.5 + rot: 1.5707963267948966 rad + pos: -21.5,-99.5 parent: 2 - - uid: 37213 + - uid: 30826 components: - type: Transform - pos: 21.5,-54.5 + rot: 1.5707963267948966 rad + pos: -22.5,-99.5 parent: 2 - - uid: 37214 + - uid: 31714 components: - type: Transform - pos: 21.5,-58.5 + pos: 29.5,25.5 parent: 2 - - uid: 37215 + - uid: 32020 components: - type: Transform - pos: 5.5,-64.5 + rot: 1.5707963267948966 rad + pos: -21.5,-96.5 parent: 2 - - uid: 37216 + - uid: 32021 components: - type: Transform - pos: 20.5,-54.5 + pos: -19.5,-100.5 parent: 2 - - uid: 37217 + - uid: 32699 components: - type: Transform - pos: 20.5,-53.5 + rot: 3.141592653589793 rad + pos: -5.5,-97.5 parent: 2 - - uid: 37218 + - uid: 33181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-44.5 + rot: 3.141592653589793 rad + pos: -8.5,-97.5 parent: 2 - - uid: 37219 + - uid: 33294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-44.5 + rot: 3.141592653589793 rad + pos: -25.5,-102.5 parent: 2 - - uid: 37220 + - uid: 33295 components: - type: Transform - pos: 20.5,-52.5 + rot: 3.141592653589793 rad + pos: -25.5,-100.5 parent: 2 - - uid: 37221 + - uid: 33521 components: - type: Transform - pos: 23.5,-20.5 + rot: 3.141592653589793 rad + pos: -9.5,-97.5 parent: 2 - - uid: 37222 + - uid: 34197 components: - type: Transform - pos: 20.5,-51.5 + rot: 3.141592653589793 rad + pos: -15.5,-101.5 parent: 2 - - uid: 37223 + - uid: 34620 components: - type: Transform - pos: 20.5,-50.5 + rot: 1.5707963267948966 rad + pos: -25.5,-99.5 parent: 2 - - uid: 37224 + - uid: 34923 components: - type: Transform - pos: 20.5,-49.5 + rot: 3.141592653589793 rad + pos: -15.5,-100.5 parent: 2 - - uid: 37225 + - uid: 34925 components: - type: Transform - pos: 20.5,-48.5 + rot: 3.141592653589793 rad + pos: -15.5,-99.5 parent: 2 - - uid: 37226 + - uid: 35014 components: - type: Transform - pos: 20.5,-47.5 + pos: -18.5,-100.5 parent: 2 - - uid: 37227 + - uid: 35082 components: - type: Transform - pos: 20.5,-46.5 + rot: 3.141592653589793 rad + pos: -10.5,-97.5 parent: 2 - - uid: 37228 + - uid: 35542 components: - type: Transform - pos: 20.5,-45.5 + rot: 3.141592653589793 rad + pos: -14.5,-99.5 parent: 2 - - uid: 37229 + - uid: 35543 components: - type: Transform - pos: 20.5,-44.5 + rot: 3.141592653589793 rad + pos: -14.5,-98.5 parent: 2 - - uid: 37230 + - uid: 35544 components: - type: Transform - pos: 21.5,-44.5 + rot: 3.141592653589793 rad + pos: -14.5,-97.5 parent: 2 - - uid: 37231 + - uid: 35545 components: - type: Transform - pos: 21.5,-43.5 + rot: 3.141592653589793 rad + pos: -13.5,-97.5 parent: 2 - - uid: 37232 + - uid: 35546 components: - type: Transform - pos: 21.5,-42.5 + rot: 3.141592653589793 rad + pos: -12.5,-97.5 parent: 2 - - uid: 37233 + - uid: 35547 components: - type: Transform - pos: 21.5,-41.5 + rot: 3.141592653589793 rad + pos: -11.5,-97.5 parent: 2 - - uid: 37234 + - uid: 36373 components: - type: Transform - pos: 21.5,-40.5 + rot: 1.5707963267948966 rad + pos: -25.5,-104.5 parent: 2 - - uid: 37235 + - uid: 36632 components: - type: Transform - pos: 21.5,-39.5 + rot: 1.5707963267948966 rad + pos: -16.5,-99.5 parent: 2 - - uid: 37236 + - uid: 36651 components: - type: Transform - pos: 21.5,-38.5 + rot: 1.5707963267948966 rad + pos: -19.5,-99.5 parent: 2 - - uid: 37237 + - uid: 36653 components: - type: Transform - pos: 21.5,-37.5 + rot: 1.5707963267948966 rad + pos: -25.5,-105.5 parent: 2 - - uid: 37238 + - uid: 36664 components: - type: Transform - pos: 21.5,-36.5 + rot: 1.5707963267948966 rad + pos: -25.5,-106.5 parent: 2 - - uid: 37239 + - uid: 37335 components: - type: Transform - pos: 21.5,-35.5 + rot: 1.5707963267948966 rad + pos: 70.5,-17.5 parent: 2 - - uid: 37240 + - uid: 37336 components: - type: Transform - pos: 24.5,-20.5 + rot: -1.5707963267948966 rad + pos: -57.5,-22.5 parent: 2 - - uid: 37241 + - uid: 37337 components: - type: Transform - pos: 24.5,-22.5 + rot: -1.5707963267948966 rad + pos: -59.5,-22.5 parent: 2 - - uid: 37242 + - uid: 37338 components: - type: Transform - pos: 8.5,-64.5 + rot: -1.5707963267948966 rad + pos: 16.5,-80.5 parent: 2 - - uid: 37243 + - uid: 37339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-13.5 + pos: 21.5,-77.5 parent: 2 - - uid: 37244 + - uid: 37340 components: - type: Transform - pos: -7.5,-66.5 + pos: 42.5,-12.5 parent: 2 - - uid: 37245 + - uid: 37347 components: - type: Transform - pos: -20.5,-28.5 + rot: 1.5707963267948966 rad + pos: 64.5,-34.5 parent: 2 - - uid: 37246 + - uid: 37348 components: - type: Transform - pos: -20.5,-27.5 + pos: -19.5,2.5 parent: 2 - - uid: 37247 + - uid: 37349 components: - type: Transform - pos: -20.5,-26.5 + pos: -22.5,2.5 parent: 2 - - uid: 37248 + - uid: 37350 components: - type: Transform - pos: -20.5,-25.5 + pos: -23.5,2.5 parent: 2 - - uid: 37249 + - uid: 37351 components: - type: Transform - pos: -20.5,-24.5 + pos: -24.5,2.5 parent: 2 - - uid: 37250 + - uid: 37352 components: - type: Transform - pos: -21.5,-24.5 + pos: -25.5,8.5 parent: 2 - - uid: 37251 + - uid: 37353 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-26.5 + pos: -25.5,7.5 parent: 2 - - uid: 37252 + - uid: 37354 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-24.5 + pos: -25.5,9.5 parent: 2 - - uid: 37253 + - uid: 37355 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-25.5 + pos: -25.5,6.5 parent: 2 - - uid: 37254 + - uid: 37356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-15.5 + pos: -25.5,5.5 parent: 2 - - uid: 37255 + - uid: 37357 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-25.5 + pos: -25.5,4.5 parent: 2 - - uid: 37256 + - uid: 37358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-16.5 + pos: -25.5,3.5 parent: 2 - - uid: 37257 + - uid: 37359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-21.5 + pos: -25.5,2.5 parent: 2 - - uid: 37258 + - uid: 37360 components: - type: Transform - pos: -21.5,-23.5 + pos: -19.5,9.5 parent: 2 - - uid: 37259 + - uid: 37361 components: - type: Transform - pos: -21.5,-22.5 + pos: -20.5,9.5 parent: 2 - - uid: 37260 + - uid: 37362 components: - type: Transform - pos: -21.5,-21.5 + pos: -21.5,9.5 parent: 2 - - uid: 37261 + - uid: 37363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-23.5 + pos: -22.5,9.5 parent: 2 - - uid: 37262 + - uid: 37364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-26.5 + pos: -23.5,9.5 parent: 2 - - uid: 37263 + - uid: 37365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-19.5 + pos: -24.5,9.5 parent: 2 - - uid: 37264 + - uid: 37366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-26.5 + pos: -49.5,-107.5 parent: 2 - - uid: 37265 + - uid: 37367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-17.5 + pos: 38.5,-14.5 parent: 2 - - uid: 37266 + - uid: 37368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-21.5 + pos: 27.5,-1.5 parent: 2 - - uid: 37267 + - uid: 37369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-22.5 + pos: 31.5,-17.5 parent: 2 - - uid: 37268 + - uid: 37370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-20.5 + rot: 1.5707963267948966 rad + pos: -45.5,-37.5 parent: 2 - - uid: 37269 + - uid: 37371 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-20.5 + pos: 35.5,-14.5 parent: 2 - - uid: 37270 + - uid: 37372 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-18.5 + pos: 97.5,-47.5 parent: 2 - - uid: 37271 + - uid: 37373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-23.5 + pos: 106.5,-50.5 parent: 2 - - uid: 37272 + - uid: 37374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-22.5 + pos: 107.5,-46.5 parent: 2 - - uid: 37273 + - uid: 37376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-24.5 + pos: 88.5,-51.5 parent: 2 - - uid: 37274 + - uid: 37377 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-26.5 + pos: -36.5,-77.5 parent: 2 - - uid: 37275 + - uid: 37378 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-16.5 + pos: -35.5,-77.5 parent: 2 - - uid: 37276 + - uid: 37379 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-17.5 + pos: -21.5,-93.5 parent: 2 - - uid: 37277 + - uid: 37380 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-12.5 + pos: 31.5,-16.5 parent: 2 - - uid: 37278 + - uid: 37381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-18.5 + pos: 24.5,5.5 parent: 2 - - uid: 37279 + - uid: 37382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-19.5 + pos: 25.5,10.5 parent: 2 - - uid: 37280 + - uid: 37383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-43.5 + pos: 24.5,10.5 parent: 2 - - uid: 37281 + - uid: 37384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-46.5 + pos: 25.5,5.5 parent: 2 - - uid: 37282 + - uid: 37385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-47.5 + pos: 22.5,5.5 parent: 2 - - uid: 37283 + - uid: 37386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-48.5 + pos: 25.5,7.5 parent: 2 - - uid: 37284 + - uid: 37387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-42.5 + pos: 32.5,16.5 parent: 2 - - uid: 37285 + - uid: 37388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-40.5 + pos: 25.5,6.5 parent: 2 - - uid: 37286 + - uid: 37389 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-26.5 + pos: 22.5,11.5 parent: 2 - - uid: 37287 + - uid: 37391 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-45.5 + pos: 23.5,0.5 parent: 2 - - uid: 37288 + - uid: 37392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-45.5 + pos: -45.5,-7.5 parent: 2 - - uid: 37289 + - uid: 37393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-26.5 + pos: -46.5,-7.5 parent: 2 - - uid: 37290 + - uid: 37394 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-12.5 + pos: -47.5,-7.5 parent: 2 - - uid: 37291 + - uid: 37395 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-14.5 + pos: -49.5,-7.5 parent: 2 - - uid: 37292 + - uid: 37396 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-15.5 + pos: -50.5,-7.5 parent: 2 - - uid: 37293 + - uid: 37397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-14.5 + rot: -1.5707963267948966 rad + pos: -52.5,-37.5 parent: 2 - - uid: 37294 + - uid: 37398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-13.5 + rot: -1.5707963267948966 rad + pos: -55.5,-30.5 parent: 2 - - uid: 37295 + - uid: 37399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-12.5 + pos: -58.5,-39.5 parent: 2 - - uid: 37296 + - uid: 37400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-12.5 + rot: 1.5707963267948966 rad + pos: -25.5,-107.5 parent: 2 - - uid: 37297 + - uid: 37401 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-13.5 + pos: -29.5,-101.5 parent: 2 - - uid: 37298 + - uid: 37402 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-12.5 + pos: -29.5,-102.5 parent: 2 - - uid: 37299 + - uid: 37403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-13.5 + pos: -29.5,-104.5 parent: 2 - - uid: 37300 + - uid: 37404 components: - type: Transform - pos: 13.5,-27.5 + pos: -28.5,-104.5 parent: 2 - - uid: 37301 + - uid: 37405 components: - type: Transform - pos: 24.5,-23.5 + pos: 80.5,-48.5 parent: 2 - - uid: 37302 + - uid: 37406 components: - type: Transform - pos: 24.5,-21.5 + rot: 1.5707963267948966 rad + pos: -37.5,-117.5 parent: 2 - - uid: 37303 + - uid: 37407 components: - type: Transform - pos: 13.5,-30.5 + rot: 3.141592653589793 rad + pos: -63.5,-50.5 parent: 2 - - uid: 37304 + - uid: 37408 components: - type: Transform - pos: 7.5,-28.5 + pos: -27.5,-95.5 parent: 2 - - uid: 37305 + - uid: 37410 components: - type: Transform - pos: 7.5,-29.5 + rot: 1.5707963267948966 rad + pos: -36.5,-117.5 parent: 2 - - uid: 37306 + - uid: 37412 components: - type: Transform - pos: 12.5,-30.5 + pos: -58.5,-38.5 parent: 2 - - uid: 37307 + - uid: 37413 components: - type: Transform - pos: 7.5,-30.5 + pos: -58.5,-40.5 parent: 2 - - uid: 37308 + - uid: 37414 components: - type: Transform - pos: 9.5,-30.5 + rot: 3.141592653589793 rad + pos: -35.5,-115.5 parent: 2 - - uid: 37309 + - uid: 37415 components: - type: Transform - pos: 8.5,-30.5 + pos: -57.5,-41.5 parent: 2 - - uid: 37310 + - uid: 37416 components: - type: Transform - pos: 11.5,-30.5 + rot: -1.5707963267948966 rad + pos: -51.5,-37.5 parent: 2 - - uid: 37311 + - uid: 37417 components: - type: Transform - pos: 10.5,-30.5 + rot: 3.141592653589793 rad + pos: -59.5,8.5 parent: 2 - - uid: 37312 + - uid: 37418 components: - type: Transform - pos: 7.5,-27.5 + rot: 3.141592653589793 rad + pos: -63.5,1.5 parent: 2 - - uid: 37313 + - uid: 37419 components: - type: Transform - pos: 13.5,-29.5 + rot: 1.5707963267948966 rad + pos: -41.5,-117.5 parent: 2 -- proto: WallRockBasaltCoal - entities: - - uid: 37314 + - uid: 37420 components: - type: Transform - pos: -12.5,-59.5 + rot: 3.141592653589793 rad + pos: -63.5,3.5 parent: 2 - - uid: 37315 + - uid: 37421 components: - type: Transform - pos: -9.5,-59.5 + rot: 3.141592653589793 rad + pos: -64.5,1.5 parent: 2 - - uid: 37316 + - uid: 37422 components: - type: Transform - pos: -10.5,-59.5 + rot: 3.141592653589793 rad + pos: -58.5,5.5 parent: 2 - - uid: 37317 + - uid: 37423 components: - type: Transform - pos: -11.5,-58.5 + rot: 3.141592653589793 rad + pos: -58.5,10.5 parent: 2 - - uid: 37318 + - uid: 37424 components: - type: Transform - pos: -11.5,-60.5 + rot: 3.141592653589793 rad + pos: -62.5,5.5 parent: 2 - - uid: 37319 + - uid: 37425 components: - type: Transform - pos: -9.5,-62.5 + rot: 3.141592653589793 rad + pos: -61.5,5.5 parent: 2 - - uid: 37320 + - uid: 37426 components: - type: Transform - pos: -9.5,-61.5 + rot: 3.141592653589793 rad + pos: -59.5,5.5 parent: 2 - - uid: 37321 + - uid: 37428 components: - type: Transform - pos: -11.5,-59.5 + rot: 3.141592653589793 rad + pos: -59.5,0.5 parent: 2 - - uid: 37322 + - uid: 37429 components: - type: Transform - pos: -9.5,-60.5 + rot: 3.141592653589793 rad + pos: -65.5,-4.5 parent: 2 -- proto: WallRockBasaltDiamond - entities: - - uid: 37323 + - uid: 37430 components: - type: Transform - pos: -10.5,-60.5 + rot: 3.141592653589793 rad + pos: -66.5,-1.5 parent: 2 -- proto: WallRockCoal - entities: - - uid: 37324 + - uid: 37431 components: - type: Transform - pos: -10.5,-61.5 + rot: 3.141592653589793 rad + pos: -68.5,-1.5 parent: 2 - - uid: 37325 + - uid: 37432 components: - type: Transform - pos: -11.5,-61.5 + rot: 3.141592653589793 rad + pos: -62.5,-3.5 parent: 2 -- proto: WallRockSilver - entities: - - uid: 37326 + - uid: 37433 components: - type: Transform - pos: -21.5,-57.5 + rot: 3.141592653589793 rad + pos: -62.5,-0.5 parent: 2 - - uid: 37327 + - uid: 37434 components: - type: Transform - pos: -20.5,-56.5 + rot: 3.141592653589793 rad + pos: -61.5,0.5 parent: 2 - - uid: 37328 + - uid: 37435 components: - type: Transform - pos: -21.5,-58.5 + rot: 3.141592653589793 rad + pos: -62.5,-4.5 parent: 2 - - uid: 37329 + - uid: 37436 components: - type: Transform - pos: -21.5,-56.5 + rot: 3.141592653589793 rad + pos: -65.5,-1.5 parent: 2 -- proto: WallRockSnow - entities: - - uid: 19785 + - uid: 37437 components: - type: Transform - pos: 47.5,-42.5 + rot: 3.141592653589793 rad + pos: -65.5,-2.5 parent: 2 - - uid: 28040 + - uid: 37438 components: - type: Transform - pos: 47.5,-35.5 + rot: 3.141592653589793 rad + pos: -62.5,8.5 parent: 2 - - uid: 28041 + - uid: 37439 components: - type: Transform - pos: 48.5,-35.5 + rot: 3.141592653589793 rad + pos: -63.5,5.5 parent: 2 - - uid: 37330 + - uid: 37440 components: - type: Transform - pos: -14.5,-34.5 + rot: 3.141592653589793 rad + pos: -62.5,1.5 parent: 2 - - uid: 37331 + - uid: 37441 components: - type: Transform - pos: -20.5,-35.5 + rot: 3.141592653589793 rad + pos: -63.5,4.5 parent: 2 - - uid: 37332 + - uid: 37442 components: - type: Transform - pos: -20.5,-39.5 + rot: 3.141592653589793 rad + pos: -67.5,-1.5 parent: 2 - - uid: 37333 + - uid: 37443 components: - type: Transform - pos: -20.5,-38.5 + rot: 3.141592653589793 rad + pos: -62.5,-2.5 parent: 2 -- proto: WallRockUranium - entities: - - uid: 37334 + - uid: 37444 components: - type: Transform - pos: -14.5,-62.5 + rot: 3.141592653589793 rad + pos: -55.5,8.5 parent: 2 -- proto: WallShuttle - entities: - - uid: 40789 + - uid: 37445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 40666 - - uid: 40790 + rot: 3.141592653589793 rad + pos: -61.5,8.5 + parent: 2 + - uid: 37446 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 40666 - - uid: 40791 + pos: -57.5,8.5 + parent: 2 + - uid: 37447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 40666 - - uid: 40792 + rot: 3.141592653589793 rad + pos: -58.5,8.5 + parent: 2 + - uid: 37448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,1.5 - parent: 40666 - - uid: 40793 + rot: 3.141592653589793 rad + pos: -63.5,2.5 + parent: 2 + - uid: 37449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 40666 - - uid: 40794 + rot: 3.141592653589793 rad + pos: -66.5,5.5 + parent: 2 + - uid: 37450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 40666 - - uid: 40795 + rot: 3.141592653589793 rad + pos: -64.5,5.5 + parent: 2 + - uid: 37451 components: - type: Transform - pos: -3.5,0.5 - parent: 40666 - - uid: 40796 + rot: 3.141592653589793 rad + pos: -65.5,5.5 + parent: 2 + - uid: 37452 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 40666 - - uid: 40797 + pos: -40.5,-117.5 + parent: 2 + - uid: 37453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 40666 - - uid: 40798 + pos: 32.5,-14.5 + parent: 2 + - uid: 37454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 40666 - - uid: 40799 + rot: 3.141592653589793 rad + pos: -58.5,11.5 + parent: 2 + - uid: 37455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 40666 - - uid: 40800 + rot: 3.141592653589793 rad + pos: -58.5,12.5 + parent: 2 + - uid: 37456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,1.5 - parent: 40666 - - uid: 40801 + rot: 3.141592653589793 rad + pos: -63.5,8.5 + parent: 2 + - uid: 37457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 40666 - - uid: 40802 + rot: 3.141592653589793 rad + pos: -64.5,8.5 + parent: 2 + - uid: 37458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,2.5 - parent: 40666 - - uid: 40803 + rot: 3.141592653589793 rad + pos: -66.5,11.5 + parent: 2 + - uid: 37459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 40666 - - uid: 40804 + rot: 3.141592653589793 rad + pos: -66.5,10.5 + parent: 2 + - uid: 37460 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,3.5 - parent: 40666 - - uid: 40805 + pos: -66.5,12.5 + parent: 2 + - uid: 37461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,0.5 - parent: 40666 - - uid: 40806 + rot: 1.5707963267948966 rad + pos: -39.5,-117.5 + parent: 2 + - uid: 37462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 40666 - - uid: 40807 + rot: 1.5707963267948966 rad + pos: -38.5,-117.5 + parent: 2 + - uid: 37463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 40666 - - uid: 40808 + rot: 3.141592653589793 rad + pos: -67.5,8.5 + parent: 2 + - uid: 37464 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 40666 - - uid: 40809 + pos: -65.5,-0.5 + parent: 2 + - uid: 37465 components: - type: Transform - pos: 4.5,0.5 - parent: 40666 - - uid: 40810 + pos: 42.5,29.5 + parent: 2 + - uid: 37466 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 40666 - - uid: 41437 + pos: 26.5,11.5 + parent: 2 + - uid: 37468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-15.5 - parent: 40828 - - uid: 41438 + pos: 96.5,-47.5 + parent: 2 + - uid: 37469 components: - type: Transform - pos: 0.5,0.5 - parent: 40828 - - uid: 41439 + pos: 106.5,-47.5 + parent: 2 + - uid: 37470 components: - type: Transform - pos: 0.5,-3.5 - parent: 40828 - - uid: 41440 + pos: 97.5,-45.5 + parent: 2 + - uid: 37471 components: - type: Transform - pos: 2.5,0.5 - parent: 40828 - - uid: 41441 + pos: 40.5,29.5 + parent: 2 + - uid: 37472 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 40828 - - uid: 41442 + pos: 37.5,24.5 + parent: 2 + - uid: 37473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 40828 - - uid: 41443 + pos: 39.5,29.5 + parent: 2 + - uid: 37474 components: - type: Transform - pos: 2.5,-3.5 - parent: 40828 - - uid: 41444 + pos: 91.5,-46.5 + parent: 2 + - uid: 37475 components: - type: Transform - pos: -1.5,0.5 - parent: 40828 - - uid: 41445 + pos: 102.5,-46.5 + parent: 2 + - uid: 37476 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 40828 - - uid: 41446 + rot: 1.5707963267948966 rad + pos: -45.5,-41.5 + parent: 2 + - uid: 37477 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 40828 - - uid: 41447 + pos: 36.5,-14.5 + parent: 2 + - uid: 37478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 40828 - - uid: 41448 + rot: 1.5707963267948966 rad + pos: -47.5,-41.5 + parent: 2 + - uid: 37479 components: - type: Transform - pos: -1.5,-3.5 - parent: 40828 - - uid: 41449 + pos: 35.5,-17.5 + parent: 2 + - uid: 37480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 40828 - - uid: 41450 + pos: 28.5,5.5 + parent: 2 + - uid: 37481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 40828 - - uid: 41451 + rot: 3.141592653589793 rad + pos: 22.5,13.5 + parent: 2 + - uid: 37482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 40828 - - uid: 41452 + pos: 32.5,8.5 + parent: 2 + - uid: 37483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 40828 - - uid: 41453 + pos: 34.5,-21.5 + parent: 2 + - uid: 37484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 40828 - - uid: 41454 + pos: 28.5,-1.5 + parent: 2 + - uid: 37485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 40828 - - uid: 41455 + pos: 37.5,29.5 + parent: 2 + - uid: 37486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 40828 - - uid: 41456 + rot: 3.141592653589793 rad + pos: -46.5,-41.5 + parent: 2 + - uid: 37487 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-4.5 - parent: 40828 - - uid: 41457 + pos: 31.5,26.5 + parent: 2 + - uid: 37488 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 40828 - - uid: 41458 + pos: 33.5,30.5 + parent: 2 + - uid: 37489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 40828 - - uid: 41459 + rot: 3.141592653589793 rad + pos: -54.5,6.5 + parent: 2 + - uid: 37490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 40828 - - uid: 41460 + rot: 3.141592653589793 rad + pos: -54.5,8.5 + parent: 2 + - uid: 37491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 40828 - - uid: 41461 + rot: 3.141592653589793 rad + pos: -54.5,7.5 + parent: 2 + - uid: 37492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 40828 - - uid: 41462 + rot: 1.5707963267948966 rad + pos: -41.5,-118.5 + parent: 2 + - uid: 37493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 40828 - - uid: 41463 + rot: 1.5707963267948966 rad + pos: -42.5,-118.5 + parent: 2 + - uid: 37494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 40828 - - uid: 41464 + rot: 1.5707963267948966 rad + pos: -35.5,-118.5 + parent: 2 + - uid: 37495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 40828 - - uid: 41465 + rot: 1.5707963267948966 rad + pos: -35.5,-117.5 + parent: 2 + - uid: 37496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 40828 - - uid: 41466 + rot: 1.5707963267948966 rad + pos: -35.5,-116.5 + parent: 2 + - uid: 37497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 40828 - - uid: 41467 + pos: -67.5,5.5 + parent: 2 + - uid: 37498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 40828 - - uid: 41468 + rot: 3.141592653589793 rad + pos: -60.5,0.5 + parent: 2 + - uid: 37499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 40828 - - uid: 41469 + rot: 3.141592653589793 rad + pos: -65.5,8.5 + parent: 2 + - uid: 37500 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 40828 - - uid: 41470 + pos: 33.5,29.5 + parent: 2 + - uid: 37501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 40828 - - uid: 41471 + rot: 3.141592653589793 rad + pos: -62.5,0.5 + parent: 2 + - uid: 37502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 40828 - - uid: 41472 + rot: 3.141592653589793 rad + pos: -66.5,8.5 + parent: 2 + - uid: 37503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 40828 - - uid: 41473 + rot: 3.141592653589793 rad + pos: -66.5,9.5 + parent: 2 + - uid: 37504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 40828 - - uid: 41474 + rot: 1.5707963267948966 rad + pos: -35.5,-113.5 + parent: 2 + - uid: 37505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-3.5 - parent: 40828 - - uid: 41475 + rot: 1.5707963267948966 rad + pos: -35.5,-112.5 + parent: 2 + - uid: 37506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 40828 - - uid: 41476 + rot: 3.141592653589793 rad + pos: -21.5,-91.5 + parent: 2 + - uid: 37507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 40828 - - uid: 41477 + pos: 91.5,-48.5 + parent: 2 + - uid: 37508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 40828 - - uid: 41478 + pos: 97.5,-50.5 + parent: 2 + - uid: 37510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 40828 - - uid: 41479 + pos: -72.5,-0.5 + parent: 2 + - uid: 37511 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-7.5 - parent: 40828 - - uid: 41480 + pos: 33.5,27.5 + parent: 2 + - uid: 37512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 40828 - - uid: 41481 + rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 2 + - uid: 37513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 40828 - - uid: 41482 + rot: 3.141592653589793 rad + pos: 26.5,12.5 + parent: 2 + - uid: 37514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 40828 - - uid: 41483 + pos: 90.5,-51.5 + parent: 2 + - uid: 37515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 40828 - - uid: 41484 + rot: 3.141592653589793 rad + pos: 22.5,14.5 + parent: 2 + - uid: 37516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 40828 - - uid: 41485 + pos: 43.5,29.5 + parent: 2 + - uid: 37517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 40828 - - uid: 41486 + pos: -28.5,-106.5 + parent: 2 + - uid: 37519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 40828 - - uid: 41487 + pos: -28.5,-108.5 + parent: 2 + - uid: 37520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 40828 - - uid: 41488 + pos: -56.5,-104.5 + parent: 2 + - uid: 37521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 - parent: 40828 - - uid: 41489 + pos: -11.5,-86.5 + parent: 2 + - uid: 37522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-12.5 - parent: 40828 - - uid: 41490 + pos: -12.5,-86.5 + parent: 2 + - uid: 37523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-13.5 - parent: 40828 - - uid: 41491 + pos: -13.5,-86.5 + parent: 2 + - uid: 37524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-13.5 - parent: 40828 - - uid: 41492 + pos: -34.5,-77.5 + parent: 2 + - uid: 37525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-13.5 - parent: 40828 - - uid: 41493 + rot: 3.141592653589793 rad + pos: -21.5,-92.5 + parent: 2 + - uid: 37526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 40828 - - uid: 41494 + rot: 3.141592653589793 rad + pos: -21.5,-94.5 + parent: 2 + - uid: 37527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-13.5 - parent: 40828 - - uid: 41495 + rot: 3.141592653589793 rad + pos: 35.5,19.5 + parent: 2 + - uid: 37528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 40828 - - uid: 41496 + rot: 3.141592653589793 rad + pos: -66.5,2.5 + parent: 2 + - uid: 37529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 40828 - - uid: 41497 + rot: 3.141592653589793 rad + pos: -66.5,4.5 + parent: 2 + - uid: 37530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-10.5 - parent: 40828 - - uid: 41498 + rot: 3.141592653589793 rad + pos: -66.5,1.5 + parent: 2 + - uid: 37531 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 40828 - - uid: 41499 + pos: 34.5,26.5 + parent: 2 + - uid: 37532 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-13.5 - parent: 40828 - - uid: 41500 + pos: 34.5,16.5 + parent: 2 + - uid: 37533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-14.5 - parent: 40828 - - uid: 41501 + pos: 35.5,-15.5 + parent: 2 + - uid: 37534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-14.5 - parent: 40828 - - uid: 41502 + rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 2 + - uid: 37535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-14.5 - parent: 40828 - - uid: 41503 + pos: -69.5,6.5 + parent: 2 + - uid: 37536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-14.5 - parent: 40828 - - uid: 41504 + pos: -54.5,-93.5 + parent: 2 + - uid: 37538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 40828 - - uid: 41505 + pos: -55.5,-93.5 + parent: 2 + - uid: 37539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-13.5 - parent: 40828 - - uid: 41506 + pos: 102.5,-50.5 + parent: 2 + - uid: 37540 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 40828 - - uid: 41507 + pos: 33.5,26.5 + parent: 2 + - uid: 37541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 40828 - - uid: 41508 + pos: -42.5,-121.5 + parent: 2 + - uid: 37542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 40828 - - uid: 41509 + pos: 25.5,8.5 + parent: 2 + - uid: 37543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 40828 - - uid: 41510 + pos: 36.5,29.5 + parent: 2 + - uid: 37544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 40828 - - uid: 41511 + pos: 36.5,30.5 + parent: 2 + - uid: 37545 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 40828 - - uid: 41512 + pos: 32.5,26.5 + parent: 2 + - uid: 37546 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 40828 - - uid: 41513 + pos: 30.5,26.5 + parent: 2 + - uid: 37547 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 40828 - - uid: 41514 + rot: -1.5707963267948966 rad + pos: 29.5,26.5 + parent: 2 + - uid: 37548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-14.5 - parent: 40828 - - uid: 41515 + pos: 25.5,9.5 + parent: 2 + - uid: 37549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-14.5 - parent: 40828 - - uid: 41516 + pos: 33.5,-18.5 + parent: 2 + - uid: 37550 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 40828 - - uid: 41517 + pos: 28.5,26.5 + parent: 2 + - uid: 37551 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-14.5 - parent: 40828 - - uid: 41518 + pos: 27.5,26.5 + parent: 2 + - uid: 37552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-14.5 - parent: 40828 - - uid: 41519 + pos: -36.5,-103.5 + parent: 2 + - uid: 37553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 40828 - - uid: 41520 + pos: 105.5,-54.5 + parent: 2 + - uid: 37554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 40828 - - uid: 41521 + pos: 102.5,-47.5 + parent: 2 + - uid: 37555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 40828 - - uid: 41522 + pos: 97.5,-48.5 + parent: 2 + - uid: 37556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-10.5 - parent: 40828 - - uid: 41523 + pos: 91.5,-50.5 + parent: 2 + - uid: 37557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-9.5 - parent: 40828 - - uid: 41524 + pos: 98.5,-50.5 + parent: 2 + - uid: 37558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-8.5 - parent: 40828 - - uid: 41525 + pos: 39.5,24.5 + parent: 2 + - uid: 37559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-13.5 - parent: 40828 - - uid: 41526 + pos: 99.5,-51.5 + parent: 2 + - uid: 37560 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-3.5 - parent: 40828 - - uid: 41527 + pos: 105.5,-46.5 + parent: 2 + - uid: 37561 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-8.5 - parent: 40828 - - uid: 41528 + pos: 80.5,-46.5 + parent: 2 + - uid: 37562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-9.5 - parent: 40828 - - uid: 41529 + rot: 1.5707963267948966 rad + pos: -41.5,-116.5 + parent: 2 + - uid: 37563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-14.5 - parent: 40828 - - uid: 41530 + pos: 38.5,24.5 + parent: 2 + - uid: 37564 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-15.5 - parent: 40828 - - uid: 41531 + pos: -57.5,4.5 + parent: 2 + - uid: 37565 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-14.5 - parent: 40828 - - uid: 41532 + pos: -58.5,4.5 + parent: 2 + - uid: 37566 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-15.5 - parent: 40828 - - uid: 41533 + pos: -68.5,-5.5 + parent: 2 + - uid: 37567 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-14.5 - parent: 40828 - - uid: 41534 + pos: -67.5,-5.5 + parent: 2 + - uid: 37568 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-15.5 - parent: 40828 - - uid: 41535 + pos: -66.5,-5.5 + parent: 2 + - uid: 37569 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-14.5 - parent: 40828 - - uid: 41536 + pos: -65.5,-5.5 + parent: 2 + - uid: 37570 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-9.5 - parent: 40828 - - uid: 41537 + pos: -63.5,-5.5 + parent: 2 + - uid: 37571 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-8.5 - parent: 40828 - - uid: 41538 + pos: -62.5,-5.5 + parent: 2 + - uid: 37572 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-3.5 - parent: 40828 - - uid: 41539 + pos: -61.5,-5.5 + parent: 2 + - uid: 37573 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,0.5 - parent: 40828 - - uid: 41540 + pos: -60.5,-5.5 + parent: 2 + - uid: 37574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,0.5 - parent: 40828 - - uid: 41541 + rot: 3.141592653589793 rad + pos: -59.5,-5.5 + parent: 2 + - uid: 37575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,0.5 - parent: 40828 - - uid: 41542 + pos: 36.5,31.5 + parent: 2 + - uid: 37576 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-0.5 - parent: 40828 - - uid: 41543 + pos: 109.5,-54.5 + parent: 2 + - uid: 37577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 40828 - - uid: 41544 + pos: 104.5,-51.5 + parent: 2 + - uid: 37578 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 40828 - - uid: 41545 + pos: -29.5,-103.5 + parent: 2 + - uid: 37579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,1.5 - parent: 40828 - - uid: 41546 + pos: -29.5,-100.5 + parent: 2 + - uid: 37580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 - parent: 40828 - - uid: 41547 + pos: -54.5,-104.5 + parent: 2 + - uid: 37581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,2.5 - parent: 40828 - - uid: 41548 + rot: 3.141592653589793 rad + pos: -54.5,12.5 + parent: 2 + - uid: 37582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,3.5 - parent: 40828 - - uid: 41549 + rot: 3.141592653589793 rad + pos: -54.5,11.5 + parent: 2 + - uid: 37583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,4.5 - parent: 40828 - - uid: 41550 + rot: 3.141592653589793 rad + pos: -54.5,10.5 + parent: 2 + - uid: 37584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,5.5 - parent: 40828 - - uid: 41551 + rot: 3.141592653589793 rad + pos: -54.5,9.5 + parent: 2 + - uid: 37585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,6.5 - parent: 40828 - - uid: 41552 + rot: 3.141592653589793 rad + pos: -58.5,9.5 + parent: 2 + - uid: 37586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,7.5 - parent: 40828 - - uid: 41553 + rot: 3.141592653589793 rad + pos: -54.5,4.5 + parent: 2 + - uid: 37587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 40828 - - uid: 41554 + rot: 3.141592653589793 rad + pos: -55.5,4.5 + parent: 2 + - uid: 37588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 40828 - - uid: 41555 + rot: 3.141592653589793 rad + pos: -56.5,4.5 + parent: 2 + - uid: 37589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,10.5 - parent: 40828 - - uid: 41556 + rot: 3.141592653589793 rad + pos: -58.5,2.5 + parent: 2 + - uid: 37590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,11.5 - parent: 40828 - - uid: 41557 + rot: 3.141592653589793 rad + pos: -58.5,3.5 + parent: 2 + - uid: 37591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,12.5 - parent: 40828 - - uid: 41558 + rot: 3.141592653589793 rad + pos: -71.5,5.5 + parent: 2 + - uid: 37592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,13.5 - parent: 40828 - - uid: 41559 + rot: 3.141592653589793 rad + pos: -70.5,5.5 + parent: 2 + - uid: 37593 components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,14.5 - parent: 40828 - - uid: 41560 + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,5.5 + parent: 2 + - uid: 37594 components: - type: Transform - pos: 7.5,15.5 - parent: 40828 - - uid: 41561 + rot: 3.141592653589793 rad + pos: -73.5,5.5 + parent: 2 + - uid: 37595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,1.5 - parent: 40828 - - uid: 41562 + rot: 3.141592653589793 rad + pos: -69.5,5.5 + parent: 2 + - uid: 37596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,2.5 - parent: 40828 - - uid: 41563 + rot: 3.141592653589793 rad + pos: -74.5,5.5 + parent: 2 + - uid: 37597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 40828 - - uid: 41564 + rot: 3.141592653589793 rad + pos: -70.5,-28.5 + parent: 2 + - uid: 37598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,4.5 - parent: 40828 - - uid: 41565 + rot: 3.141592653589793 rad + pos: -71.5,-28.5 + parent: 2 + - uid: 37599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,5.5 - parent: 40828 - - uid: 41566 + rot: 3.141592653589793 rad + pos: -72.5,-28.5 + parent: 2 + - uid: 37600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,6.5 - parent: 40828 - - uid: 41567 + rot: 3.141592653589793 rad + pos: -73.5,-28.5 + parent: 2 + - uid: 37601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,7.5 - parent: 40828 - - uid: 41568 + rot: 3.141592653589793 rad + pos: -59.5,-4.5 + parent: 2 + - uid: 37602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,8.5 - parent: 40828 - - uid: 41569 + pos: 41.5,26.5 + parent: 2 + - uid: 37603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 40828 - - uid: 41570 + pos: 40.5,26.5 + parent: 2 + - uid: 37604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 40828 - - uid: 41571 + pos: 42.5,26.5 + parent: 2 + - uid: 37605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,11.5 - parent: 40828 - - uid: 41572 + pos: 39.5,26.5 + parent: 2 + - uid: 37606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,12.5 - parent: 40828 - - uid: 41573 + pos: 43.5,26.5 + parent: 2 + - uid: 37607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,13.5 - parent: 40828 - - uid: 41574 + pos: 38.5,26.5 + parent: 2 + - uid: 37608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,14.5 - parent: 40828 - - uid: 41575 + pos: 37.5,26.5 + parent: 2 + - uid: 37609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,0.5 - parent: 40828 - - uid: 41576 + pos: 36.5,26.5 + parent: 2 + - uid: 37610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,0.5 - parent: 40828 - - uid: 41577 + rot: 3.141592653589793 rad + pos: -74.5,-28.5 + parent: 2 + - uid: 37611 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,0.5 - parent: 40828 - - uid: 41578 + pos: -70.5,-20.5 + parent: 2 + - uid: 37612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 40828 - - uid: 41579 + pos: 36.5,32.5 + parent: 2 + - uid: 37613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 40828 - - uid: 41580 + pos: 37.5,32.5 + parent: 2 + - uid: 37614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 40828 - - uid: 41581 + pos: 35.5,32.5 + parent: 2 + - uid: 37615 components: - type: Transform - pos: -6.5,15.5 - parent: 40828 - - uid: 41582 + pos: 107.5,-54.5 + parent: 2 + - uid: 37616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,14.5 - parent: 40828 - - uid: 41583 + pos: 35.5,33.5 + parent: 2 + - uid: 37617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,13.5 - parent: 40828 - - uid: 41584 + pos: 38.5,32.5 + parent: 2 + - uid: 37618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,14.5 - parent: 40828 - - uid: 41585 + pos: 92.5,-47.5 + parent: 2 + - uid: 37619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,13.5 - parent: 40828 - - uid: 41901 + pos: 90.5,-46.5 + parent: 2 + - uid: 37620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 41669 - - uid: 41902 + pos: 102.5,-51.5 + parent: 2 + - uid: 37621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 41669 - - uid: 41903 + pos: 99.5,-53.5 + parent: 2 + - uid: 37623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 41669 - - uid: 41904 + pos: 107.5,-52.5 + parent: 2 + - uid: 37624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 41669 - - uid: 41905 + pos: 107.5,-51.5 + parent: 2 + - uid: 37625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 41669 - - uid: 41906 + pos: 99.5,-50.5 + parent: 2 + - uid: 37626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 41669 - - uid: 41907 + pos: 103.5,-51.5 + parent: 2 + - uid: 37627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 41669 - - uid: 41908 + pos: 88.5,-54.5 + parent: 2 + - uid: 37628 components: - type: Transform - pos: 8.5,0.5 - parent: 41669 - - uid: 41909 + pos: 91.5,-47.5 + parent: 2 + - uid: 37629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 41669 - - uid: 41910 + pos: 95.5,-47.5 + parent: 2 + - uid: 37631 components: - type: Transform - pos: 0.5,1.5 - parent: 41669 - - uid: 41911 + pos: 106.5,-48.5 + parent: 2 + - uid: 37632 components: - type: Transform - pos: 8.5,1.5 - parent: 41669 - - uid: 41912 + pos: 97.5,-49.5 + parent: 2 + - uid: 37633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 41669 - - uid: 41913 + pos: 94.5,-47.5 + parent: 2 + - uid: 37634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 41669 - - uid: 41914 + pos: 106.5,-54.5 + parent: 2 + - uid: 37635 components: - type: Transform - pos: 7.5,-1.5 - parent: 41669 - - uid: 41915 + pos: 93.5,-47.5 + parent: 2 + - uid: 37636 components: - type: Transform - pos: 7.5,-2.5 - parent: 41669 - - uid: 41916 + pos: 106.5,-46.5 + parent: 2 + - uid: 37637 components: - type: Transform - pos: 7.5,-3.5 - parent: 41669 - - uid: 41917 + pos: 100.5,-46.5 + parent: 2 + - uid: 37638 components: - type: Transform - pos: 7.5,-4.5 - parent: 41669 - - uid: 41918 + pos: 97.5,-46.5 + parent: 2 + - uid: 37639 components: - type: Transform - pos: 7.5,-5.5 - parent: 41669 - - uid: 41919 + pos: 104.5,-46.5 + parent: 2 + - uid: 37640 components: - type: Transform - pos: 7.5,-6.5 - parent: 41669 - - uid: 41920 + pos: 101.5,-46.5 + parent: 2 + - uid: 37641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 41669 - - uid: 41921 + pos: 107.5,-53.5 + parent: 2 + - uid: 37642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 41669 - - uid: 41922 + pos: 92.5,-51.5 + parent: 2 + - uid: 37643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 41669 - - uid: 41923 + pos: 92.5,-54.5 + parent: 2 + - uid: 37644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 41669 - - uid: 41924 + pos: 105.5,-51.5 + parent: 2 + - uid: 37645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-11.5 - parent: 41669 - - uid: 41925 + pos: 88.5,-50.5 + parent: 2 + - uid: 37646 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-11.5 - parent: 41669 - - uid: 41926 + pos: 106.5,-51.5 + parent: 2 + - uid: 37647 components: - type: Transform - pos: 7.5,-7.5 - parent: 41669 - - uid: 41927 + pos: 103.5,-46.5 + parent: 2 + - uid: 37648 components: - type: Transform - pos: 1.5,-7.5 - parent: 41669 - - uid: 41928 + pos: 91.5,-51.5 + parent: 2 + - uid: 37649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 41669 - - uid: 41929 + pos: 91.5,-49.5 + parent: 2 + - uid: 37650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 - parent: 41669 - - uid: 41930 + pos: 102.5,-48.5 + parent: 2 + - uid: 37651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 41669 - - uid: 41931 + pos: 92.5,-52.5 + parent: 2 + - uid: 37652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 41669 - - uid: 41932 + pos: 43.5,-61.5 + parent: 2 + - uid: 37653 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 41669 - - uid: 41933 + pos: 93.5,-43.5 + parent: 2 + - uid: 37654 components: - type: Transform - pos: 2.5,-0.5 - parent: 41669 - - uid: 41934 + rot: -1.5707963267948966 rad + pos: 95.5,-43.5 + parent: 2 + - uid: 37655 components: - type: Transform - pos: 3.5,-9.5 - parent: 41669 - - uid: 41935 + rot: -1.5707963267948966 rad + pos: 94.5,-43.5 + parent: 2 + - uid: 37656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 41669 - - uid: 41936 + rot: -1.5707963267948966 rad + pos: 102.5,-43.5 + parent: 2 + - uid: 37657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 41669 - - uid: 41937 + rot: -1.5707963267948966 rad + pos: 96.5,-43.5 + parent: 2 + - uid: 37658 components: - type: Transform - pos: 5.5,-9.5 - parent: 41669 - - uid: 41938 + rot: -1.5707963267948966 rad + pos: 100.5,-43.5 + parent: 2 + - uid: 37659 components: - type: Transform - pos: 1.5,2.5 - parent: 41669 - - uid: 41939 + rot: -1.5707963267948966 rad + pos: 101.5,-43.5 + parent: 2 + - uid: 37661 components: - type: Transform - pos: 7.5,2.5 - parent: 41669 - - uid: 41940 + pos: 87.5,-50.5 + parent: 2 + - uid: 37662 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 41669 - - uid: 41941 + pos: 87.5,-46.5 + parent: 2 + - uid: 37665 components: - type: Transform - pos: 4.5,-3.5 - parent: 41669 - - uid: 41942 + pos: 87.5,-44.5 + parent: 2 + - uid: 37666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-3.5 - parent: 41669 - - uid: 41943 + pos: 87.5,-45.5 + parent: 2 + - uid: 37668 components: - type: Transform - pos: 2.5,-3.5 - parent: 41669 - - uid: 41944 + pos: 87.5,-47.5 + parent: 2 + - uid: 37669 components: - type: Transform - pos: 4.5,-0.5 - parent: 41669 - - uid: 41945 + pos: 87.5,-49.5 + parent: 2 + - uid: 37670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 41669 -- proto: WallShuttleDiagonal - entities: - - uid: 40811 + pos: 41.5,-61.5 + parent: 2 + - uid: 37671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 40666 - - uid: 40812 + pos: 41.5,-62.5 + parent: 2 + - uid: 37672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 40666 - - uid: 40813 + pos: 41.5,-63.5 + parent: 2 + - uid: 37673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 40666 - - uid: 40814 + pos: 41.5,-65.5 + parent: 2 + - uid: 37674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 40666 - - uid: 40815 + rot: -1.5707963267948966 rad + pos: 103.5,-43.5 + parent: 2 + - uid: 37675 components: - type: Transform - pos: -2.5,3.5 - parent: 40666 - - uid: 40816 + pos: 99.5,-43.5 + parent: 2 + - uid: 37676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 40666 - - uid: 40817 + pos: 97.5,-43.5 + parent: 2 + - uid: 37677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 40666 - - uid: 40818 + pos: 92.5,-43.5 + parent: 2 + - uid: 37678 components: - type: Transform - pos: -4.5,3.5 - parent: 40666 - - uid: 41586 + pos: 90.5,-43.5 + parent: 2 + - uid: 37679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-15.5 - parent: 40828 - - uid: 41587 + pos: 89.5,-43.5 + parent: 2 + - uid: 37680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 40828 - - uid: 41588 + rot: -1.5707963267948966 rad + pos: 103.5,-38.5 + parent: 2 + - uid: 37681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 - parent: 40828 - - uid: 41589 + rot: -1.5707963267948966 rad + pos: 103.5,-39.5 + parent: 2 + - uid: 37682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-15.5 - parent: 40828 - - uid: 41590 + pos: 41.5,-66.5 + parent: 2 + - uid: 37683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,12.5 - parent: 40828 - - uid: 41591 + pos: 41.5,-64.5 + parent: 2 + - uid: 37685 components: - type: Transform - pos: 5.5,1.5 - parent: 40828 - - uid: 41592 + pos: 88.5,-43.5 + parent: 2 + - uid: 37686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,1.5 - parent: 40828 - - uid: 41593 + pos: 87.5,-43.5 + parent: 2 + - uid: 37687 components: - type: Transform - pos: -6.5,16.5 - parent: 40828 - - uid: 41594 + pos: 49.5,-67.5 + parent: 2 + - uid: 37688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,12.5 - parent: 40828 - - uid: 41595 + pos: 49.5,-61.5 + parent: 2 + - uid: 37689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,16.5 - parent: 40828 - - uid: 41946 + pos: 48.5,-61.5 + parent: 2 + - uid: 37690 components: - type: Transform - pos: 0.5,-4.5 - parent: 41669 - - uid: 41947 + pos: 47.5,-61.5 + parent: 2 + - uid: 37691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-3.5 - parent: 41669 - - uid: 41948 + pos: 46.5,-61.5 + parent: 2 + - uid: 37692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-4.5 - parent: 41669 - - uid: 41949 + pos: 45.5,-61.5 + parent: 2 + - uid: 37693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 41669 - - uid: 41950 + pos: 44.5,-61.5 + parent: 2 + - uid: 37694 components: - type: Transform - pos: 0.5,2.5 - parent: 41669 - - uid: 41951 + pos: 42.5,-61.5 + parent: 2 + - uid: 37695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,2.5 - parent: 41669 - - uid: 41952 + pos: 48.5,-67.5 + parent: 2 + - uid: 37696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 41669 - - uid: 41953 + pos: 47.5,-67.5 + parent: 2 + - uid: 37697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 41669 - - uid: 41954 + pos: 46.5,-67.5 + parent: 2 + - uid: 37698 components: - type: Transform - pos: 0.5,-7.5 - parent: 41669 - - uid: 41955 + pos: 45.5,-67.5 + parent: 2 + - uid: 37699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 41669 - - uid: 41956 + pos: 44.5,-67.5 + parent: 2 + - uid: 37700 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-12.5 - parent: 41669 - - uid: 41957 + pos: 48.5,-85.5 + parent: 2 + - uid: 37701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-7.5 - parent: 41669 - - uid: 41958 + pos: 33.5,31.5 + parent: 2 + - uid: 37702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-10.5 - parent: 41669 - - uid: 41959 + pos: 32.5,31.5 + parent: 2 + - uid: 37704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 41669 - - uid: 41960 + pos: 5.5,2.5 + parent: 2 + - uid: 37705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 41669 - - uid: 41961 + pos: 4.5,2.5 + parent: 2 + - uid: 37706 components: - type: Transform - pos: 1.5,3.5 - parent: 41669 - - uid: 41962 + pos: -9.5,2.5 + parent: 2 + - uid: 37707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-10.5 - parent: 41669 - - uid: 41963 + pos: -8.5,2.5 + parent: 2 + - uid: 37708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-10.5 - parent: 41669 - - uid: 41964 + pos: -1.5,5.5 + parent: 2 + - uid: 37709 components: - type: Transform - pos: 5.5,-7.5 - parent: 41669 - - uid: 41965 + pos: -1.5,6.5 + parent: 2 + - uid: 37710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 41669 -- proto: WallSolid - entities: - - uid: 233 + pos: -7.5,5.5 + parent: 2 + - uid: 37711 components: - type: Transform - pos: 29.5,23.5 + rot: 3.141592653589793 rad + pos: 4.5,1.5 parent: 2 - - uid: 398 + - uid: 37712 components: - type: Transform - pos: -10.5,-80.5 + rot: 3.141592653589793 rad + pos: 4.5,0.5 parent: 2 - - uid: 742 + - uid: 37713 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,-104.5 + pos: 4.5,-0.5 parent: 2 - - uid: 1037 + - uid: 37714 components: - type: Transform - pos: 38.5,18.5 + rot: 3.141592653589793 rad + pos: 10.5,2.5 parent: 2 - - uid: 1837 + - uid: 37715 components: - type: Transform - pos: -70.5,0.5 + rot: 3.141592653589793 rad + pos: 10.5,1.5 parent: 2 - - uid: 2337 + - uid: 37716 components: - type: Transform - pos: -18.5,-99.5 + rot: 3.141592653589793 rad + pos: 10.5,0.5 parent: 2 - - uid: 2446 + - uid: 37717 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,18.5 + pos: 10.5,-0.5 parent: 2 - - uid: 2546 + - uid: 37718 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,21.5 + pos: 19.5,2.5 parent: 2 - - uid: 4511 + - uid: 37719 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-97.5 + pos: 19.5,1.5 parent: 2 - - uid: 4620 + - uid: 37720 components: - type: Transform - pos: -6.5,-92.5 + pos: 21.5,1.5 parent: 2 - - uid: 5143 + - uid: 37721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,22.5 + pos: 21.5,0.5 parent: 2 - - uid: 5820 + - uid: 37722 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-99.5 + pos: 22.5,0.5 parent: 2 - - uid: 6120 + - uid: 37723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,1.5 + pos: 23.5,-0.5 parent: 2 - - uid: 6330 + - uid: 37724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-103.5 + pos: 24.5,-0.5 parent: 2 - - uid: 6990 + - uid: 37725 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-45.5 + pos: 25.5,-0.5 parent: 2 - - uid: 7680 + - uid: 37726 components: - type: Transform - pos: 44.5,21.5 + pos: 25.5,-1.5 parent: 2 - - uid: 8466 + - uid: 37727 components: - type: Transform - pos: 43.5,21.5 + pos: 28.5,-3.5 parent: 2 - - uid: 9709 + - uid: 37728 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-95.5 + pos: 29.5,-3.5 parent: 2 - - uid: 9710 + - uid: 37729 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-95.5 + pos: 29.5,-6.5 parent: 2 - - uid: 11520 + - uid: 37730 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,19.5 + pos: 30.5,-6.5 parent: 2 - - uid: 11673 + - uid: 37731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,22.5 + pos: 30.5,-8.5 parent: 2 - - uid: 11737 + - uid: 37732 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,18.5 + pos: 31.5,-8.5 parent: 2 - - uid: 11985 + - uid: 37733 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-95.5 + pos: 31.5,-9.5 parent: 2 - - uid: 11986 + - uid: 37734 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-95.5 + pos: 31.5,-10.5 parent: 2 - - uid: 11987 + - uid: 37735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-95.5 + pos: 21.5,2.5 parent: 2 - - uid: 12541 + - uid: 37736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,4.5 + pos: 21.5,3.5 parent: 2 - - uid: 12719 + - uid: 37737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-101.5 + pos: 21.5,4.5 parent: 2 - - uid: 12791 + - uid: 37738 components: - type: Transform - pos: -56.5,-93.5 + pos: 21.5,5.5 parent: 2 - - uid: 13098 + - uid: 37739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-98.5 + pos: 21.5,6.5 parent: 2 - - uid: 13349 + - uid: 37740 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-44.5 + pos: 21.5,7.5 parent: 2 - - uid: 13354 + - uid: 37741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,22.5 + pos: 35.5,-16.5 parent: 2 - - uid: 13710 + - uid: 37742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,20.5 + pos: 28.5,15.5 parent: 2 - - uid: 15049 + - uid: 37743 components: - type: Transform - pos: -71.5,0.5 + pos: 29.5,15.5 parent: 2 - - uid: 15105 + - uid: 37744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-101.5 + pos: 31.5,15.5 parent: 2 - - uid: 15108 + - uid: 37745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,22.5 + pos: 32.5,15.5 parent: 2 - - uid: 15566 + - uid: 37746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-101.5 + pos: 39.5,15.5 parent: 2 - - uid: 15691 + - uid: 37747 components: - type: Transform - pos: 25.5,22.5 + pos: 39.5,14.5 parent: 2 - - uid: 16084 + - uid: 37748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-98.5 + pos: 39.5,13.5 parent: 2 - - uid: 16141 + - uid: 37749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,6.5 + pos: 39.5,12.5 parent: 2 - - uid: 16285 + - uid: 37750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,2.5 + pos: 39.5,11.5 parent: 2 - - uid: 17336 + - uid: 37751 components: - type: Transform - pos: 32.5,19.5 + pos: 39.5,10.5 parent: 2 - - uid: 17340 + - uid: 37752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,16.5 + pos: 39.5,9.5 parent: 2 - - uid: 18585 + - uid: 37753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,22.5 + pos: 39.5,8.5 parent: 2 - - uid: 19754 + - uid: 37754 components: - type: Transform - pos: -1.5,-84.5 + pos: 39.5,16.5 parent: 2 - - uid: 19893 + - uid: 37755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,16.5 + pos: 38.5,16.5 parent: 2 - - uid: 19929 + - uid: 37756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-99.5 + pos: 37.5,16.5 parent: 2 - - uid: 19961 + - uid: 37757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 + pos: 36.5,16.5 parent: 2 - - uid: 22528 + - uid: 37760 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-100.5 + pos: 37.5,8.5 parent: 2 - - uid: 24109 + - uid: 37761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,3.5 + pos: 38.5,8.5 parent: 2 - - uid: 26330 + - uid: 37762 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-101.5 + pos: 22.5,10.5 parent: 2 - - uid: 26698 + - uid: 37763 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-101.5 + pos: 38.5,-8.5 parent: 2 - - uid: 28305 + - uid: 37764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-52.5 + pos: 38.5,-6.5 parent: 2 - - uid: 28719 + - uid: 37765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-99.5 + pos: 38.5,-10.5 parent: 2 - - uid: 28728 + - uid: 37766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-98.5 + pos: 39.5,-10.5 parent: 2 - - uid: 30825 + - uid: 37767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-99.5 + pos: 39.5,-11.5 parent: 2 - - uid: 30826 + - uid: 37768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-99.5 + pos: 39.5,-13.5 parent: 2 - - uid: 31714 + - uid: 37769 components: - type: Transform - pos: 29.5,25.5 + pos: 39.5,-14.5 parent: 2 - - uid: 32020 + - uid: 37770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-96.5 + pos: 39.5,-15.5 parent: 2 - - uid: 32021 + - uid: 37771 components: - type: Transform - pos: -19.5,-100.5 + pos: 39.5,-16.5 parent: 2 - - uid: 32699 + - uid: 37772 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-97.5 + pos: 39.5,-17.5 parent: 2 - - uid: 33181 + - uid: 37773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-97.5 + pos: 39.5,-18.5 parent: 2 - - uid: 33294 + - uid: 37774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-102.5 + pos: 38.5,-18.5 parent: 2 - - uid: 33295 + - uid: 37775 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-100.5 + pos: 37.5,-18.5 parent: 2 - - uid: 33521 + - uid: 37776 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-97.5 + pos: 36.5,-18.5 parent: 2 - - uid: 34197 + - uid: 37777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-101.5 + pos: 35.5,-18.5 parent: 2 - - uid: 34620 + - uid: 37778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-99.5 + pos: 34.5,-18.5 parent: 2 - - uid: 34923 + - uid: 37779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-100.5 + pos: 31.5,-19.5 parent: 2 - - uid: 34925 + - uid: 37780 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-99.5 + pos: 32.5,-18.5 parent: 2 - - uid: 35014 + - uid: 37781 components: - type: Transform - pos: -18.5,-100.5 + pos: 31.5,-18.5 parent: 2 - - uid: 35082 + - uid: 37782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-97.5 + pos: 31.5,-21.5 parent: 2 - - uid: 35542 + - uid: 37783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-99.5 + pos: -62.5,-41.5 parent: 2 - - uid: 35543 + - uid: 37784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-98.5 + pos: 31.5,-22.5 parent: 2 - - uid: 35544 + - uid: 37785 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-97.5 + pos: 32.5,-22.5 parent: 2 - - uid: 35545 + - uid: 37786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-97.5 + pos: 33.5,-22.5 parent: 2 - - uid: 35546 + - uid: 37787 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-97.5 + pos: 34.5,-22.5 parent: 2 - - uid: 35547 + - uid: 37788 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-97.5 + pos: 34.5,-20.5 parent: 2 - - uid: 36373 + - uid: 37789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-104.5 + pos: 34.5,-19.5 parent: 2 - - uid: 36632 + - uid: 37790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-99.5 + pos: -14.5,-84.5 parent: 2 - - uid: 36651 + - uid: 37791 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-99.5 + pos: -29.5,-72.5 parent: 2 - - uid: 36653 + - uid: 37792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-105.5 + rot: -1.5707963267948966 rad + pos: 54.5,-76.5 parent: 2 - - uid: 36664 + - uid: 37793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-106.5 + pos: -14.5,-85.5 parent: 2 - - uid: 37335 + - uid: 37794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-17.5 + pos: 23.5,-80.5 parent: 2 - - uid: 37336 + - uid: 37795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-22.5 + pos: 23.5,-81.5 parent: 2 - - uid: 37337 + - uid: 37797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-22.5 + pos: -47.5,-79.5 parent: 2 - - uid: 37338 + - uid: 37798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-80.5 + pos: 23.5,10.5 parent: 2 - - uid: 37339 + - uid: 37799 components: - type: Transform - pos: 21.5,-77.5 + pos: 34.5,-14.5 parent: 2 - - uid: 37340 + - uid: 37800 components: - type: Transform - pos: 42.5,-12.5 + pos: 78.5,-30.5 parent: 2 - - uid: 37347 + - uid: 37801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-34.5 + pos: 72.5,-30.5 parent: 2 - - uid: 37348 + - uid: 37802 components: - type: Transform - pos: -19.5,2.5 + pos: 79.5,-30.5 parent: 2 - - uid: 37349 + - uid: 37803 components: - type: Transform - pos: -22.5,2.5 + pos: 68.5,-23.5 parent: 2 - - uid: 37350 + - uid: 37804 components: - type: Transform - pos: -23.5,2.5 + pos: 70.5,-23.5 parent: 2 - - uid: 37351 + - uid: 37805 components: - type: Transform - pos: -24.5,2.5 + pos: 72.5,-25.5 parent: 2 - - uid: 37352 + - uid: 37806 components: - type: Transform - pos: -25.5,8.5 + pos: 71.5,-23.5 parent: 2 - - uid: 37353 + - uid: 37807 components: - type: Transform - pos: -25.5,7.5 + pos: 74.5,-25.5 parent: 2 - - uid: 37354 + - uid: 37808 components: - type: Transform - pos: -25.5,9.5 + pos: 73.5,-25.5 parent: 2 - - uid: 37355 + - uid: 37809 components: - type: Transform - pos: -25.5,6.5 + pos: 75.5,-25.5 parent: 2 - - uid: 37356 + - uid: 37813 components: - type: Transform - pos: -25.5,5.5 + pos: 61.5,-27.5 parent: 2 - - uid: 37357 + - uid: 37814 components: - type: Transform - pos: -25.5,4.5 + pos: 61.5,-26.5 parent: 2 - - uid: 37358 + - uid: 37815 components: - type: Transform - pos: -25.5,3.5 + pos: 61.5,-25.5 parent: 2 - - uid: 37359 + - uid: 37816 components: - type: Transform - pos: -25.5,2.5 + pos: 61.5,-24.5 parent: 2 - - uid: 37360 + - uid: 37817 components: - type: Transform - pos: -19.5,9.5 + pos: 61.5,-30.5 parent: 2 - - uid: 37361 + - uid: 37818 components: - type: Transform - pos: -20.5,9.5 + pos: 70.5,-30.5 parent: 2 - - uid: 37362 + - uid: 37819 components: - type: Transform - pos: -21.5,9.5 + pos: 44.5,-50.5 parent: 2 - - uid: 37363 + - uid: 37820 components: - type: Transform - pos: -22.5,9.5 + pos: 62.5,-30.5 parent: 2 - - uid: 37364 + - uid: 37821 components: - type: Transform - pos: -23.5,9.5 + pos: 61.5,-28.5 parent: 2 - - uid: 37365 + - uid: 37822 components: - type: Transform - pos: -24.5,9.5 + pos: 61.5,-29.5 parent: 2 - - uid: 37366 + - uid: 37823 components: - type: Transform - pos: -49.5,-107.5 + pos: 71.5,-24.5 parent: 2 - - uid: 37367 + - uid: 37824 components: - type: Transform - pos: 38.5,-14.5 + pos: 71.5,-25.5 parent: 2 - - uid: 37368 + - uid: 37825 components: - type: Transform - pos: 27.5,-1.5 + pos: 71.5,-26.5 parent: 2 - - uid: 37369 + - uid: 37826 components: - type: Transform - pos: 31.5,-17.5 + pos: 71.5,-27.5 parent: 2 - - uid: 37370 + - uid: 37827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-37.5 + pos: 47.5,-30.5 parent: 2 - - uid: 37371 + - uid: 37828 components: - type: Transform - pos: 35.5,-14.5 + pos: 66.5,-23.5 parent: 2 - - uid: 37372 + - uid: 37829 components: - type: Transform - pos: 97.5,-47.5 + pos: 62.5,-23.5 parent: 2 - - uid: 37373 + - uid: 37830 components: - type: Transform - pos: 106.5,-50.5 + pos: 61.5,-23.5 parent: 2 - - uid: 37374 + - uid: 37831 components: - type: Transform - pos: 107.5,-46.5 + pos: 64.5,-23.5 parent: 2 - - uid: 37376 + - uid: 37832 components: - type: Transform - pos: 88.5,-51.5 + pos: 63.5,-23.5 parent: 2 - - uid: 37377 + - uid: 37833 components: - type: Transform - pos: -36.5,-77.5 + pos: 65.5,-23.5 parent: 2 - - uid: 37378 + - uid: 37834 components: - type: Transform - pos: -35.5,-77.5 + pos: 58.5,-30.5 parent: 2 - - uid: 37379 + - uid: 37835 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-93.5 + pos: 59.5,-30.5 parent: 2 - - uid: 37380 + - uid: 37836 components: - type: Transform - pos: 31.5,-16.5 + pos: 56.5,-30.5 parent: 2 - - uid: 37381 + - uid: 37837 components: - type: Transform - pos: 24.5,5.5 + pos: 57.5,-30.5 parent: 2 - - uid: 37382 + - uid: 37838 components: - type: Transform - pos: 25.5,10.5 + pos: 55.5,-30.5 parent: 2 - - uid: 37383 + - uid: 37839 components: - type: Transform - pos: 24.5,10.5 + pos: 80.5,-26.5 parent: 2 - - uid: 37384 + - uid: 37840 components: - type: Transform - pos: 25.5,5.5 + pos: 71.5,-28.5 parent: 2 - - uid: 37385 + - uid: 37841 components: - type: Transform - pos: 22.5,5.5 + pos: 71.5,-29.5 parent: 2 - - uid: 37386 + - uid: 37842 components: - type: Transform - pos: 25.5,7.5 + pos: 71.5,-30.5 parent: 2 - - uid: 37387 + - uid: 37843 components: - type: Transform - pos: 32.5,16.5 + pos: 50.5,-30.5 parent: 2 - - uid: 37388 + - uid: 37844 components: - type: Transform - pos: 25.5,6.5 + pos: 49.5,-30.5 parent: 2 - - uid: 37389 + - uid: 37845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,11.5 + pos: 48.5,-30.5 parent: 2 - - uid: 37391 + - uid: 37846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,0.5 + pos: 80.5,-30.5 parent: 2 - - uid: 37392 + - uid: 37847 components: - type: Transform - pos: -45.5,-7.5 + pos: 80.5,-29.5 parent: 2 - - uid: 37393 + - uid: 37848 components: - type: Transform - pos: -46.5,-7.5 + pos: 67.5,-23.5 parent: 2 - - uid: 37394 + - uid: 37849 components: - type: Transform - pos: -47.5,-7.5 + pos: 31.5,-25.5 parent: 2 - - uid: 37395 + - uid: 37850 components: - type: Transform - pos: -49.5,-7.5 + pos: 31.5,-23.5 parent: 2 - - uid: 37396 + - uid: 37851 components: - type: Transform - pos: -50.5,-7.5 + pos: 46.5,-28.5 parent: 2 - - uid: 37397 + - uid: 37852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-37.5 + pos: 46.5,-29.5 parent: 2 - - uid: 37398 + - uid: 37853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-30.5 + pos: 46.5,-30.5 parent: 2 - - uid: 37399 + - uid: 37854 components: - type: Transform - pos: -58.5,-39.5 + pos: 84.5,-20.5 parent: 2 - - uid: 37400 + - uid: 37855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-107.5 + pos: 84.5,-24.5 parent: 2 - - uid: 37401 + - uid: 37856 components: - type: Transform - pos: -29.5,-101.5 + pos: 31.5,-30.5 parent: 2 - - uid: 37402 + - uid: 37857 components: - type: Transform - pos: -29.5,-102.5 + pos: 42.5,-30.5 parent: 2 - - uid: 37403 + - uid: 37858 components: - type: Transform - pos: -29.5,-104.5 + pos: 41.5,-30.5 parent: 2 - - uid: 37404 + - uid: 37859 components: - type: Transform - pos: -28.5,-104.5 + pos: 40.5,-30.5 parent: 2 - - uid: 37405 + - uid: 37860 components: - type: Transform - pos: 80.5,-48.5 + pos: 39.5,-30.5 parent: 2 - - uid: 37406 + - uid: 37861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-117.5 + pos: 38.5,-30.5 parent: 2 - - uid: 37407 + - uid: 37862 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-50.5 + pos: 51.5,-79.5 parent: 2 - - uid: 37408 + - uid: 37863 components: - type: Transform - pos: -27.5,-95.5 + pos: 37.5,-30.5 parent: 2 - - uid: 37410 + - uid: 37864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-117.5 + pos: 36.5,-30.5 parent: 2 - - uid: 37412 + - uid: 37865 components: - type: Transform - pos: -58.5,-38.5 + pos: 35.5,-30.5 parent: 2 - - uid: 37413 + - uid: 37866 components: - type: Transform - pos: -58.5,-40.5 + pos: 34.5,-30.5 parent: 2 - - uid: 37414 + - uid: 37867 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-115.5 + pos: 33.5,-30.5 parent: 2 - - uid: 37415 + - uid: 37868 components: - type: Transform - pos: -57.5,-41.5 + pos: 32.5,-30.5 parent: 2 - - uid: 37416 + - uid: 37869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-37.5 + pos: 80.5,-34.5 parent: 2 - - uid: 37417 + - uid: 37870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,8.5 + pos: 79.5,-34.5 parent: 2 - - uid: 37418 + - uid: 37871 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,1.5 + pos: 77.5,-34.5 parent: 2 - - uid: 37419 + - uid: 37872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-117.5 + pos: 76.5,-34.5 parent: 2 - - uid: 37420 + - uid: 37873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,3.5 + pos: 75.5,-34.5 parent: 2 - - uid: 37421 + - uid: 37874 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,1.5 + pos: 74.5,-34.5 parent: 2 - - uid: 37422 + - uid: 37875 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,5.5 + pos: 73.5,-34.5 parent: 2 - - uid: 37423 + - uid: 37876 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,10.5 + pos: 72.5,-34.5 parent: 2 - - uid: 37424 + - uid: 37877 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,5.5 + pos: 71.5,-34.5 parent: 2 - - uid: 37425 + - uid: 37878 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,5.5 + pos: 80.5,-35.5 parent: 2 - - uid: 37426 + - uid: 37879 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,5.5 + pos: 80.5,-36.5 parent: 2 - - uid: 37428 + - uid: 37880 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,0.5 + pos: 80.5,-37.5 parent: 2 - - uid: 37429 + - uid: 37881 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-4.5 + pos: 80.5,-38.5 parent: 2 - - uid: 37430 + - uid: 37882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-1.5 + pos: 84.5,-38.5 parent: 2 - - uid: 37431 + - uid: 37883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-1.5 + pos: 84.5,-42.5 parent: 2 - - uid: 37432 + - uid: 37884 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-3.5 + pos: 80.5,-42.5 parent: 2 - - uid: 37433 + - uid: 37885 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-0.5 + pos: 80.5,-41.5 parent: 2 - - uid: 37434 + - uid: 37886 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,0.5 + pos: 80.5,-40.5 parent: 2 - - uid: 37435 + - uid: 37887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-4.5 + pos: 80.5,-39.5 parent: 2 - - uid: 37436 + - uid: 37888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-1.5 + pos: 77.5,-42.5 parent: 2 - - uid: 37437 + - uid: 37889 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-2.5 + pos: 73.5,-41.5 parent: 2 - - uid: 37438 + - uid: 37890 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,8.5 + pos: 73.5,-40.5 parent: 2 - - uid: 37439 + - uid: 37891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,5.5 + pos: 74.5,-40.5 parent: 2 - - uid: 37440 + - uid: 37892 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,1.5 + pos: 75.5,-40.5 parent: 2 - - uid: 37441 + - uid: 37893 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,4.5 + pos: 76.5,-40.5 parent: 2 - - uid: 37442 + - uid: 37894 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-1.5 + pos: 77.5,-40.5 parent: 2 - - uid: 37443 + - uid: 37895 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-2.5 + pos: 73.5,-39.5 parent: 2 - - uid: 37444 + - uid: 37896 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,8.5 + pos: 73.5,-38.5 parent: 2 - - uid: 37445 + - uid: 37897 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,8.5 + pos: 74.5,-38.5 parent: 2 - - uid: 37446 + - uid: 37898 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,8.5 + pos: 75.5,-38.5 parent: 2 - - uid: 37447 + - uid: 37899 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,8.5 + pos: 76.5,-38.5 parent: 2 - - uid: 37448 + - uid: 37900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,2.5 + pos: 73.5,-37.5 parent: 2 - - uid: 37449 + - uid: 37901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,5.5 + pos: 73.5,-36.5 parent: 2 - - uid: 37450 + - uid: 37902 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,5.5 + pos: 74.5,-36.5 parent: 2 - - uid: 37451 + - uid: 37903 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,5.5 + pos: 75.5,-36.5 parent: 2 - - uid: 37452 + - uid: 37904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-117.5 + pos: 76.5,-36.5 parent: 2 - - uid: 37453 + - uid: 37905 components: - type: Transform - pos: 32.5,-14.5 + pos: 73.5,-35.5 parent: 2 - - uid: 37454 + - uid: 37906 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,11.5 + pos: 66.5,-34.5 parent: 2 - - uid: 37455 + - uid: 37907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,12.5 + pos: 70.5,-34.5 parent: 2 - - uid: 37456 + - uid: 37908 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,8.5 + pos: 61.5,-34.5 parent: 2 - - uid: 37457 + - uid: 37909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,8.5 + pos: 60.5,-34.5 parent: 2 - - uid: 37458 + - uid: 37910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,11.5 + pos: 60.5,-35.5 parent: 2 - - uid: 37459 + - uid: 37913 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,10.5 + pos: 60.5,-38.5 parent: 2 - - uid: 37460 + - uid: 37914 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,12.5 + pos: 60.5,-40.5 parent: 2 - - uid: 37461 + - uid: 37915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-117.5 + pos: 60.5,-41.5 parent: 2 - - uid: 37462 + - uid: 37916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-117.5 + pos: 60.5,-42.5 parent: 2 - - uid: 37463 + - uid: 37917 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,8.5 + pos: 60.5,-43.5 parent: 2 - - uid: 37464 + - uid: 37918 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-0.5 + pos: 62.5,-43.5 parent: 2 - - uid: 37465 + - uid: 37919 components: - type: Transform - pos: 42.5,29.5 + pos: 63.5,-43.5 parent: 2 - - uid: 37466 + - uid: 37920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,11.5 + pos: 64.5,-43.5 parent: 2 - - uid: 37468 + - uid: 37921 components: - type: Transform - pos: 96.5,-47.5 + pos: 65.5,-43.5 parent: 2 - - uid: 37469 + - uid: 37922 components: - type: Transform - pos: 106.5,-47.5 + pos: 66.5,-43.5 parent: 2 - - uid: 37470 + - uid: 37923 components: - type: Transform - pos: 97.5,-45.5 + pos: 67.5,-43.5 parent: 2 - - uid: 37471 + - uid: 37924 components: - type: Transform - pos: 40.5,29.5 + pos: 63.5,-44.5 parent: 2 - - uid: 37472 + - uid: 37925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,24.5 + pos: 63.5,-45.5 parent: 2 - - uid: 37473 + - uid: 37926 components: - type: Transform - pos: 39.5,29.5 + pos: 63.5,-47.5 parent: 2 - - uid: 37474 + - uid: 37927 components: - type: Transform - pos: 91.5,-46.5 + pos: 59.5,-34.5 parent: 2 - - uid: 37475 + - uid: 37928 components: - type: Transform - pos: 102.5,-46.5 + pos: 58.5,-34.5 parent: 2 - - uid: 37476 + - uid: 37929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-41.5 + pos: 31.5,-82.5 parent: 2 - - uid: 37477 + - uid: 37930 components: - type: Transform - pos: 36.5,-14.5 + pos: 31.5,-81.5 parent: 2 - - uid: 37478 + - uid: 37931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-41.5 + pos: 48.5,-34.5 parent: 2 - - uid: 37479 + - uid: 37932 components: - type: Transform - pos: 35.5,-17.5 + pos: 47.5,-34.5 parent: 2 - - uid: 37480 + - uid: 37933 components: - type: Transform - pos: 28.5,5.5 + pos: 46.5,-34.5 parent: 2 - - uid: 37481 + - uid: 37934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,13.5 + pos: 46.5,-43.5 parent: 2 - - uid: 37482 + - uid: 37935 components: - type: Transform - pos: 32.5,8.5 + pos: 47.5,-43.5 parent: 2 - - uid: 37483 + - uid: 37936 components: - type: Transform - pos: 34.5,-21.5 + pos: 48.5,-43.5 parent: 2 - - uid: 37484 + - uid: 37937 components: - type: Transform - pos: 28.5,-1.5 + pos: 49.5,-43.5 parent: 2 - - uid: 37485 + - uid: 37938 components: - type: Transform - pos: 37.5,29.5 + pos: 50.5,-43.5 parent: 2 - - uid: 37486 + - uid: 37939 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-41.5 + pos: 51.5,-43.5 parent: 2 - - uid: 37487 + - uid: 37940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,26.5 + pos: 52.5,-43.5 parent: 2 - - uid: 37488 + - uid: 37941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,30.5 + pos: 53.5,-43.5 parent: 2 - - uid: 37489 + - uid: 37942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,6.5 + pos: 54.5,-43.5 parent: 2 - - uid: 37490 + - uid: 37943 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,8.5 + pos: 55.5,-43.5 parent: 2 - - uid: 37491 + - uid: 37944 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,7.5 + pos: 56.5,-43.5 parent: 2 - - uid: 37492 + - uid: 37945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-118.5 + pos: 57.5,-43.5 parent: 2 - - uid: 37493 + - uid: 37946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-118.5 + pos: 58.5,-43.5 parent: 2 - - uid: 37494 + - uid: 37947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-118.5 + pos: 59.5,-43.5 parent: 2 - - uid: 37495 + - uid: 37948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-117.5 + pos: 46.5,-52.5 parent: 2 - - uid: 37496 + - uid: 37949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-116.5 + pos: 46.5,-51.5 parent: 2 - - uid: 37497 + - uid: 37950 components: - type: Transform - pos: -67.5,5.5 + pos: 46.5,-50.5 parent: 2 - - uid: 37498 + - uid: 37951 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,0.5 + pos: 46.5,-49.5 parent: 2 - - uid: 37499 + - uid: 37952 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,8.5 + pos: 46.5,-45.5 parent: 2 - - uid: 37500 + - uid: 37953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,29.5 + pos: 47.5,-52.5 parent: 2 - - uid: 37501 + - uid: 37954 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,0.5 + pos: 47.5,-53.5 parent: 2 - - uid: 37502 + - uid: 37955 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,8.5 + pos: 47.5,-54.5 parent: 2 - - uid: 37503 + - uid: 37956 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,9.5 + pos: 41.5,-54.5 parent: 2 - - uid: 37504 + - uid: 37957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-113.5 + pos: 47.5,-55.5 parent: 2 - - uid: 37505 + - uid: 37958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-112.5 + pos: 46.5,-55.5 parent: 2 - - uid: 37506 + - uid: 37959 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-91.5 + pos: 44.5,-55.5 parent: 2 - - uid: 37507 + - uid: 37960 components: - type: Transform - pos: 91.5,-48.5 + pos: 42.5,-55.5 parent: 2 - - uid: 37508 + - uid: 37961 components: - type: Transform - pos: 97.5,-50.5 + pos: 41.5,-55.5 parent: 2 - - uid: 37510 + - uid: 37962 components: - type: Transform - pos: -72.5,-0.5 + pos: 34.5,-55.5 parent: 2 - - uid: 37511 + - uid: 37963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,27.5 + pos: 47.5,-49.5 parent: 2 - - uid: 37512 + - uid: 37964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,22.5 + pos: 51.5,-49.5 parent: 2 - - uid: 37513 + - uid: 37965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,12.5 + pos: 42.5,-60.5 parent: 2 - - uid: 37514 + - uid: 37966 components: - type: Transform - pos: 90.5,-51.5 + pos: 42.5,-58.5 parent: 2 - - uid: 37515 + - uid: 37967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,14.5 + pos: 42.5,-57.5 parent: 2 - - uid: 37516 + - uid: 37968 components: - type: Transform - pos: 43.5,29.5 + pos: 42.5,-56.5 parent: 2 - - uid: 37517 + - uid: 37969 components: - type: Transform - pos: -28.5,-106.5 + pos: 41.5,-70.5 parent: 2 - - uid: 37519 + - uid: 37970 components: - type: Transform - pos: -28.5,-108.5 + pos: 42.5,-70.5 parent: 2 - - uid: 37520 + - uid: 37971 components: - type: Transform - pos: -56.5,-104.5 + pos: 39.5,-56.5 parent: 2 - - uid: 37521 + - uid: 37972 components: - type: Transform - pos: -11.5,-86.5 + pos: 39.5,-57.5 parent: 2 - - uid: 37522 + - uid: 37973 components: - type: Transform - pos: -12.5,-86.5 + pos: 39.5,-58.5 parent: 2 - - uid: 37523 + - uid: 37974 components: - type: Transform - pos: -13.5,-86.5 + pos: 39.5,-59.5 parent: 2 - - uid: 37524 + - uid: 37975 components: - type: Transform - pos: -34.5,-77.5 + pos: 39.5,-60.5 parent: 2 - - uid: 37525 + - uid: 37976 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-92.5 + pos: 39.5,-61.5 parent: 2 - - uid: 37526 + - uid: 37977 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-94.5 + pos: 39.5,-62.5 parent: 2 - - uid: 37527 + - uid: 37978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,19.5 + pos: 39.5,-63.5 parent: 2 - - uid: 37528 + - uid: 37979 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,2.5 + pos: 39.5,-64.5 parent: 2 - - uid: 37529 + - uid: 37980 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,4.5 + pos: 39.5,-65.5 parent: 2 - - uid: 37530 + - uid: 37981 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,1.5 + pos: 39.5,-66.5 parent: 2 - - uid: 37531 + - uid: 37982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,26.5 + pos: 38.5,-66.5 parent: 2 - - uid: 37532 + - uid: 37983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,16.5 + pos: 38.5,-67.5 parent: 2 - - uid: 37533 + - uid: 37984 components: - type: Transform - pos: 35.5,-15.5 + pos: 38.5,-68.5 parent: 2 - - uid: 37534 + - uid: 37985 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,14.5 + pos: 38.5,-69.5 parent: 2 - - uid: 37535 + - uid: 37986 components: - type: Transform - pos: -69.5,6.5 + pos: 38.5,-70.5 parent: 2 - - uid: 37536 + - uid: 37987 components: - type: Transform - pos: -54.5,-93.5 + pos: 36.5,-66.5 parent: 2 - - uid: 37538 + - uid: 37988 components: - type: Transform - pos: -55.5,-93.5 + pos: 38.5,-74.5 parent: 2 - - uid: 37539 + - uid: 37989 components: - type: Transform - pos: 102.5,-50.5 + pos: 37.5,-74.5 parent: 2 - - uid: 37540 + - uid: 37990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,26.5 + pos: 36.5,-74.5 parent: 2 - - uid: 37541 + - uid: 37991 components: - type: Transform - pos: -42.5,-121.5 + pos: 35.5,-74.5 parent: 2 - - uid: 37542 + - uid: 37992 components: - type: Transform - pos: 25.5,8.5 + pos: 34.5,-74.5 parent: 2 - - uid: 37543 + - uid: 37993 components: - type: Transform - pos: 36.5,29.5 + pos: 38.5,-71.5 parent: 2 - - uid: 37544 + - uid: 37994 components: - type: Transform - pos: 36.5,30.5 + pos: 38.5,-73.5 parent: 2 - - uid: 37545 + - uid: 37995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,26.5 + pos: 37.5,-70.5 parent: 2 - - uid: 37546 + - uid: 37996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,26.5 + pos: 35.5,-70.5 parent: 2 - - uid: 37547 + - uid: 37997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,26.5 + pos: 34.5,-70.5 parent: 2 - - uid: 37548 + - uid: 37998 components: - type: Transform - pos: 25.5,9.5 + pos: 33.5,-70.5 parent: 2 - - uid: 37549 + - uid: 37999 components: - type: Transform - pos: 33.5,-18.5 + pos: 32.5,-70.5 parent: 2 - - uid: 37550 + - uid: 38000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,26.5 + pos: 32.5,-71.5 parent: 2 - - uid: 37551 + - uid: 38001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,26.5 + pos: 32.5,-72.5 parent: 2 - - uid: 37552 + - uid: 38002 components: - type: Transform - pos: -36.5,-103.5 + pos: 32.5,-73.5 parent: 2 - - uid: 37553 + - uid: 38003 components: - type: Transform - pos: 105.5,-54.5 + pos: 32.5,-74.5 parent: 2 - - uid: 37554 + - uid: 38004 components: - type: Transform - pos: 102.5,-47.5 + pos: 33.5,-74.5 parent: 2 - - uid: 37555 + - uid: 38005 components: - type: Transform - pos: 97.5,-48.5 + pos: 31.5,-70.5 parent: 2 - - uid: 37556 + - uid: 38006 components: - type: Transform - pos: 91.5,-50.5 + pos: 31.5,-69.5 parent: 2 - - uid: 37557 + - uid: 38007 components: - type: Transform - pos: 98.5,-50.5 + pos: 31.5,-68.5 parent: 2 - - uid: 37558 + - uid: 38008 components: - type: Transform - pos: 39.5,24.5 + pos: 31.5,-67.5 parent: 2 - - uid: 37559 + - uid: 38009 components: - type: Transform - pos: 99.5,-51.5 + pos: 31.5,-66.5 parent: 2 - - uid: 37560 + - uid: 38010 components: - type: Transform - pos: 105.5,-46.5 + pos: 33.5,-66.5 parent: 2 - - uid: 37561 + - uid: 38011 components: - type: Transform - pos: 80.5,-46.5 + pos: 34.5,-66.5 parent: 2 - - uid: 37562 + - uid: 38012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-116.5 + pos: 35.5,-66.5 parent: 2 - - uid: 37563 + - uid: 38013 components: - type: Transform - pos: 38.5,24.5 + pos: 31.5,-63.5 parent: 2 - - uid: 37564 + - uid: 38014 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,4.5 + pos: 31.5,-59.5 parent: 2 - - uid: 37565 + - uid: 38015 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,4.5 + pos: 31.5,-56.5 parent: 2 - - uid: 37566 + - uid: 38016 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-5.5 + pos: 30.5,-70.5 parent: 2 - - uid: 37567 + - uid: 38017 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-5.5 + rot: -1.5707963267948966 rad + pos: -30.5,-66.5 parent: 2 - - uid: 37568 + - uid: 38018 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-5.5 + pos: 49.5,-85.5 parent: 2 - - uid: 37569 + - uid: 38019 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,-5.5 + pos: 47.5,-85.5 parent: 2 - - uid: 37570 + - uid: 38020 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-5.5 + pos: 53.5,-85.5 parent: 2 - - uid: 37571 + - uid: 38021 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,-5.5 + pos: 51.5,-80.5 parent: 2 - - uid: 37572 + - uid: 38022 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-5.5 + pos: 51.5,-78.5 parent: 2 - - uid: 37573 + - uid: 38023 components: - type: Transform rot: 3.141592653589793 rad - pos: -60.5,-5.5 + pos: 47.5,-80.5 parent: 2 - - uid: 37574 + - uid: 38024 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-5.5 + pos: 30.5,-72.5 parent: 2 - - uid: 37575 + - uid: 38025 components: - type: Transform - pos: 36.5,31.5 + pos: 13.5,-76.5 parent: 2 - - uid: 37576 + - uid: 38026 components: - type: Transform - pos: 109.5,-54.5 + pos: 13.5,-77.5 parent: 2 - - uid: 37577 + - uid: 38027 components: - type: Transform - pos: 104.5,-51.5 + pos: 13.5,-78.5 parent: 2 - - uid: 37578 + - uid: 38028 components: - type: Transform - pos: -29.5,-103.5 + pos: 13.5,-79.5 parent: 2 - - uid: 37579 + - uid: 38029 components: - type: Transform - pos: -29.5,-100.5 + pos: 13.5,-80.5 parent: 2 - - uid: 37580 + - uid: 38030 components: - type: Transform - pos: -54.5,-104.5 + pos: 13.5,-81.5 parent: 2 - - uid: 37581 + - uid: 38031 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,12.5 + pos: 13.5,-82.5 parent: 2 - - uid: 37582 + - uid: 38032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,11.5 + pos: 13.5,-84.5 parent: 2 - - uid: 37583 + - uid: 38033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,10.5 + pos: 13.5,-85.5 parent: 2 - - uid: 37584 + - uid: 38034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,9.5 + pos: 23.5,-74.5 parent: 2 - - uid: 37585 + - uid: 38035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,9.5 + pos: 21.5,-74.5 parent: 2 - - uid: 37586 + - uid: 38036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,4.5 + pos: 20.5,-74.5 parent: 2 - - uid: 37587 + - uid: 38037 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,4.5 + pos: 15.5,-74.5 parent: 2 - - uid: 37588 + - uid: 38038 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,4.5 + pos: 14.5,-74.5 parent: 2 - - uid: 37589 + - uid: 38039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,2.5 + pos: 13.5,-74.5 parent: 2 - - uid: 37590 + - uid: 38040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,3.5 + pos: -3.5,-88.5 parent: 2 - - uid: 37591 + - uid: 38041 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,5.5 + pos: -2.5,-88.5 parent: 2 - - uid: 37592 + - uid: 38042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,5.5 + pos: -1.5,-88.5 parent: 2 - - uid: 37593 + - uid: 38043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,5.5 + pos: -5.5,-92.5 parent: 2 - - uid: 37594 + - uid: 38045 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,5.5 + pos: -8.5,-92.5 parent: 2 - - uid: 37595 + - uid: 38046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,5.5 + pos: -9.5,-92.5 parent: 2 - - uid: 37596 + - uid: 38047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,5.5 + pos: -10.5,-92.5 parent: 2 - - uid: 37597 + - uid: 38048 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-28.5 + pos: -10.5,-93.5 parent: 2 - - uid: 37598 + - uid: 38049 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-28.5 + pos: -10.5,-95.5 parent: 2 - - uid: 37599 + - uid: 38050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-28.5 + pos: -10.5,-96.5 parent: 2 - - uid: 37600 + - uid: 38051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-28.5 + pos: -33.5,-56.5 parent: 2 - - uid: 37601 + - uid: 38052 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-4.5 + pos: 12.5,-77.5 parent: 2 - - uid: 37602 + - uid: 38053 components: - type: Transform - pos: 41.5,26.5 + pos: 11.5,-77.5 parent: 2 - - uid: 37603 + - uid: 38054 components: - type: Transform - pos: 40.5,26.5 + pos: 10.5,-77.5 parent: 2 - - uid: 37604 + - uid: 38055 components: - type: Transform - pos: 42.5,26.5 + pos: 9.5,-77.5 parent: 2 - - uid: 37605 + - uid: 38056 components: - type: Transform - pos: 39.5,26.5 + pos: 8.5,-77.5 parent: 2 - - uid: 37606 + - uid: 38057 components: - type: Transform - pos: 43.5,26.5 + pos: 7.5,-77.5 parent: 2 - - uid: 37607 + - uid: 38058 components: - type: Transform - pos: 38.5,26.5 + pos: 6.5,-77.5 parent: 2 - - uid: 37608 + - uid: 38059 components: - type: Transform - pos: 37.5,26.5 + pos: 8.5,-78.5 parent: 2 - - uid: 37609 + - uid: 38060 components: - type: Transform - pos: 36.5,26.5 + pos: 6.5,-85.5 parent: 2 - - uid: 37610 + - uid: 38061 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-28.5 + pos: 7.5,-85.5 parent: 2 - - uid: 37611 + - uid: 38062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-20.5 + pos: 8.5,-85.5 parent: 2 - - uid: 37612 + - uid: 38063 components: - type: Transform - pos: 36.5,32.5 + pos: 9.5,-85.5 parent: 2 - - uid: 37613 + - uid: 38064 components: - type: Transform - pos: 37.5,32.5 + pos: 4.5,-85.5 parent: 2 - - uid: 37614 + - uid: 38065 components: - type: Transform - pos: 35.5,32.5 + pos: 3.5,-85.5 parent: 2 - - uid: 37615 + - uid: 38066 components: - type: Transform - pos: 107.5,-54.5 + pos: 2.5,-85.5 parent: 2 - - uid: 37616 + - uid: 38067 components: - type: Transform - pos: 35.5,33.5 + pos: 2.5,-84.5 parent: 2 - - uid: 37617 + - uid: 38068 components: - type: Transform - pos: 38.5,32.5 + pos: 2.5,-83.5 parent: 2 - - uid: 37618 + - uid: 38069 components: - type: Transform - pos: 92.5,-47.5 + pos: 2.5,-77.5 parent: 2 - - uid: 37619 + - uid: 38070 components: - type: Transform - pos: 90.5,-46.5 + pos: 3.5,-77.5 parent: 2 - - uid: 37620 + - uid: 38071 components: - type: Transform - pos: 102.5,-51.5 + pos: 0.5,-83.5 parent: 2 - - uid: 37621 + - uid: 38072 components: - type: Transform - pos: 99.5,-53.5 + pos: -1.5,-83.5 parent: 2 - - uid: 37623 + - uid: 38073 components: - type: Transform - pos: 107.5,-52.5 + pos: -1.5,-78.5 parent: 2 - - uid: 37624 + - uid: 38074 components: - type: Transform - pos: 107.5,-51.5 + pos: -1.5,-77.5 parent: 2 - - uid: 37625 + - uid: 38078 components: - type: Transform - pos: 99.5,-50.5 + pos: -5.5,-77.5 parent: 2 - - uid: 37626 + - uid: 38079 components: - type: Transform - pos: 103.5,-51.5 + pos: -5.5,-78.5 parent: 2 - - uid: 37627 + - uid: 38082 components: - type: Transform - pos: 88.5,-54.5 + pos: -5.5,-81.5 parent: 2 - - uid: 37628 + - uid: 38083 components: - type: Transform - pos: 91.5,-47.5 + pos: -5.5,-82.5 parent: 2 - - uid: 37629 + - uid: 38084 components: - type: Transform - pos: 95.5,-47.5 + pos: -5.5,-83.5 parent: 2 - - uid: 37631 + - uid: 38085 components: - type: Transform - pos: 106.5,-48.5 + pos: -5.5,-84.5 parent: 2 - - uid: 37632 + - uid: 38086 components: - type: Transform - pos: 97.5,-49.5 + pos: -5.5,-85.5 parent: 2 - - uid: 37633 + - uid: 38087 components: - type: Transform - pos: 94.5,-47.5 + pos: -4.5,-85.5 parent: 2 - - uid: 37634 + - uid: 38089 components: - type: Transform - pos: 106.5,-54.5 + pos: -2.5,-85.5 parent: 2 - - uid: 37635 + - uid: 38090 components: - type: Transform - pos: 93.5,-47.5 + pos: -1.5,-85.5 parent: 2 - - uid: 37636 + - uid: 38091 components: - type: Transform - pos: 106.5,-46.5 + pos: -6.5,-82.5 parent: 2 - - uid: 37637 + - uid: 38092 components: - type: Transform - pos: 100.5,-46.5 + pos: -9.5,-82.5 parent: 2 - - uid: 37638 + - uid: 38093 components: - type: Transform - pos: 97.5,-46.5 + pos: -10.5,-82.5 parent: 2 - - uid: 37639 + - uid: 38094 components: - type: Transform - pos: 104.5,-46.5 + pos: -10.5,-81.5 parent: 2 - - uid: 37640 + - uid: 38095 components: - type: Transform - pos: 101.5,-46.5 + pos: -10.5,-79.5 parent: 2 - - uid: 37641 + - uid: 38096 components: - type: Transform - pos: 107.5,-53.5 + pos: -10.5,-78.5 parent: 2 - - uid: 37642 + - uid: 38097 components: - type: Transform - pos: 92.5,-51.5 + pos: -10.5,-77.5 parent: 2 - - uid: 37643 + - uid: 38098 components: - type: Transform - pos: 92.5,-54.5 + pos: -6.5,-77.5 parent: 2 - - uid: 37644 + - uid: 38099 components: - type: Transform - pos: 105.5,-51.5 + pos: -10.5,-83.5 parent: 2 - - uid: 37645 + - uid: 38100 components: - type: Transform - pos: 88.5,-50.5 + pos: -10.5,-84.5 parent: 2 - - uid: 37646 + - uid: 38101 components: - type: Transform - pos: 106.5,-51.5 + pos: -10.5,-85.5 parent: 2 - - uid: 37647 + - uid: 38102 components: - type: Transform - pos: 103.5,-46.5 + pos: -10.5,-91.5 parent: 2 - - uid: 37648 + - uid: 38103 components: - type: Transform - pos: 91.5,-51.5 + pos: -12.5,-77.5 parent: 2 - - uid: 37649 + - uid: 38104 components: - type: Transform - pos: 91.5,-49.5 + pos: -12.5,-78.5 parent: 2 - - uid: 37650 + - uid: 38105 components: - type: Transform - pos: 102.5,-48.5 + pos: -12.5,-76.5 parent: 2 - - uid: 37651 + - uid: 38106 components: - type: Transform - pos: 92.5,-52.5 + pos: -12.5,-75.5 parent: 2 - - uid: 37652 + - uid: 38107 components: - type: Transform - pos: 43.5,-61.5 + pos: -12.5,-74.5 parent: 2 - - uid: 37653 + - uid: 38108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-43.5 + pos: -13.5,-74.5 parent: 2 - - uid: 37654 + - uid: 38109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-43.5 + pos: -14.5,-74.5 parent: 2 - - uid: 37655 + - uid: 38110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-43.5 + pos: -15.5,-74.5 parent: 2 - - uid: 37656 + - uid: 38111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-43.5 + pos: -16.5,-74.5 parent: 2 - - uid: 37657 + - uid: 38112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-43.5 + pos: -16.5,-75.5 parent: 2 - - uid: 37658 + - uid: 38113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-43.5 + pos: -16.5,-77.5 parent: 2 - - uid: 37659 + - uid: 38114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-43.5 + pos: -16.5,-78.5 parent: 2 - - uid: 37661 + - uid: 38115 components: - type: Transform - pos: 87.5,-50.5 + pos: -15.5,-78.5 parent: 2 - - uid: 37662 + - uid: 38116 components: - type: Transform - pos: 87.5,-46.5 + pos: -14.5,-78.5 parent: 2 - - uid: 37665 + - uid: 38117 components: - type: Transform - pos: 87.5,-44.5 + pos: -13.5,-78.5 parent: 2 - - uid: 37666 + - uid: 38118 components: - type: Transform - pos: 87.5,-45.5 + pos: -17.5,-74.5 parent: 2 - - uid: 37668 + - uid: 38119 components: - type: Transform - pos: 87.5,-47.5 + pos: -18.5,-74.5 parent: 2 - - uid: 37669 + - uid: 38120 components: - type: Transform - pos: 87.5,-49.5 + pos: -21.5,-74.5 parent: 2 - - uid: 37670 + - uid: 38121 components: - type: Transform - pos: 41.5,-61.5 + pos: -22.5,-74.5 parent: 2 - - uid: 37671 + - uid: 38122 components: - type: Transform - pos: 41.5,-62.5 + pos: -22.5,-75.5 parent: 2 - - uid: 37672 + - uid: 38123 components: - type: Transform - pos: 41.5,-63.5 + pos: -22.5,-77.5 parent: 2 - - uid: 37673 + - uid: 38124 components: - type: Transform - pos: 41.5,-65.5 + pos: -22.5,-78.5 parent: 2 - - uid: 37674 + - uid: 38125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-43.5 + pos: -22.5,-79.5 parent: 2 - - uid: 37675 + - uid: 38126 components: - type: Transform - pos: 99.5,-43.5 + pos: -16.5,-83.5 parent: 2 - - uid: 37676 + - uid: 38127 components: - type: Transform - pos: 97.5,-43.5 + pos: -20.5,-79.5 parent: 2 - - uid: 37677 + - uid: 38128 components: - type: Transform - pos: 92.5,-43.5 + pos: -16.5,-84.5 parent: 2 - - uid: 37678 + - uid: 38129 components: - type: Transform - pos: 90.5,-43.5 + pos: -18.5,-79.5 parent: 2 - - uid: 37679 + - uid: 38130 components: - type: Transform - pos: 89.5,-43.5 + pos: -16.5,-82.5 parent: 2 - - uid: 37680 + - uid: 38131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-38.5 + pos: -16.5,-79.5 parent: 2 - - uid: 37681 + - uid: 38132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-39.5 + pos: -18.5,-78.5 parent: 2 - - uid: 37682 + - uid: 38133 components: - type: Transform - pos: 41.5,-66.5 + pos: -16.5,-81.5 parent: 2 - - uid: 37683 + - uid: 38134 components: - type: Transform - pos: 41.5,-64.5 + pos: -20.5,-78.5 parent: 2 - - uid: 37685 + - uid: 38135 components: - type: Transform - pos: 88.5,-43.5 + pos: -26.5,-79.5 parent: 2 - - uid: 37686 + - uid: 38136 components: - type: Transform - pos: 87.5,-43.5 + pos: -26.5,-74.5 parent: 2 - - uid: 37687 + - uid: 38137 components: - type: Transform - pos: 49.5,-67.5 + pos: -26.5,-75.5 parent: 2 - - uid: 37688 + - uid: 38138 components: - type: Transform - pos: 49.5,-61.5 + pos: -26.5,-76.5 parent: 2 - - uid: 37689 + - uid: 38139 components: - type: Transform - pos: 48.5,-61.5 + pos: -26.5,-77.5 parent: 2 - - uid: 37690 + - uid: 38140 components: - type: Transform - pos: 47.5,-61.5 + pos: -26.5,-78.5 parent: 2 - - uid: 37691 + - uid: 38141 components: - type: Transform - pos: 46.5,-61.5 + pos: -16.5,-80.5 parent: 2 - - uid: 37692 + - uid: 38142 components: - type: Transform - pos: 45.5,-61.5 + pos: -17.5,-80.5 parent: 2 - - uid: 37693 + - uid: 38143 components: - type: Transform - pos: 44.5,-61.5 + pos: -18.5,-80.5 parent: 2 - - uid: 37694 + - uid: 38144 components: - type: Transform - pos: 42.5,-61.5 + pos: -19.5,-80.5 parent: 2 - - uid: 37695 + - uid: 38145 components: - type: Transform - pos: 48.5,-67.5 + pos: -20.5,-80.5 parent: 2 - - uid: 37696 + - uid: 38146 components: - type: Transform - pos: 47.5,-67.5 + pos: -21.5,-80.5 parent: 2 - - uid: 37697 + - uid: 38147 components: - type: Transform - pos: 46.5,-67.5 + pos: -22.5,-80.5 parent: 2 - - uid: 37698 + - uid: 38148 components: - type: Transform - pos: 45.5,-67.5 + pos: -16.5,-85.5 parent: 2 - - uid: 37699 + - uid: 38149 components: - type: Transform - pos: 44.5,-67.5 + pos: -16.5,-86.5 parent: 2 - - uid: 37700 + - uid: 38150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-85.5 + pos: -16.5,-87.5 parent: 2 - - uid: 37701 + - uid: 38151 components: - type: Transform - pos: 33.5,31.5 + pos: -26.5,-82.5 parent: 2 - - uid: 37702 + - uid: 38152 components: - type: Transform - pos: 32.5,31.5 + pos: -26.5,-83.5 parent: 2 - - uid: 37704 + - uid: 38153 components: - type: Transform - pos: 5.5,2.5 + pos: -26.5,-84.5 parent: 2 - - uid: 37705 + - uid: 38154 components: - type: Transform - pos: 4.5,2.5 + pos: -26.5,-85.5 parent: 2 - - uid: 37706 + - uid: 38155 components: - type: Transform - pos: -9.5,2.5 + pos: -26.5,-86.5 parent: 2 - - uid: 37707 + - uid: 38156 components: - type: Transform - pos: -8.5,2.5 + pos: -26.5,-87.5 parent: 2 - - uid: 37708 + - uid: 38157 components: - type: Transform - pos: -1.5,5.5 + pos: -26.5,-88.5 parent: 2 - - uid: 37709 + - uid: 38158 components: - type: Transform - pos: -1.5,6.5 + pos: -26.5,-89.5 parent: 2 - - uid: 37710 + - uid: 38159 components: - type: Transform - pos: -7.5,5.5 + pos: -27.5,-82.5 parent: 2 - - uid: 37711 + - uid: 38160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 + pos: -28.5,-82.5 parent: 2 - - uid: 37712 + - uid: 38161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,0.5 + pos: -29.5,-82.5 parent: 2 - - uid: 37713 + - uid: 38162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-0.5 + pos: -30.5,-82.5 parent: 2 - - uid: 37714 + - uid: 38163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,2.5 + pos: -30.5,-83.5 parent: 2 - - uid: 37715 + - uid: 38164 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,1.5 + pos: -30.5,-85.5 parent: 2 - - uid: 37716 + - uid: 38165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,0.5 + pos: -29.5,-85.5 parent: 2 - - uid: 37717 + - uid: 38166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-0.5 + pos: -28.5,-85.5 parent: 2 - - uid: 37718 + - uid: 38167 components: - type: Transform - pos: 19.5,2.5 + pos: -27.5,-85.5 parent: 2 - - uid: 37719 + - uid: 38168 components: - type: Transform - pos: 19.5,1.5 + pos: -30.5,-88.5 parent: 2 - - uid: 37720 + - uid: 38169 components: - type: Transform - pos: 21.5,1.5 + pos: -30.5,-86.5 parent: 2 - - uid: 37721 + - uid: 38170 components: - type: Transform - pos: 21.5,0.5 + pos: -29.5,-88.5 parent: 2 - - uid: 37722 + - uid: 38171 components: - type: Transform - pos: 22.5,0.5 + pos: -28.5,-88.5 parent: 2 - - uid: 37723 + - uid: 38172 components: - type: Transform - pos: 23.5,-0.5 + pos: -27.5,-88.5 parent: 2 - - uid: 37724 + - uid: 38173 components: - type: Transform - pos: 24.5,-0.5 + pos: -30.5,-89.5 parent: 2 - - uid: 37725 + - uid: 38174 components: - type: Transform - pos: 25.5,-0.5 + pos: -26.5,-90.5 parent: 2 - - uid: 37726 + - uid: 38175 components: - type: Transform - pos: 25.5,-1.5 + pos: -26.5,-91.5 parent: 2 - - uid: 37727 + - uid: 38176 components: - type: Transform - pos: 28.5,-3.5 + pos: -27.5,-91.5 parent: 2 - - uid: 37728 + - uid: 38177 components: - type: Transform - pos: 29.5,-3.5 + pos: -28.5,-91.5 parent: 2 - - uid: 37729 + - uid: 38178 components: - type: Transform - pos: 29.5,-6.5 + pos: -29.5,-91.5 parent: 2 - - uid: 37730 + - uid: 38179 components: - type: Transform - pos: 30.5,-6.5 + pos: -30.5,-91.5 parent: 2 - - uid: 37731 + - uid: 38180 components: - type: Transform - pos: 30.5,-8.5 + pos: -33.5,-91.5 parent: 2 - - uid: 37732 + - uid: 38181 components: - type: Transform - pos: 31.5,-8.5 + pos: -33.5,-89.5 parent: 2 - - uid: 37733 + - uid: 38182 components: - type: Transform - pos: 31.5,-9.5 + pos: -33.5,-88.5 parent: 2 - - uid: 37734 + - uid: 38183 components: - type: Transform - pos: 31.5,-10.5 + pos: -33.5,-85.5 parent: 2 - - uid: 37735 + - uid: 38184 components: - type: Transform - pos: 21.5,2.5 + pos: -33.5,-83.5 parent: 2 - - uid: 37736 + - uid: 38185 components: - type: Transform - pos: 21.5,3.5 + pos: -33.5,-82.5 parent: 2 - - uid: 37737 + - uid: 38186 components: - type: Transform - pos: 21.5,4.5 + pos: -37.5,-91.5 parent: 2 - - uid: 37738 + - uid: 38187 components: - type: Transform - pos: 21.5,5.5 + pos: -37.5,-90.5 parent: 2 - - uid: 37739 + - uid: 38188 components: - type: Transform - pos: 21.5,6.5 + pos: -37.5,-89.5 parent: 2 - - uid: 37740 + - uid: 38189 components: - type: Transform - pos: 21.5,7.5 + pos: -37.5,-88.5 parent: 2 - - uid: 37741 + - uid: 38190 components: - type: Transform - pos: 35.5,-16.5 + pos: -37.5,-87.5 parent: 2 - - uid: 37742 + - uid: 38191 components: - type: Transform - pos: 28.5,15.5 + pos: -37.5,-86.5 parent: 2 - - uid: 37743 + - uid: 38192 components: - type: Transform - pos: 29.5,15.5 + pos: -37.5,-85.5 parent: 2 - - uid: 37744 + - uid: 38193 components: - type: Transform - pos: 31.5,15.5 + pos: -37.5,-84.5 parent: 2 - - uid: 37745 + - uid: 38194 components: - type: Transform - pos: 32.5,15.5 + pos: -37.5,-83.5 parent: 2 - - uid: 37746 + - uid: 38195 components: - type: Transform - pos: 39.5,15.5 + pos: -37.5,-82.5 parent: 2 - - uid: 37747 + - uid: 38196 components: - type: Transform - pos: 39.5,14.5 + pos: -36.5,-82.5 parent: 2 - - uid: 37748 + - uid: 38197 components: - type: Transform - pos: 39.5,13.5 + pos: -35.5,-82.5 parent: 2 - - uid: 37749 + - uid: 38198 components: - type: Transform - pos: 39.5,12.5 + pos: -34.5,-82.5 parent: 2 - - uid: 37750 + - uid: 38199 components: - type: Transform - pos: 39.5,11.5 + pos: -34.5,-85.5 parent: 2 - - uid: 37751 + - uid: 38200 components: - type: Transform - pos: 39.5,10.5 + pos: -35.5,-85.5 parent: 2 - - uid: 37752 + - uid: 38201 components: - type: Transform - pos: 39.5,9.5 + pos: -36.5,-85.5 parent: 2 - - uid: 37753 + - uid: 38202 components: - type: Transform - pos: 39.5,8.5 + pos: -36.5,-88.5 parent: 2 - - uid: 37754 + - uid: 38203 components: - type: Transform - pos: 39.5,16.5 + pos: -35.5,-88.5 parent: 2 - - uid: 37755 + - uid: 38204 components: - type: Transform - pos: 38.5,16.5 + pos: -34.5,-88.5 parent: 2 - - uid: 37756 + - uid: 38205 components: - type: Transform - pos: 37.5,16.5 + pos: -36.5,-91.5 parent: 2 - - uid: 37757 + - uid: 38206 components: - type: Transform - pos: 36.5,16.5 + pos: -35.5,-91.5 parent: 2 - - uid: 37760 + - uid: 38207 components: - type: Transform - pos: 37.5,8.5 + pos: -34.5,-91.5 parent: 2 - - uid: 37761 + - uid: 38208 components: - type: Transform - pos: 38.5,8.5 + pos: -28.5,-92.5 parent: 2 - - uid: 37762 + - uid: 38209 components: - type: Transform - pos: 22.5,10.5 + pos: -28.5,-93.5 parent: 2 - - uid: 37763 + - uid: 38210 components: - type: Transform - pos: 38.5,-8.5 + pos: -28.5,-94.5 parent: 2 - - uid: 37764 + - uid: 38211 components: - type: Transform - pos: 38.5,-6.5 + pos: -28.5,-95.5 parent: 2 - - uid: 37765 + - uid: 38212 components: - type: Transform - pos: 38.5,-10.5 + pos: -28.5,-96.5 parent: 2 - - uid: 37766 + - uid: 38213 components: - type: Transform - pos: 39.5,-10.5 + pos: -25.5,-90.5 parent: 2 - - uid: 37767 + - uid: 38214 components: - type: Transform - pos: 39.5,-11.5 + pos: -21.5,-90.5 parent: 2 - - uid: 37768 + - uid: 38215 components: - type: Transform - pos: 39.5,-13.5 + pos: -20.5,-90.5 parent: 2 - - uid: 37769 + - uid: 38216 components: - type: Transform - pos: 39.5,-14.5 + pos: -19.5,-90.5 parent: 2 - - uid: 37770 + - uid: 38217 components: - type: Transform - pos: 39.5,-15.5 + pos: -18.5,-90.5 parent: 2 - - uid: 37771 + - uid: 38218 components: - type: Transform - pos: 39.5,-16.5 + pos: -17.5,-90.5 parent: 2 - - uid: 37772 + - uid: 38219 components: - type: Transform - pos: 39.5,-17.5 + pos: -16.5,-90.5 parent: 2 - - uid: 37773 + - uid: 38220 components: - type: Transform - pos: 39.5,-18.5 + pos: -16.5,-89.5 parent: 2 - - uid: 37774 + - uid: 38221 components: - type: Transform - pos: 38.5,-18.5 + pos: -16.5,-88.5 parent: 2 - - uid: 37775 + - uid: 38222 components: - type: Transform - pos: 37.5,-18.5 + pos: -36.5,-93.5 parent: 2 - - uid: 37776 + - uid: 38223 components: - type: Transform - pos: 36.5,-18.5 + pos: -37.5,-81.5 parent: 2 - - uid: 37777 + - uid: 38224 components: - type: Transform - pos: 35.5,-18.5 + pos: -37.5,-80.5 parent: 2 - - uid: 37778 + - uid: 38225 components: - type: Transform - pos: 34.5,-18.5 + pos: -37.5,-79.5 parent: 2 - - uid: 37779 + - uid: 38226 components: - type: Transform - pos: 31.5,-19.5 + pos: -33.5,-77.5 parent: 2 - - uid: 37780 + - uid: 38227 components: - type: Transform - pos: 32.5,-18.5 + pos: -33.5,-78.5 parent: 2 - - uid: 37781 + - uid: 38228 components: - type: Transform - pos: 31.5,-18.5 + pos: -33.5,-79.5 parent: 2 - - uid: 37782 + - uid: 38229 components: - type: Transform - pos: 31.5,-21.5 + pos: -32.5,-79.5 parent: 2 - - uid: 37783 + - uid: 38230 components: - type: Transform - pos: -62.5,-41.5 + pos: -31.5,-79.5 parent: 2 - - uid: 37784 + - uid: 38231 components: - type: Transform - pos: 31.5,-22.5 + pos: -30.5,-79.5 parent: 2 - - uid: 37785 + - uid: 38232 components: - type: Transform - pos: 32.5,-22.5 + pos: -29.5,-79.5 parent: 2 - - uid: 37786 + - uid: 38233 components: - type: Transform - pos: 33.5,-22.5 + pos: -28.5,-79.5 parent: 2 - - uid: 37787 + - uid: 38234 components: - type: Transform - pos: 34.5,-22.5 + pos: -27.5,-79.5 parent: 2 - - uid: 37788 + - uid: 38235 components: - type: Transform - pos: 34.5,-20.5 + pos: -26.5,-72.5 parent: 2 - - uid: 37789 + - uid: 38236 components: - type: Transform - pos: 34.5,-19.5 + pos: -30.5,-71.5 parent: 2 - - uid: 37790 + - uid: 38237 components: - type: Transform - pos: -14.5,-84.5 + pos: -31.5,-72.5 parent: 2 - - uid: 37791 + - uid: 38238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-72.5 + pos: -31.5,-73.5 parent: 2 - - uid: 37792 + - uid: 38239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-76.5 + pos: -31.5,-74.5 parent: 2 - - uid: 37793 + - uid: 38240 components: - type: Transform - pos: -14.5,-85.5 + pos: -31.5,-75.5 parent: 2 - - uid: 37794 + - uid: 38241 components: - type: Transform - pos: 23.5,-80.5 + pos: -31.5,-76.5 parent: 2 - - uid: 37795 + - uid: 38242 components: - type: Transform - pos: 23.5,-81.5 + pos: -31.5,-78.5 parent: 2 - - uid: 37797 + - uid: 38243 components: - type: Transform - pos: -47.5,-79.5 + pos: -37.5,-78.5 parent: 2 - - uid: 37798 + - uid: 38244 components: - type: Transform - pos: 23.5,10.5 + pos: -37.5,-77.5 parent: 2 - - uid: 37799 + - uid: 38245 components: - type: Transform - pos: 34.5,-14.5 + pos: -45.5,-89.5 parent: 2 - - uid: 37800 + - uid: 38246 components: - type: Transform - pos: 78.5,-30.5 + pos: -45.5,-88.5 parent: 2 - - uid: 37801 + - uid: 38247 components: - type: Transform - pos: 72.5,-30.5 + pos: -45.5,-87.5 parent: 2 - - uid: 37802 + - uid: 38248 components: - type: Transform - pos: 79.5,-30.5 + pos: -45.5,-86.5 parent: 2 - - uid: 37803 + - uid: 38249 components: - type: Transform - pos: 68.5,-23.5 + pos: -46.5,-86.5 parent: 2 - - uid: 37804 + - uid: 38250 components: - type: Transform - pos: 70.5,-23.5 + pos: -45.5,-85.5 parent: 2 - - uid: 37805 + - uid: 38251 components: - type: Transform - pos: 72.5,-25.5 + pos: -45.5,-84.5 parent: 2 - - uid: 37806 + - uid: 38252 components: - type: Transform - pos: 71.5,-23.5 + pos: -45.5,-83.5 parent: 2 - - uid: 37807 + - uid: 38253 components: - type: Transform - pos: 74.5,-25.5 + pos: -45.5,-82.5 parent: 2 - - uid: 37808 + - uid: 38254 components: - type: Transform - pos: 73.5,-25.5 + pos: -44.5,-82.5 parent: 2 - - uid: 37809 + - uid: 38255 components: - type: Transform - pos: 75.5,-25.5 + pos: -43.5,-82.5 parent: 2 - - uid: 37813 + - uid: 38256 components: - type: Transform - pos: 61.5,-27.5 + pos: -40.5,-81.5 parent: 2 - - uid: 37814 + - uid: 38257 components: - type: Transform - pos: 61.5,-26.5 + pos: -40.5,-82.5 parent: 2 - - uid: 37815 + - uid: 38258 components: - type: Transform - pos: 61.5,-25.5 + pos: -40.5,-83.5 parent: 2 - - uid: 37816 + - uid: 38259 components: - type: Transform - pos: 61.5,-24.5 + pos: -40.5,-84.5 parent: 2 - - uid: 37817 + - uid: 38260 components: - type: Transform - pos: 61.5,-30.5 + pos: -40.5,-80.5 parent: 2 - - uid: 37818 + - uid: 38261 components: - type: Transform - pos: 70.5,-30.5 + pos: -40.5,-79.5 parent: 2 - - uid: 37819 + - uid: 38262 components: - type: Transform - pos: 44.5,-50.5 + pos: -40.5,-78.5 parent: 2 - - uid: 37820 + - uid: 38263 components: - type: Transform - pos: 62.5,-30.5 + pos: -40.5,-77.5 parent: 2 - - uid: 37821 + - uid: 38264 components: - type: Transform - pos: 61.5,-28.5 + pos: -40.5,-76.5 parent: 2 - - uid: 37822 + - uid: 38265 components: - type: Transform - pos: 61.5,-29.5 + pos: -30.5,-72.5 parent: 2 - - uid: 37823 + - uid: 38266 components: - type: Transform - pos: 71.5,-24.5 + pos: -33.5,-65.5 parent: 2 - - uid: 37824 + - uid: 38267 components: - type: Transform - pos: 71.5,-25.5 + pos: -33.5,-63.5 parent: 2 - - uid: 37825 + - uid: 38268 components: - type: Transform - pos: 71.5,-26.5 + pos: -33.5,-62.5 parent: 2 - - uid: 37826 + - uid: 38269 components: - type: Transform - pos: 71.5,-27.5 + pos: -33.5,-61.5 parent: 2 - - uid: 37827 + - uid: 38270 components: - type: Transform - pos: 47.5,-30.5 + pos: -33.5,-60.5 parent: 2 - - uid: 37828 + - uid: 38271 components: - type: Transform - pos: 66.5,-23.5 + pos: -33.5,-59.5 parent: 2 - - uid: 37829 + - uid: 38272 components: - type: Transform - pos: 62.5,-23.5 + pos: -33.5,-57.5 parent: 2 - - uid: 37830 + - uid: 38273 components: - type: Transform - pos: 61.5,-23.5 + pos: -34.5,-60.5 parent: 2 - - uid: 37831 + - uid: 38274 components: - type: Transform - pos: 64.5,-23.5 + pos: -35.5,-60.5 parent: 2 - - uid: 37832 + - uid: 38275 components: - type: Transform - pos: 63.5,-23.5 + pos: -36.5,-60.5 parent: 2 - - uid: 37833 + - uid: 38276 components: - type: Transform - pos: 65.5,-23.5 + pos: -41.5,-60.5 parent: 2 - - uid: 37834 + - uid: 38277 components: - type: Transform - pos: 58.5,-30.5 + pos: -41.5,-61.5 parent: 2 - - uid: 37835 + - uid: 38278 components: - type: Transform - pos: 59.5,-30.5 + pos: -41.5,-62.5 parent: 2 - - uid: 37836 + - uid: 38279 components: - type: Transform - pos: 56.5,-30.5 + pos: -31.5,-56.5 parent: 2 - - uid: 37837 + - uid: 38280 components: - type: Transform - pos: 57.5,-30.5 + pos: -30.5,-56.5 parent: 2 - - uid: 37838 + - uid: 38281 components: - type: Transform - pos: 55.5,-30.5 + pos: -30.5,-61.5 parent: 2 - - uid: 37839 + - uid: 38282 components: - type: Transform - pos: 80.5,-26.5 + pos: -30.5,-62.5 parent: 2 - - uid: 37840 + - uid: 38283 components: - type: Transform - pos: 71.5,-28.5 + pos: -30.5,-63.5 parent: 2 - - uid: 37841 + - uid: 38284 components: - type: Transform - pos: 71.5,-29.5 + pos: -30.5,-64.5 parent: 2 - - uid: 37842 + - uid: 38285 components: - type: Transform - pos: 71.5,-30.5 + pos: -30.5,-65.5 parent: 2 - - uid: 37843 + - uid: 38286 components: - type: Transform - pos: 50.5,-30.5 + pos: -30.5,-67.5 parent: 2 - - uid: 37844 + - uid: 38287 components: - type: Transform - pos: 49.5,-30.5 + pos: -30.5,-68.5 parent: 2 - - uid: 37845 + - uid: 38288 components: - type: Transform - pos: 48.5,-30.5 + pos: -30.5,-69.5 parent: 2 - - uid: 37846 + - uid: 38289 components: - type: Transform - pos: 80.5,-30.5 + pos: -30.5,-70.5 parent: 2 - - uid: 37847 + - uid: 38290 components: - type: Transform - pos: 80.5,-29.5 + pos: -34.5,-56.5 parent: 2 - - uid: 37848 + - uid: 38291 components: - type: Transform - pos: 67.5,-23.5 + pos: -35.5,-56.5 parent: 2 - - uid: 37849 + - uid: 38292 components: - type: Transform - pos: 31.5,-25.5 + pos: -36.5,-56.5 parent: 2 - - uid: 37850 + - uid: 38293 components: - type: Transform - pos: 31.5,-23.5 + pos: -37.5,-56.5 parent: 2 - - uid: 37851 + - uid: 38294 components: - type: Transform - pos: 46.5,-28.5 + pos: -40.5,-56.5 parent: 2 - - uid: 37852 + - uid: 38295 components: - type: Transform - pos: 46.5,-29.5 + pos: -41.5,-56.5 parent: 2 - - uid: 37853 + - uid: 38296 components: - type: Transform - pos: 46.5,-30.5 + pos: -33.5,-55.5 parent: 2 - - uid: 37854 + - uid: 38297 components: - type: Transform - pos: 84.5,-20.5 + pos: -33.5,-54.5 parent: 2 - - uid: 37855 + - uid: 38298 components: - type: Transform - pos: 84.5,-24.5 + pos: -33.5,-50.5 parent: 2 - - uid: 37856 + - uid: 38299 components: - type: Transform - pos: 31.5,-30.5 + pos: -34.5,-50.5 parent: 2 - - uid: 37857 + - uid: 38300 components: - type: Transform - pos: 42.5,-30.5 + pos: -35.5,-50.5 parent: 2 - - uid: 37858 + - uid: 38301 components: - type: Transform - pos: 41.5,-30.5 + pos: -36.5,-50.5 parent: 2 - - uid: 37859 + - uid: 38302 components: - type: Transform - pos: 40.5,-30.5 + pos: -41.5,-50.5 parent: 2 - - uid: 37860 + - uid: 38303 components: - type: Transform - pos: 39.5,-30.5 + pos: -41.5,-51.5 parent: 2 - - uid: 37861 + - uid: 38304 components: - type: Transform - pos: 38.5,-30.5 + pos: -41.5,-55.5 parent: 2 - - uid: 37862 + - uid: 38305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-79.5 + pos: -41.5,-49.5 parent: 2 - - uid: 37863 + - uid: 38306 components: - type: Transform - pos: 37.5,-30.5 + pos: -41.5,-45.5 parent: 2 - - uid: 37864 + - uid: 38307 components: - type: Transform - pos: 36.5,-30.5 + pos: -40.5,-45.5 parent: 2 - - uid: 37865 + - uid: 38308 components: - type: Transform - pos: 35.5,-30.5 + pos: -34.5,-45.5 parent: 2 - - uid: 37866 + - uid: 38309 components: - type: Transform - pos: 34.5,-30.5 + pos: -33.5,-45.5 parent: 2 - - uid: 37867 + - uid: 38310 components: - type: Transform - pos: 33.5,-30.5 + pos: -33.5,-46.5 parent: 2 - - uid: 37868 + - uid: 38311 components: - type: Transform - pos: 32.5,-30.5 + pos: -33.5,-47.5 parent: 2 - - uid: 37869 + - uid: 38312 components: - type: Transform - pos: 80.5,-34.5 + pos: -33.5,-48.5 parent: 2 - - uid: 37870 + - uid: 38313 components: - type: Transform - pos: 79.5,-34.5 + pos: -33.5,-49.5 parent: 2 - - uid: 37871 + - uid: 38314 components: - type: Transform - pos: 77.5,-34.5 + pos: -43.5,-49.5 parent: 2 - - uid: 37872 + - uid: 38315 components: - type: Transform - pos: 76.5,-34.5 + pos: -43.5,-51.5 parent: 2 - - uid: 37873 + - uid: 38316 components: - type: Transform - pos: 75.5,-34.5 + pos: -45.5,-45.5 parent: 2 - - uid: 37874 + - uid: 38317 components: - type: Transform - pos: 74.5,-34.5 + pos: -45.5,-49.5 parent: 2 - - uid: 37875 + - uid: 38318 components: - type: Transform - pos: 73.5,-34.5 + pos: -45.5,-50.5 parent: 2 - - uid: 37876 + - uid: 38319 components: - type: Transform - pos: 72.5,-34.5 + pos: -45.5,-51.5 parent: 2 - - uid: 37877 + - uid: 38320 components: - type: Transform - pos: 71.5,-34.5 + pos: -50.5,-63.5 parent: 2 - - uid: 37878 + - uid: 38321 components: - type: Transform - pos: 80.5,-35.5 + pos: 43.5,-67.5 parent: 2 - - uid: 37879 + - uid: 38322 components: - type: Transform - pos: 80.5,-36.5 + pos: -45.5,-77.5 parent: 2 - - uid: 37880 + - uid: 38323 components: - type: Transform - pos: 80.5,-37.5 + pos: -45.5,-78.5 parent: 2 - - uid: 37881 + - uid: 38324 components: - type: Transform - pos: 80.5,-38.5 + pos: -45.5,-79.5 parent: 2 - - uid: 37882 + - uid: 38325 components: - type: Transform - pos: 84.5,-38.5 + pos: -45.5,-76.5 parent: 2 - - uid: 37883 + - uid: 38326 components: - type: Transform - pos: 84.5,-42.5 + pos: -48.5,-79.5 parent: 2 - - uid: 37884 + - uid: 38327 components: - type: Transform - pos: 80.5,-42.5 + pos: -49.5,-79.5 parent: 2 - - uid: 37885 + - uid: 38328 components: - type: Transform - pos: 80.5,-41.5 + pos: -50.5,-79.5 parent: 2 - - uid: 37886 + - uid: 38329 components: - type: Transform - pos: 80.5,-40.5 + pos: -51.5,-79.5 parent: 2 - - uid: 37887 + - uid: 38330 components: - type: Transform - pos: 80.5,-39.5 + pos: -51.5,-80.5 parent: 2 - - uid: 37888 + - uid: 38331 components: - type: Transform - pos: 77.5,-42.5 + pos: -51.5,-81.5 parent: 2 - - uid: 37889 + - uid: 38332 components: - type: Transform - pos: 73.5,-41.5 + pos: -51.5,-82.5 parent: 2 - - uid: 37890 + - uid: 38333 components: - type: Transform - pos: 73.5,-40.5 + pos: -51.5,-83.5 parent: 2 - - uid: 37891 + - uid: 38334 components: - type: Transform - pos: 74.5,-40.5 + pos: -51.5,-84.5 parent: 2 - - uid: 37892 + - uid: 38335 components: - type: Transform - pos: 75.5,-40.5 + pos: -51.5,-85.5 parent: 2 - - uid: 37893 + - uid: 38336 components: - type: Transform - pos: 76.5,-40.5 + pos: -51.5,-86.5 parent: 2 - - uid: 37894 + - uid: 38337 components: - type: Transform - pos: 77.5,-40.5 + pos: -50.5,-86.5 parent: 2 - - uid: 37895 + - uid: 38338 components: - type: Transform - pos: 73.5,-39.5 + pos: -49.5,-86.5 parent: 2 - - uid: 37896 + - uid: 38339 components: - type: Transform - pos: 73.5,-38.5 + pos: -48.5,-86.5 parent: 2 - - uid: 37897 + - uid: 38340 components: - type: Transform - pos: 74.5,-38.5 + pos: -47.5,-86.5 parent: 2 - - uid: 37898 + - uid: 38341 components: - type: Transform - pos: 75.5,-38.5 + pos: -48.5,-52.5 parent: 2 - - uid: 37899 + - uid: 38342 components: - type: Transform - pos: 76.5,-38.5 + pos: -48.5,-51.5 parent: 2 - - uid: 37900 + - uid: 38343 components: - type: Transform - pos: 73.5,-37.5 + pos: -49.5,-51.5 parent: 2 - - uid: 37901 + - uid: 38344 components: - type: Transform - pos: 73.5,-36.5 + pos: -50.5,-51.5 parent: 2 - - uid: 37902 + - uid: 38345 components: - type: Transform - pos: 74.5,-36.5 + pos: -50.5,-50.5 parent: 2 - - uid: 37903 + - uid: 38346 components: - type: Transform - pos: 75.5,-36.5 + pos: -50.5,-49.5 parent: 2 - - uid: 37904 + - uid: 38347 components: - type: Transform - pos: 76.5,-36.5 + pos: -50.5,-48.5 parent: 2 - - uid: 37905 + - uid: 38348 components: - type: Transform - pos: 73.5,-35.5 + pos: -50.5,-46.5 parent: 2 - - uid: 37906 + - uid: 38349 components: - type: Transform - pos: 66.5,-34.5 + pos: -50.5,-45.5 parent: 2 - - uid: 37907 + - uid: 38350 components: - type: Transform - pos: 70.5,-34.5 + pos: -56.5,-63.5 parent: 2 - - uid: 37908 + - uid: 38351 components: - type: Transform - pos: 61.5,-34.5 + pos: -56.5,-64.5 parent: 2 - - uid: 37909 + - uid: 38352 components: - type: Transform - pos: 60.5,-34.5 + pos: -56.5,-66.5 parent: 2 - - uid: 37910 + - uid: 38353 components: - type: Transform - pos: 60.5,-35.5 + pos: -57.5,-67.5 parent: 2 - - uid: 37913 + - uid: 38354 components: - type: Transform - pos: 60.5,-38.5 + pos: -59.5,-66.5 parent: 2 - - uid: 37914 + - uid: 38355 components: - type: Transform - pos: 60.5,-40.5 + pos: -59.5,-64.5 parent: 2 - - uid: 37915 + - uid: 38356 components: - type: Transform - pos: 60.5,-41.5 + pos: -59.5,-63.5 parent: 2 - - uid: 37916 + - uid: 38357 components: - type: Transform - pos: 60.5,-42.5 + pos: -58.5,-63.5 parent: 2 - - uid: 37917 + - uid: 38358 components: - type: Transform - pos: 60.5,-43.5 + pos: -60.5,-63.5 parent: 2 - - uid: 37918 + - uid: 38359 components: - type: Transform - pos: 62.5,-43.5 + pos: -61.5,-63.5 parent: 2 - - uid: 37919 + - uid: 38360 components: - type: Transform - pos: 63.5,-43.5 + pos: -62.5,-63.5 parent: 2 - - uid: 37920 + - uid: 38361 components: - type: Transform - pos: 64.5,-43.5 + pos: -63.5,-63.5 parent: 2 - - uid: 37921 + - uid: 38362 components: - type: Transform - pos: 65.5,-43.5 + pos: -35.5,-0.5 parent: 2 - - uid: 37922 + - uid: 38363 components: - type: Transform - pos: 66.5,-43.5 + pos: -60.5,-45.5 parent: 2 - - uid: 37923 + - uid: 38364 components: - type: Transform - pos: 67.5,-43.5 + pos: -62.5,-45.5 parent: 2 - - uid: 37924 + - uid: 38365 components: - type: Transform - pos: 63.5,-44.5 + pos: -63.5,-45.5 parent: 2 - - uid: 37925 + - uid: 38366 components: - type: Transform - pos: 63.5,-45.5 + pos: -68.5,-45.5 parent: 2 - - uid: 37926 + - uid: 38367 components: - type: Transform - pos: 63.5,-47.5 + pos: -69.5,-45.5 parent: 2 - - uid: 37927 + - uid: 38368 components: - type: Transform - pos: 59.5,-34.5 + pos: -69.5,-41.5 parent: 2 - - uid: 37928 + - uid: 38369 components: - type: Transform - pos: 58.5,-34.5 + pos: -69.5,-40.5 parent: 2 - - uid: 37929 + - uid: 38370 components: - type: Transform - pos: 31.5,-82.5 + pos: -69.5,-39.5 parent: 2 - - uid: 37930 + - uid: 38371 components: - type: Transform - pos: 31.5,-81.5 + pos: -69.5,-38.5 parent: 2 - - uid: 37931 + - uid: 38372 components: - type: Transform - pos: 48.5,-34.5 + pos: -69.5,-36.5 parent: 2 - - uid: 37932 + - uid: 38373 components: - type: Transform - pos: 47.5,-34.5 + pos: -69.5,-35.5 parent: 2 - - uid: 37933 + - uid: 38374 components: - type: Transform - pos: 46.5,-34.5 + pos: -33.5,-41.5 parent: 2 - - uid: 37934 + - uid: 38375 components: - type: Transform - pos: 46.5,-43.5 + pos: -34.5,-41.5 parent: 2 - - uid: 37935 + - uid: 38376 components: - type: Transform - pos: 47.5,-43.5 + pos: -56.5,-41.5 parent: 2 - - uid: 37936 + - uid: 38377 components: - type: Transform - pos: 48.5,-43.5 + pos: -55.5,-41.5 parent: 2 - - uid: 37937 + - uid: 38378 components: - type: Transform - pos: 49.5,-43.5 + pos: -54.5,-41.5 parent: 2 - - uid: 37938 + - uid: 38379 components: - type: Transform - pos: 50.5,-43.5 + pos: -53.5,-41.5 parent: 2 - - uid: 37939 + - uid: 38380 components: - type: Transform - pos: 51.5,-43.5 + pos: -52.5,-41.5 parent: 2 - - uid: 37940 + - uid: 38381 components: - type: Transform - pos: 52.5,-43.5 + pos: -51.5,-41.5 parent: 2 - - uid: 37941 + - uid: 38382 components: - type: Transform - pos: 53.5,-43.5 + pos: -50.5,-41.5 parent: 2 - - uid: 37942 + - uid: 38383 components: - type: Transform - pos: 54.5,-43.5 + pos: -58.5,-41.5 parent: 2 - - uid: 37943 + - uid: 38384 components: - type: Transform - pos: 55.5,-43.5 + pos: -60.5,-41.5 parent: 2 - - uid: 37944 + - uid: 38385 components: - type: Transform - pos: 56.5,-43.5 + pos: -61.5,-41.5 parent: 2 - - uid: 37945 + - uid: 38386 components: - type: Transform - pos: 57.5,-43.5 + pos: -63.5,-41.5 parent: 2 - - uid: 37946 + - uid: 38387 components: - type: Transform - pos: 58.5,-43.5 + pos: -68.5,-41.5 parent: 2 - - uid: 37947 + - uid: 38388 components: - type: Transform - pos: 59.5,-43.5 + pos: -58.5,-36.5 parent: 2 - - uid: 37948 + - uid: 38389 components: - type: Transform - pos: 46.5,-52.5 + pos: -58.5,-35.5 parent: 2 - - uid: 37949 + - uid: 38390 components: - type: Transform - pos: 46.5,-51.5 + pos: -58.5,-34.5 parent: 2 - - uid: 37950 + - uid: 38391 components: - type: Transform - pos: 46.5,-50.5 + pos: -52.5,-34.5 parent: 2 - - uid: 37951 + - uid: 38392 components: - type: Transform - pos: 46.5,-49.5 + pos: -52.5,-35.5 parent: 2 - - uid: 37952 + - uid: 38393 components: - type: Transform - pos: 46.5,-45.5 + pos: -52.5,-36.5 parent: 2 - - uid: 37953 + - uid: 38394 components: - type: Transform - pos: 47.5,-52.5 + pos: -49.5,-37.5 parent: 2 - - uid: 37954 + - uid: 38395 components: - type: Transform - pos: 47.5,-53.5 + pos: -52.5,-30.5 parent: 2 - - uid: 37955 + - uid: 38396 components: - type: Transform - pos: 47.5,-54.5 + pos: -53.5,-30.5 parent: 2 - - uid: 37956 + - uid: 38397 components: - type: Transform - pos: 41.5,-54.5 + pos: -54.5,-30.5 parent: 2 - - uid: 37957 + - uid: 38398 components: - type: Transform - pos: 47.5,-55.5 + pos: -52.5,-31.5 parent: 2 - - uid: 37958 + - uid: 38399 components: - type: Transform - pos: 46.5,-55.5 + pos: -52.5,-32.5 parent: 2 - - uid: 37959 + - uid: 38400 components: - type: Transform - pos: 44.5,-55.5 + pos: -52.5,-33.5 parent: 2 - - uid: 37960 + - uid: 38401 components: - type: Transform - pos: 42.5,-55.5 + pos: -57.5,-30.5 parent: 2 - - uid: 37961 + - uid: 38402 components: - type: Transform - pos: 41.5,-55.5 + pos: -58.5,-30.5 parent: 2 - - uid: 37962 + - uid: 38403 components: - type: Transform - pos: 34.5,-55.5 + pos: -58.5,-31.5 parent: 2 - - uid: 37963 + - uid: 38404 components: - type: Transform - pos: 47.5,-49.5 + pos: -58.5,-32.5 parent: 2 - - uid: 37964 + - uid: 38405 components: - type: Transform - pos: 51.5,-49.5 + pos: -58.5,-33.5 parent: 2 - - uid: 37965 + - uid: 38406 components: - type: Transform - pos: 42.5,-60.5 + pos: -58.5,-29.5 parent: 2 - - uid: 37966 + - uid: 38407 components: - type: Transform - pos: 42.5,-58.5 + pos: -58.5,-27.5 parent: 2 - - uid: 37967 + - uid: 38408 components: - type: Transform - pos: 42.5,-57.5 + pos: -51.5,-26.5 parent: 2 - - uid: 37968 + - uid: 38409 components: - type: Transform - pos: 42.5,-56.5 + pos: -50.5,-26.5 parent: 2 - - uid: 37969 + - uid: 38410 components: - type: Transform - pos: 41.5,-70.5 + pos: -49.5,-26.5 parent: 2 - - uid: 37970 + - uid: 38411 components: - type: Transform - pos: 42.5,-70.5 + pos: -46.5,-26.5 parent: 2 - - uid: 37971 + - uid: 38412 components: - type: Transform - pos: 39.5,-56.5 + pos: -45.5,-26.5 parent: 2 - - uid: 37972 + - uid: 38413 components: - type: Transform - pos: 39.5,-57.5 + pos: -44.5,-26.5 parent: 2 - - uid: 37973 + - uid: 38414 components: - type: Transform - pos: 39.5,-58.5 + pos: -43.5,-26.5 parent: 2 - - uid: 37974 + - uid: 38415 components: - type: Transform - pos: 39.5,-59.5 + pos: -43.5,-25.5 parent: 2 - - uid: 37975 + - uid: 38416 components: - type: Transform - pos: 39.5,-60.5 + pos: -43.5,-24.5 parent: 2 - - uid: 37976 + - uid: 38417 components: - type: Transform - pos: 39.5,-61.5 + pos: -43.5,-23.5 parent: 2 - - uid: 37977 + - uid: 38418 components: - type: Transform - pos: 39.5,-62.5 + pos: -50.5,-23.5 parent: 2 - - uid: 37978 + - uid: 38419 components: - type: Transform - pos: 39.5,-63.5 + pos: -50.5,-22.5 parent: 2 - - uid: 37979 + - uid: 38420 components: - type: Transform - pos: 39.5,-64.5 + pos: -51.5,-22.5 parent: 2 - - uid: 37980 + - uid: 38421 components: - type: Transform - pos: 39.5,-65.5 + pos: -56.5,-22.5 parent: 2 - - uid: 37981 + - uid: 38422 components: - type: Transform - pos: 39.5,-66.5 + pos: -50.5,-24.5 parent: 2 - - uid: 37982 + - uid: 38423 components: - type: Transform - pos: 38.5,-66.5 + pos: -43.5,-22.5 parent: 2 - - uid: 37983 + - uid: 38424 components: - type: Transform - pos: 38.5,-67.5 + pos: -43.5,-21.5 parent: 2 - - uid: 37984 + - uid: 38425 components: - type: Transform - pos: 38.5,-68.5 + pos: -43.5,-20.5 parent: 2 - - uid: 37985 + - uid: 38426 components: - type: Transform - pos: 38.5,-69.5 + pos: -43.5,-19.5 parent: 2 - - uid: 37986 + - uid: 38427 components: - type: Transform - pos: 38.5,-70.5 + pos: -43.5,-18.5 parent: 2 - - uid: 37987 + - uid: 38428 components: - type: Transform - pos: 36.5,-66.5 + pos: -43.5,-17.5 parent: 2 - - uid: 37988 + - uid: 38429 components: - type: Transform - pos: 38.5,-74.5 + pos: -46.5,-17.5 parent: 2 - - uid: 37989 + - uid: 38430 components: - type: Transform - pos: 37.5,-74.5 + pos: -45.5,-17.5 parent: 2 - - uid: 37990 + - uid: 38431 components: - type: Transform - pos: 36.5,-74.5 + pos: -44.5,-17.5 parent: 2 - - uid: 37991 + - uid: 38432 components: - type: Transform - pos: 35.5,-74.5 + pos: -50.5,-17.5 parent: 2 - - uid: 37992 + - uid: 38433 components: - type: Transform - pos: 34.5,-74.5 + pos: -50.5,-18.5 parent: 2 - - uid: 37993 + - uid: 38434 components: - type: Transform - pos: 38.5,-71.5 + pos: -50.5,-19.5 parent: 2 - - uid: 37994 + - uid: 38435 components: - type: Transform - pos: 38.5,-73.5 + pos: -50.5,-20.5 parent: 2 - - uid: 37995 + - uid: 38436 components: - type: Transform - pos: 37.5,-70.5 + pos: -50.5,-21.5 parent: 2 - - uid: 37996 + - uid: 38437 components: - type: Transform - pos: 35.5,-70.5 + pos: -50.5,-16.5 parent: 2 - - uid: 37997 + - uid: 38438 components: - type: Transform - pos: 34.5,-70.5 + pos: -51.5,-16.5 parent: 2 - - uid: 37998 + - uid: 38439 components: - type: Transform - pos: 33.5,-70.5 + pos: -52.5,-16.5 parent: 2 - - uid: 37999 + - uid: 38440 components: - type: Transform - pos: 32.5,-70.5 + pos: -53.5,-16.5 parent: 2 - - uid: 38000 + - uid: 38441 components: - type: Transform - pos: 32.5,-71.5 + pos: -54.5,-16.5 parent: 2 - - uid: 38001 + - uid: 38442 components: - type: Transform - pos: 32.5,-72.5 + pos: -55.5,-16.5 parent: 2 - - uid: 38002 + - uid: 38443 components: - type: Transform - pos: 32.5,-73.5 + pos: -56.5,-16.5 parent: 2 - - uid: 38003 + - uid: 38444 components: - type: Transform - pos: 32.5,-74.5 + pos: -56.5,-17.5 parent: 2 - - uid: 38004 + - uid: 38445 components: - type: Transform - pos: 33.5,-74.5 + pos: -56.5,-18.5 parent: 2 - - uid: 38005 + - uid: 38446 components: - type: Transform - pos: 31.5,-70.5 + pos: -56.5,-19.5 parent: 2 - - uid: 38006 + - uid: 38447 components: - type: Transform - pos: 31.5,-69.5 + pos: -56.5,-20.5 parent: 2 - - uid: 38007 + - uid: 38448 components: - type: Transform - pos: 31.5,-68.5 + pos: -56.5,-21.5 parent: 2 - - uid: 38008 + - uid: 38449 components: - type: Transform - pos: 31.5,-67.5 + pos: -50.5,-14.5 parent: 2 - - uid: 38009 + - uid: 38450 components: - type: Transform - pos: 31.5,-66.5 + pos: -49.5,-14.5 parent: 2 - - uid: 38010 + - uid: 38451 components: - type: Transform - pos: 33.5,-66.5 + pos: -48.5,-14.5 parent: 2 - - uid: 38011 + - uid: 38452 components: - type: Transform - pos: 34.5,-66.5 + pos: -44.5,-14.5 parent: 2 - - uid: 38012 + - uid: 38453 components: - type: Transform - pos: 35.5,-66.5 + pos: -44.5,-13.5 parent: 2 - - uid: 38013 + - uid: 38454 components: - type: Transform - pos: 31.5,-63.5 + pos: -44.5,-12.5 parent: 2 - - uid: 38014 + - uid: 38455 components: - type: Transform - pos: 31.5,-59.5 + pos: -44.5,-11.5 parent: 2 - - uid: 38015 + - uid: 38456 components: - type: Transform - pos: 31.5,-56.5 + pos: -44.5,-10.5 parent: 2 - - uid: 38016 + - uid: 38457 components: - type: Transform - pos: 30.5,-70.5 + pos: -50.5,-11.5 parent: 2 - - uid: 38017 + - uid: 38458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-66.5 + pos: -50.5,-12.5 parent: 2 - - uid: 38018 + - uid: 38459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-85.5 + pos: -50.5,-13.5 parent: 2 - - uid: 38019 + - uid: 38460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-85.5 + pos: -51.5,-10.5 parent: 2 - - uid: 38020 + - uid: 38461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-85.5 + pos: -51.5,-11.5 parent: 2 - - uid: 38021 + - uid: 38462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-80.5 + pos: -52.5,-11.5 parent: 2 - - uid: 38022 + - uid: 38463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-78.5 + pos: -53.5,-11.5 parent: 2 - - uid: 38023 + - uid: 38464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-80.5 + pos: -54.5,-11.5 parent: 2 - - uid: 38024 + - uid: 38465 components: - type: Transform - pos: 30.5,-72.5 + pos: -55.5,-11.5 parent: 2 - - uid: 38025 + - uid: 38466 components: - type: Transform - pos: 13.5,-76.5 + pos: -56.5,-11.5 parent: 2 - - uid: 38026 + - uid: 38467 components: - type: Transform - pos: 13.5,-77.5 + pos: -56.5,-12.5 parent: 2 - - uid: 38027 + - uid: 38468 components: - type: Transform - pos: 13.5,-78.5 + pos: -56.5,-13.5 parent: 2 - - uid: 38028 + - uid: 38469 components: - type: Transform - pos: 13.5,-79.5 + pos: -56.5,-14.5 parent: 2 - - uid: 38029 + - uid: 38470 components: - type: Transform - pos: 13.5,-80.5 + pos: -56.5,-15.5 parent: 2 - - uid: 38030 + - uid: 38472 components: - type: Transform - pos: 13.5,-81.5 + pos: -55.5,-9.5 parent: 2 - - uid: 38031 + - uid: 38473 components: - type: Transform - pos: 13.5,-82.5 + pos: -51.5,-9.5 parent: 2 - - uid: 38032 + - uid: 38474 components: - type: Transform - pos: 13.5,-84.5 + pos: -55.5,-8.5 parent: 2 - - uid: 38033 + - uid: 38475 components: - type: Transform - pos: 13.5,-85.5 + pos: -54.5,-8.5 parent: 2 - - uid: 38034 + - uid: 38476 components: - type: Transform - pos: 23.5,-74.5 + pos: -51.5,-8.5 parent: 2 - - uid: 38035 + - uid: 38478 components: - type: Transform - pos: 21.5,-74.5 + pos: -56.5,-8.5 parent: 2 - - uid: 38036 + - uid: 38481 components: - type: Transform - pos: 20.5,-74.5 + pos: -51.5,-4.5 parent: 2 - - uid: 38037 + - uid: 38484 components: - type: Transform - pos: 15.5,-74.5 + pos: -51.5,-7.5 parent: 2 - - uid: 38038 + - uid: 38485 components: - type: Transform - pos: 14.5,-74.5 + pos: -48.5,1.5 parent: 2 - - uid: 38039 + - uid: 38486 components: - type: Transform - pos: 13.5,-74.5 + pos: -48.5,-1.5 parent: 2 - - uid: 38040 + - uid: 38487 components: - type: Transform - pos: -3.5,-88.5 + pos: -48.5,-4.5 parent: 2 - - uid: 38041 + - uid: 38488 components: - type: Transform - pos: -2.5,-88.5 + pos: -44.5,-9.5 parent: 2 - - uid: 38042 + - uid: 38489 components: - type: Transform - pos: -1.5,-88.5 + pos: -44.5,-8.5 parent: 2 - - uid: 38043 + - uid: 38490 components: - type: Transform - pos: -5.5,-92.5 + pos: -44.5,-7.5 parent: 2 - - uid: 38045 + - uid: 38491 components: - type: Transform - pos: -8.5,-92.5 + pos: -44.5,-6.5 parent: 2 - - uid: 38046 + - uid: 38492 components: - type: Transform - pos: -9.5,-92.5 + pos: -44.5,-5.5 parent: 2 - - uid: 38047 + - uid: 38493 components: - type: Transform - pos: -10.5,-92.5 + pos: -44.5,-4.5 parent: 2 - - uid: 38048 + - uid: 38494 components: - type: Transform - pos: -10.5,-93.5 + pos: -44.5,-3.5 parent: 2 - - uid: 38049 + - uid: 38495 components: - type: Transform - pos: -10.5,-95.5 + pos: -44.5,-2.5 parent: 2 - - uid: 38050 + - uid: 38496 components: - type: Transform - pos: -10.5,-96.5 + pos: -44.5,-1.5 parent: 2 - - uid: 38051 + - uid: 38497 components: - type: Transform - pos: -33.5,-56.5 + pos: -44.5,-0.5 parent: 2 - - uid: 38052 + - uid: 38498 components: - type: Transform - pos: 12.5,-77.5 + pos: -44.5,0.5 parent: 2 - - uid: 38053 + - uid: 38499 components: - type: Transform - pos: 11.5,-77.5 + pos: -44.5,1.5 parent: 2 - - uid: 38054 + - uid: 38500 components: - type: Transform - pos: 10.5,-77.5 + pos: -45.5,1.5 parent: 2 - - uid: 38055 + - uid: 38501 components: - type: Transform - pos: 9.5,-77.5 + pos: -46.5,1.5 parent: 2 - - uid: 38056 + - uid: 38504 components: - type: Transform - pos: 8.5,-77.5 + pos: -45.5,-1.5 parent: 2 - - uid: 38057 + - uid: 38505 components: - type: Transform - pos: 7.5,-77.5 + pos: -47.5,-4.5 parent: 2 - - uid: 38058 + - uid: 38508 components: - type: Transform - pos: 6.5,-77.5 + pos: -42.5,1.5 parent: 2 - - uid: 38059 + - uid: 38509 components: - type: Transform - pos: 8.5,-78.5 + pos: -42.5,-0.5 parent: 2 - - uid: 38060 + - uid: 38510 components: - type: Transform - pos: 6.5,-85.5 + pos: -40.5,1.5 parent: 2 - - uid: 38061 + - uid: 38511 components: - type: Transform - pos: 7.5,-85.5 + pos: -40.5,0.5 parent: 2 - - uid: 38062 + - uid: 38512 components: - type: Transform - pos: 8.5,-85.5 + pos: -40.5,-0.5 parent: 2 - - uid: 38063 + - uid: 38513 components: - type: Transform - pos: 9.5,-85.5 + pos: -40.5,-1.5 parent: 2 - - uid: 38064 + - uid: 38514 components: - type: Transform - pos: 4.5,-85.5 + pos: -40.5,-5.5 parent: 2 - - uid: 38065 + - uid: 38515 components: - type: Transform - pos: 3.5,-85.5 + pos: -39.5,-0.5 parent: 2 - - uid: 38066 + - uid: 38516 components: - type: Transform - pos: 2.5,-85.5 + pos: -38.5,-0.5 parent: 2 - - uid: 38067 + - uid: 38517 components: - type: Transform - pos: 2.5,-84.5 + pos: -37.5,-0.5 parent: 2 - - uid: 38068 + - uid: 38518 components: - type: Transform - pos: 2.5,-83.5 + pos: -36.5,-0.5 parent: 2 - - uid: 38069 + - uid: 38519 components: - type: Transform - pos: 2.5,-77.5 + pos: -36.5,-3.5 parent: 2 - - uid: 38070 + - uid: 38520 components: - type: Transform - pos: 3.5,-77.5 + pos: -36.5,-4.5 parent: 2 - - uid: 38071 + - uid: 38521 components: - type: Transform - pos: 0.5,-83.5 + pos: -36.5,-5.5 parent: 2 - - uid: 38072 + - uid: 38522 components: - type: Transform - pos: -1.5,-83.5 + pos: -34.5,-0.5 parent: 2 - - uid: 38073 + - uid: 38523 components: - type: Transform - pos: -1.5,-78.5 + pos: -34.5,-1.5 parent: 2 - - uid: 38074 + - uid: 38524 components: - type: Transform - pos: -1.5,-77.5 + pos: -34.5,-3.5 parent: 2 - - uid: 38078 + - uid: 38525 components: - type: Transform - pos: -5.5,-77.5 + pos: -34.5,-4.5 parent: 2 - - uid: 38079 + - uid: 38526 components: - type: Transform - pos: -5.5,-78.5 + pos: -34.5,-5.5 parent: 2 - - uid: 38082 + - uid: 38527 components: - type: Transform - pos: -5.5,-81.5 + pos: -39.5,-24.5 parent: 2 - - uid: 38083 + - uid: 38528 components: - type: Transform - pos: -5.5,-82.5 + pos: -39.5,-14.5 parent: 2 - - uid: 38084 + - uid: 38529 components: - type: Transform - pos: -5.5,-83.5 + pos: -39.5,-16.5 parent: 2 - - uid: 38085 + - uid: 38530 components: - type: Transform - pos: -5.5,-84.5 + pos: -38.5,-16.5 parent: 2 - - uid: 38086 + - uid: 38531 components: - type: Transform - pos: -5.5,-85.5 + pos: -37.5,-16.5 parent: 2 - - uid: 38087 + - uid: 38532 components: - type: Transform - pos: -4.5,-85.5 + pos: -36.5,-16.5 parent: 2 - - uid: 38089 + - uid: 38533 components: - type: Transform - pos: -2.5,-85.5 + pos: -35.5,-16.5 parent: 2 - - uid: 38090 + - uid: 38534 components: - type: Transform - pos: -1.5,-85.5 + pos: -35.5,-15.5 parent: 2 - - uid: 38091 + - uid: 38535 components: - type: Transform - pos: -6.5,-82.5 + pos: -35.5,-14.5 parent: 2 - - uid: 38092 + - uid: 38536 components: - type: Transform - pos: -9.5,-82.5 + pos: -39.5,-18.5 parent: 2 - - uid: 38093 + - uid: 38537 components: - type: Transform - pos: -10.5,-82.5 + pos: -39.5,-19.5 parent: 2 - - uid: 38094 + - uid: 38538 components: - type: Transform - pos: -10.5,-81.5 + pos: -39.5,-23.5 parent: 2 - - uid: 38095 + - uid: 38539 components: - type: Transform - pos: -10.5,-79.5 + pos: -38.5,-24.5 parent: 2 - - uid: 38096 + - uid: 38540 components: - type: Transform - pos: -10.5,-78.5 + pos: -34.5,-24.5 parent: 2 - - uid: 38097 + - uid: 38541 components: - type: Transform - pos: -10.5,-77.5 + pos: -33.5,-24.5 parent: 2 - - uid: 38098 + - uid: 38542 components: - type: Transform - pos: -6.5,-77.5 + pos: -33.5,-23.5 parent: 2 - - uid: 38099 + - uid: 38543 components: - type: Transform - pos: -10.5,-83.5 + pos: -33.5,-22.5 parent: 2 - - uid: 38100 + - uid: 38544 components: - type: Transform - pos: -10.5,-84.5 + pos: -33.5,-21.5 parent: 2 - - uid: 38101 + - uid: 38545 components: - type: Transform - pos: -10.5,-85.5 + pos: -33.5,-20.5 parent: 2 - - uid: 38102 + - uid: 38546 components: - type: Transform - pos: -10.5,-91.5 + pos: -33.5,-19.5 parent: 2 - - uid: 38103 + - uid: 38547 components: - type: Transform - pos: -12.5,-77.5 + pos: -33.5,-18.5 parent: 2 - - uid: 38104 + - uid: 38548 components: - type: Transform - pos: -12.5,-78.5 + pos: -34.5,-18.5 parent: 2 - - uid: 38105 + - uid: 38549 components: - type: Transform - pos: -12.5,-76.5 + pos: -35.5,-18.5 parent: 2 - - uid: 38106 + - uid: 38550 components: - type: Transform - pos: -12.5,-75.5 + pos: -36.5,-18.5 parent: 2 - - uid: 38107 + - uid: 38551 components: - type: Transform - pos: -12.5,-74.5 + pos: -37.5,-18.5 parent: 2 - - uid: 38108 + - uid: 38552 components: - type: Transform - pos: -13.5,-74.5 + pos: -38.5,-18.5 parent: 2 - - uid: 38109 + - uid: 38553 components: - type: Transform - pos: -14.5,-74.5 + pos: -33.5,-25.5 parent: 2 - - uid: 38110 + - uid: 38554 components: - type: Transform - pos: -15.5,-74.5 + pos: -33.5,-36.5 parent: 2 - - uid: 38111 + - uid: 38555 components: - type: Transform - pos: -16.5,-74.5 + rot: 3.141592653589793 rad + pos: -72.5,-34.5 parent: 2 - - uid: 38112 + - uid: 38556 components: - type: Transform - pos: -16.5,-75.5 + rot: 3.141592653589793 rad + pos: -70.5,-34.5 parent: 2 - - uid: 38113 + - uid: 38557 components: - type: Transform - pos: -16.5,-77.5 + rot: 3.141592653589793 rad + pos: -69.5,-34.5 parent: 2 - - uid: 38114 + - uid: 38558 components: - type: Transform - pos: -16.5,-78.5 + rot: 3.141592653589793 rad + pos: -69.5,-30.5 parent: 2 - - uid: 38115 + - uid: 38559 components: - type: Transform - pos: -15.5,-78.5 + rot: 3.141592653589793 rad + pos: -69.5,-32.5 parent: 2 - - uid: 38116 + - uid: 38560 components: - type: Transform - pos: -14.5,-78.5 + rot: 3.141592653589793 rad + pos: -69.5,-33.5 parent: 2 - - uid: 38117 + - uid: 38561 components: - type: Transform - pos: -13.5,-78.5 + pos: -31.5,-30.5 parent: 2 - - uid: 38118 + - uid: 38562 components: - type: Transform - pos: -17.5,-74.5 + pos: -33.5,-40.5 parent: 2 - - uid: 38119 + - uid: 38563 components: - type: Transform - pos: -18.5,-74.5 + pos: -37.5,2.5 parent: 2 - - uid: 38120 + - uid: 38564 components: - type: Transform - pos: -21.5,-74.5 + pos: -36.5,2.5 parent: 2 - - uid: 38121 + - uid: 38565 components: - type: Transform - pos: -22.5,-74.5 + pos: -35.5,2.5 parent: 2 - - uid: 38122 + - uid: 38566 components: - type: Transform - pos: -22.5,-75.5 + pos: -34.5,2.5 parent: 2 - - uid: 38123 + - uid: 38567 components: - type: Transform - pos: -22.5,-77.5 + pos: -40.5,2.5 parent: 2 - - uid: 38124 + - uid: 38569 components: - type: Transform - pos: -22.5,-78.5 + pos: -40.5,4.5 parent: 2 - - uid: 38125 + - uid: 38570 components: - type: Transform - pos: -22.5,-79.5 + pos: -40.5,5.5 parent: 2 - - uid: 38126 + - uid: 38571 components: - type: Transform - pos: -16.5,-83.5 + pos: -41.5,5.5 parent: 2 - - uid: 38127 + - uid: 38572 components: - type: Transform - pos: -20.5,-79.5 + pos: -42.5,5.5 parent: 2 - - uid: 38128 + - uid: 38575 components: - type: Transform - pos: -16.5,-84.5 + pos: -45.5,5.5 parent: 2 - - uid: 38129 + - uid: 38576 components: - type: Transform - pos: -18.5,-79.5 + pos: -46.5,5.5 parent: 2 - - uid: 38130 + - uid: 38577 components: - type: Transform - pos: -16.5,-82.5 + pos: -47.5,5.5 parent: 2 - - uid: 38131 + - uid: 38578 components: - type: Transform - pos: -16.5,-79.5 + rot: 3.141592653589793 rad + pos: -69.5,-31.5 parent: 2 - - uid: 38132 + - uid: 38579 components: - type: Transform - pos: -18.5,-78.5 + pos: -48.5,5.5 parent: 2 - - uid: 38133 + - uid: 38580 components: - type: Transform - pos: -16.5,-81.5 + pos: -50.5,5.5 parent: 2 - - uid: 38134 + - uid: 38581 components: - type: Transform - pos: -20.5,-78.5 + pos: -34.5,3.5 parent: 2 - - uid: 38135 + - uid: 38582 components: - type: Transform - pos: -26.5,-79.5 + pos: -34.5,5.5 parent: 2 - - uid: 38136 + - uid: 38583 components: - type: Transform - pos: -26.5,-74.5 + pos: -30.5,-30.5 parent: 2 - - uid: 38137 + - uid: 38584 components: - type: Transform - pos: -26.5,-75.5 + pos: -30.5,-25.5 parent: 2 - - uid: 38138 + - uid: 38585 components: - type: Transform - pos: -26.5,-76.5 + pos: -30.5,-24.5 parent: 2 - - uid: 38139 + - uid: 38586 components: - type: Transform - pos: -26.5,-77.5 + pos: -30.5,-23.5 parent: 2 - - uid: 38140 + - uid: 38587 components: - type: Transform - pos: -26.5,-78.5 + pos: -30.5,-22.5 parent: 2 - - uid: 38141 + - uid: 38588 components: - type: Transform - pos: -16.5,-80.5 + pos: -30.5,-21.5 parent: 2 - - uid: 38142 + - uid: 38589 components: - type: Transform - pos: -17.5,-80.5 + pos: -30.5,-20.5 parent: 2 - - uid: 38143 + - uid: 38590 components: - type: Transform - pos: -18.5,-80.5 + pos: -30.5,-16.5 parent: 2 - - uid: 38144 + - uid: 38591 components: - type: Transform - pos: -19.5,-80.5 + pos: -30.5,-15.5 parent: 2 - - uid: 38145 + - uid: 38592 components: - type: Transform - pos: -20.5,-80.5 + pos: -30.5,-14.5 parent: 2 - - uid: 38146 + - uid: 38593 components: - type: Transform - pos: -21.5,-80.5 + pos: -30.5,-13.5 parent: 2 - - uid: 38147 + - uid: 38594 components: - type: Transform - pos: -22.5,-80.5 + pos: -30.5,-12.5 parent: 2 - - uid: 38148 + - uid: 38595 components: - type: Transform - pos: -16.5,-85.5 + pos: -30.5,-8.5 parent: 2 - - uid: 38149 + - uid: 38596 components: - type: Transform - pos: -16.5,-86.5 + pos: -29.5,-8.5 parent: 2 - - uid: 38150 + - uid: 38597 components: - type: Transform - pos: -16.5,-87.5 + pos: -29.5,-6.5 parent: 2 - - uid: 38151 + - uid: 38598 components: - type: Transform - pos: -26.5,-82.5 + pos: -30.5,-6.5 parent: 2 - - uid: 38152 + - uid: 38599 components: - type: Transform - pos: -26.5,-83.5 + pos: -31.5,-6.5 parent: 2 - - uid: 38153 + - uid: 38600 components: - type: Transform - pos: -26.5,-84.5 + pos: -31.5,-5.5 parent: 2 - - uid: 38154 + - uid: 38601 components: - type: Transform - pos: -26.5,-85.5 + pos: -31.5,-4.5 parent: 2 - - uid: 38155 + - uid: 38602 components: - type: Transform - pos: -26.5,-86.5 + pos: -31.5,-3.5 parent: 2 - - uid: 38156 + - uid: 38603 components: - type: Transform - pos: -26.5,-87.5 + pos: -31.5,-2.5 parent: 2 - - uid: 38157 + - uid: 38604 components: - type: Transform - pos: -26.5,-88.5 + pos: -31.5,-1.5 parent: 2 - - uid: 38158 + - uid: 38605 components: - type: Transform - pos: -26.5,-89.5 + pos: -31.5,-0.5 parent: 2 - - uid: 38159 + - uid: 38606 components: - type: Transform - pos: -27.5,-82.5 + pos: -31.5,0.5 parent: 2 - - uid: 38160 + - uid: 38607 components: - type: Transform - pos: -28.5,-82.5 + pos: -31.5,2.5 parent: 2 - - uid: 38161 + - uid: 38608 components: - type: Transform - pos: -29.5,-82.5 + pos: -28.5,-6.5 parent: 2 - - uid: 38162 + - uid: 38609 components: - type: Transform - pos: -30.5,-82.5 + pos: -28.5,-5.5 parent: 2 - - uid: 38163 + - uid: 38610 components: - type: Transform - pos: -30.5,-83.5 + pos: -28.5,-3.5 parent: 2 - - uid: 38164 + - uid: 38611 components: - type: Transform - pos: -30.5,-85.5 + pos: -33.5,9.5 parent: 2 - - uid: 38165 + - uid: 38612 components: - type: Transform - pos: -29.5,-85.5 + pos: -32.5,9.5 parent: 2 - - uid: 38166 + - uid: 38613 components: - type: Transform - pos: -28.5,-85.5 + pos: -31.5,9.5 parent: 2 - - uid: 38167 + - uid: 38614 components: - type: Transform - pos: -27.5,-85.5 + pos: -32.5,10.5 parent: 2 - - uid: 38168 + - uid: 38615 components: - type: Transform - pos: -30.5,-88.5 + pos: -27.5,-3.5 parent: 2 - - uid: 38169 + - uid: 38616 components: - type: Transform - pos: -30.5,-86.5 + pos: -32.5,14.5 parent: 2 - - uid: 38170 + - uid: 38617 components: - type: Transform - pos: -29.5,-88.5 + pos: -33.5,12.5 parent: 2 - - uid: 38171 + - uid: 38618 components: - type: Transform - pos: -28.5,-88.5 + pos: -33.5,2.5 parent: 2 - - uid: 38172 + - uid: 38619 components: - type: Transform - pos: -27.5,-88.5 + pos: -32.5,2.5 parent: 2 - - uid: 38173 + - uid: 38620 components: - type: Transform - pos: -30.5,-89.5 + pos: -27.5,-2.5 parent: 2 - - uid: 38174 + - uid: 38621 components: - type: Transform - pos: -26.5,-90.5 + pos: -27.5,-1.5 parent: 2 - - uid: 38175 + - uid: 38622 components: - type: Transform - pos: -26.5,-91.5 + pos: -33.5,11.5 parent: 2 - - uid: 38176 + - uid: 38623 components: - type: Transform - pos: -27.5,-91.5 + pos: -24.5,-1.5 parent: 2 - - uid: 38177 + - uid: 38624 components: - type: Transform - pos: -28.5,-91.5 + pos: -24.5,-0.5 parent: 2 - - uid: 38178 + - uid: 38625 components: - type: Transform - pos: -29.5,-91.5 + pos: -22.5,-0.5 parent: 2 - - uid: 38179 + - uid: 38626 components: - type: Transform - pos: -30.5,-91.5 + pos: -28.5,9.5 parent: 2 - - uid: 38180 + - uid: 38627 components: - type: Transform - pos: -33.5,-91.5 + pos: -27.5,9.5 parent: 2 - - uid: 38181 + - uid: 38628 components: - type: Transform - pos: -33.5,-89.5 + pos: -26.5,9.5 parent: 2 - - uid: 38182 + - uid: 38629 components: - type: Transform - pos: -33.5,-88.5 + rot: 1.5707963267948966 rad + pos: -44.5,-41.5 parent: 2 - - uid: 38183 + - uid: 38630 components: - type: Transform - pos: -33.5,-85.5 + rot: 1.5707963267948966 rad + pos: -46.5,-37.5 parent: 2 - - uid: 38184 + - uid: 38631 components: - type: Transform - pos: -33.5,-83.5 + pos: -12.5,4.5 parent: 2 - - uid: 38185 + - uid: 38632 components: - type: Transform - pos: -33.5,-82.5 + pos: -9.5,-0.5 parent: 2 - - uid: 38186 + - uid: 38633 components: - type: Transform - pos: -37.5,-91.5 + pos: -3.5,-0.5 parent: 2 - - uid: 38187 + - uid: 38634 components: - type: Transform - pos: -37.5,-90.5 + pos: -3.5,0.5 parent: 2 - - uid: 38188 + - uid: 38635 components: - type: Transform - pos: -37.5,-89.5 + pos: -3.5,1.5 parent: 2 - - uid: 38189 + - uid: 38636 components: - type: Transform - pos: -37.5,-88.5 + pos: -3.5,2.5 parent: 2 - - uid: 38190 + - uid: 38637 components: - type: Transform - pos: -37.5,-87.5 + pos: -68.5,-40.5 parent: 2 - - uid: 38191 + - uid: 38638 components: - type: Transform - pos: -37.5,-86.5 + pos: -63.5,-40.5 parent: 2 - - uid: 38192 + - uid: 38639 components: - type: Transform - pos: -37.5,-85.5 + pos: -33.5,10.5 parent: 2 - - uid: 38193 + - uid: 38640 components: - type: Transform - pos: -37.5,-84.5 + pos: 38.5,-9.5 parent: 2 - - uid: 38194 + - uid: 38641 components: - type: Transform - pos: -37.5,-83.5 + pos: 21.5,10.5 parent: 2 - - uid: 38195 + - uid: 38642 components: - type: Transform - pos: -37.5,-82.5 + pos: 21.5,9.5 parent: 2 - - uid: 38196 + - uid: 38643 components: - type: Transform - pos: -36.5,-82.5 + pos: -26.5,15.5 parent: 2 - - uid: 38197 + - uid: 38644 components: - type: Transform - pos: -35.5,-82.5 + pos: -27.5,15.5 parent: 2 - - uid: 38198 + - uid: 38645 components: - type: Transform - pos: -34.5,-82.5 + pos: -28.5,15.5 parent: 2 - - uid: 38199 + - uid: 38646 components: - type: Transform - pos: -34.5,-85.5 + pos: -29.5,15.5 parent: 2 - - uid: 38200 + - uid: 38647 components: - type: Transform - pos: -35.5,-85.5 + pos: -30.5,15.5 parent: 2 - - uid: 38201 + - uid: 38648 components: - type: Transform - pos: -36.5,-85.5 + pos: -32.5,15.5 parent: 2 - - uid: 38202 + - uid: 38649 components: - type: Transform - pos: -36.5,-88.5 + pos: -38.5,5.5 parent: 2 - - uid: 38203 + - uid: 38650 components: - type: Transform - pos: -35.5,-88.5 + pos: -38.5,4.5 parent: 2 - - uid: 38204 + - uid: 38651 components: - type: Transform - pos: -34.5,-88.5 + pos: -38.5,3.5 parent: 2 - - uid: 38205 + - uid: 38652 components: - type: Transform - pos: -36.5,-91.5 + pos: -38.5,2.5 parent: 2 - - uid: 38206 + - uid: 38653 components: - type: Transform - pos: -35.5,-91.5 + pos: -25.5,15.5 parent: 2 - - uid: 38207 + - uid: 38654 components: - type: Transform - pos: -34.5,-91.5 + pos: -25.5,14.5 parent: 2 - - uid: 38208 + - uid: 38655 components: - type: Transform - pos: -28.5,-92.5 + pos: -25.5,13.5 parent: 2 - - uid: 38209 + - uid: 38656 components: - type: Transform - pos: -28.5,-93.5 + pos: -25.5,12.5 parent: 2 - - uid: 38210 + - uid: 38657 components: - type: Transform - pos: -28.5,-94.5 + pos: -25.5,11.5 parent: 2 - - uid: 38211 + - uid: 38658 components: - type: Transform - pos: -28.5,-95.5 + pos: -25.5,10.5 parent: 2 - - uid: 38212 + - uid: 38659 components: - type: Transform - pos: -28.5,-96.5 + pos: -33.5,13.5 parent: 2 - - uid: 38213 + - uid: 38660 components: - type: Transform - pos: -25.5,-90.5 + pos: -33.5,14.5 parent: 2 - - uid: 38214 + - uid: 38661 components: - type: Transform - pos: -21.5,-90.5 + pos: -48.5,-7.5 parent: 2 - - uid: 38215 + - uid: 38662 components: - type: Transform - pos: -20.5,-90.5 + pos: -47.5,6.5 parent: 2 - - uid: 38216 + - uid: 38663 components: - type: Transform - pos: -19.5,-90.5 + pos: -48.5,7.5 parent: 2 - - uid: 38217 + - uid: 38664 components: - type: Transform - pos: -18.5,-90.5 + pos: -47.5,7.5 parent: 2 - - uid: 38218 + - uid: 38665 components: - type: Transform - pos: -17.5,-90.5 + pos: -50.5,7.5 parent: 2 - - uid: 38219 + - uid: 38666 components: - type: Transform - pos: -16.5,-90.5 + pos: 79.5,-35.5 parent: 2 - - uid: 38220 + - uid: 38667 components: - type: Transform - pos: -16.5,-89.5 + rot: 1.5707963267948966 rad + pos: 62.5,-34.5 parent: 2 - - uid: 38221 + - uid: 38668 components: - type: Transform - pos: -16.5,-88.5 + rot: -1.5707963267948966 rad + pos: 57.5,-74.5 parent: 2 - - uid: 38222 + - uid: 38669 components: - type: Transform - pos: -36.5,-93.5 + rot: -1.5707963267948966 rad + pos: 56.5,-74.5 parent: 2 - - uid: 38223 + - uid: 38670 components: - type: Transform - pos: -37.5,-81.5 + rot: -1.5707963267948966 rad + pos: 55.5,-74.5 parent: 2 - - uid: 38224 + - uid: 38671 components: - type: Transform - pos: -37.5,-80.5 + rot: -1.5707963267948966 rad + pos: 54.5,-74.5 parent: 2 - - uid: 38225 + - uid: 38672 components: - type: Transform - pos: -37.5,-79.5 + pos: -11.5,-81.5 parent: 2 - - uid: 38226 + - uid: 38673 components: - type: Transform - pos: -33.5,-77.5 + pos: 18.5,-98.5 parent: 2 - - uid: 38227 + - uid: 38674 components: - type: Transform - pos: -33.5,-78.5 + rot: 1.5707963267948966 rad + pos: 51.5,-45.5 parent: 2 - - uid: 38228 + - uid: 38675 components: - type: Transform - pos: -33.5,-79.5 + rot: 1.5707963267948966 rad + pos: 50.5,-45.5 parent: 2 - - uid: 38229 + - uid: 38676 components: - type: Transform - pos: -32.5,-79.5 + rot: 1.5707963267948966 rad + pos: 49.5,-45.5 parent: 2 - - uid: 38230 + - uid: 38677 components: - type: Transform - pos: -31.5,-79.5 + rot: 1.5707963267948966 rad + pos: 48.5,-45.5 parent: 2 - - uid: 38231 + - uid: 38678 components: - type: Transform - pos: -30.5,-79.5 + pos: 41.5,-75.5 parent: 2 - - uid: 38232 + - uid: 38679 components: - type: Transform - pos: -29.5,-79.5 + rot: -1.5707963267948966 rad + pos: 29.5,-72.5 parent: 2 - - uid: 38233 + - uid: 38680 components: - type: Transform - pos: -28.5,-79.5 + pos: 41.5,-74.5 parent: 2 - - uid: 38234 + - uid: 38681 components: - type: Transform - pos: -27.5,-79.5 + pos: 46.5,-70.5 parent: 2 - - uid: 38235 + - uid: 38682 components: - type: Transform - pos: -26.5,-72.5 + pos: 41.5,-71.5 parent: 2 - - uid: 38236 + - uid: 38683 components: - type: Transform - pos: -30.5,-71.5 + pos: 41.5,-73.5 parent: 2 - - uid: 38237 + - uid: 38684 components: - type: Transform - pos: -31.5,-72.5 + pos: 41.5,-72.5 parent: 2 - - uid: 38238 + - uid: 38685 components: - type: Transform - pos: -31.5,-73.5 + pos: 47.5,-70.5 parent: 2 - - uid: 38239 + - uid: 38686 components: - type: Transform - pos: -31.5,-74.5 + pos: 47.5,-71.5 parent: 2 - - uid: 38240 + - uid: 38687 components: - type: Transform - pos: -31.5,-75.5 + pos: 17.5,-98.5 parent: 2 - - uid: 38241 + - uid: 38688 components: - type: Transform - pos: -31.5,-76.5 + pos: -13.5,-81.5 parent: 2 - - uid: 38242 + - uid: 38689 components: - type: Transform - pos: -31.5,-78.5 + pos: 8.5,-84.5 parent: 2 - - uid: 38243 + - uid: 38690 components: - type: Transform - pos: -37.5,-78.5 + pos: 31.5,-80.5 parent: 2 - - uid: 38244 + - uid: 38691 components: - type: Transform - pos: -37.5,-77.5 + pos: -12.5,-91.5 parent: 2 - - uid: 38245 + - uid: 38692 components: - type: Transform - pos: -45.5,-89.5 + pos: -11.5,-91.5 parent: 2 - - uid: 38246 + - uid: 38693 components: - type: Transform - pos: -45.5,-88.5 + pos: -13.5,-91.5 parent: 2 - - uid: 38247 + - uid: 38694 components: - type: Transform - pos: -45.5,-87.5 + pos: -14.5,-91.5 parent: 2 - - uid: 38248 + - uid: 38695 components: - type: Transform - pos: -45.5,-86.5 + pos: 40.5,-70.5 parent: 2 - - uid: 38249 + - uid: 38696 components: - type: Transform - pos: -46.5,-86.5 + pos: 34.5,-56.5 parent: 2 - - uid: 38250 + - uid: 38697 components: - type: Transform - pos: -45.5,-85.5 + pos: 32.5,-56.5 parent: 2 - - uid: 38251 + - uid: 38698 components: - type: Transform - pos: -45.5,-84.5 + pos: 33.5,-67.5 parent: 2 - - uid: 38252 + - uid: 38699 components: - type: Transform - pos: -45.5,-83.5 + pos: 37.5,-56.5 parent: 2 - - uid: 38253 + - uid: 38700 components: - type: Transform - pos: -45.5,-82.5 + pos: 36.5,-56.5 parent: 2 - - uid: 38254 + - uid: 38701 components: - type: Transform - pos: -44.5,-82.5 + pos: 33.5,-68.5 parent: 2 - - uid: 38255 + - uid: 38702 components: - type: Transform - pos: -43.5,-82.5 + pos: 31.5,-60.5 parent: 2 - - uid: 38256 + - uid: 38703 components: - type: Transform - pos: -40.5,-81.5 + pos: 33.5,-56.5 parent: 2 - - uid: 38257 + - uid: 38704 components: - type: Transform - pos: -40.5,-82.5 + pos: 38.5,-56.5 parent: 2 - - uid: 38258 + - uid: 38705 components: - type: Transform - pos: -40.5,-83.5 + pos: 35.5,-56.5 parent: 2 - - uid: 38259 + - uid: 38706 components: - type: Transform - pos: -40.5,-84.5 + rot: 3.141592653589793 rad + pos: 47.5,-84.5 parent: 2 - - uid: 38260 + - uid: 38707 components: - type: Transform - pos: -40.5,-80.5 + rot: 3.141592653589793 rad + pos: 51.5,-85.5 parent: 2 - - uid: 38261 + - uid: 38708 components: - type: Transform - pos: -40.5,-79.5 + rot: 3.141592653589793 rad + pos: 52.5,-85.5 parent: 2 - - uid: 38262 + - uid: 38709 components: - type: Transform - pos: -40.5,-78.5 + rot: 3.141592653589793 rad + pos: 50.5,-85.5 parent: 2 - - uid: 38263 + - uid: 38710 components: - type: Transform - pos: -40.5,-77.5 + rot: 3.141592653589793 rad + pos: 55.5,-85.5 parent: 2 - - uid: 38264 + - uid: 38711 components: - type: Transform - pos: -40.5,-76.5 + pos: -19.5,-74.5 parent: 2 - - uid: 38265 + - uid: 38712 components: - type: Transform - pos: -30.5,-72.5 + pos: -63.5,-46.5 parent: 2 - - uid: 38266 + - uid: 38713 components: - type: Transform - pos: -33.5,-65.5 + pos: -40.5,-86.5 parent: 2 - - uid: 38267 + - uid: 38714 components: - type: Transform - pos: -33.5,-63.5 + pos: -42.5,-82.5 parent: 2 - - uid: 38268 + - uid: 38715 components: - type: Transform - pos: -33.5,-62.5 + rot: -1.5707963267948966 rad + pos: -36.5,-95.5 parent: 2 - - uid: 38269 + - uid: 38716 components: - type: Transform - pos: -33.5,-61.5 + pos: -44.5,-90.5 parent: 2 - - uid: 38270 + - uid: 38717 components: - type: Transform - pos: -33.5,-60.5 + pos: -45.5,-90.5 parent: 2 - - uid: 38271 + - uid: 38718 components: - type: Transform - pos: -33.5,-59.5 + pos: -50.5,-47.5 parent: 2 - - uid: 38272 + - uid: 38719 components: - type: Transform - pos: -33.5,-57.5 + pos: -62.5,-35.5 parent: 2 - - uid: 38273 + - uid: 38720 components: - type: Transform - pos: -34.5,-60.5 + pos: -63.5,-35.5 parent: 2 - - uid: 38274 + - uid: 38721 components: - type: Transform - pos: -35.5,-60.5 + pos: -64.5,-35.5 parent: 2 - - uid: 38275 + - uid: 38722 components: - type: Transform - pos: -36.5,-60.5 + pos: -65.5,-35.5 parent: 2 - - uid: 38276 + - uid: 38723 components: - type: Transform - pos: -41.5,-60.5 + pos: -66.5,-35.5 parent: 2 - - uid: 38277 + - uid: 38724 components: - type: Transform - pos: -41.5,-61.5 + pos: -67.5,-35.5 parent: 2 - - uid: 38278 + - uid: 38725 components: - type: Transform - pos: -41.5,-62.5 + pos: -68.5,-35.5 parent: 2 - - uid: 38279 + - uid: 38726 components: - type: Transform - pos: -31.5,-56.5 + rot: 3.141592653589793 rad + pos: 54.5,-85.5 parent: 2 - - uid: 38280 + - uid: 38727 components: - type: Transform - pos: -30.5,-56.5 + pos: -62.5,-36.5 parent: 2 - - uid: 38281 + - uid: 38728 components: - type: Transform - pos: -30.5,-61.5 + pos: -62.5,-37.5 parent: 2 - - uid: 38282 + - uid: 38729 components: - type: Transform - pos: -30.5,-62.5 + rot: -1.5707963267948966 rad + pos: -36.5,-96.5 parent: 2 - - uid: 38283 + - uid: 38730 components: - type: Transform - pos: -30.5,-63.5 + pos: -62.5,-39.5 parent: 2 - - uid: 38284 + - uid: 38731 components: - type: Transform - pos: -30.5,-64.5 + pos: -62.5,-40.5 parent: 2 - - uid: 38285 + - uid: 38732 components: - type: Transform - pos: -30.5,-65.5 + rot: -1.5707963267948966 rad + pos: -36.5,-97.5 parent: 2 - - uid: 38286 + - uid: 38733 components: - type: Transform - pos: -30.5,-67.5 + pos: -64.5,-63.5 parent: 2 - - uid: 38287 + - uid: 38734 components: - type: Transform - pos: -30.5,-68.5 + pos: 27.5,-80.5 parent: 2 - - uid: 38288 + - uid: 38735 components: - type: Transform - pos: -30.5,-69.5 + pos: 43.5,24.5 parent: 2 - - uid: 38289 + - uid: 38736 components: - type: Transform - pos: -30.5,-70.5 + pos: 43.5,23.5 parent: 2 - - uid: 38290 + - uid: 38737 components: - type: Transform - pos: -34.5,-56.5 + pos: 43.5,22.5 parent: 2 - - uid: 38291 + - uid: 38739 components: - type: Transform - pos: -35.5,-56.5 + pos: 46.5,19.5 parent: 2 - - uid: 38292 + - uid: 38740 components: - type: Transform - pos: -36.5,-56.5 + rot: -1.5707963267948966 rad + pos: -36.5,-98.5 parent: 2 - - uid: 38293 + - uid: 38741 components: - type: Transform - pos: -37.5,-56.5 + pos: 43.5,20.5 parent: 2 - - uid: 38294 + - uid: 38742 components: - type: Transform - pos: -40.5,-56.5 + rot: 1.5707963267948966 rad + pos: 6.5,-73.5 parent: 2 - - uid: 38295 + - uid: 38743 components: - type: Transform - pos: -41.5,-56.5 + rot: 1.5707963267948966 rad + pos: 9.5,-71.5 parent: 2 - - uid: 38296 + - uid: 38747 components: - type: Transform - pos: -33.5,-55.5 + rot: 1.5707963267948966 rad + pos: -8.5,-73.5 parent: 2 - - uid: 38297 + - uid: 38748 components: - type: Transform - pos: -33.5,-54.5 + rot: 1.5707963267948966 rad + pos: 6.5,-72.5 parent: 2 - - uid: 38298 + - uid: 38749 components: - type: Transform - pos: -33.5,-50.5 + rot: 1.5707963267948966 rad + pos: 9.5,-72.5 parent: 2 - - uid: 38299 + - uid: 38750 components: - type: Transform - pos: -34.5,-50.5 + rot: 1.5707963267948966 rad + pos: 9.5,-73.5 parent: 2 - - uid: 38300 + - uid: 38751 components: - type: Transform - pos: -35.5,-50.5 + rot: 1.5707963267948966 rad + pos: 6.5,-71.5 parent: 2 - - uid: 38301 + - uid: 38752 components: - type: Transform - pos: -36.5,-50.5 + pos: -14.5,-82.5 parent: 2 - - uid: 38302 + - uid: 38753 components: - type: Transform - pos: -41.5,-50.5 + pos: -14.5,-81.5 parent: 2 - - uid: 38303 + - uid: 38754 components: - type: Transform - pos: -41.5,-51.5 + pos: -14.5,-83.5 parent: 2 - - uid: 38304 + - uid: 38755 components: - type: Transform - pos: -41.5,-55.5 + pos: 43.5,19.5 parent: 2 - - uid: 38305 + - uid: 38756 components: - type: Transform - pos: -41.5,-49.5 + pos: 27.5,-82.5 parent: 2 - - uid: 38306 + - uid: 38757 components: - type: Transform - pos: -41.5,-45.5 + pos: 27.5,-81.5 parent: 2 - - uid: 38307 + - uid: 38758 components: - type: Transform - pos: -40.5,-45.5 + pos: 23.5,-82.5 parent: 2 - - uid: 38308 + - uid: 38759 components: - type: Transform - pos: -34.5,-45.5 + pos: 16.5,-98.5 parent: 2 - - uid: 38309 + - uid: 38760 components: - type: Transform - pos: -33.5,-45.5 + rot: 3.141592653589793 rad + pos: 40.5,19.5 parent: 2 - - uid: 38310 + - uid: 38761 components: - type: Transform - pos: -33.5,-46.5 + pos: 45.5,19.5 parent: 2 - - uid: 38311 + - uid: 38762 components: - type: Transform - pos: -33.5,-47.5 + rot: 1.5707963267948966 rad + pos: 31.5,-14.5 parent: 2 - - uid: 38312 + - uid: 38763 components: - type: Transform - pos: -33.5,-48.5 + rot: 1.5707963267948966 rad + pos: 34.5,-53.5 parent: 2 - - uid: 38313 + - uid: 38764 components: - type: Transform - pos: -33.5,-49.5 + rot: 1.5707963267948966 rad + pos: 35.5,-53.5 parent: 2 - - uid: 38314 + - uid: 38765 components: - type: Transform - pos: -43.5,-49.5 + rot: 1.5707963267948966 rad + pos: 37.5,-53.5 parent: 2 - - uid: 38315 + - uid: 38766 components: - type: Transform - pos: -43.5,-51.5 + rot: 1.5707963267948966 rad + pos: 38.5,-53.5 parent: 2 - - uid: 38316 + - uid: 38767 components: - type: Transform - pos: -45.5,-45.5 + rot: 1.5707963267948966 rad + pos: 36.5,-53.5 parent: 2 - - uid: 38317 + - uid: 38768 components: - type: Transform - pos: -45.5,-49.5 + rot: 1.5707963267948966 rad + pos: -8.5,-71.5 parent: 2 - - uid: 38318 + - uid: 38769 components: - type: Transform - pos: -45.5,-50.5 + rot: -1.5707963267948966 rad + pos: -36.5,19.5 parent: 2 - - uid: 38319 + - uid: 38770 components: - type: Transform - pos: -45.5,-51.5 + rot: 3.141592653589793 rad + pos: 16.5,-85.5 parent: 2 - - uid: 38320 + - uid: 38771 components: - type: Transform - pos: -50.5,-63.5 + rot: 3.141592653589793 rad + pos: 17.5,-85.5 parent: 2 - - uid: 38321 + - uid: 38772 components: - type: Transform - pos: 43.5,-67.5 + rot: 1.5707963267948966 rad + pos: -36.5,-70.5 parent: 2 - - uid: 38322 + - uid: 38773 components: - type: Transform - pos: -45.5,-77.5 + rot: 1.5707963267948966 rad + pos: -36.5,-69.5 parent: 2 - - uid: 38323 + - uid: 38774 components: - type: Transform - pos: -45.5,-78.5 + rot: 1.5707963267948966 rad + pos: -36.5,-67.5 parent: 2 - - uid: 38324 + - uid: 38775 components: - type: Transform - pos: -45.5,-79.5 + rot: 1.5707963267948966 rad + pos: 42.5,-50.5 parent: 2 - - uid: 38325 + - uid: 38776 components: - type: Transform - pos: -45.5,-76.5 + rot: 1.5707963267948966 rad + pos: 42.5,-52.5 parent: 2 - - uid: 38326 + - uid: 38777 components: - type: Transform - pos: -48.5,-79.5 + rot: 1.5707963267948966 rad + pos: 41.5,-52.5 parent: 2 - - uid: 38327 + - uid: 38778 components: - type: Transform - pos: -49.5,-79.5 + rot: 1.5707963267948966 rad + pos: 34.5,-52.5 parent: 2 - - uid: 38328 + - uid: 38779 components: - type: Transform - pos: -50.5,-79.5 + rot: 1.5707963267948966 rad + pos: 34.5,-51.5 parent: 2 - - uid: 38329 + - uid: 38780 components: - type: Transform - pos: -51.5,-79.5 + pos: 47.5,-75.5 parent: 2 - - uid: 38330 + - uid: 38781 components: - type: Transform - pos: -51.5,-80.5 + pos: 47.5,-76.5 parent: 2 - - uid: 38331 + - uid: 38782 components: - type: Transform - pos: -51.5,-81.5 + pos: 45.5,-76.5 parent: 2 - - uid: 38332 + - uid: 38783 components: - type: Transform - pos: -51.5,-82.5 + rot: 1.5707963267948966 rad + pos: 41.5,-53.5 parent: 2 - - uid: 38333 + - uid: 38784 components: - type: Transform - pos: -51.5,-83.5 + pos: 46.5,-76.5 parent: 2 - - uid: 38334 + - uid: 38785 components: - type: Transform - pos: -51.5,-84.5 + rot: 1.5707963267948966 rad + pos: 47.5,-45.5 parent: 2 - - uid: 38335 + - uid: 38786 components: - type: Transform - pos: -51.5,-85.5 + pos: -63.5,-25.5 parent: 2 - - uid: 38336 + - uid: 38787 components: - type: Transform - pos: -51.5,-86.5 + pos: 42.5,19.5 parent: 2 - - uid: 38337 + - uid: 38788 components: - type: Transform - pos: -50.5,-86.5 + pos: 52.5,-29.5 parent: 2 - - uid: 38338 + - uid: 38789 components: - type: Transform - pos: -49.5,-86.5 + pos: 53.5,-29.5 parent: 2 - - uid: 38339 + - uid: 38790 components: - type: Transform - pos: -48.5,-86.5 + pos: 54.5,-29.5 parent: 2 - - uid: 38340 + - uid: 38791 components: - type: Transform - pos: -47.5,-86.5 + pos: 55.5,-29.5 parent: 2 - - uid: 38341 + - uid: 38792 components: - type: Transform - pos: -48.5,-52.5 + pos: 32.5,-25.5 parent: 2 - - uid: 38342 + - uid: 38793 components: - type: Transform - pos: -48.5,-51.5 + pos: 51.5,-29.5 parent: 2 - - uid: 38343 + - uid: 38794 components: - type: Transform - pos: -49.5,-51.5 + pos: 50.5,-29.5 parent: 2 - - uid: 38344 + - uid: 38795 components: - type: Transform - pos: -50.5,-51.5 + pos: 19.5,-75.5 parent: 2 - - uid: 38345 + - uid: 38796 components: - type: Transform - pos: -50.5,-50.5 + pos: 18.5,-75.5 parent: 2 - - uid: 38346 + - uid: 38797 components: - type: Transform - pos: -50.5,-49.5 + pos: 17.5,-75.5 parent: 2 - - uid: 38347 + - uid: 38798 components: - type: Transform - pos: -50.5,-48.5 + pos: 20.5,-75.5 parent: 2 - - uid: 38348 + - uid: 38799 components: - type: Transform - pos: -50.5,-46.5 + pos: -31.5,-61.5 parent: 2 - - uid: 38349 + - uid: 38800 components: - type: Transform - pos: -50.5,-45.5 + pos: -31.5,-58.5 parent: 2 - - uid: 38350 + - uid: 38801 components: - type: Transform - pos: -56.5,-63.5 + pos: -31.5,-60.5 parent: 2 - - uid: 38351 + - uid: 38802 components: - type: Transform - pos: -56.5,-64.5 + pos: -31.5,-59.5 parent: 2 - - uid: 38352 + - uid: 38803 components: - type: Transform - pos: -56.5,-66.5 + pos: -31.5,-57.5 parent: 2 - - uid: 38353 + - uid: 38804 components: - type: Transform - pos: -57.5,-67.5 + pos: -31.5,-10.5 parent: 2 - - uid: 38354 + - uid: 38805 components: - type: Transform - pos: -59.5,-66.5 + pos: -31.5,-25.5 parent: 2 - - uid: 38355 + - uid: 38806 components: - type: Transform - pos: -59.5,-64.5 + pos: -31.5,-9.5 parent: 2 - - uid: 38356 + - uid: 38807 components: - type: Transform - pos: -59.5,-63.5 + pos: -31.5,-8.5 parent: 2 - - uid: 38357 + - uid: 38808 components: - type: Transform - pos: -58.5,-63.5 + pos: -31.5,-26.5 parent: 2 - - uid: 38358 + - uid: 38809 components: - type: Transform - pos: -60.5,-63.5 + pos: -31.5,-27.5 parent: 2 - - uid: 38359 + - uid: 38810 components: - type: Transform - pos: -61.5,-63.5 + pos: -31.5,-28.5 parent: 2 - - uid: 38360 + - uid: 38811 components: - type: Transform - pos: -62.5,-63.5 + pos: -31.5,-29.5 parent: 2 - - uid: 38361 + - uid: 38812 components: - type: Transform - pos: -63.5,-63.5 + pos: -30.5,-17.5 parent: 2 - - uid: 38362 + - uid: 38813 components: - type: Transform - pos: -35.5,-0.5 + pos: -30.5,-18.5 parent: 2 - - uid: 38363 + - uid: 38814 components: - type: Transform - pos: -60.5,-45.5 + pos: -30.5,-19.5 parent: 2 - - uid: 38364 + - uid: 38815 components: - type: Transform - pos: -62.5,-45.5 + pos: 32.5,-29.5 parent: 2 - - uid: 38365 + - uid: 38816 components: - type: Transform - pos: -63.5,-45.5 + pos: 32.5,-28.5 parent: 2 - - uid: 38366 + - uid: 38817 components: - type: Transform - pos: -68.5,-45.5 + pos: 32.5,-27.5 parent: 2 - - uid: 38367 + - uid: 38818 components: - type: Transform - pos: -69.5,-45.5 + pos: 32.5,-26.5 parent: 2 - - uid: 38368 + - uid: 38819 components: - type: Transform - pos: -69.5,-41.5 + pos: 15.5,-75.5 parent: 2 - - uid: 38369 + - uid: 38820 components: - type: Transform - pos: -69.5,-40.5 + pos: 16.5,-75.5 parent: 2 - - uid: 38370 + - uid: 38821 components: - type: Transform - pos: -69.5,-39.5 + pos: -31.5,-11.5 parent: 2 - - uid: 38371 + - uid: 38822 components: - type: Transform - pos: -69.5,-38.5 + pos: -31.5,-12.5 parent: 2 - - uid: 38372 + - uid: 38823 components: - type: Transform - pos: -69.5,-36.5 + rot: 3.141592653589793 rad + pos: 39.5,19.5 parent: 2 - - uid: 38373 + - uid: 38824 components: - type: Transform - pos: -69.5,-35.5 + pos: 42.5,17.5 parent: 2 - - uid: 38374 + - uid: 38825 components: - type: Transform - pos: -33.5,-41.5 + rot: 1.5707963267948966 rad + pos: -64.5,-51.5 parent: 2 - - uid: 38375 + - uid: 38826 components: - type: Transform - pos: -34.5,-41.5 + rot: 1.5707963267948966 rad + pos: 39.5,-53.5 parent: 2 - - uid: 38376 + - uid: 38827 components: - type: Transform - pos: -56.5,-41.5 + rot: -1.5707963267948966 rad + pos: 24.5,-74.5 parent: 2 - - uid: 38377 + - uid: 38828 components: - type: Transform - pos: -55.5,-41.5 + rot: -1.5707963267948966 rad + pos: 24.5,-73.5 parent: 2 - - uid: 38378 + - uid: 38829 components: - type: Transform - pos: -54.5,-41.5 + rot: -1.5707963267948966 rad + pos: 24.5,-72.5 parent: 2 - - uid: 38379 + - uid: 38830 components: - type: Transform - pos: -53.5,-41.5 + rot: -1.5707963267948966 rad + pos: 25.5,-72.5 parent: 2 - - uid: 38380 + - uid: 38831 components: - type: Transform - pos: -52.5,-41.5 + rot: 3.141592653589793 rad + pos: 58.5,-28.5 parent: 2 - - uid: 38381 + - uid: 38832 components: - type: Transform - pos: -51.5,-41.5 + pos: -69.5,-28.5 parent: 2 - - uid: 38382 + - uid: 38833 components: - type: Transform - pos: -50.5,-41.5 + rot: 1.5707963267948966 rad + pos: -68.5,-46.5 parent: 2 - - uid: 38383 + - uid: 38834 components: - type: Transform - pos: -58.5,-41.5 + rot: 3.141592653589793 rad + pos: 40.5,20.5 parent: 2 - - uid: 38384 + - uid: 38835 components: - type: Transform - pos: -60.5,-41.5 + rot: 1.5707963267948966 rad + pos: -48.5,-41.5 parent: 2 - - uid: 38385 + - uid: 38836 components: - type: Transform - pos: -61.5,-41.5 + rot: 1.5707963267948966 rad + pos: -48.5,-37.5 parent: 2 - - uid: 38386 + - uid: 38837 components: - type: Transform - pos: -63.5,-41.5 + rot: 1.5707963267948966 rad + pos: -48.5,-40.5 parent: 2 - - uid: 38387 + - uid: 38838 components: - type: Transform - pos: -68.5,-41.5 + rot: 3.141592653589793 rad + pos: -48.5,-38.5 parent: 2 - - uid: 38388 + - uid: 38839 components: - type: Transform - pos: -58.5,-36.5 + rot: 3.141592653589793 rad + pos: 14.5,-85.5 parent: 2 - - uid: 38389 + - uid: 38840 components: - type: Transform - pos: -58.5,-35.5 + rot: 3.141592653589793 rad + pos: 15.5,-85.5 parent: 2 - - uid: 38390 + - uid: 38841 components: - type: Transform - pos: -58.5,-34.5 + rot: 1.5707963267948966 rad + pos: 41.5,-50.5 parent: 2 - - uid: 38391 + - uid: 38842 components: - type: Transform - pos: -52.5,-34.5 + rot: 1.5707963267948966 rad + pos: 41.5,-49.5 parent: 2 - - uid: 38392 + - uid: 38843 components: - type: Transform - pos: -52.5,-35.5 + rot: 3.141592653589793 rad + pos: 35.5,-50.5 parent: 2 - - uid: 38393 + - uid: 38844 components: - type: Transform - pos: -52.5,-36.5 + rot: 3.141592653589793 rad + pos: 34.5,-50.5 parent: 2 - - uid: 38394 + - uid: 38845 components: - type: Transform - pos: -49.5,-37.5 + pos: -39.5,-9.5 parent: 2 - - uid: 38395 + - uid: 38846 components: - type: Transform - pos: -52.5,-30.5 + pos: -38.5,-9.5 parent: 2 - - uid: 38396 + - uid: 38847 components: - type: Transform - pos: -53.5,-30.5 + pos: -37.5,-9.5 parent: 2 - - uid: 38397 + - uid: 38848 components: - type: Transform - pos: -54.5,-30.5 + pos: -37.5,-10.5 parent: 2 - - uid: 38398 + - uid: 38849 components: - type: Transform - pos: -52.5,-31.5 + pos: -37.5,-12.5 parent: 2 - - uid: 38399 + - uid: 38850 components: - type: Transform - pos: -52.5,-32.5 + rot: 1.5707963267948966 rad + pos: -55.5,-45.5 parent: 2 - - uid: 38400 + - uid: 38851 components: - type: Transform - pos: -52.5,-33.5 + rot: 1.5707963267948966 rad + pos: -57.5,-45.5 parent: 2 - - uid: 38401 + - uid: 38852 components: - type: Transform - pos: -57.5,-30.5 + rot: 1.5707963267948966 rad + pos: -58.5,-45.5 parent: 2 - - uid: 38402 + - uid: 38853 components: - type: Transform - pos: -58.5,-30.5 + rot: 1.5707963267948966 rad + pos: -14.5,-92.5 parent: 2 - - uid: 38403 + - uid: 38854 components: - type: Transform - pos: -58.5,-31.5 + rot: 1.5707963267948966 rad + pos: -14.5,-96.5 parent: 2 - - uid: 38404 + - uid: 38855 components: - type: Transform - pos: -58.5,-32.5 + rot: 1.5707963267948966 rad + pos: -14.5,-95.5 parent: 2 - - uid: 38405 + - uid: 38856 components: - type: Transform - pos: -58.5,-33.5 + rot: 1.5707963267948966 rad + pos: -14.5,-94.5 parent: 2 - - uid: 38406 + - uid: 38857 components: - type: Transform - pos: -58.5,-29.5 + rot: 1.5707963267948966 rad + pos: 73.5,-43.5 parent: 2 - - uid: 38407 + - uid: 38858 components: - type: Transform - pos: -58.5,-27.5 + rot: 1.5707963267948966 rad + pos: 73.5,-42.5 parent: 2 - - uid: 38408 + - uid: 38859 components: - type: Transform - pos: -51.5,-26.5 + rot: 1.5707963267948966 rad + pos: 68.5,-43.5 parent: 2 - - uid: 38409 + - uid: 38860 components: - type: Transform - pos: -50.5,-26.5 + pos: 23.5,-87.5 parent: 2 - - uid: 38410 + - uid: 38861 components: - type: Transform - pos: -49.5,-26.5 + rot: -1.5707963267948966 rad + pos: -36.5,-94.5 parent: 2 - - uid: 38411 + - uid: 38862 components: - type: Transform - pos: -46.5,-26.5 + pos: 24.5,-83.5 parent: 2 - - uid: 38412 + - uid: 38863 components: - type: Transform - pos: -45.5,-26.5 + pos: 16.5,-82.5 parent: 2 - - uid: 38413 + - uid: 38864 components: - type: Transform - pos: -44.5,-26.5 + pos: 17.5,-82.5 parent: 2 - - uid: 38414 + - uid: 38865 components: - type: Transform - pos: -43.5,-26.5 + pos: 18.5,-82.5 parent: 2 - - uid: 38415 + - uid: 38866 components: - type: Transform - pos: -43.5,-25.5 + pos: 19.5,-82.5 parent: 2 - - uid: 38416 + - uid: 38867 components: - type: Transform - pos: -43.5,-24.5 + pos: 20.5,-82.5 parent: 2 - - uid: 38417 + - uid: 38868 components: - type: Transform - pos: -43.5,-23.5 + pos: 16.5,-81.5 parent: 2 - - uid: 38418 + - uid: 38869 components: - type: Transform - pos: -50.5,-23.5 + pos: 16.5,-79.5 parent: 2 - - uid: 38419 + - uid: 38870 components: - type: Transform - pos: -50.5,-22.5 + pos: 16.5,-78.5 parent: 2 - - uid: 38420 + - uid: 38871 components: - type: Transform - pos: -51.5,-22.5 + pos: 16.5,-76.5 parent: 2 - - uid: 38421 + - uid: 38872 components: - type: Transform - pos: -56.5,-22.5 + pos: 21.5,-82.5 parent: 2 - - uid: 38422 + - uid: 38873 components: - type: Transform - pos: -50.5,-24.5 + pos: 21.5,-81.5 parent: 2 - - uid: 38423 + - uid: 38874 components: - type: Transform - pos: -43.5,-22.5 + pos: 21.5,-80.5 parent: 2 - - uid: 38424 + - uid: 38875 components: - type: Transform - pos: -43.5,-21.5 + pos: 21.5,-79.5 parent: 2 - - uid: 38425 + - uid: 38876 components: - type: Transform - pos: -43.5,-20.5 + pos: 21.5,-78.5 parent: 2 - - uid: 38426 + - uid: 38877 components: - type: Transform - pos: -43.5,-19.5 + pos: 21.5,-76.5 parent: 2 - - uid: 38427 + - uid: 38878 components: - type: Transform - pos: -43.5,-18.5 + pos: 21.5,-75.5 parent: 2 - - uid: 38428 + - uid: 38879 components: - type: Transform - pos: -43.5,-17.5 + pos: 25.5,-83.5 parent: 2 - - uid: 38429 + - uid: 38880 components: - type: Transform - pos: -46.5,-17.5 + pos: 23.5,-83.5 parent: 2 - - uid: 38430 + - uid: 38881 components: - type: Transform - pos: -45.5,-17.5 + pos: 23.5,-85.5 parent: 2 - - uid: 38431 + - uid: 38882 components: - type: Transform - pos: -44.5,-17.5 + pos: 23.5,-75.5 parent: 2 - - uid: 38432 + - uid: 38883 components: - type: Transform - pos: -50.5,-17.5 + pos: 23.5,-76.5 parent: 2 - - uid: 38433 + - uid: 38884 components: - type: Transform - pos: -50.5,-18.5 + pos: 23.5,-77.5 parent: 2 - - uid: 38434 + - uid: 38885 components: - type: Transform - pos: -50.5,-19.5 + pos: 24.5,-77.5 parent: 2 - - uid: 38435 + - uid: 38886 components: - type: Transform - pos: -50.5,-20.5 + pos: 25.5,-77.5 parent: 2 - - uid: 38436 + - uid: 38887 components: - type: Transform - pos: -50.5,-21.5 + pos: 26.5,-77.5 parent: 2 - - uid: 38437 + - uid: 38888 components: - type: Transform - pos: -50.5,-16.5 + pos: 27.5,-77.5 parent: 2 - - uid: 38438 + - uid: 38889 components: - type: Transform - pos: -51.5,-16.5 + pos: 28.5,-77.5 parent: 2 - - uid: 38439 + - uid: 38890 components: - type: Transform - pos: -52.5,-16.5 + pos: 29.5,-77.5 parent: 2 - - uid: 38440 + - uid: 38891 components: - type: Transform - pos: -53.5,-16.5 + pos: 30.5,-77.5 parent: 2 - - uid: 38441 + - uid: 38892 components: - type: Transform - pos: -54.5,-16.5 + pos: 30.5,-75.5 parent: 2 - - uid: 38442 + - uid: 38893 components: - type: Transform - pos: -55.5,-16.5 + pos: 30.5,-74.5 parent: 2 - - uid: 38443 + - uid: 38894 components: - type: Transform - pos: -56.5,-16.5 + pos: 30.5,-73.5 parent: 2 - - uid: 38444 + - uid: 38895 components: - type: Transform - pos: -56.5,-17.5 + rot: 1.5707963267948966 rad + pos: -58.5,-46.5 parent: 2 - - uid: 38445 + - uid: 38896 components: - type: Transform - pos: -56.5,-18.5 + rot: -1.5707963267948966 rad + pos: 33.5,-25.5 parent: 2 - - uid: 38446 + - uid: 38897 components: - type: Transform - pos: -56.5,-19.5 + rot: -1.5707963267948966 rad + pos: 34.5,-25.5 parent: 2 - - uid: 38447 + - uid: 38898 components: - type: Transform - pos: -56.5,-20.5 + rot: -1.5707963267948966 rad + pos: 34.5,-24.5 parent: 2 - - uid: 38448 + - uid: 38899 components: - type: Transform - pos: -56.5,-21.5 + pos: 31.5,-24.5 parent: 2 - - uid: 38449 + - uid: 38900 components: - type: Transform - pos: -50.5,-14.5 + rot: 1.5707963267948966 rad + pos: 69.5,-43.5 parent: 2 - - uid: 38450 + - uid: 38901 components: - type: Transform - pos: -49.5,-14.5 + rot: 1.5707963267948966 rad + pos: 70.5,-43.5 parent: 2 - - uid: 38451 + - uid: 38902 components: - type: Transform - pos: -48.5,-14.5 + rot: 1.5707963267948966 rad + pos: 71.5,-43.5 parent: 2 - - uid: 38452 + - uid: 38903 components: - type: Transform - pos: -44.5,-14.5 + rot: 1.5707963267948966 rad + pos: 72.5,-43.5 parent: 2 - - uid: 38453 + - uid: 38904 components: - type: Transform - pos: -44.5,-13.5 + pos: 23.5,-84.5 parent: 2 - - uid: 38454 + - uid: 38905 components: - type: Transform - pos: -44.5,-12.5 + pos: -63.5,-51.5 parent: 2 - - uid: 38455 + - uid: 38906 components: - type: Transform - pos: -44.5,-11.5 + pos: -62.5,-51.5 parent: 2 - - uid: 38456 + - uid: 38907 components: - type: Transform - pos: -44.5,-10.5 + pos: -61.5,-51.5 parent: 2 - - uid: 38457 + - uid: 38908 components: - type: Transform - pos: -50.5,-11.5 + pos: -60.5,-51.5 parent: 2 - - uid: 38458 + - uid: 38909 components: - type: Transform - pos: -50.5,-12.5 + pos: -60.5,-50.5 parent: 2 - - uid: 38459 + - uid: 38910 components: - type: Transform - pos: -50.5,-13.5 + pos: -60.5,-48.5 parent: 2 - - uid: 38460 + - uid: 38911 components: - type: Transform - pos: -51.5,-10.5 + pos: -60.5,-47.5 parent: 2 - - uid: 38461 + - uid: 38912 components: - type: Transform - pos: -51.5,-11.5 + pos: -60.5,-46.5 parent: 2 - - uid: 38462 + - uid: 38913 components: - type: Transform - pos: -52.5,-11.5 + rot: 1.5707963267948966 rad + pos: -55.5,-46.5 parent: 2 - - uid: 38463 + - uid: 38914 components: - type: Transform - pos: -53.5,-11.5 + rot: 3.141592653589793 rad + pos: -46.5,-90.5 parent: 2 - - uid: 38464 + - uid: 38915 components: - type: Transform - pos: -54.5,-11.5 + rot: 3.141592653589793 rad + pos: -47.5,-90.5 parent: 2 - - uid: 38465 + - uid: 38916 components: - type: Transform - pos: -55.5,-11.5 + rot: 3.141592653589793 rad + pos: -47.5,-91.5 parent: 2 - - uid: 38466 + - uid: 38917 components: - type: Transform - pos: -56.5,-11.5 + rot: 3.141592653589793 rad + pos: -47.5,-92.5 parent: 2 - - uid: 38467 + - uid: 38918 components: - type: Transform - pos: -56.5,-12.5 + rot: 3.141592653589793 rad + pos: -47.5,-93.5 parent: 2 - - uid: 38468 + - uid: 38919 components: - type: Transform - pos: -56.5,-13.5 + rot: 3.141592653589793 rad + pos: -46.5,-93.5 parent: 2 - - uid: 38469 + - uid: 38920 components: - type: Transform - pos: -56.5,-14.5 + rot: 3.141592653589793 rad + pos: -44.5,-93.5 parent: 2 - - uid: 38470 + - uid: 38921 components: - type: Transform - pos: -56.5,-15.5 + rot: 3.141592653589793 rad + pos: -48.5,-91.5 parent: 2 - - uid: 38472 + - uid: 38922 components: - type: Transform - pos: -55.5,-9.5 + rot: 3.141592653589793 rad + pos: -50.5,-91.5 parent: 2 - - uid: 38473 + - uid: 38923 components: - type: Transform - pos: -51.5,-9.5 + rot: 3.141592653589793 rad + pos: -50.5,-90.5 parent: 2 - - uid: 38474 + - uid: 38924 components: - type: Transform - pos: -55.5,-8.5 + rot: 3.141592653589793 rad + pos: -51.5,-89.5 parent: 2 - - uid: 38475 + - uid: 38925 components: - type: Transform - pos: -54.5,-8.5 + rot: 3.141592653589793 rad + pos: -50.5,-89.5 parent: 2 - - uid: 38476 + - uid: 38926 components: - type: Transform - pos: -51.5,-8.5 + rot: 3.141592653589793 rad + pos: -51.5,-88.5 parent: 2 - - uid: 38478 + - uid: 38927 components: - type: Transform - pos: -56.5,-8.5 + rot: 3.141592653589793 rad + pos: -51.5,-87.5 parent: 2 - - uid: 38481 + - uid: 38928 components: - type: Transform - pos: -51.5,-4.5 + rot: 3.141592653589793 rad + pos: -18.5,12.5 parent: 2 - - uid: 38484 + - uid: 38929 components: - type: Transform - pos: -51.5,-7.5 + rot: 3.141592653589793 rad + pos: -18.5,13.5 parent: 2 - - uid: 38485 + - uid: 38930 components: - type: Transform - pos: -48.5,1.5 + rot: 3.141592653589793 rad + pos: -19.5,13.5 parent: 2 - - uid: 38486 + - uid: 38931 components: - type: Transform - pos: -48.5,-1.5 + rot: 3.141592653589793 rad + pos: -24.5,13.5 parent: 2 - - uid: 38487 + - uid: 38932 components: - type: Transform - pos: -48.5,-4.5 + rot: 3.141592653589793 rad + pos: -23.5,13.5 parent: 2 - - uid: 38488 + - uid: 38933 components: - type: Transform - pos: -44.5,-9.5 + rot: 1.5707963267948966 rad + pos: -58.5,-50.5 parent: 2 - - uid: 38489 + - uid: 38934 components: - type: Transform - pos: -44.5,-8.5 + rot: 3.141592653589793 rad + pos: -62.5,-34.5 parent: 2 - - uid: 38490 + - uid: 38935 components: - type: Transform - pos: -44.5,-7.5 + rot: 3.141592653589793 rad + pos: -61.5,-34.5 parent: 2 - - uid: 38491 + - uid: 38936 components: - type: Transform - pos: -44.5,-6.5 + rot: 3.141592653589793 rad + pos: -61.5,-33.5 parent: 2 - - uid: 38492 + - uid: 38937 components: - type: Transform - pos: -44.5,-5.5 + rot: 3.141592653589793 rad + pos: -61.5,-32.5 parent: 2 - - uid: 38493 + - uid: 38938 components: - type: Transform - pos: -44.5,-4.5 + rot: 3.141592653589793 rad + pos: -61.5,-31.5 parent: 2 - - uid: 38494 + - uid: 38939 components: - type: Transform - pos: -44.5,-3.5 + rot: 3.141592653589793 rad + pos: -61.5,-30.5 parent: 2 - - uid: 38495 + - uid: 38940 components: - type: Transform - pos: -44.5,-2.5 + rot: 3.141592653589793 rad + pos: -62.5,-30.5 parent: 2 - - uid: 38496 + - uid: 38941 components: - type: Transform - pos: -44.5,-1.5 + rot: 3.141592653589793 rad + pos: -63.5,-30.5 parent: 2 - - uid: 38497 + - uid: 38942 components: - type: Transform - pos: -44.5,-0.5 + rot: 3.141592653589793 rad + pos: -64.5,-30.5 parent: 2 - - uid: 38498 + - uid: 38943 components: - type: Transform - pos: -44.5,0.5 + rot: 3.141592653589793 rad + pos: -65.5,-30.5 parent: 2 - - uid: 38499 + - uid: 38944 components: - type: Transform - pos: -44.5,1.5 + rot: 3.141592653589793 rad + pos: -66.5,-30.5 parent: 2 - - uid: 38500 + - uid: 38945 components: - type: Transform - pos: -45.5,1.5 + rot: 3.141592653589793 rad + pos: -66.5,-31.5 parent: 2 - - uid: 38501 + - uid: 38946 components: - type: Transform - pos: -46.5,1.5 + rot: 3.141592653589793 rad + pos: -66.5,-33.5 parent: 2 - - uid: 38504 + - uid: 38947 components: - type: Transform - pos: -45.5,-1.5 + rot: 3.141592653589793 rad + pos: -66.5,-34.5 parent: 2 - - uid: 38505 + - uid: 38948 components: - type: Transform - pos: -47.5,-4.5 + rot: 3.141592653589793 rad + pos: -63.5,-26.5 parent: 2 - - uid: 38508 + - uid: 38949 components: - type: Transform - pos: -42.5,1.5 + rot: 3.141592653589793 rad + pos: -63.5,-24.5 parent: 2 - - uid: 38509 + - uid: 38950 components: - type: Transform - pos: -42.5,-0.5 + rot: 3.141592653589793 rad + pos: -63.5,-23.5 parent: 2 - - uid: 38510 + - uid: 38951 components: - type: Transform - pos: -40.5,1.5 + rot: 3.141592653589793 rad + pos: -63.5,-27.5 parent: 2 - - uid: 38511 + - uid: 38952 components: - type: Transform - pos: -40.5,0.5 + rot: 3.141592653589793 rad + pos: -64.5,-27.5 parent: 2 - - uid: 38512 + - uid: 38953 components: - type: Transform - pos: -40.5,-0.5 + rot: 3.141592653589793 rad + pos: -65.5,-27.5 parent: 2 - - uid: 38513 + - uid: 38954 components: - type: Transform - pos: -40.5,-1.5 + rot: 3.141592653589793 rad + pos: -66.5,-27.5 parent: 2 - - uid: 38514 + - uid: 38955 components: - type: Transform - pos: -40.5,-5.5 + rot: 3.141592653589793 rad + pos: -67.5,-27.5 parent: 2 - - uid: 38515 + - uid: 38956 components: - type: Transform - pos: -39.5,-0.5 + rot: 3.141592653589793 rad + pos: -67.5,-26.5 parent: 2 - - uid: 38516 + - uid: 38957 components: - type: Transform - pos: -38.5,-0.5 + rot: 3.141592653589793 rad + pos: -67.5,-24.5 parent: 2 - - uid: 38517 + - uid: 38958 components: - type: Transform - pos: -37.5,-0.5 + rot: 3.141592653589793 rad + pos: -67.5,-23.5 parent: 2 - - uid: 38518 + - uid: 38959 components: - type: Transform - pos: -36.5,-0.5 + rot: 3.141592653589793 rad + pos: -63.5,-22.5 parent: 2 - - uid: 38519 + - uid: 38960 components: - type: Transform - pos: -36.5,-3.5 + rot: 3.141592653589793 rad + pos: -64.5,-22.5 parent: 2 - - uid: 38520 + - uid: 38961 components: - type: Transform - pos: -36.5,-4.5 + rot: 3.141592653589793 rad + pos: -65.5,-22.5 parent: 2 - - uid: 38521 + - uid: 38962 components: - type: Transform - pos: -36.5,-5.5 + rot: 3.141592653589793 rad + pos: -66.5,-22.5 parent: 2 - - uid: 38522 + - uid: 38963 components: - type: Transform - pos: -34.5,-0.5 + rot: 3.141592653589793 rad + pos: -67.5,-22.5 parent: 2 - - uid: 38523 + - uid: 38964 components: - type: Transform - pos: -34.5,-1.5 + rot: 3.141592653589793 rad + pos: -60.5,-22.5 parent: 2 - - uid: 38524 + - uid: 38965 components: - type: Transform - pos: -34.5,-3.5 + rot: 3.141592653589793 rad + pos: -60.5,-21.5 parent: 2 - - uid: 38525 + - uid: 38966 components: - type: Transform - pos: -34.5,-4.5 + rot: 3.141592653589793 rad + pos: -60.5,-20.5 parent: 2 - - uid: 38526 + - uid: 38967 components: - type: Transform - pos: -34.5,-5.5 + rot: 3.141592653589793 rad + pos: -59.5,-15.5 parent: 2 - - uid: 38527 + - uid: 38968 components: - type: Transform - pos: -39.5,-24.5 + rot: 3.141592653589793 rad + pos: -58.5,-15.5 parent: 2 - - uid: 38528 + - uid: 38969 components: - type: Transform - pos: -39.5,-14.5 + rot: 3.141592653589793 rad + pos: -57.5,-15.5 parent: 2 - - uid: 38529 + - uid: 38970 components: - type: Transform - pos: -39.5,-16.5 + pos: -73.5,-29.5 parent: 2 - - uid: 38530 + - uid: 38971 components: - type: Transform - pos: -38.5,-16.5 + pos: -73.5,-31.5 parent: 2 - - uid: 38531 + - uid: 38972 components: - type: Transform - pos: -37.5,-16.5 + rot: 1.5707963267948966 rad + pos: -58.5,-49.5 parent: 2 - - uid: 38532 + - uid: 38973 components: - type: Transform - pos: -36.5,-16.5 + rot: 1.5707963267948966 rad + pos: -58.5,-48.5 parent: 2 - - uid: 38533 + - uid: 38974 components: - type: Transform - pos: -35.5,-16.5 + rot: 1.5707963267948966 rad + pos: -58.5,-47.5 parent: 2 - - uid: 38534 + - uid: 38975 components: - type: Transform - pos: -35.5,-15.5 + rot: 3.141592653589793 rad + pos: 38.5,19.5 parent: 2 - - uid: 38535 + - uid: 38976 components: - type: Transform - pos: -35.5,-14.5 + rot: 3.141592653589793 rad + pos: 36.5,19.5 parent: 2 - - uid: 38536 + - uid: 38977 components: - type: Transform - pos: -39.5,-18.5 + rot: 3.141592653589793 rad + pos: 37.5,19.5 parent: 2 - - uid: 38537 + - uid: 38978 components: - type: Transform - pos: -39.5,-19.5 + pos: 29.5,31.5 parent: 2 - - uid: 38538 + - uid: 38979 components: - type: Transform - pos: -39.5,-23.5 + pos: 31.5,31.5 parent: 2 - - uid: 38539 + - uid: 38980 components: - type: Transform - pos: -38.5,-24.5 + pos: 30.5,31.5 parent: 2 - - uid: 38540 + - uid: 38981 components: - type: Transform - pos: -34.5,-24.5 + rot: 3.141592653589793 rad + pos: 40.5,21.5 parent: 2 - - uid: 38541 + - uid: 38982 components: - type: Transform - pos: -33.5,-24.5 + rot: 3.141592653589793 rad + pos: 40.5,23.5 parent: 2 - - uid: 38542 + - uid: 38983 components: - type: Transform - pos: -33.5,-23.5 + rot: 3.141592653589793 rad + pos: 40.5,22.5 parent: 2 - - uid: 38543 + - uid: 38997 components: - type: Transform - pos: -33.5,-22.5 + rot: 3.141592653589793 rad + pos: 32.5,20.5 parent: 2 - - uid: 38544 + - uid: 38998 components: - type: Transform - pos: -33.5,-21.5 + rot: 3.141592653589793 rad + pos: 32.5,21.5 parent: 2 - - uid: 38545 + - uid: 38999 components: - type: Transform - pos: -33.5,-20.5 + rot: 3.141592653589793 rad + pos: 32.5,23.5 parent: 2 - - uid: 38546 + - uid: 39000 components: - type: Transform - pos: -33.5,-19.5 + rot: 3.141592653589793 rad + pos: 32.5,24.5 parent: 2 - - uid: 38547 + - uid: 39001 components: - type: Transform - pos: -33.5,-18.5 + rot: 3.141592653589793 rad + pos: 33.5,24.5 parent: 2 - - uid: 38548 + - uid: 39002 components: - type: Transform - pos: -34.5,-18.5 + rot: 3.141592653589793 rad + pos: 34.5,24.5 parent: 2 - - uid: 38549 + - uid: 39003 components: - type: Transform - pos: -35.5,-18.5 + rot: 3.141592653589793 rad + pos: 35.5,24.5 parent: 2 - - uid: 38550 + - uid: 39004 components: - type: Transform - pos: -36.5,-18.5 + rot: 3.141592653589793 rad + pos: 36.5,24.5 parent: 2 - - uid: 38551 + - uid: 39005 components: - type: Transform - pos: -37.5,-18.5 + rot: 1.5707963267948966 rad + pos: -57.5,-50.5 parent: 2 - - uid: 38552 + - uid: 39006 components: - type: Transform - pos: -38.5,-18.5 + rot: 1.5707963267948966 rad + pos: -54.5,-50.5 parent: 2 - - uid: 38553 + - uid: 39007 components: - type: Transform - pos: -33.5,-25.5 + rot: 1.5707963267948966 rad + pos: -53.5,-50.5 parent: 2 - - uid: 38554 + - uid: 39008 components: - type: Transform - pos: -33.5,-36.5 + rot: 1.5707963267948966 rad + pos: -52.5,-50.5 parent: 2 - - uid: 38555 + - uid: 39009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-34.5 + rot: 1.5707963267948966 rad + pos: -51.5,-50.5 parent: 2 - - uid: 38556 + - uid: 39013 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-34.5 + pos: -52.5,-96.5 parent: 2 - - uid: 38557 + - uid: 39014 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-34.5 + pos: -51.5,-96.5 parent: 2 - - uid: 38558 + - uid: 39015 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-30.5 + pos: -50.5,-96.5 parent: 2 - - uid: 38559 + - uid: 39016 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-32.5 + pos: -49.5,-96.5 parent: 2 - - uid: 38560 + - uid: 39017 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-33.5 + pos: -46.5,-96.5 parent: 2 - - uid: 38561 + - uid: 39018 components: - type: Transform - pos: -31.5,-30.5 + pos: -45.5,-96.5 parent: 2 - - uid: 38562 + - uid: 39019 components: - type: Transform - pos: -33.5,-40.5 + pos: -44.5,-96.5 parent: 2 - - uid: 38563 + - uid: 39020 components: - type: Transform - pos: -37.5,2.5 + pos: -43.5,-96.5 parent: 2 - - uid: 38564 + - uid: 39021 components: - type: Transform - pos: -36.5,2.5 + pos: -42.5,-96.5 parent: 2 - - uid: 38565 + - uid: 39022 components: - type: Transform - pos: -35.5,2.5 + pos: -42.5,-97.5 parent: 2 - - uid: 38566 + - uid: 39023 components: - type: Transform - pos: -34.5,2.5 + pos: -42.5,-98.5 parent: 2 - - uid: 38567 + - uid: 39024 components: - type: Transform - pos: -40.5,2.5 + pos: -42.5,-99.5 parent: 2 - - uid: 38569 + - uid: 39025 components: - type: Transform - pos: -40.5,4.5 + pos: -42.5,-100.5 parent: 2 - - uid: 38570 + - uid: 39026 components: - type: Transform - pos: -40.5,5.5 + pos: -42.5,-101.5 parent: 2 - - uid: 38571 + - uid: 39027 components: - type: Transform - pos: -41.5,5.5 + pos: -42.5,-102.5 parent: 2 - - uid: 38572 + - uid: 39028 components: - type: Transform - pos: -42.5,5.5 + pos: -41.5,-96.5 parent: 2 - - uid: 38575 + - uid: 39029 components: - type: Transform - pos: -45.5,5.5 + pos: -38.5,-96.5 parent: 2 - - uid: 38576 + - uid: 39030 components: - type: Transform - pos: -46.5,5.5 + pos: -40.5,-96.5 parent: 2 - - uid: 38577 + - uid: 39031 components: - type: Transform - pos: -47.5,5.5 + pos: -39.5,-96.5 parent: 2 - - uid: 38578 + - uid: 39032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,-31.5 + pos: -37.5,-96.5 parent: 2 - - uid: 38579 + - uid: 39033 components: - type: Transform - pos: -48.5,5.5 + rot: -1.5707963267948966 rad + pos: -44.5,-95.5 parent: 2 - - uid: 38580 + - uid: 39034 components: - type: Transform - pos: -50.5,5.5 + pos: -40.5,18.5 parent: 2 - - uid: 38581 + - uid: 39035 components: - type: Transform - pos: -34.5,3.5 + pos: -40.5,17.5 parent: 2 - - uid: 38582 + - uid: 39036 components: - type: Transform - pos: -34.5,5.5 + pos: -40.5,16.5 parent: 2 - - uid: 38583 + - uid: 39037 components: - type: Transform - pos: -30.5,-30.5 + pos: -40.5,15.5 parent: 2 - - uid: 38584 + - uid: 39038 components: - type: Transform - pos: -30.5,-25.5 + pos: -40.5,14.5 parent: 2 - - uid: 38585 + - uid: 39039 components: - type: Transform - pos: -30.5,-24.5 + pos: -40.5,13.5 parent: 2 - - uid: 38586 + - uid: 39040 components: - type: Transform - pos: -30.5,-23.5 + pos: -40.5,12.5 parent: 2 - - uid: 38587 + - uid: 39041 components: - type: Transform - pos: -30.5,-22.5 + pos: -53.5,10.5 parent: 2 - - uid: 38588 + - uid: 39045 components: - type: Transform - pos: -30.5,-21.5 + pos: -49.5,10.5 parent: 2 - - uid: 38589 + - uid: 39046 components: - type: Transform - pos: -30.5,-20.5 + pos: -48.5,10.5 parent: 2 - - uid: 38590 + - uid: 39047 components: - type: Transform - pos: -30.5,-16.5 + pos: -44.5,10.5 parent: 2 - - uid: 38591 + - uid: 39048 components: - type: Transform - pos: -30.5,-15.5 + pos: -43.5,10.5 parent: 2 - - uid: 38592 + - uid: 39049 components: - type: Transform - pos: -30.5,-14.5 + pos: -42.5,10.5 parent: 2 - - uid: 38593 + - uid: 39050 components: - type: Transform - pos: -30.5,-13.5 + pos: -41.5,10.5 parent: 2 - - uid: 38594 + - uid: 39051 components: - type: Transform - pos: -30.5,-12.5 + pos: -40.5,10.5 parent: 2 - - uid: 38595 + - uid: 39052 components: - type: Transform - pos: -30.5,-8.5 + pos: -40.5,11.5 parent: 2 - - uid: 38596 + - uid: 39053 components: - type: Transform - pos: -29.5,-8.5 + pos: -49.5,14.5 parent: 2 - - uid: 38597 + - uid: 39054 components: - type: Transform - pos: -29.5,-6.5 + pos: -53.5,14.5 parent: 2 - - uid: 38598 + - uid: 39055 components: - type: Transform - pos: -30.5,-6.5 + rot: 3.141592653589793 rad + pos: -39.5,13.5 parent: 2 - - uid: 38599 + - uid: 39056 components: - type: Transform - pos: -31.5,-6.5 + rot: 3.141592653589793 rad + pos: -38.5,13.5 parent: 2 - - uid: 38600 + - uid: 39057 components: - type: Transform - pos: -31.5,-5.5 + rot: 3.141592653589793 rad + pos: -37.5,13.5 parent: 2 - - uid: 38601 + - uid: 39058 components: - type: Transform - pos: -31.5,-4.5 + rot: 3.141592653589793 rad + pos: -36.5,13.5 parent: 2 - - uid: 38602 + - uid: 39059 components: - type: Transform - pos: -31.5,-3.5 + rot: 3.141592653589793 rad + pos: -36.5,14.5 parent: 2 - - uid: 38603 + - uid: 39060 components: - type: Transform - pos: -31.5,-2.5 + rot: 3.141592653589793 rad + pos: -36.5,17.5 parent: 2 - - uid: 38604 + - uid: 39061 components: - type: Transform - pos: -31.5,-1.5 + rot: 3.141592653589793 rad + pos: -36.5,18.5 parent: 2 - - uid: 38605 + - uid: 39062 components: - type: Transform - pos: -31.5,-0.5 + rot: 1.5707963267948966 rad + pos: -65.5,-14.5 parent: 2 - - uid: 38606 + - uid: 39063 components: - type: Transform - pos: -31.5,0.5 + rot: 1.5707963267948966 rad + pos: -65.5,-12.5 parent: 2 - - uid: 38607 + - uid: 39064 components: - type: Transform - pos: -31.5,2.5 + rot: 1.5707963267948966 rad + pos: -65.5,-11.5 parent: 2 - - uid: 38608 + - uid: 39065 components: - type: Transform - pos: -28.5,-6.5 + rot: 1.5707963267948966 rad + pos: -66.5,-11.5 parent: 2 - - uid: 38609 + - uid: 39066 components: - type: Transform - pos: -28.5,-5.5 + rot: 1.5707963267948966 rad + pos: -67.5,-11.5 parent: 2 - - uid: 38610 + - uid: 39067 components: - type: Transform - pos: -28.5,-3.5 + rot: 1.5707963267948966 rad + pos: -68.5,-11.5 parent: 2 - - uid: 38611 + - uid: 39068 components: - type: Transform - pos: -33.5,9.5 + pos: 79.5,-20.5 parent: 2 - - uid: 38612 + - uid: 39069 components: - type: Transform - pos: -32.5,9.5 + pos: 78.5,-20.5 parent: 2 - - uid: 38613 + - uid: 39070 components: - type: Transform - pos: -31.5,9.5 + pos: 77.5,-20.5 parent: 2 - - uid: 38614 + - uid: 39071 components: - type: Transform - pos: -32.5,10.5 + pos: 76.5,-20.5 parent: 2 - - uid: 38615 + - uid: 39072 components: - type: Transform - pos: -27.5,-3.5 + pos: 75.5,-20.5 parent: 2 - - uid: 38616 + - uid: 39073 components: - type: Transform - pos: -32.5,14.5 + pos: 75.5,-19.5 parent: 2 - - uid: 38617 + - uid: 39074 components: - type: Transform - pos: -33.5,12.5 + pos: 75.5,-18.5 parent: 2 - - uid: 38618 + - uid: 39075 components: - type: Transform - pos: -33.5,2.5 + pos: 75.5,-16.5 parent: 2 - - uid: 38619 + - uid: 39076 components: - type: Transform - pos: -32.5,2.5 + pos: 70.5,-20.5 parent: 2 - - uid: 38620 + - uid: 39077 components: - type: Transform - pos: -27.5,-2.5 + pos: 71.5,-20.5 parent: 2 - - uid: 38621 + - uid: 39078 components: - type: Transform - pos: -27.5,-1.5 + pos: 72.5,-20.5 parent: 2 - - uid: 38622 + - uid: 39079 components: - type: Transform - pos: -33.5,11.5 + pos: 73.5,-20.5 parent: 2 - - uid: 38623 + - uid: 39080 components: - type: Transform - pos: -24.5,-1.5 + pos: 73.5,-17.5 parent: 2 - - uid: 38624 + - uid: 39081 components: - type: Transform - pos: -24.5,-0.5 + pos: 70.5,-19.5 parent: 2 - - uid: 38625 + - uid: 39082 components: - type: Transform - pos: -22.5,-0.5 + pos: 73.5,-19.5 parent: 2 - - uid: 38626 + - uid: 39083 components: - type: Transform - pos: -28.5,9.5 + rot: 1.5707963267948966 rad + pos: -8.5,-72.5 parent: 2 - - uid: 38627 + - uid: 39084 components: - type: Transform - pos: -27.5,9.5 + rot: 3.141592653589793 rad + pos: -55.5,-50.5 parent: 2 - - uid: 38628 + - uid: 39085 components: - type: Transform - pos: -26.5,9.5 + pos: 8.5,-73.5 parent: 2 - - uid: 38629 + - uid: 39086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-41.5 + pos: -6.5,-73.5 parent: 2 - - uid: 38630 + - uid: 39087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-37.5 + pos: -36.5,16.5 parent: 2 - - uid: 38631 + - uid: 39088 components: - type: Transform - pos: -12.5,4.5 + pos: -52.5,-82.5 parent: 2 - - uid: 38632 + - uid: 39089 components: - type: Transform - pos: -9.5,-0.5 + rot: 1.5707963267948966 rad + pos: -67.5,-28.5 parent: 2 - - uid: 38633 + - uid: 39091 components: - type: Transform - pos: -3.5,-0.5 + pos: 42.5,-67.5 parent: 2 - - uid: 38634 + - uid: 39092 components: - type: Transform - pos: -3.5,0.5 + pos: 41.5,-67.5 parent: 2 - - uid: 38635 + - uid: 39093 components: - type: Transform - pos: -3.5,1.5 + pos: 90.5,-42.5 parent: 2 - - uid: 38636 + - uid: 39094 components: - type: Transform - pos: -3.5,2.5 + pos: 91.5,-42.5 parent: 2 - - uid: 38637 + - uid: 39095 components: - type: Transform - pos: -68.5,-40.5 + pos: 92.5,-42.5 parent: 2 - - uid: 38638 + - uid: 39096 components: - type: Transform - pos: -63.5,-40.5 + pos: 97.5,-42.5 parent: 2 - - uid: 38639 + - uid: 39097 components: - type: Transform - pos: -33.5,10.5 + rot: -1.5707963267948966 rad + pos: -38.5,-123.5 parent: 2 - - uid: 38640 + - uid: 39098 components: - type: Transform - pos: 38.5,-9.5 + pos: 99.5,-42.5 parent: 2 - - uid: 38641 + - uid: 39099 components: - type: Transform - pos: 21.5,10.5 + rot: -1.5707963267948966 rad + pos: 34.5,8.5 parent: 2 - - uid: 38642 + - uid: 39100 components: - type: Transform - pos: 21.5,9.5 + rot: -1.5707963267948966 rad + pos: 104.5,-39.5 parent: 2 - - uid: 38643 + - uid: 39101 components: - type: Transform - pos: -26.5,15.5 + rot: -1.5707963267948966 rad + pos: 109.5,-43.5 parent: 2 - - uid: 38644 + - uid: 39102 components: - type: Transform - pos: -27.5,15.5 + rot: -1.5707963267948966 rad + pos: 108.5,-43.5 parent: 2 - - uid: 38645 + - uid: 39103 components: - type: Transform - pos: -28.5,15.5 + rot: -1.5707963267948966 rad + pos: 107.5,-43.5 parent: 2 - - uid: 38646 + - uid: 39104 components: - type: Transform - pos: -29.5,15.5 + rot: -1.5707963267948966 rad + pos: 105.5,-43.5 parent: 2 - - uid: 38647 + - uid: 39105 components: - type: Transform - pos: -30.5,15.5 + rot: -1.5707963267948966 rad + pos: 104.5,-43.5 parent: 2 - - uid: 38648 + - uid: 39106 components: - type: Transform - pos: -32.5,15.5 + pos: 4.5,-1.5 parent: 2 - - uid: 38649 + - uid: 39107 components: - type: Transform - pos: -38.5,5.5 + pos: 31.5,-15.5 parent: 2 - - uid: 38650 + - uid: 39108 components: - type: Transform - pos: -38.5,4.5 + pos: 10.5,-1.5 parent: 2 - - uid: 38651 + - uid: 39109 components: - type: Transform - pos: -38.5,3.5 + pos: 40.5,24.5 parent: 2 - - uid: 38652 + - uid: 39110 components: - type: Transform - pos: -38.5,2.5 + pos: -28.5,-107.5 parent: 2 - - uid: 38653 + - uid: 39111 components: - type: Transform - pos: -25.5,15.5 + rot: 3.141592653589793 rad + pos: 0.5,23.5 parent: 2 - - uid: 38654 + - uid: 39112 components: - type: Transform - pos: -25.5,14.5 + pos: 75.5,-44.5 parent: 2 - - uid: 38655 + - uid: 39113 components: - type: Transform - pos: -25.5,13.5 + pos: 76.5,-43.5 parent: 2 - - uid: 38656 + - uid: 39114 components: - type: Transform - pos: -25.5,12.5 + pos: 80.5,-47.5 parent: 2 - - uid: 38657 + - uid: 39115 components: - type: Transform - pos: -25.5,11.5 + pos: 79.5,-47.5 parent: 2 - - uid: 38658 + - uid: 39116 components: - type: Transform - pos: -25.5,10.5 + pos: 76.5,-47.5 parent: 2 - - uid: 38659 + - uid: 39117 components: - type: Transform - pos: -33.5,13.5 + pos: 77.5,-47.5 parent: 2 - - uid: 38660 + - uid: 39118 components: - type: Transform - pos: -33.5,14.5 + pos: 78.5,-47.5 parent: 2 - - uid: 38661 + - uid: 39119 components: - type: Transform - pos: -48.5,-7.5 + pos: 80.5,-50.5 parent: 2 - - uid: 38662 + - uid: 39120 components: - type: Transform - pos: -47.5,6.5 + pos: 80.5,-49.5 parent: 2 - - uid: 38663 + - uid: 39121 components: - type: Transform - pos: -48.5,7.5 + pos: 73.5,-50.5 parent: 2 - - uid: 38664 + - uid: 39122 components: - type: Transform - pos: -47.5,7.5 + pos: 72.5,-49.5 parent: 2 - - uid: 38665 + - uid: 39123 components: - type: Transform - pos: -50.5,7.5 + pos: 72.5,-50.5 parent: 2 - - uid: 38666 + - uid: 39124 components: - type: Transform - pos: 79.5,-35.5 + pos: -69.5,-0.5 parent: 2 - - uid: 38667 + - uid: 39125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-34.5 + pos: -69.5,-1.5 parent: 2 - - uid: 38668 + - uid: 39126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-74.5 + pos: -69.5,1.5 parent: 2 - - uid: 38669 + - uid: 39127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-74.5 + pos: -69.5,0.5 parent: 2 - - uid: 38670 + - uid: 39128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-74.5 + pos: -69.5,3.5 parent: 2 - - uid: 38671 + - uid: 39129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-74.5 + pos: -69.5,-2.5 parent: 2 - - uid: 38672 + - uid: 39130 components: - type: Transform - pos: -11.5,-81.5 + pos: 79.5,-50.5 parent: 2 - - uid: 38673 + - uid: 39131 components: - type: Transform - pos: 18.5,-98.5 + pos: -69.5,4.5 parent: 2 - - uid: 38674 + - uid: 39133 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-45.5 + pos: 85.5,-43.5 parent: 2 - - uid: 38675 + - uid: 39134 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-45.5 + pos: 84.5,-43.5 parent: 2 - - uid: 38676 + - uid: 39135 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-45.5 + pos: 83.5,-43.5 parent: 2 - - uid: 38677 + - uid: 39136 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-45.5 + pos: 82.5,-43.5 parent: 2 - - uid: 38678 + - uid: 39137 components: - type: Transform - pos: 41.5,-75.5 + rot: 1.5707963267948966 rad + pos: 81.5,-43.5 parent: 2 - - uid: 38679 + - uid: 39138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-72.5 + rot: 1.5707963267948966 rad + pos: 80.5,-43.5 parent: 2 - - uid: 38680 + - uid: 39139 components: - type: Transform - pos: 41.5,-74.5 + pos: 78.5,-43.5 parent: 2 - - uid: 38681 + - uid: 39140 components: - type: Transform - pos: 46.5,-70.5 + pos: 77.5,-43.5 parent: 2 - - uid: 38682 + - uid: 39141 components: - type: Transform - pos: 41.5,-71.5 + pos: 75.5,-43.5 parent: 2 - - uid: 38683 + - uid: 39142 components: - type: Transform - pos: 41.5,-73.5 + pos: 74.5,-43.5 parent: 2 - - uid: 38684 + - uid: 39143 components: - type: Transform - pos: 41.5,-72.5 + pos: 64.5,-47.5 parent: 2 - - uid: 38685 + - uid: 39144 components: - type: Transform - pos: 47.5,-70.5 + pos: 65.5,-47.5 parent: 2 - - uid: 38686 + - uid: 39145 components: - type: Transform - pos: 47.5,-71.5 + pos: 66.5,-47.5 parent: 2 - - uid: 38687 + - uid: 39146 components: - type: Transform - pos: 17.5,-98.5 + pos: 67.5,-47.5 parent: 2 - - uid: 38688 + - uid: 39147 components: - type: Transform - pos: -13.5,-81.5 + pos: 68.5,-47.5 parent: 2 - - uid: 38689 + - uid: 39148 components: - type: Transform - pos: 8.5,-84.5 + pos: 68.5,-46.5 parent: 2 - - uid: 38690 + - uid: 39149 components: - type: Transform - pos: 31.5,-80.5 + pos: 64.5,-50.5 parent: 2 - - uid: 38691 + - uid: 39150 components: - type: Transform - pos: -12.5,-91.5 + pos: 64.5,-49.5 parent: 2 - - uid: 38692 + - uid: 39151 components: - type: Transform - pos: -11.5,-91.5 + pos: 64.5,-48.5 parent: 2 - - uid: 38693 + - uid: 39152 components: - type: Transform - pos: -13.5,-91.5 + pos: 72.5,-48.5 parent: 2 - - uid: 38694 + - uid: 39153 components: - type: Transform - pos: -14.5,-91.5 + pos: -30.5,-99.5 parent: 2 - - uid: 38695 + - uid: 39154 components: - type: Transform - pos: 40.5,-70.5 + pos: -29.5,-99.5 parent: 2 - - uid: 38696 + - uid: 39155 components: - type: Transform - pos: 34.5,-56.5 + pos: -28.5,-99.5 parent: 2 - - uid: 38697 + - uid: 39156 components: - type: Transform - pos: 32.5,-56.5 + pos: -35.5,-99.5 parent: 2 - - uid: 38698 + - uid: 39157 components: - type: Transform - pos: 33.5,-67.5 + pos: -34.5,-99.5 parent: 2 - - uid: 38699 + - uid: 39158 components: - type: Transform - pos: 37.5,-56.5 + pos: -33.5,-99.5 parent: 2 - - uid: 38700 + - uid: 39159 components: - type: Transform - pos: 36.5,-56.5 + pos: -32.5,-99.5 parent: 2 - - uid: 38701 + - uid: 39160 components: - type: Transform - pos: 33.5,-68.5 + pos: -31.5,-99.5 parent: 2 - - uid: 38702 + - uid: 39161 components: - type: Transform - pos: 31.5,-60.5 + pos: -54.5,-89.5 parent: 2 - - uid: 38703 + - uid: 39162 components: - type: Transform - pos: 33.5,-56.5 + pos: -54.5,-90.5 parent: 2 - - uid: 38704 + - uid: 39163 components: - type: Transform - pos: 38.5,-56.5 + pos: -54.5,-91.5 parent: 2 - - uid: 38705 + - uid: 39164 components: - type: Transform - pos: 35.5,-56.5 + pos: -54.5,-92.5 parent: 2 - - uid: 38706 + - uid: 39165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-84.5 + pos: -53.5,-93.5 parent: 2 - - uid: 38707 + - uid: 39166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-85.5 + pos: -53.5,-95.5 parent: 2 - - uid: 38708 + - uid: 39167 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-85.5 + pos: -53.5,-97.5 parent: 2 - - uid: 38709 + - uid: 39168 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-85.5 + pos: -53.5,-96.5 parent: 2 - - uid: 38710 + - uid: 39169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-85.5 + pos: -53.5,-99.5 parent: 2 - - uid: 38711 + - uid: 39170 components: - type: Transform - pos: -19.5,-74.5 + pos: -53.5,-98.5 parent: 2 - - uid: 38712 + - uid: 39171 components: - type: Transform - pos: -63.5,-46.5 + pos: 75.5,-47.5 parent: 2 - - uid: 38713 + - uid: 39172 components: - type: Transform - pos: -40.5,-86.5 + pos: 70.5,-46.5 parent: 2 - - uid: 38714 + - uid: 39173 components: - type: Transform - pos: -42.5,-82.5 + pos: 71.5,-46.5 parent: 2 - - uid: 38715 + - uid: 39174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-95.5 + pos: 72.5,-46.5 parent: 2 - - uid: 38716 + - uid: 39175 components: - type: Transform - pos: -44.5,-90.5 + pos: -36.5,-99.5 parent: 2 - - uid: 38717 + - uid: 39176 components: - type: Transform - pos: -45.5,-90.5 + pos: -53.5,-100.5 parent: 2 - - uid: 38718 + - uid: 39177 components: - type: Transform - pos: -50.5,-47.5 + pos: -53.5,-101.5 parent: 2 - - uid: 38719 + - uid: 39178 components: - type: Transform - pos: -62.5,-35.5 + pos: -53.5,-102.5 parent: 2 - - uid: 38720 + - uid: 39179 components: - type: Transform - pos: -63.5,-35.5 + pos: -53.5,-104.5 parent: 2 - - uid: 38721 + - uid: 39180 components: - type: Transform - pos: -64.5,-35.5 + pos: -52.5,-104.5 parent: 2 - - uid: 38722 + - uid: 39181 components: - type: Transform - pos: -65.5,-35.5 + pos: -51.5,-104.5 parent: 2 - - uid: 38723 + - uid: 39182 components: - type: Transform - pos: -66.5,-35.5 + pos: -50.5,-104.5 parent: 2 - - uid: 38724 + - uid: 39183 components: - type: Transform - pos: -67.5,-35.5 + pos: -49.5,-104.5 parent: 2 - - uid: 38725 + - uid: 39184 components: - type: Transform - pos: -68.5,-35.5 + pos: -48.5,-104.5 parent: 2 - - uid: 38726 + - uid: 39185 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-85.5 + pos: -47.5,-104.5 parent: 2 - - uid: 38727 + - uid: 39186 components: - type: Transform - pos: -62.5,-36.5 + pos: -46.5,-104.5 parent: 2 - - uid: 38728 + - uid: 39187 components: - type: Transform - pos: -62.5,-37.5 + pos: -45.5,-104.5 parent: 2 - - uid: 38729 + - uid: 39188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-96.5 + pos: -44.5,-104.5 parent: 2 - - uid: 38730 + - uid: 39189 components: - type: Transform - pos: -62.5,-39.5 + pos: -43.5,-104.5 parent: 2 - - uid: 38731 + - uid: 39190 components: - type: Transform - pos: -62.5,-40.5 + pos: -42.5,-104.5 parent: 2 - - uid: 38732 + - uid: 39191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-97.5 + pos: -36.5,-100.5 parent: 2 - - uid: 38733 + - uid: 39192 components: - type: Transform - pos: -64.5,-63.5 + pos: -36.5,-101.5 parent: 2 - - uid: 38734 + - uid: 39193 components: - type: Transform - pos: 27.5,-80.5 + pos: -36.5,-102.5 parent: 2 - - uid: 38735 + - uid: 39194 components: - type: Transform - pos: 43.5,24.5 + pos: -37.5,-104.5 parent: 2 - - uid: 38736 + - uid: 39195 components: - type: Transform - pos: 43.5,23.5 + pos: -38.5,-104.5 parent: 2 - - uid: 38737 + - uid: 39196 components: - type: Transform - pos: 43.5,22.5 + pos: -39.5,-104.5 parent: 2 - - uid: 38739 + - uid: 39197 components: - type: Transform - pos: 46.5,19.5 + pos: -40.5,-104.5 parent: 2 - - uid: 38740 + - uid: 39198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-98.5 + pos: -41.5,-104.5 parent: 2 - - uid: 38741 + - uid: 39199 components: - type: Transform - pos: 43.5,20.5 + pos: 72.5,-47.5 parent: 2 - - uid: 38742 + - uid: 39200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-73.5 + pos: 74.5,-47.5 parent: 2 - - uid: 38743 + - uid: 39202 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-71.5 + pos: -32.5,-113.5 parent: 2 - - uid: 38744 + - uid: 39203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-71.5 + pos: -36.5,-104.5 parent: 2 - - uid: 38745 + - uid: 39204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-72.5 + pos: 80.5,-44.5 parent: 2 - - uid: 38746 + - uid: 39205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-73.5 + pos: -28.5,-105.5 parent: 2 - - uid: 38747 + - uid: 39206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-73.5 + pos: -34.5,-108.5 parent: 2 - - uid: 38748 + - uid: 39207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-72.5 + pos: -33.5,-108.5 parent: 2 - - uid: 38749 + - uid: 39208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-72.5 + pos: -32.5,-108.5 parent: 2 - - uid: 38750 + - uid: 39209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-73.5 + pos: -31.5,-108.5 parent: 2 - - uid: 38751 + - uid: 39210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-71.5 + rot: 3.141592653589793 rad + pos: -40.5,-107.5 parent: 2 - - uid: 38752 + - uid: 39211 components: - type: Transform - pos: -14.5,-82.5 + pos: -29.5,-108.5 parent: 2 - - uid: 38753 + - uid: 39212 components: - type: Transform - pos: -14.5,-81.5 + pos: -35.5,-108.5 parent: 2 - - uid: 38754 + - uid: 39213 components: - type: Transform - pos: -14.5,-83.5 + pos: -36.5,-108.5 parent: 2 - - uid: 38755 + - uid: 39214 components: - type: Transform - pos: 43.5,19.5 + pos: -36.5,-107.5 parent: 2 - - uid: 38756 + - uid: 39215 components: - type: Transform - pos: 27.5,-82.5 + rot: 3.141592653589793 rad + pos: -44.5,-108.5 parent: 2 - - uid: 38757 + - uid: 39216 components: - type: Transform - pos: 27.5,-81.5 + rot: 3.141592653589793 rad + pos: -45.5,-108.5 parent: 2 - - uid: 38758 + - uid: 39217 components: - type: Transform - pos: 23.5,-82.5 + rot: 3.141592653589793 rad + pos: -45.5,-107.5 parent: 2 - - uid: 38759 + - uid: 39218 components: - type: Transform - pos: 16.5,-98.5 + rot: 3.141592653589793 rad + pos: -47.5,-107.5 parent: 2 - - uid: 38760 + - uid: 39219 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,19.5 + pos: -48.5,-107.5 parent: 2 - - uid: 38761 + - uid: 39220 components: - type: Transform - pos: 45.5,19.5 + rot: 3.141592653589793 rad + pos: -51.5,-107.5 parent: 2 - - uid: 38762 + - uid: 39221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-14.5 + rot: 3.141592653589793 rad + pos: -52.5,-107.5 parent: 2 - - uid: 38763 + - uid: 39222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-53.5 + rot: 3.141592653589793 rad + pos: -53.5,-107.5 parent: 2 - - uid: 38764 + - uid: 39223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-53.5 + pos: -53.5,-105.5 parent: 2 - - uid: 38765 + - uid: 39224 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-53.5 + pos: -39.5,-111.5 parent: 2 - - uid: 38766 + - uid: 39225 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-53.5 + pos: -38.5,-111.5 parent: 2 - - uid: 38767 + - uid: 39226 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-53.5 + pos: -37.5,-111.5 parent: 2 - - uid: 38768 + - uid: 39227 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-71.5 - parent: 2 - - uid: 38769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,19.5 - parent: 2 - - uid: 38770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-85.5 + pos: -36.5,-111.5 parent: 2 - - uid: 38771 + - uid: 39228 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-85.5 + pos: -36.5,-110.5 parent: 2 - - uid: 38772 + - uid: 39229 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-70.5 + pos: -35.5,-111.5 parent: 2 - - uid: 38773 + - uid: 39230 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-69.5 + pos: -33.5,-111.5 parent: 2 - - uid: 38774 + - uid: 39231 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-67.5 + pos: -32.5,-118.5 parent: 2 - - uid: 38775 + - uid: 39232 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-50.5 + pos: -32.5,-116.5 parent: 2 - - uid: 38776 + - uid: 39233 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-52.5 + pos: -32.5,-112.5 parent: 2 - - uid: 38777 + - uid: 39234 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-52.5 + pos: -32.5,-111.5 parent: 2 - - uid: 38778 + - uid: 39235 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-52.5 + pos: -31.5,-111.5 parent: 2 - - uid: 38779 + - uid: 39236 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-51.5 - parent: 2 - - uid: 38780 - components: - - type: Transform - pos: 47.5,-75.5 + pos: -30.5,-111.5 parent: 2 - - uid: 38781 + - uid: 39237 components: - type: Transform - pos: 47.5,-76.5 + pos: -53.5,-103.5 parent: 2 - - uid: 38782 + - uid: 39238 components: - type: Transform - pos: 45.5,-76.5 + pos: -36.5,-106.5 parent: 2 - - uid: 38783 + - uid: 39239 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-53.5 + pos: -29.5,-111.5 parent: 2 - - uid: 38784 + - uid: 39240 components: - type: Transform - pos: 46.5,-76.5 + pos: -47.5,-113.5 parent: 2 - - uid: 38785 + - uid: 39241 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-45.5 + pos: -43.5,-112.5 parent: 2 - - uid: 38786 + - uid: 39242 components: - type: Transform - pos: -63.5,-25.5 + pos: -44.5,-112.5 parent: 2 - - uid: 38787 + - uid: 39243 components: - type: Transform - pos: 42.5,19.5 + pos: -45.5,-112.5 parent: 2 - - uid: 38788 + - uid: 39244 components: - type: Transform - pos: 52.5,-29.5 + pos: -46.5,-112.5 parent: 2 - - uid: 38789 + - uid: 39246 components: - type: Transform - pos: 53.5,-29.5 + rot: 3.141592653589793 rad + pos: -47.5,-111.5 parent: 2 - - uid: 38790 + - uid: 39247 components: - type: Transform - pos: 54.5,-29.5 + rot: 3.141592653589793 rad + pos: -47.5,-110.5 parent: 2 - - uid: 38791 + - uid: 39248 components: - type: Transform - pos: 55.5,-29.5 + rot: 3.141592653589793 rad + pos: -47.5,-109.5 parent: 2 - - uid: 38792 + - uid: 39249 components: - type: Transform - pos: 32.5,-25.5 + rot: 3.141592653589793 rad + pos: -47.5,-108.5 parent: 2 - - uid: 38793 + - uid: 39250 components: - type: Transform - pos: 51.5,-29.5 + pos: -48.5,-113.5 parent: 2 - - uid: 38794 + - uid: 39251 components: - type: Transform - pos: 50.5,-29.5 + pos: -49.5,-113.5 parent: 2 - - uid: 38795 + - uid: 39252 components: - type: Transform - pos: 19.5,-75.5 + pos: -50.5,-113.5 parent: 2 - - uid: 38796 + - uid: 39253 components: - type: Transform - pos: 18.5,-75.5 + pos: -51.5,-113.5 parent: 2 - - uid: 38797 + - uid: 39254 components: - type: Transform - pos: 17.5,-75.5 + rot: 1.5707963267948966 rad + pos: -43.5,-113.5 parent: 2 - - uid: 38798 + - uid: 39255 components: - type: Transform - pos: 20.5,-75.5 + pos: -46.5,-118.5 parent: 2 - - uid: 38799 + - uid: 39256 components: - type: Transform - pos: -31.5,-61.5 + pos: -44.5,-118.5 parent: 2 - - uid: 38800 + - uid: 39257 components: - type: Transform - pos: -31.5,-58.5 + rot: 1.5707963267948966 rad + pos: -43.5,-118.5 parent: 2 - - uid: 38801 + - uid: 39258 components: - type: Transform - pos: -31.5,-60.5 + rot: 1.5707963267948966 rad + pos: -43.5,-117.5 parent: 2 - - uid: 38802 + - uid: 39259 components: - type: Transform - pos: -31.5,-59.5 + pos: -47.5,-117.5 parent: 2 - - uid: 38803 + - uid: 39260 components: - type: Transform - pos: -31.5,-57.5 + pos: -47.5,-118.5 parent: 2 - - uid: 38804 + - uid: 39261 components: - type: Transform - pos: -31.5,-10.5 + pos: -51.5,-117.5 parent: 2 - - uid: 38805 + - uid: 39262 components: - type: Transform - pos: -31.5,-25.5 + pos: -50.5,-117.5 parent: 2 - - uid: 38806 + - uid: 39263 components: - type: Transform - pos: -31.5,-9.5 + pos: -48.5,-117.5 parent: 2 - - uid: 38807 + - uid: 39264 components: - type: Transform - pos: -31.5,-8.5 + rot: 1.5707963267948966 rad + pos: -43.5,-114.5 parent: 2 - - uid: 38808 + - uid: 39265 components: - type: Transform - pos: -31.5,-26.5 + rot: 1.5707963267948966 rad + pos: -43.5,-115.5 parent: 2 - - uid: 38809 + - uid: 39266 components: - type: Transform - pos: -31.5,-27.5 + rot: 1.5707963267948966 rad + pos: -43.5,-116.5 parent: 2 - - uid: 38810 + - uid: 39267 components: - type: Transform - pos: -31.5,-28.5 + pos: -49.5,-117.5 parent: 2 - - uid: 38811 + - uid: 39268 components: - type: Transform - pos: -31.5,-29.5 + rot: 1.5707963267948966 rad + pos: -28.5,-111.5 parent: 2 - - uid: 38812 + - uid: 39269 components: - type: Transform - pos: -30.5,-17.5 + rot: 1.5707963267948966 rad + pos: -26.5,-111.5 parent: 2 - - uid: 38813 + - uid: 39270 components: - type: Transform - pos: -30.5,-18.5 + rot: 3.141592653589793 rad + pos: -70.5,-23.5 parent: 2 - - uid: 38814 + - uid: 39271 components: - type: Transform - pos: -30.5,-19.5 + rot: 3.141592653589793 rad + pos: -70.5,-24.5 parent: 2 - - uid: 38815 + - uid: 39272 components: - type: Transform - pos: 32.5,-29.5 + rot: 3.141592653589793 rad + pos: -70.5,-25.5 parent: 2 - - uid: 38816 + - uid: 39273 components: - type: Transform - pos: 32.5,-28.5 + rot: 3.141592653589793 rad + pos: -70.5,-26.5 parent: 2 - - uid: 38817 + - uid: 39274 components: - type: Transform - pos: 32.5,-27.5 + rot: 3.141592653589793 rad + pos: -70.5,-27.5 parent: 2 - - uid: 38818 + - uid: 39275 components: - type: Transform - pos: 32.5,-26.5 + rot: 3.141592653589793 rad + pos: -75.5,-28.5 parent: 2 - - uid: 38819 + - uid: 39276 components: - type: Transform - pos: 15.5,-75.5 + rot: 3.141592653589793 rad + pos: -76.5,-28.5 parent: 2 - - uid: 38820 + - uid: 39277 components: - type: Transform - pos: 16.5,-75.5 + rot: 3.141592653589793 rad + pos: -74.5,-3.5 parent: 2 - - uid: 38821 + - uid: 39278 components: - type: Transform - pos: -31.5,-11.5 + rot: 3.141592653589793 rad + pos: -73.5,-3.5 parent: 2 - - uid: 38822 + - uid: 39279 components: - type: Transform - pos: -31.5,-12.5 + rot: 3.141592653589793 rad + pos: -72.5,-3.5 parent: 2 - - uid: 38823 + - uid: 39280 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,19.5 + pos: -71.5,-3.5 parent: 2 - - uid: 38824 + - uid: 39281 components: - type: Transform - pos: 42.5,17.5 + rot: 3.141592653589793 rad + pos: -70.5,-3.5 parent: 2 - - uid: 38825 + - uid: 39282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-51.5 + rot: 3.141592653589793 rad + pos: -80.5,4.5 parent: 2 - - uid: 38826 + - uid: 39283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-53.5 + rot: 3.141592653589793 rad + pos: -80.5,3.5 parent: 2 - - uid: 38827 + - uid: 39284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-74.5 + rot: 3.141592653589793 rad + pos: -80.5,2.5 parent: 2 - - uid: 38828 + - uid: 39285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-73.5 + rot: 3.141592653589793 rad + pos: -80.5,1.5 parent: 2 - - uid: 38829 + - uid: 39286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-72.5 + rot: 3.141592653589793 rad + pos: -80.5,0.5 parent: 2 - - uid: 38830 + - uid: 39287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-72.5 + rot: 3.141592653589793 rad + pos: -80.5,-0.5 parent: 2 - - uid: 38831 + - uid: 39288 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-28.5 + pos: -80.5,-1.5 parent: 2 - - uid: 38832 + - uid: 39289 components: - type: Transform - pos: -69.5,-28.5 + rot: 3.141592653589793 rad + pos: -80.5,-2.5 parent: 2 - - uid: 38833 + - uid: 39290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-46.5 + rot: 3.141592653589793 rad + pos: -80.5,-3.5 parent: 2 - - uid: 38834 + - uid: 39291 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,20.5 + pos: -80.5,-5.5 parent: 2 - - uid: 38835 + - uid: 39292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-41.5 + rot: 3.141592653589793 rad + pos: -80.5,-6.5 parent: 2 - - uid: 38836 + - uid: 39293 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,-37.5 + pos: -27.5,-111.5 parent: 2 - - uid: 38837 + - uid: 39294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-40.5 + rot: 3.141592653589793 rad + pos: -77.5,-6.5 parent: 2 - - uid: 38838 + - uid: 39295 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-38.5 + pos: -77.5,-7.5 parent: 2 - - uid: 38839 + - uid: 39296 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-85.5 + pos: -76.5,-6.5 parent: 2 - - uid: 38840 + - uid: 39297 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-85.5 + pos: -75.5,-6.5 parent: 2 - - uid: 38841 + - uid: 39298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-50.5 + rot: 3.141592653589793 rad + pos: -74.5,-6.5 parent: 2 - - uid: 38842 + - uid: 39299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-49.5 + rot: 3.141592653589793 rad + pos: -74.5,-4.5 parent: 2 - - uid: 38843 + - uid: 39300 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-50.5 + pos: -73.5,-6.5 parent: 2 - - uid: 38844 + - uid: 39301 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-50.5 + pos: -72.5,-6.5 parent: 2 - - uid: 38845 + - uid: 39302 components: - type: Transform - pos: -39.5,-9.5 + rot: 3.141592653589793 rad + pos: -72.5,-7.5 parent: 2 - - uid: 38846 + - uid: 39303 components: - type: Transform - pos: -38.5,-9.5 + rot: 3.141592653589793 rad + pos: -72.5,-8.5 parent: 2 - - uid: 38847 + - uid: 39304 components: - type: Transform - pos: -37.5,-9.5 + rot: 3.141592653589793 rad + pos: -72.5,-9.5 parent: 2 - - uid: 38848 + - uid: 39305 components: - type: Transform - pos: -37.5,-10.5 + rot: 3.141592653589793 rad + pos: -72.5,-10.5 parent: 2 - - uid: 38849 + - uid: 39306 components: - type: Transform - pos: -37.5,-12.5 + rot: 3.141592653589793 rad + pos: -72.5,-11.5 parent: 2 - - uid: 38850 + - uid: 39307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-45.5 + rot: 3.141592653589793 rad + pos: -73.5,-11.5 parent: 2 - - uid: 38851 + - uid: 39308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-45.5 + rot: 3.141592653589793 rad + pos: -74.5,-11.5 parent: 2 - - uid: 38852 + - uid: 39309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-45.5 + rot: 3.141592653589793 rad + pos: -74.5,-12.5 parent: 2 - - uid: 38853 + - uid: 39310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-92.5 + rot: 3.141592653589793 rad + pos: -74.5,-13.5 parent: 2 - - uid: 38854 + - uid: 39311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-96.5 + rot: 3.141592653589793 rad + pos: -75.5,-13.5 parent: 2 - - uid: 38855 + - uid: 39312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-95.5 + rot: 3.141592653589793 rad + pos: -75.5,-14.5 parent: 2 - - uid: 38856 + - uid: 39313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-94.5 + rot: 3.141592653589793 rad + pos: -75.5,-15.5 parent: 2 - - uid: 38857 + - uid: 39314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-43.5 + rot: 3.141592653589793 rad + pos: -75.5,-16.5 parent: 2 - - uid: 38858 + - uid: 39315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-42.5 + rot: 3.141592653589793 rad + pos: -75.5,-17.5 parent: 2 - - uid: 38859 + - uid: 39316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-43.5 + rot: 3.141592653589793 rad + pos: -74.5,-18.5 parent: 2 - - uid: 38860 + - uid: 39317 components: - type: Transform - pos: 23.5,-87.5 + rot: 3.141592653589793 rad + pos: -75.5,-18.5 parent: 2 - - uid: 38861 + - uid: 39318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-94.5 + rot: 3.141592653589793 rad + pos: -71.5,-23.5 parent: 2 - - uid: 38862 + - uid: 39319 components: - type: Transform - pos: 24.5,-83.5 + rot: 3.141592653589793 rad + pos: -72.5,-23.5 parent: 2 - - uid: 38863 + - uid: 39320 components: - type: Transform - pos: 16.5,-82.5 + rot: 3.141592653589793 rad + pos: -73.5,-23.5 parent: 2 - - uid: 38864 + - uid: 39321 components: - type: Transform - pos: 17.5,-82.5 + rot: 3.141592653589793 rad + pos: -74.5,-23.5 parent: 2 - - uid: 38865 + - uid: 39322 components: - type: Transform - pos: 18.5,-82.5 + rot: 3.141592653589793 rad + pos: -75.5,-23.5 parent: 2 - - uid: 38866 + - uid: 39323 components: - type: Transform - pos: 19.5,-82.5 + rot: 3.141592653589793 rad + pos: -75.5,-22.5 parent: 2 - - uid: 38867 + - uid: 39324 components: - type: Transform - pos: 20.5,-82.5 + rot: 3.141592653589793 rad + pos: -75.5,-21.5 parent: 2 - - uid: 38868 + - uid: 39325 components: - type: Transform - pos: 16.5,-81.5 + rot: 3.141592653589793 rad + pos: -75.5,-20.5 parent: 2 - - uid: 38869 + - uid: 39326 components: - type: Transform - pos: 16.5,-79.5 + rot: 3.141592653589793 rad + pos: -75.5,-19.5 parent: 2 - - uid: 38870 + - uid: 39327 components: - type: Transform - pos: 16.5,-78.5 + pos: -79.5,-2.5 parent: 2 - - uid: 38871 + - uid: 39328 components: - type: Transform - pos: 16.5,-76.5 + rot: 3.141592653589793 rad + pos: -80.5,-7.5 parent: 2 - - uid: 38872 + - uid: 39329 components: - type: Transform - pos: 21.5,-82.5 + rot: 3.141592653589793 rad + pos: -80.5,-8.5 parent: 2 - - uid: 38873 + - uid: 39330 components: - type: Transform - pos: 21.5,-81.5 + rot: 3.141592653589793 rad + pos: -80.5,-9.5 parent: 2 - - uid: 38874 + - uid: 39331 components: - type: Transform - pos: 21.5,-80.5 + rot: 3.141592653589793 rad + pos: -80.5,-10.5 parent: 2 - - uid: 38875 + - uid: 39332 components: - type: Transform - pos: 21.5,-79.5 + rot: 3.141592653589793 rad + pos: -80.5,-11.5 parent: 2 - - uid: 38876 + - uid: 39333 components: - type: Transform - pos: 21.5,-78.5 + rot: 3.141592653589793 rad + pos: -80.5,-12.5 parent: 2 - - uid: 38877 + - uid: 39334 components: - type: Transform - pos: 21.5,-76.5 + rot: 3.141592653589793 rad + pos: -80.5,-13.5 parent: 2 - - uid: 38878 + - uid: 39335 components: - type: Transform - pos: 21.5,-75.5 + rot: 3.141592653589793 rad + pos: -78.5,-17.5 parent: 2 - - uid: 38879 + - uid: 39336 components: - type: Transform - pos: 25.5,-83.5 + rot: 3.141592653589793 rad + pos: -77.5,-13.5 parent: 2 - - uid: 38880 + - uid: 39337 components: - type: Transform - pos: 23.5,-83.5 + rot: 3.141592653589793 rad + pos: -78.5,-16.5 parent: 2 - - uid: 38881 + - uid: 39338 components: - type: Transform - pos: 23.5,-85.5 + rot: 3.141592653589793 rad + pos: -76.5,-13.5 parent: 2 - - uid: 38882 + - uid: 39339 components: - type: Transform - pos: 23.5,-75.5 + rot: 3.141592653589793 rad + pos: -77.5,-8.5 parent: 2 - - uid: 38883 + - uid: 39340 components: - type: Transform - pos: 23.5,-76.5 + rot: 3.141592653589793 rad + pos: -77.5,-9.5 parent: 2 - - uid: 38884 + - uid: 39341 components: - type: Transform - pos: 23.5,-77.5 + rot: 3.141592653589793 rad + pos: -77.5,-16.5 parent: 2 - - uid: 38885 + - uid: 39342 components: - type: Transform - pos: 24.5,-77.5 + rot: 3.141592653589793 rad + pos: -77.5,-11.5 parent: 2 - - uid: 38886 + - uid: 39343 components: - type: Transform - pos: 25.5,-77.5 + rot: 3.141592653589793 rad + pos: -77.5,-12.5 parent: 2 - - uid: 38887 + - uid: 39344 components: - type: Transform - pos: 26.5,-77.5 + rot: 3.141592653589793 rad + pos: -78.5,-18.5 parent: 2 - - uid: 38888 + - uid: 39345 components: - type: Transform - pos: 27.5,-77.5 + rot: 3.141592653589793 rad + pos: -78.5,-19.5 parent: 2 - - uid: 38889 + - uid: 39346 components: - type: Transform - pos: 28.5,-77.5 + rot: 3.141592653589793 rad + pos: -78.5,-22.5 parent: 2 - - uid: 38890 + - uid: 39347 components: - type: Transform - pos: 29.5,-77.5 + rot: 3.141592653589793 rad + pos: -77.5,-22.5 parent: 2 - - uid: 38891 + - uid: 39348 components: - type: Transform - pos: 30.5,-77.5 + rot: 3.141592653589793 rad + pos: -80.5,-22.5 parent: 2 - - uid: 38892 + - uid: 39349 components: - type: Transform - pos: 30.5,-75.5 + rot: 3.141592653589793 rad + pos: -79.5,-22.5 parent: 2 - - uid: 38893 + - uid: 39350 components: - type: Transform - pos: 30.5,-74.5 + rot: 3.141592653589793 rad + pos: -79.5,-23.5 parent: 2 - - uid: 38894 + - uid: 39351 components: - type: Transform - pos: 30.5,-73.5 + rot: 3.141592653589793 rad + pos: -79.5,-24.5 parent: 2 - - uid: 38895 + - uid: 39352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-46.5 + rot: 3.141592653589793 rad + pos: -79.5,-25.5 parent: 2 - - uid: 38896 + - uid: 39353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-25.5 + rot: 3.141592653589793 rad + pos: -79.5,-26.5 parent: 2 - - uid: 38897 + - uid: 39354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-25.5 + rot: 3.141592653589793 rad + pos: -79.5,-18.5 parent: 2 - - uid: 38898 + - uid: 39355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-24.5 + rot: 3.141592653589793 rad + pos: -80.5,-18.5 parent: 2 - - uid: 38899 + - uid: 39356 components: - type: Transform - pos: 31.5,-24.5 + rot: 3.141592653589793 rad + pos: -81.5,-18.5 parent: 2 - - uid: 38900 + - uid: 39357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-43.5 + rot: 3.141592653589793 rad + pos: -79.5,-27.5 parent: 2 - - uid: 38901 + - uid: 39358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-43.5 + rot: 3.141592653589793 rad + pos: -82.5,-18.5 parent: 2 - - uid: 38902 + - uid: 39359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-43.5 + rot: 3.141592653589793 rad + pos: -84.5,-12.5 parent: 2 - - uid: 38903 + - uid: 39360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-43.5 + rot: 3.141592653589793 rad + pos: -83.5,-12.5 parent: 2 - - uid: 38904 + - uid: 39361 components: - type: Transform - pos: 23.5,-84.5 + rot: 3.141592653589793 rad + pos: -82.5,-12.5 parent: 2 - - uid: 38905 + - uid: 39362 components: - type: Transform - pos: -63.5,-51.5 + rot: 3.141592653589793 rad + pos: -81.5,-12.5 parent: 2 - - uid: 38906 + - uid: 39363 components: - type: Transform - pos: -62.5,-51.5 + rot: 3.141592653589793 rad + pos: -83.5,-18.5 parent: 2 - - uid: 38907 + - uid: 39364 components: - type: Transform - pos: -61.5,-51.5 + rot: 3.141592653589793 rad + pos: -82.5,-22.5 parent: 2 - - uid: 38908 + - uid: 39365 components: - type: Transform - pos: -60.5,-51.5 + rot: 3.141592653589793 rad + pos: -79.5,-16.5 parent: 2 - - uid: 38909 + - uid: 39366 components: - type: Transform - pos: -60.5,-50.5 + rot: 3.141592653589793 rad + pos: -80.5,-16.5 parent: 2 - - uid: 38910 + - uid: 39367 components: - type: Transform - pos: -60.5,-48.5 + rot: 3.141592653589793 rad + pos: -78.5,-6.5 parent: 2 - - uid: 38911 + - uid: 39368 components: - type: Transform - pos: -60.5,-47.5 + rot: 3.141592653589793 rad + pos: -86.5,-2.5 parent: 2 - - uid: 38912 + - uid: 39369 components: - type: Transform - pos: -60.5,-46.5 + rot: 3.141592653589793 rad + pos: -85.5,-2.5 parent: 2 - - uid: 38913 + - uid: 39370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-46.5 + rot: 3.141592653589793 rad + pos: -83.5,-2.5 parent: 2 - - uid: 38914 + - uid: 39371 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-90.5 + pos: -82.5,-2.5 parent: 2 - - uid: 38915 + - uid: 39372 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-90.5 + pos: -81.5,-2.5 parent: 2 - - uid: 38916 + - uid: 39373 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-91.5 + pos: -88.5,-3.5 parent: 2 - - uid: 38917 + - uid: 39374 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-92.5 + pos: -88.5,-5.5 parent: 2 - - uid: 38918 + - uid: 39375 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-93.5 + pos: -81.5,-6.5 parent: 2 - - uid: 38919 + - uid: 39376 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-93.5 + pos: -83.5,-6.5 parent: 2 - - uid: 38920 + - uid: 39377 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-93.5 + pos: -84.5,-6.5 parent: 2 - - uid: 38921 + - uid: 39378 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-91.5 + pos: -85.5,-6.5 parent: 2 - - uid: 38922 + - uid: 39379 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-91.5 + pos: -86.5,-6.5 parent: 2 - - uid: 38923 + - uid: 39380 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-90.5 + pos: -87.5,-6.5 parent: 2 - - uid: 38924 + - uid: 39381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-89.5 + pos: 35.5,35.5 parent: 2 - - uid: 38925 + - uid: 39382 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-89.5 + rot: -1.5707963267948966 rad + pos: -52.5,-40.5 parent: 2 - - uid: 38926 + - uid: 39383 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-88.5 + rot: -1.5707963267948966 rad + pos: -52.5,-38.5 parent: 2 - - uid: 38927 + - uid: 39384 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-87.5 + rot: -1.5707963267948966 rad + pos: -80.5,-15.5 parent: 2 - - uid: 38928 + - uid: 39385 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,12.5 + rot: 1.5707963267948966 rad + pos: -29.5,-116.5 parent: 2 - - uid: 38929 + - uid: 39386 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,13.5 + rot: 1.5707963267948966 rad + pos: -30.5,-116.5 parent: 2 - - uid: 38930 + - uid: 39387 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,13.5 + rot: 1.5707963267948966 rad + pos: -31.5,-116.5 parent: 2 - - uid: 38931 + - uid: 39388 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,13.5 + pos: -57.5,-118.5 parent: 2 - - uid: 38932 + - uid: 39389 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,13.5 + pos: -57.5,-120.5 parent: 2 - - uid: 38933 + - uid: 39390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-50.5 + rot: 3.141592653589793 rad + pos: -53.5,-118.5 parent: 2 - - uid: 38934 + - uid: 39391 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,-34.5 + pos: 22.5,15.5 parent: 2 - - uid: 38935 + - uid: 39392 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-34.5 + pos: 26.5,10.5 parent: 2 - - uid: 38936 + - uid: 39393 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-33.5 + pos: 23.5,15.5 parent: 2 - - uid: 38937 + - uid: 39394 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-32.5 + pos: 24.5,15.5 parent: 2 - - uid: 38938 + - uid: 39395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-31.5 + pos: 25.5,15.5 parent: 2 - - uid: 38939 + - uid: 39396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-30.5 + pos: 26.5,15.5 parent: 2 - - uid: 38940 + - uid: 39397 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-30.5 + pos: 27.5,15.5 parent: 2 - - uid: 38941 + - uid: 39398 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-30.5 + pos: 39.5,31.5 parent: 2 - - uid: 38942 + - uid: 39399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-30.5 + pos: 39.5,30.5 parent: 2 - - uid: 38943 + - uid: 39400 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-30.5 + pos: 43.5,31.5 parent: 2 - - uid: 38944 + - uid: 39401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-30.5 + pos: 43.5,30.5 parent: 2 - - uid: 38945 + - uid: 39402 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-31.5 + pos: 42.5,28.5 parent: 2 - - uid: 38946 + - uid: 39403 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-33.5 + pos: 32.5,34.5 parent: 2 - - uid: 38947 + - uid: 39404 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-34.5 + pos: 32.5,32.5 parent: 2 - - uid: 38948 + - uid: 39405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-26.5 + pos: -33.5,-86.5 parent: 2 - - uid: 38949 + - uid: 39406 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-24.5 + rot: 1.5707963267948966 rad + pos: -32.5,-115.5 parent: 2 - - uid: 38950 + - uid: 39767 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-23.5 + rot: 1.5707963267948966 rad + pos: 102.5,-49.5 parent: 2 - - uid: 38951 + - uid: 40615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-27.5 + pos: -72.5,0.5 parent: 2 - - uid: 38952 + - uid: 40662 components: + - type: MetaData + desc: Кочерга, тут нет никаких безумных ёлок, просто мержни пжлст пр. + name: FloraTreeChristmas03 - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-27.5 + pos: -47.5,-112.5 parent: 2 - - uid: 38953 + - uid: 43792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-27.5 + rot: 1.5707963267948966 rad + pos: -20.5,-99.5 parent: 2 - - uid: 38954 + - uid: 43968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-27.5 + rot: -1.5707963267948966 rad + pos: -20.5,-100.5 parent: 2 - - uid: 38955 + - uid: 44237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-27.5 + pos: -71.5,-57.5 parent: 2 - - uid: 38956 +- proto: WallSolidDiagonal + entities: + - uid: 39407 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-26.5 + rot: -1.5707963267948966 rad + pos: -75.5,-69.5 parent: 2 - - uid: 38957 + - uid: 39408 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-24.5 + rot: -1.5707963267948966 rad + pos: -76.5,-68.5 parent: 2 - - uid: 38958 + - uid: 39409 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-23.5 + pos: -76.5,-62.5 parent: 2 - - uid: 38959 + - uid: 39410 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-22.5 + pos: -75.5,-61.5 parent: 2 - - uid: 38960 +- proto: WallSolidRust + entities: + - uid: 35996 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-22.5 + pos: -55.5,-10.5 parent: 2 - - uid: 38961 + - uid: 36281 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-22.5 + pos: -52.5,-8.5 parent: 2 - - uid: 38962 + - uid: 36359 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-22.5 + pos: -56.5,-7.5 parent: 2 - - uid: 38963 + - uid: 37390 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-22.5 + pos: -56.5,-6.5 parent: 2 - - uid: 38964 + - uid: 37630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-22.5 + pos: -51.5,-5.5 parent: 2 - - uid: 38965 + - uid: 37660 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-21.5 + pos: -51.5,-6.5 parent: 2 - - uid: 38966 + - uid: 37663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-20.5 + pos: -47.5,-1.5 parent: 2 - - uid: 38967 + - uid: 37664 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-15.5 + pos: -46.5,-1.5 parent: 2 - - uid: 38968 + - uid: 37667 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-15.5 + pos: -46.5,-4.5 parent: 2 - - uid: 38969 + - uid: 37684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-15.5 + pos: -45.5,-4.5 parent: 2 - - uid: 38970 + - uid: 37758 components: - type: Transform - pos: -73.5,-29.5 + pos: -40.5,3.5 parent: 2 - - uid: 38971 + - uid: 37759 components: - type: Transform - pos: -73.5,-31.5 + pos: -43.5,5.5 parent: 2 - - uid: 38972 + - uid: 38471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-49.5 + pos: -44.5,5.5 parent: 2 - - uid: 38973 +- proto: WallVaultAlien + entities: + - uid: 491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-48.5 + pos: -12.5,-57.5 parent: 2 - - uid: 38974 + - uid: 655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-47.5 + pos: -3.5,-63.5 parent: 2 - - uid: 38975 + - uid: 656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,19.5 + pos: -2.5,-63.5 parent: 2 - - uid: 38976 + - uid: 658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,19.5 + pos: -3.5,-60.5 parent: 2 - - uid: 38977 + - uid: 659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,19.5 + pos: -3.5,-61.5 parent: 2 - - uid: 38978 + - uid: 799 components: - type: Transform - pos: 29.5,31.5 + pos: -3.5,-62.5 parent: 2 - - uid: 38979 + - uid: 800 components: - type: Transform - pos: 31.5,31.5 + pos: 2.5,-63.5 parent: 2 - - uid: 38980 + - uid: 801 components: - type: Transform - pos: 30.5,31.5 + pos: 3.5,-63.5 parent: 2 - - uid: 38981 + - uid: 802 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,21.5 + pos: 4.5,-63.5 parent: 2 - - uid: 38982 + - uid: 803 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,23.5 + pos: -4.5,-60.5 parent: 2 - - uid: 38983 + - uid: 804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,22.5 + pos: -4.5,-59.5 parent: 2 - - uid: 38997 + - uid: 805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,20.5 + pos: -4.5,-58.5 parent: 2 - - uid: 38998 + - uid: 806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,21.5 + pos: -4.5,-57.5 parent: 2 - - uid: 38999 + - uid: 807 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,23.5 + pos: -4.5,-56.5 parent: 2 - - uid: 39000 + - uid: 808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,24.5 + pos: -4.5,-54.5 parent: 2 - - uid: 39001 + - uid: 809 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,24.5 + pos: -4.5,-55.5 parent: 2 - - uid: 39002 + - uid: 810 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,24.5 + pos: -5.5,-54.5 parent: 2 - - uid: 39003 + - uid: 811 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,24.5 + pos: -6.5,-54.5 parent: 2 - - uid: 39004 + - uid: 813 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,24.5 + pos: -6.5,-56.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: -6.5,-57.5 parent: 2 - - uid: 39005 + - uid: 815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-50.5 + pos: -6.5,-58.5 parent: 2 - - uid: 39006 + - uid: 816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-50.5 + pos: -6.5,-59.5 parent: 2 - - uid: 39007 + - uid: 817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-50.5 + pos: -6.5,-60.5 parent: 2 - - uid: 39008 + - uid: 818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-50.5 + pos: -7.5,-60.5 parent: 2 - - uid: 39009 + - uid: 819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-50.5 + pos: -8.5,-60.5 parent: 2 - - uid: 39013 + - uid: 820 components: - type: Transform - pos: -52.5,-96.5 + pos: -12.5,-48.5 parent: 2 - - uid: 39014 + - uid: 822 components: - type: Transform - pos: -51.5,-96.5 + pos: -12.5,-56.5 parent: 2 - - uid: 39015 + - uid: 823 components: - type: Transform - pos: -50.5,-96.5 + pos: -14.5,-44.5 parent: 2 - - uid: 39016 + - uid: 1082 components: - type: Transform - pos: -49.5,-96.5 + pos: -10.5,-60.5 parent: 2 - - uid: 39017 + - uid: 1085 components: - type: Transform - pos: -46.5,-96.5 + pos: 10.5,-25.5 parent: 2 - - uid: 39018 + - uid: 1112 components: - type: Transform - pos: -45.5,-96.5 + rot: 1.5707963267948966 rad + pos: 6.5,-29.5 parent: 2 - - uid: 39019 + - uid: 1113 components: - type: Transform - pos: -44.5,-96.5 + rot: -1.5707963267948966 rad + pos: 9.5,-28.5 parent: 2 - - uid: 39020 + - uid: 1114 components: - type: Transform - pos: -43.5,-96.5 + pos: -13.5,-56.5 parent: 2 - - uid: 39021 + - uid: 1115 components: - type: Transform - pos: -42.5,-96.5 + pos: -13.5,-55.5 parent: 2 - - uid: 39022 + - uid: 1116 components: - type: Transform - pos: -42.5,-97.5 + pos: -13.5,-54.5 parent: 2 - - uid: 39023 + - uid: 1117 components: - type: Transform - pos: -42.5,-98.5 + rot: -1.5707963267948966 rad + pos: -13.5,-36.5 parent: 2 - - uid: 39024 + - uid: 1128 components: - type: Transform - pos: -42.5,-99.5 + pos: -14.5,-54.5 parent: 2 - - uid: 39025 + - uid: 1129 components: - type: Transform - pos: -42.5,-100.5 + pos: -15.5,-54.5 parent: 2 - - uid: 39026 + - uid: 1133 components: - type: Transform - pos: -42.5,-101.5 + pos: -15.5,-53.5 parent: 2 - - uid: 39027 + - uid: 1277 components: - type: Transform - pos: -42.5,-102.5 + pos: -16.5,-53.5 parent: 2 - - uid: 39028 + - uid: 1278 components: - type: Transform - pos: -41.5,-96.5 + pos: -16.5,-52.5 parent: 2 - - uid: 39029 + - uid: 1279 components: - type: Transform - pos: -38.5,-96.5 + pos: -16.5,-51.5 parent: 2 - - uid: 39030 + - uid: 1280 components: - type: Transform - pos: -40.5,-96.5 + pos: -16.5,-50.5 parent: 2 - - uid: 39031 + - uid: 1281 components: - type: Transform - pos: -39.5,-96.5 + pos: -17.5,-50.5 parent: 2 - - uid: 39032 + - uid: 1282 components: - type: Transform - pos: -37.5,-96.5 + pos: -17.5,-49.5 parent: 2 - - uid: 39033 + - uid: 1283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-95.5 + pos: -17.5,-48.5 parent: 2 - - uid: 39034 + - uid: 1284 components: - type: Transform - pos: -40.5,18.5 + pos: -17.5,-47.5 parent: 2 - - uid: 39035 + - uid: 1290 components: - type: Transform - pos: -40.5,17.5 + pos: -17.5,-46.5 parent: 2 - - uid: 39036 + - uid: 1296 components: - type: Transform - pos: -40.5,16.5 + pos: -17.5,-45.5 parent: 2 - - uid: 39037 + - uid: 1349 components: - type: Transform - pos: -40.5,15.5 + pos: -17.5,-44.5 parent: 2 - - uid: 39038 + - uid: 1354 components: - type: Transform - pos: -40.5,14.5 + pos: -16.5,-44.5 parent: 2 - - uid: 39039 + - uid: 1355 components: - type: Transform - pos: -40.5,13.5 + pos: -15.5,-43.5 parent: 2 - - uid: 39040 + - uid: 1356 components: - type: Transform - pos: -40.5,12.5 + pos: -15.5,-44.5 parent: 2 - - uid: 39041 + - uid: 1365 components: - type: Transform - pos: -53.5,10.5 + pos: -15.5,-38.5 parent: 2 - - uid: 39045 + - uid: 1371 components: - type: Transform - pos: -49.5,10.5 + pos: 9.5,-37.5 parent: 2 - - uid: 39046 + - uid: 1422 components: - type: Transform - pos: -48.5,10.5 + pos: -17.5,-31.5 parent: 2 - - uid: 39047 + - uid: 1423 components: - type: Transform - pos: -44.5,10.5 + pos: -16.5,-31.5 parent: 2 - - uid: 39048 + - uid: 1424 components: - type: Transform - pos: -43.5,10.5 + pos: -16.5,-30.5 parent: 2 - - uid: 39049 + - uid: 1425 components: - type: Transform - pos: -42.5,10.5 + pos: -16.5,-29.5 parent: 2 - - uid: 39050 + - uid: 1426 components: - type: Transform - pos: -41.5,10.5 + pos: -16.5,-28.5 parent: 2 - - uid: 39051 + - uid: 1427 components: - type: Transform - pos: -40.5,10.5 + pos: -15.5,-28.5 parent: 2 - - uid: 39052 + - uid: 1428 components: - type: Transform - pos: -40.5,11.5 + pos: -15.5,-27.5 parent: 2 - - uid: 39053 + - uid: 1431 components: - type: Transform - pos: -49.5,14.5 + pos: -15.5,-26.5 parent: 2 - - uid: 39054 + - uid: 1432 components: - type: Transform - pos: -53.5,14.5 + pos: -14.5,-26.5 parent: 2 - - uid: 39055 + - uid: 1433 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,13.5 + pos: -14.5,-25.5 parent: 2 - - uid: 39056 + - uid: 1749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,13.5 + pos: -13.5,-26.5 parent: 2 - - uid: 39057 + - uid: 1756 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,13.5 + pos: -13.5,-25.5 parent: 2 - - uid: 39058 + - uid: 1757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,13.5 + pos: -13.5,-24.5 parent: 2 - - uid: 39059 + - uid: 1758 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,14.5 + pos: -12.5,-25.5 parent: 2 - - uid: 39060 + - uid: 1759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,17.5 + pos: -12.5,-24.5 parent: 2 - - uid: 39061 + - uid: 1766 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,18.5 + pos: -11.5,-24.5 parent: 2 - - uid: 39062 + - uid: 1767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-14.5 + pos: -11.5,-23.5 parent: 2 - - uid: 39063 + - uid: 1768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-12.5 + pos: -10.5,-23.5 parent: 2 - - uid: 39064 + - uid: 1769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-11.5 + pos: -9.5,-23.5 parent: 2 - - uid: 39065 + - uid: 1783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-11.5 + pos: -8.5,-23.5 parent: 2 - - uid: 39066 + - uid: 1802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-11.5 + pos: -10.5,-22.5 parent: 2 - - uid: 39067 + - uid: 1853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-11.5 + pos: -10.5,-21.5 parent: 2 - - uid: 39068 + - uid: 1854 components: - type: Transform - pos: 79.5,-20.5 + pos: -10.5,-20.5 parent: 2 - - uid: 39069 + - uid: 1855 components: - type: Transform - pos: 78.5,-20.5 + pos: -8.5,-22.5 parent: 2 - - uid: 39070 + - uid: 1856 components: - type: Transform - pos: 77.5,-20.5 + pos: -8.5,-21.5 parent: 2 - - uid: 39071 + - uid: 1857 components: - type: Transform - pos: 76.5,-20.5 + pos: -8.5,-20.5 parent: 2 - - uid: 39072 + - uid: 1858 components: - type: Transform - pos: 75.5,-20.5 + pos: -8.5,-19.5 parent: 2 - - uid: 39073 + - uid: 1859 components: - type: Transform - pos: 75.5,-19.5 + pos: -8.5,-18.5 parent: 2 - - uid: 39074 + - uid: 1860 components: - type: Transform - pos: 75.5,-18.5 + pos: -7.5,-21.5 parent: 2 - - uid: 39075 + - uid: 1861 components: - type: Transform - pos: 75.5,-16.5 + pos: -6.5,-21.5 parent: 2 - - uid: 39076 + - uid: 1862 components: - type: Transform - pos: 70.5,-20.5 + pos: -5.5,-21.5 parent: 2 - - uid: 39077 + - uid: 1863 components: - type: Transform - pos: 71.5,-20.5 + pos: -4.5,-21.5 parent: 2 - - uid: 39078 + - uid: 1865 components: - type: Transform - pos: 72.5,-20.5 + pos: -4.5,-20.5 parent: 2 - - uid: 39079 + - uid: 1866 components: - type: Transform - pos: 73.5,-20.5 + pos: -4.5,-19.5 parent: 2 - - uid: 39080 + - uid: 1867 components: - type: Transform - pos: 73.5,-17.5 + pos: -4.5,-18.5 parent: 2 - - uid: 39081 + - uid: 1885 components: - type: Transform - pos: 70.5,-19.5 + pos: -3.5,-18.5 parent: 2 - - uid: 39082 + - uid: 1886 components: - type: Transform - pos: 73.5,-19.5 + pos: -3.5,-17.5 parent: 2 - - uid: 39083 + - uid: 1891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-72.5 + pos: -2.5,-17.5 parent: 2 - - uid: 39084 + - uid: 1892 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-50.5 + pos: -1.5,-17.5 parent: 2 - - uid: 39085 + - uid: 1893 components: - type: Transform - pos: 8.5,-73.5 + pos: -1.5,-16.5 parent: 2 - - uid: 39086 + - uid: 1894 components: - type: Transform - pos: -6.5,-73.5 + pos: 2.5,-16.5 parent: 2 - - uid: 39087 + - uid: 1895 components: - type: Transform - pos: -36.5,16.5 + pos: 2.5,-17.5 parent: 2 - - uid: 39088 + - uid: 1896 components: - type: Transform - pos: -52.5,-82.5 + pos: 3.5,-17.5 parent: 2 - - uid: 39089 + - uid: 1898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-28.5 + pos: 4.5,-17.5 parent: 2 - - uid: 39091 + - uid: 1899 components: - type: Transform - pos: 42.5,-67.5 + pos: 4.5,-18.5 parent: 2 - - uid: 39092 + - uid: 1900 components: - type: Transform - pos: 41.5,-67.5 + pos: 5.5,-18.5 parent: 2 - - uid: 39093 + - uid: 1901 components: - type: Transform - pos: 90.5,-42.5 + pos: 5.5,-19.5 parent: 2 - - uid: 39094 + - uid: 1902 components: - type: Transform - pos: 91.5,-42.5 + pos: 5.5,-20.5 parent: 2 - - uid: 39095 + - uid: 1921 components: - type: Transform - pos: 92.5,-42.5 + pos: 5.5,-21.5 parent: 2 - - uid: 39096 + - uid: 1922 components: - type: Transform - pos: 97.5,-42.5 + pos: 6.5,-21.5 parent: 2 - - uid: 39097 + - uid: 1925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-123.5 + pos: 7.5,-21.5 parent: 2 - - uid: 39098 + - uid: 1926 components: - type: Transform - pos: 99.5,-42.5 + pos: 8.5,-21.5 parent: 2 - - uid: 39099 + - uid: 1930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,8.5 + pos: 9.5,-21.5 parent: 2 - - uid: 39100 + - uid: 1931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-39.5 + pos: 9.5,-20.5 parent: 2 - - uid: 39101 + - uid: 1932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 109.5,-43.5 + pos: 9.5,-19.5 parent: 2 - - uid: 39102 + - uid: 1933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 108.5,-43.5 + pos: 9.5,-18.5 parent: 2 - - uid: 39103 + - uid: 1934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 107.5,-43.5 + pos: 9.5,-22.5 parent: 2 - - uid: 39104 + - uid: 1935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 105.5,-43.5 + pos: 9.5,-23.5 parent: 2 - - uid: 39105 + - uid: 1936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-43.5 + pos: 9.5,-24.5 parent: 2 - - uid: 39106 + - uid: 1942 components: - type: Transform - pos: 4.5,-1.5 + pos: 11.5,-22.5 parent: 2 - - uid: 39107 + - uid: 1943 components: - type: Transform - pos: 31.5,-15.5 + pos: 11.5,-21.5 parent: 2 - - uid: 39108 + - uid: 1944 components: - type: Transform - pos: 10.5,-1.5 + pos: 10.5,-23.5 parent: 2 - - uid: 39109 + - uid: 1945 components: - type: Transform - pos: 40.5,24.5 + pos: 10.5,-24.5 parent: 2 - - uid: 39110 + - uid: 1946 components: - type: Transform - pos: -28.5,-107.5 + pos: 11.5,-23.5 parent: 2 - - uid: 39111 + - uid: 1947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,23.5 + pos: 11.5,-24.5 parent: 2 - - uid: 39112 + - uid: 1948 components: - type: Transform - pos: 75.5,-44.5 + pos: 12.5,-23.5 parent: 2 - - uid: 39113 + - uid: 1949 components: - type: Transform - pos: 76.5,-43.5 + pos: 12.5,-24.5 parent: 2 - - uid: 39114 + - uid: 1950 components: - type: Transform - pos: 80.5,-47.5 + pos: 13.5,-24.5 parent: 2 - - uid: 39115 + - uid: 1951 components: - type: Transform - pos: 79.5,-47.5 + pos: 14.5,-24.5 parent: 2 - - uid: 39116 + - uid: 1952 components: - type: Transform - pos: 76.5,-47.5 + pos: 14.5,-25.5 parent: 2 - - uid: 39117 + - uid: 1953 components: - type: Transform - pos: 77.5,-47.5 + pos: 15.5,-25.5 parent: 2 - - uid: 39118 + - uid: 1954 components: - type: Transform - pos: 78.5,-47.5 + pos: 15.5,-26.5 parent: 2 - - uid: 39119 + - uid: 1956 components: - type: Transform - pos: 80.5,-50.5 + pos: 16.5,-26.5 parent: 2 - - uid: 39120 + - uid: 1957 components: - type: Transform - pos: 80.5,-49.5 + pos: 16.5,-27.5 parent: 2 - - uid: 39121 + - uid: 1958 components: - type: Transform - pos: 73.5,-50.5 + pos: 16.5,-28.5 parent: 2 - - uid: 39122 + - uid: 1959 components: - type: Transform - pos: 72.5,-49.5 + pos: 17.5,-28.5 parent: 2 - - uid: 39123 + - uid: 1960 components: - type: Transform - pos: 72.5,-50.5 + pos: 17.5,-29.5 parent: 2 - - uid: 39124 + - uid: 1961 components: - type: Transform - pos: -69.5,-0.5 + pos: 17.5,-30.5 parent: 2 - - uid: 39125 + - uid: 1962 components: - type: Transform - pos: -69.5,-1.5 + pos: 17.5,-31.5 parent: 2 - - uid: 39126 + - uid: 1963 components: - type: Transform - pos: -69.5,1.5 + pos: 18.5,-32.5 parent: 2 - - uid: 39127 + - uid: 1964 components: - type: Transform - pos: -69.5,0.5 + pos: 18.5,-33.5 parent: 2 - - uid: 39128 + - uid: 1965 components: - type: Transform - pos: -69.5,3.5 + pos: 18.5,-34.5 parent: 2 - - uid: 39129 + - uid: 1966 components: - type: Transform - pos: -69.5,-2.5 + pos: 18.5,-35.5 parent: 2 - - uid: 39130 + - uid: 1967 components: - type: Transform - pos: 79.5,-50.5 + pos: 18.5,-36.5 parent: 2 - - uid: 39131 + - uid: 1977 components: - type: Transform - pos: -69.5,4.5 + pos: 18.5,-31.5 parent: 2 - - uid: 39133 + - uid: 1978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-43.5 + pos: 16.5,-37.5 parent: 2 - - uid: 39134 + - uid: 1979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-43.5 + pos: 16.5,-38.5 parent: 2 - - uid: 39135 + - uid: 2033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-43.5 + pos: 17.5,-37.5 parent: 2 - - uid: 39136 + - uid: 2035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-43.5 + pos: 18.5,-37.5 parent: 2 - - uid: 39137 + - uid: 2186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-43.5 + pos: 18.5,-44.5 parent: 2 - - uid: 39138 + - uid: 2188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-43.5 + pos: 17.5,-44.5 parent: 2 - - uid: 39139 + - uid: 2189 components: - type: Transform - pos: 78.5,-43.5 + pos: 16.5,-43.5 parent: 2 - - uid: 39140 + - uid: 2190 components: - type: Transform - pos: 77.5,-43.5 + pos: 16.5,-44.5 parent: 2 - - uid: 39141 + - uid: 2191 components: - type: Transform - pos: 75.5,-43.5 + pos: 18.5,-45.5 parent: 2 - - uid: 39142 + - uid: 2192 components: - type: Transform - pos: 74.5,-43.5 + pos: 18.5,-46.5 parent: 2 - - uid: 39143 + - uid: 2193 components: - type: Transform - pos: 64.5,-47.5 + pos: 18.5,-47.5 parent: 2 - - uid: 39144 + - uid: 2196 components: - type: Transform - pos: 65.5,-47.5 + pos: 18.5,-48.5 parent: 2 - - uid: 39145 + - uid: 2197 components: - type: Transform - pos: 66.5,-47.5 + pos: 18.5,-49.5 parent: 2 - - uid: 39146 + - uid: 2198 components: - type: Transform - pos: 67.5,-47.5 + pos: 18.5,-50.5 parent: 2 - - uid: 39147 + - uid: 2199 components: - type: Transform - pos: 68.5,-47.5 + pos: 17.5,-50.5 parent: 2 - - uid: 39148 + - uid: 2200 components: - type: Transform - pos: 68.5,-46.5 + pos: 17.5,-51.5 parent: 2 - - uid: 39149 + - uid: 2201 components: - type: Transform - pos: 64.5,-50.5 + pos: 17.5,-52.5 parent: 2 - - uid: 39150 + - uid: 2202 components: - type: Transform - pos: 64.5,-49.5 + pos: 17.5,-53.5 parent: 2 - - uid: 39151 + - uid: 2203 components: - type: Transform - pos: 64.5,-48.5 + pos: 16.5,-53.5 parent: 2 - - uid: 39152 + - uid: 2204 components: - type: Transform - pos: 72.5,-48.5 + pos: 16.5,-54.5 parent: 2 - - uid: 39153 + - uid: 2205 components: - type: Transform - pos: -30.5,-99.5 + pos: 15.5,-54.5 parent: 2 - - uid: 39154 + - uid: 2206 components: - type: Transform - pos: -29.5,-99.5 + pos: 14.5,-54.5 parent: 2 - - uid: 39155 + - uid: 2207 components: - type: Transform - pos: -28.5,-99.5 + pos: 14.5,-53.5 parent: 2 - - uid: 39156 + - uid: 2209 components: - type: Transform - pos: -35.5,-99.5 + pos: 14.5,-55.5 parent: 2 - - uid: 39157 + - uid: 2211 components: - type: Transform - pos: -34.5,-99.5 + pos: 14.5,-56.5 parent: 2 - - uid: 39158 + - uid: 2250 components: - type: Transform - pos: -33.5,-99.5 + pos: 14.5,-57.5 parent: 2 - - uid: 39159 + - uid: 2251 components: - type: Transform - pos: -32.5,-99.5 + pos: 12.5,-53.5 parent: 2 - - uid: 39160 + - uid: 2306 components: - type: Transform - pos: -31.5,-99.5 + rot: 1.5707963267948966 rad + pos: 9.5,-32.5 parent: 2 - - uid: 39161 + - uid: 2307 components: - type: Transform - pos: -54.5,-89.5 + pos: 12.5,-57.5 parent: 2 - - uid: 39162 + - uid: 2350 components: - type: Transform - pos: -54.5,-90.5 + pos: 7.5,-52.5 parent: 2 - - uid: 39163 + - uid: 2354 components: - type: Transform - pos: -54.5,-91.5 + pos: 7.5,-54.5 parent: 2 - - uid: 39164 + - uid: 2360 components: - type: Transform - pos: -54.5,-92.5 + pos: 7.5,-55.5 parent: 2 - - uid: 39165 + - uid: 2363 components: - type: Transform - pos: -53.5,-93.5 + pos: 7.5,-56.5 parent: 2 - - uid: 39166 + - uid: 2366 components: - type: Transform - pos: -53.5,-95.5 + pos: 7.5,-57.5 parent: 2 - - uid: 39167 + - uid: 2435 components: - type: Transform - pos: -53.5,-97.5 + pos: 7.5,-58.5 parent: 2 - - uid: 39168 + - uid: 2436 components: - type: Transform - pos: -53.5,-96.5 + pos: 7.5,-59.5 parent: 2 - - uid: 39169 + - uid: 2437 components: - type: Transform - pos: -53.5,-99.5 + pos: 7.5,-60.5 parent: 2 - - uid: 39170 + - uid: 2448 components: - type: Transform - pos: -53.5,-98.5 + pos: 8.5,-60.5 parent: 2 - - uid: 39171 + - uid: 2469 components: - type: Transform - pos: 75.5,-47.5 + pos: 9.5,-60.5 parent: 2 - - uid: 39172 + - uid: 2470 components: - type: Transform - pos: 70.5,-46.5 + pos: 10.5,-60.5 parent: 2 - - uid: 39173 + - uid: 2471 components: - type: Transform - pos: 71.5,-46.5 + pos: 10.5,-59.5 parent: 2 - - uid: 39174 + - uid: 2515 components: - type: Transform - pos: 72.5,-46.5 + pos: 10.5,-58.5 parent: 2 - - uid: 39175 + - uid: 2516 components: - type: Transform - pos: -36.5,-99.5 + pos: 10.5,-57.5 parent: 2 - - uid: 39176 + - uid: 2519 components: - type: Transform - pos: -53.5,-100.5 + pos: 10.5,-54.5 parent: 2 - - uid: 39177 + - uid: 2570 components: - type: Transform - pos: -53.5,-101.5 + rot: 3.141592653589793 rad + pos: 10.5,-46.5 parent: 2 - - uid: 39178 + - uid: 2589 components: - type: Transform - pos: -53.5,-102.5 + rot: 3.141592653589793 rad + pos: 10.5,-45.5 parent: 2 - - uid: 39179 + - uid: 6106 components: - type: Transform - pos: -53.5,-104.5 + pos: 6.5,-54.5 parent: 2 - - uid: 39180 + - uid: 6107 components: - type: Transform - pos: -52.5,-104.5 + pos: 5.5,-54.5 parent: 2 - - uid: 39181 + - uid: 6322 components: - type: Transform - pos: -51.5,-104.5 + pos: 5.5,-55.5 parent: 2 - - uid: 39182 + - uid: 6323 components: - type: Transform - pos: -50.5,-104.5 + pos: 5.5,-56.5 parent: 2 - - uid: 39183 + - uid: 6324 components: - type: Transform - pos: -49.5,-104.5 + pos: 5.5,-57.5 parent: 2 - - uid: 39184 + - uid: 6325 components: - type: Transform - pos: -48.5,-104.5 + rot: -1.5707963267948966 rad + pos: 5.5,-58.5 parent: 2 - - uid: 39185 + - uid: 6326 components: - type: Transform - pos: -47.5,-104.5 + pos: 5.5,-60.5 parent: 2 - - uid: 39186 + - uid: 6327 components: - type: Transform - pos: -46.5,-104.5 + pos: 5.5,-59.5 parent: 2 - - uid: 39187 + - uid: 6328 components: - type: Transform - pos: -45.5,-104.5 + pos: 4.5,-62.5 parent: 2 - - uid: 39188 + - uid: 6329 components: - type: Transform - pos: -44.5,-104.5 + pos: 4.5,-61.5 parent: 2 - - uid: 39189 + - uid: 7016 components: - type: Transform - pos: -43.5,-104.5 + pos: 4.5,-60.5 parent: 2 - - uid: 39190 + - uid: 7074 components: - type: Transform - pos: -42.5,-104.5 + pos: -13.5,-53.5 parent: 2 - - uid: 39191 + - uid: 7079 components: - type: Transform - pos: -36.5,-100.5 + pos: -9.5,-52.5 parent: 2 - - uid: 39192 + - uid: 7080 components: - type: Transform - pos: -36.5,-101.5 + rot: 3.141592653589793 rad + pos: 13.5,-49.5 parent: 2 - - uid: 39193 + - uid: 7081 components: - type: Transform - pos: -36.5,-102.5 + rot: 3.141592653589793 rad + pos: 13.5,-52.5 parent: 2 - - uid: 39194 + - uid: 7082 components: - type: Transform - pos: -37.5,-104.5 + pos: -6.5,-52.5 parent: 2 - - uid: 39195 + - uid: 7083 components: - type: Transform - pos: -38.5,-104.5 + pos: -5.5,-50.5 parent: 2 - - uid: 39196 + - uid: 7084 components: - type: Transform - pos: -39.5,-104.5 + pos: -2.5,-38.5 parent: 2 - - uid: 39197 + - uid: 7085 components: - type: Transform - pos: -40.5,-104.5 + rot: -1.5707963267948966 rad + pos: 15.5,-53.5 parent: 2 - - uid: 39198 + - uid: 7086 components: - type: Transform - pos: -41.5,-104.5 + pos: -6.5,-45.5 parent: 2 - - uid: 39199 + - uid: 7087 components: - type: Transform - pos: 72.5,-47.5 + rot: 3.141592653589793 rad + pos: 2.5,-46.5 parent: 2 - - uid: 39200 + - uid: 7090 components: - type: Transform - pos: 74.5,-47.5 + pos: -1.5,-45.5 parent: 2 - - uid: 39202 + - uid: 7091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-113.5 + pos: -3.5,-45.5 parent: 2 - - uid: 39203 + - uid: 7092 components: - type: Transform - pos: -36.5,-104.5 + pos: -1.5,-49.5 parent: 2 - - uid: 39204 + - uid: 7095 components: - type: Transform - pos: 80.5,-44.5 + pos: -2.5,-45.5 parent: 2 - - uid: 39205 + - uid: 7096 components: - type: Transform - pos: -28.5,-105.5 + pos: -6.5,-49.5 parent: 2 - - uid: 39206 + - uid: 7098 components: - type: Transform - pos: -34.5,-108.5 + pos: -1.5,-46.5 parent: 2 - - uid: 39207 + - uid: 7100 components: - type: Transform - pos: -33.5,-108.5 + pos: 3.5,-38.5 parent: 2 - - uid: 39208 + - uid: 7101 components: - type: Transform - pos: -32.5,-108.5 + pos: 2.5,-38.5 parent: 2 - - uid: 39209 + - uid: 7343 components: - type: Transform - pos: -31.5,-108.5 + pos: 1.5,-38.5 parent: 2 - - uid: 39210 + - uid: 7344 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-107.5 + pos: 0.5,-38.5 parent: 2 - - uid: 39211 + - uid: 7345 components: - type: Transform - pos: -29.5,-108.5 + pos: -0.5,-38.5 parent: 2 - - uid: 39212 + - uid: 7346 components: - type: Transform - pos: -35.5,-108.5 + pos: -1.5,-38.5 parent: 2 - - uid: 39213 + - uid: 7366 components: - type: Transform - pos: -36.5,-108.5 + pos: -1.5,-63.5 parent: 2 - - uid: 39214 + - uid: 7367 components: - type: Transform - pos: -36.5,-107.5 + pos: 2.5,-60.5 parent: 2 - - uid: 39215 + - uid: 7368 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-108.5 + pos: -1.5,-60.5 parent: 2 - - uid: 39216 + - uid: 7411 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-108.5 + pos: 7.5,-51.5 parent: 2 - - uid: 39217 + - uid: 7412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-107.5 + pos: 7.5,-53.5 parent: 2 - - uid: 39218 + - uid: 7413 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-107.5 + pos: 6.5,-50.5 parent: 2 - - uid: 39219 + - uid: 7417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-107.5 + pos: -2.5,-50.5 parent: 2 - - uid: 39220 + - uid: 7418 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-107.5 + pos: -6.5,-50.5 parent: 2 - - uid: 39221 + - uid: 7420 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-107.5 + pos: -1.5,-50.5 parent: 2 - - uid: 39222 + - uid: 7421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-107.5 + pos: 7.5,-50.5 parent: 2 - - uid: 39223 + - uid: 7422 components: - type: Transform - pos: -53.5,-105.5 + pos: 1.5,-50.5 parent: 2 - - uid: 39224 + - uid: 7423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-111.5 + pos: 2.5,-50.5 parent: 2 - - uid: 39225 + - uid: 7424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-111.5 + pos: 3.5,-50.5 parent: 2 - - uid: 39226 + - uid: 7425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-111.5 + pos: -0.5,-50.5 parent: 2 - - uid: 39227 + - type: AntiAnomalyZone + zoneRadius: 20 + - uid: 7426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-111.5 + pos: -6.5,-51.5 parent: 2 - - uid: 39228 + - uid: 7427 components: - type: Transform - pos: -36.5,-110.5 + pos: -6.5,-53.5 parent: 2 - - uid: 39229 + - uid: 7428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-111.5 + pos: -7.5,-45.5 parent: 2 - - uid: 39230 + - uid: 7429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-111.5 + pos: -2.5,-33.5 parent: 2 - - uid: 39231 + - uid: 7430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-118.5 + pos: -2.5,-34.5 parent: 2 - - uid: 39232 + - uid: 7431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-116.5 + pos: -2.5,-35.5 parent: 2 - - uid: 39233 + - uid: 7432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-112.5 + pos: -2.5,-36.5 parent: 2 - - uid: 39234 + - uid: 7433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-111.5 + pos: -2.5,-37.5 parent: 2 - - uid: 39235 + - uid: 7438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-111.5 + pos: 3.5,-33.5 parent: 2 - - uid: 39236 + - uid: 7439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-111.5 + pos: 3.5,-34.5 parent: 2 - - uid: 39237 + - uid: 7440 components: - type: Transform - pos: -53.5,-103.5 + pos: 3.5,-35.5 parent: 2 - - uid: 39238 + - uid: 7442 components: - type: Transform - pos: -36.5,-106.5 + pos: 3.5,-37.5 parent: 2 - - uid: 39239 + - uid: 7443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-111.5 + pos: -15.5,-37.5 parent: 2 - - uid: 39240 + - uid: 7445 components: - type: Transform - pos: -47.5,-113.5 + pos: -4.5,-45.5 parent: 2 - - uid: 39241 + - uid: 7446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-112.5 + pos: -6.5,-46.5 parent: 2 - - uid: 39242 + - uid: 7447 components: - type: Transform - pos: -44.5,-112.5 + pos: -5.5,-45.5 parent: 2 - - uid: 39243 + - uid: 7448 components: - type: Transform - pos: -45.5,-112.5 + rot: 3.141592653589793 rad + pos: 2.5,-49.5 parent: 2 - - uid: 39244 + - uid: 7450 components: - type: Transform - pos: -46.5,-112.5 + rot: 3.141592653589793 rad + pos: 2.5,-45.5 parent: 2 - - uid: 39246 + - uid: 7451 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-111.5 + pos: 5.5,-45.5 parent: 2 - - uid: 39247 + - uid: 7452 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-110.5 + pos: 4.5,-45.5 parent: 2 - - uid: 39248 + - uid: 7453 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-109.5 + pos: 3.5,-45.5 parent: 2 - - uid: 39249 + - uid: 7454 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-108.5 + pos: 6.5,-45.5 parent: 2 - - uid: 39250 + - uid: 7456 components: - type: Transform - pos: -48.5,-113.5 + pos: -8.5,-45.5 parent: 2 - - uid: 39251 + - uid: 7457 components: - type: Transform - pos: -49.5,-113.5 + pos: -9.5,-45.5 parent: 2 - - uid: 39252 + - uid: 7459 components: - type: Transform - pos: -50.5,-113.5 + pos: -9.5,-51.5 parent: 2 - - uid: 39253 + - uid: 7460 components: - type: Transform - pos: -51.5,-113.5 + pos: -9.5,-50.5 parent: 2 - - uid: 39254 + - uid: 7465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-113.5 + rot: 3.141592653589793 rad + pos: 7.5,-46.5 parent: 2 - - uid: 39255 + - uid: 7466 components: - type: Transform - pos: -46.5,-118.5 + rot: 3.141592653589793 rad + pos: 7.5,-49.5 parent: 2 - - uid: 39256 + - uid: 7467 components: - type: Transform - pos: -44.5,-118.5 + rot: 3.141592653589793 rad + pos: 8.5,-45.5 parent: 2 - - uid: 39257 + - uid: 7468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-118.5 + rot: 3.141592653589793 rad + pos: 9.5,-45.5 parent: 2 - - uid: 39258 + - uid: 7469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-117.5 + rot: 3.141592653589793 rad + pos: 10.5,-49.5 parent: 2 - - uid: 39259 + - type: AntiAnomalyZone + - uid: 7470 components: - type: Transform - pos: -47.5,-117.5 + rot: 3.141592653589793 rad + pos: 10.5,-48.5 parent: 2 - - uid: 39260 + - uid: 7471 components: - type: Transform - pos: -47.5,-118.5 + rot: 3.141592653589793 rad + pos: 10.5,-47.5 parent: 2 - - uid: 39261 + - uid: 7474 components: - type: Transform - pos: -51.5,-117.5 + rot: -1.5707963267948966 rad + pos: 17.5,-48.5 parent: 2 - - uid: 39262 + - uid: 7475 components: - type: Transform - pos: -50.5,-117.5 + rot: -1.5707963267948966 rad + pos: 16.5,-48.5 parent: 2 - - uid: 39263 + - uid: 7480 components: - type: Transform - pos: -48.5,-117.5 + rot: -1.5707963267948966 rad + pos: 15.5,-48.5 parent: 2 - - uid: 39264 + - uid: 7481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-114.5 + rot: -1.5707963267948966 rad + pos: 14.5,-48.5 parent: 2 - - uid: 39265 + - uid: 7490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-115.5 + pos: 11.5,-53.5 parent: 2 - - uid: 39266 + - uid: 7496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-116.5 + rot: -1.5707963267948966 rad + pos: 2.5,-32.5 parent: 2 - - uid: 39267 + - uid: 7497 components: - type: Transform - pos: -49.5,-117.5 + rot: -1.5707963267948966 rad + pos: -1.5,-32.5 parent: 2 - - uid: 39268 + - uid: 7500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-111.5 + pos: 5.5,-32.5 parent: 2 - - uid: 39269 + - uid: 7501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-111.5 + pos: 4.5,-32.5 parent: 2 - - uid: 39270 + - uid: 7505 components: - type: Transform rot: 3.141592653589793 rad - pos: -70.5,-23.5 + pos: 10.5,-53.5 parent: 2 - - uid: 39271 + - uid: 7506 components: - type: Transform rot: 3.141592653589793 rad - pos: -70.5,-24.5 + pos: 10.5,-52.5 parent: 2 - - uid: 39272 + - uid: 7513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-25.5 + pos: -12.5,-50.5 parent: 2 - - uid: 39273 + - uid: 7514 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-26.5 + pos: -12.5,-49.5 parent: 2 - - uid: 39274 + - uid: 7515 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-27.5 + pos: -12.5,-45.5 parent: 2 - - uid: 39275 + - uid: 7516 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-28.5 + pos: -12.5,-46.5 parent: 2 - - uid: 39276 + - uid: 7517 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-28.5 + pos: -12.5,-44.5 parent: 2 - - uid: 39277 + - uid: 7518 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-3.5 + pos: -11.5,-44.5 parent: 2 - - uid: 39278 + - uid: 7519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-3.5 + pos: -10.5,-44.5 parent: 2 - - uid: 39279 + - uid: 7520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-3.5 + pos: -9.5,-44.5 parent: 2 - - uid: 39280 + - uid: 7521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-3.5 + pos: -12.5,-43.5 parent: 2 - - uid: 39281 + - uid: 7522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-3.5 + pos: 13.5,-53.5 parent: 2 - - uid: 39282 + - uid: 7523 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,4.5 + pos: 7.5,-45.5 parent: 2 - - uid: 39283 + - uid: 7524 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,3.5 + pos: 13.5,-48.5 parent: 2 - - uid: 39284 + - uid: 7527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,2.5 + pos: 10.5,-44.5 parent: 2 - - uid: 39285 + - uid: 7528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,1.5 + pos: 11.5,-44.5 parent: 2 - - uid: 39286 + - uid: 7529 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,0.5 + pos: 12.5,-44.5 parent: 2 - - uid: 39287 + - uid: 7530 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-0.5 + pos: 13.5,-44.5 parent: 2 - - uid: 39288 + - uid: 7531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-1.5 + pos: 13.5,-45.5 parent: 2 - - uid: 39289 + - uid: 7567 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-2.5 + pos: 3.5,-46.5 parent: 2 - - uid: 39290 + - uid: 7575 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-3.5 + rot: -1.5707963267948966 rad + pos: -2.5,-46.5 parent: 2 - - uid: 39291 + - uid: 7589 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-5.5 + rot: -1.5707963267948966 rad + pos: 1.5,-46.5 parent: 2 - - uid: 39292 + - uid: 7590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-6.5 + rot: -1.5707963267948966 rad + pos: 0.5,-46.5 parent: 2 - - uid: 39293 + - uid: 7591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-111.5 + rot: -1.5707963267948966 rad + pos: -0.5,-46.5 parent: 2 - - uid: 39294 + - uid: 7592 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-6.5 + rot: -1.5707963267948966 rad + pos: -1.5,-44.5 parent: 2 - - uid: 39295 + - uid: 7594 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-7.5 + rot: -1.5707963267948966 rad + pos: 0.5,-44.5 parent: 2 - - uid: 39296 + - uid: 7596 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-6.5 + rot: -1.5707963267948966 rad + pos: 2.5,-44.5 parent: 2 - - uid: 39297 + - uid: 9946 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-6.5 + pos: -14.5,-37.5 parent: 2 - - uid: 39298 + - uid: 9949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-6.5 + rot: -1.5707963267948966 rad + pos: -3.5,-58.5 parent: 2 - - uid: 39299 + - uid: 9965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-4.5 + rot: -1.5707963267948966 rad + pos: 4.5,-58.5 parent: 2 - - uid: 39300 + - uid: 10030 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-6.5 + pos: -15.5,-48.5 parent: 2 - - uid: 39301 + - uid: 10031 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-6.5 + pos: -16.5,-48.5 parent: 2 - - uid: 39302 + - uid: 12191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-7.5 + pos: -3.5,-22.5 parent: 2 - - uid: 39303 + - uid: 12192 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-8.5 + pos: -2.5,-22.5 parent: 2 - - uid: 39304 + - uid: 12194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-9.5 + pos: 4.5,-22.5 parent: 2 - - uid: 39305 + - uid: 12195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-10.5 + pos: 3.5,-22.5 parent: 2 - - uid: 39306 + - uid: 12198 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-11.5 + pos: 0.5,-22.5 parent: 2 - - uid: 39307 + - uid: 12212 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-11.5 + pos: -3.5,-21.5 parent: 2 - - uid: 39308 + - uid: 12214 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-11.5 + pos: 4.5,-21.5 parent: 2 - - uid: 39309 + - uid: 12230 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-12.5 + pos: -13.5,-37.5 parent: 2 - - uid: 39310 + - uid: 12232 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-13.5 + pos: -9.5,-42.5 parent: 2 - - uid: 39311 + - uid: 12233 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-13.5 + pos: -9.5,-43.5 parent: 2 - - uid: 39312 + - uid: 12237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-14.5 + pos: 13.5,-57.5 parent: 2 - - uid: 39313 + - uid: 12242 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,-15.5 + pos: -6.5,-42.5 parent: 2 - - uid: 39314 + - uid: 12243 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,-16.5 + pos: -5.5,-42.5 parent: 2 - - uid: 39315 + - uid: 12244 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,-17.5 + pos: -4.5,-42.5 parent: 2 - - uid: 39316 + - uid: 12251 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-18.5 + pos: 0.5,-39.5 parent: 2 - - uid: 39317 + - uid: 12255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-18.5 + pos: 11.5,-57.5 parent: 2 - - uid: 39318 + - uid: 12270 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-23.5 + pos: 0.5,-40.5 parent: 2 - - uid: 39319 + - uid: 12271 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-23.5 + pos: 0.5,-41.5 parent: 2 - - uid: 39320 + - uid: 12272 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-23.5 + pos: 0.5,-42.5 parent: 2 - - uid: 39321 + - uid: 12273 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,-23.5 + pos: 2.5,-42.5 parent: 2 - - uid: 39322 + - uid: 12274 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-23.5 + pos: 2.5,-41.5 parent: 2 - - uid: 39323 + - uid: 12275 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-22.5 + pos: 3.5,-41.5 parent: 2 - - uid: 39324 + - uid: 12281 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-21.5 + pos: 4.5,-42.5 parent: 2 - - uid: 39325 + - uid: 12282 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-20.5 + pos: 4.5,-41.5 parent: 2 - - uid: 39326 + - uid: 12283 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-19.5 + pos: 4.5,-44.5 parent: 2 - - uid: 39327 + - uid: 12289 components: - type: Transform - pos: -79.5,-2.5 + rot: 1.5707963267948966 rad + pos: 4.5,-38.5 parent: 2 - - uid: 39328 + - uid: 12290 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-7.5 + rot: 1.5707963267948966 rad + pos: 5.5,-38.5 parent: 2 - - uid: 39329 + - uid: 12291 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-8.5 + rot: 1.5707963267948966 rad + pos: 6.5,-38.5 parent: 2 - - uid: 39330 + - uid: 12292 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-9.5 + rot: 1.5707963267948966 rad + pos: 7.5,-38.5 parent: 2 - - uid: 39331 + - uid: 12293 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-10.5 + rot: 1.5707963267948966 rad + pos: 7.5,-39.5 parent: 2 - - uid: 39332 + - uid: 12294 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-11.5 + rot: 1.5707963267948966 rad + pos: 7.5,-40.5 parent: 2 - - uid: 39333 + - uid: 12295 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-12.5 + rot: 1.5707963267948966 rad + pos: 7.5,-41.5 parent: 2 - - uid: 39334 + - uid: 12296 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-13.5 + rot: 1.5707963267948966 rad + pos: 6.5,-41.5 parent: 2 - - uid: 39335 + - uid: 12297 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-17.5 + rot: 1.5707963267948966 rad + pos: 5.5,-41.5 parent: 2 - - uid: 39336 + - uid: 12353 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-13.5 + pos: 8.5,-37.5 parent: 2 - - uid: 39337 + - uid: 14564 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-16.5 + pos: 7.5,-42.5 parent: 2 - - uid: 39338 + - uid: 14566 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-13.5 + pos: 7.5,-35.5 parent: 2 - - uid: 39339 + - uid: 14571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-8.5 + pos: -9.5,-60.5 parent: 2 - - uid: 39340 + - uid: 14572 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,-9.5 + pos: 7.5,-33.5 parent: 2 - - uid: 39341 + - uid: 14573 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,-16.5 + pos: 7.5,-32.5 parent: 2 - - uid: 39342 + - uid: 14577 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-11.5 + pos: -9.5,-39.5 parent: 2 - - uid: 39343 + - uid: 14578 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,-12.5 + pos: 6.5,-31.5 parent: 2 - - uid: 39344 + - uid: 14579 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-18.5 + pos: -18.5,-36.5 parent: 2 - - uid: 39345 + - uid: 14580 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-19.5 + pos: -18.5,-35.5 parent: 2 - - uid: 39346 + - uid: 14581 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,-22.5 + pos: -18.5,-33.5 parent: 2 - - uid: 39347 + - uid: 14582 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,-22.5 + pos: -18.5,-32.5 parent: 2 - - uid: 39348 + - uid: 14584 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,-22.5 + pos: -18.5,-34.5 parent: 2 - - uid: 39349 + - uid: 14598 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-22.5 + pos: 10.5,-32.5 parent: 2 - - uid: 39350 + - uid: 14600 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-23.5 + rot: 1.5707963267948966 rad + pos: 15.5,-29.5 parent: 2 - - uid: 39351 + - uid: 14601 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-24.5 + rot: 1.5707963267948966 rad + pos: 16.5,-29.5 parent: 2 - - uid: 39352 + - uid: 14604 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-25.5 + rot: 1.5707963267948966 rad + pos: 14.5,-29.5 parent: 2 - - uid: 39353 + - uid: 14605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-26.5 + rot: 1.5707963267948966 rad + pos: 13.5,-29.5 parent: 2 - - uid: 39354 + - uid: 14606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-18.5 + rot: 1.5707963267948966 rad + pos: 12.5,-29.5 parent: 2 - - uid: 39355 + - uid: 14607 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-18.5 + rot: 1.5707963267948966 rad + pos: 11.5,-29.5 parent: 2 - - uid: 39356 + - uid: 14608 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-18.5 + rot: 1.5707963267948966 rad + pos: 10.5,-29.5 parent: 2 - - uid: 39357 + - uid: 14609 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-27.5 + rot: 1.5707963267948966 rad + pos: 10.5,-28.5 parent: 2 - - uid: 39358 + - uid: 14610 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-18.5 + rot: 1.5707963267948966 rad + pos: 10.5,-27.5 parent: 2 - - uid: 39359 + - uid: 14611 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-12.5 + pos: -9.5,-38.5 parent: 2 - - uid: 39360 + - uid: 14612 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-12.5 + rot: 1.5707963267948966 rad + pos: 7.5,-28.5 parent: 2 - - uid: 39361 + - uid: 14613 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-12.5 + rot: 1.5707963267948966 rad + pos: 3.5,-31.5 parent: 2 - - uid: 39362 + - uid: 14614 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-12.5 + rot: 1.5707963267948966 rad + pos: 3.5,-32.5 parent: 2 - - uid: 39363 + - uid: 14619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-18.5 + pos: -9.5,-37.5 parent: 2 - - uid: 39364 + - uid: 14621 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-22.5 + pos: -10.5,-37.5 parent: 2 - - uid: 39365 + - uid: 14623 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-16.5 + rot: 1.5707963267948966 rad + pos: 6.5,-28.5 parent: 2 - - uid: 39366 + - uid: 14626 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-16.5 + rot: 1.5707963267948966 rad + pos: 2.5,-31.5 parent: 2 - - uid: 39367 + - uid: 14627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-6.5 + rot: 1.5707963267948966 rad + pos: 1.5,-31.5 parent: 2 - - uid: 39368 + - uid: 14628 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-2.5 + rot: 1.5707963267948966 rad + pos: -0.5,-31.5 parent: 2 - - uid: 39369 + - uid: 14629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-2.5 + rot: 1.5707963267948966 rad + pos: -1.5,-31.5 parent: 2 - - uid: 39370 + - uid: 14630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-2.5 + rot: 1.5707963267948966 rad + pos: -2.5,-31.5 parent: 2 - - uid: 39371 + - uid: 14631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,-2.5 + rot: 1.5707963267948966 rad + pos: -2.5,-32.5 parent: 2 - - uid: 39372 + - uid: 14633 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-2.5 + pos: -12.5,-59.5 parent: 2 - - uid: 39373 + - uid: 14634 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-3.5 + pos: -12.5,-58.5 parent: 2 - - uid: 39374 + - uid: 14636 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-5.5 + rot: 1.5707963267948966 rad + pos: 3.5,-30.5 parent: 2 - - uid: 39375 + - type: AntiAnomalyZone + zoneRadius: 20 + - uid: 14637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-6.5 + rot: 1.5707963267948966 rad + pos: 3.5,-29.5 parent: 2 - - uid: 39376 + - uid: 14638 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-6.5 + rot: 1.5707963267948966 rad + pos: 3.5,-28.5 parent: 2 - - uid: 39377 + - uid: 14639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-6.5 + rot: 1.5707963267948966 rad + pos: 4.5,-28.5 parent: 2 - - uid: 39378 + - uid: 14640 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-6.5 + rot: 1.5707963267948966 rad + pos: 5.5,-28.5 parent: 2 - - uid: 39379 + - uid: 14665 components: - type: Transform rot: 3.141592653589793 rad - pos: -86.5,-6.5 + pos: -2.5,-30.5 parent: 2 - - uid: 39380 + - uid: 14666 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-6.5 + pos: -2.5,-29.5 parent: 2 - - uid: 39381 + - uid: 14667 components: - type: Transform - pos: 35.5,35.5 + pos: -2.5,-28.5 parent: 2 - - uid: 39382 + - uid: 14669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-40.5 + rot: 3.141592653589793 rad + pos: -12.5,-34.5 parent: 2 - - uid: 39383 + - uid: 14675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-38.5 + rot: 3.141592653589793 rad + pos: -12.5,-33.5 parent: 2 - - uid: 39384 + - uid: 14676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-15.5 + rot: 3.141592653589793 rad + pos: -13.5,-34.5 parent: 2 - - uid: 39385 + - uid: 14682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-116.5 + pos: -12.5,-37.5 parent: 2 - - uid: 39386 + - uid: 14685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-116.5 + pos: -11.5,-37.5 parent: 2 - - uid: 39387 + - uid: 14690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-116.5 + pos: -12.5,-60.5 parent: 2 - - uid: 39388 + - uid: 14691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-118.5 + pos: -11.5,-60.5 parent: 2 - - uid: 39389 + - uid: 14694 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,-120.5 + pos: -13.5,-29.5 parent: 2 - - uid: 39390 + - uid: 14695 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,-118.5 + pos: -12.5,-29.5 parent: 2 - - uid: 39391 + - uid: 14713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,15.5 + pos: 12.5,-37.5 parent: 2 - - uid: 39392 + - uid: 14714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,10.5 + pos: 13.5,-37.5 parent: 2 - - uid: 39393 + - uid: 14717 components: - type: Transform - pos: 23.5,15.5 + pos: 7.5,-37.5 parent: 2 - - uid: 39394 + - uid: 14718 components: - type: Transform - pos: 24.5,15.5 + pos: 15.5,-37.5 parent: 2 - - uid: 39395 + - uid: 14719 components: - type: Transform - pos: 25.5,15.5 + pos: 14.5,-37.5 parent: 2 - - uid: 39396 + - uid: 14997 components: - type: Transform - pos: 26.5,15.5 + pos: 5.5,-35.5 parent: 2 - - uid: 39397 + - uid: 15006 components: - type: Transform - pos: 27.5,15.5 + pos: 4.5,-35.5 parent: 2 - - uid: 39398 + - uid: 15007 components: - type: Transform - pos: 39.5,31.5 + pos: 6.5,-35.5 parent: 2 - - uid: 39399 + - uid: 15074 components: - type: Transform - pos: 39.5,30.5 + rot: 1.5707963267948966 rad + pos: -9.5,-33.5 parent: 2 - - uid: 39400 + - uid: 15075 components: - type: Transform - pos: 43.5,31.5 + pos: -3.5,-27.5 parent: 2 - - uid: 39401 + - uid: 15076 components: - type: Transform - pos: 43.5,30.5 + pos: -6.5,-28.5 parent: 2 - - uid: 39402 + - uid: 15077 components: - type: Transform - pos: 42.5,28.5 + pos: -6.5,-27.5 parent: 2 - - uid: 39403 + - uid: 15078 components: - type: Transform - pos: 32.5,34.5 + pos: -3.5,-26.5 parent: 2 - - uid: 39404 + - uid: 15106 components: - type: Transform - pos: 32.5,32.5 + pos: -4.5,-26.5 parent: 2 - - uid: 39405 + - uid: 15146 components: - type: Transform - pos: -33.5,-86.5 + pos: -6.5,-26.5 parent: 2 - - uid: 39406 + - uid: 15147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-115.5 + pos: -6.5,-25.5 parent: 2 - - uid: 39767 + - uid: 15148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 102.5,-49.5 + pos: -6.5,-24.5 parent: 2 - - uid: 40615 + - uid: 15149 components: - type: Transform - pos: -72.5,0.5 + pos: -7.5,-24.5 parent: 2 - - uid: 40662 + - uid: 15150 components: - - type: MetaData - desc: Кочерга, тут нет никаких безумных ёлок, просто мержни пжлст пр. - name: FloraTreeChristmas03 - type: Transform - pos: -47.5,-112.5 + pos: -7.5,-23.5 parent: 2 - - uid: 43792 + - uid: 15156 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-99.5 + pos: -11.5,-33.5 parent: 2 - - uid: 43968 + - uid: 15800 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-100.5 - parent: 2 - - uid: 44237 - components: - - type: Transform - pos: -71.5,-57.5 + pos: -3.5,-28.5 parent: 2 -- proto: WallSolidDiagonal - entities: - - uid: 39407 + - uid: 15860 components: - type: Transform rot: -1.5707963267948966 rad - pos: -75.5,-69.5 + pos: 1.5,-32.5 parent: 2 - - uid: 39408 + - uid: 15871 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,-68.5 + pos: -0.5,-32.5 parent: 2 - - uid: 39409 + - uid: 15876 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-62.5 + pos: -18.5,-31.5 parent: 2 - - uid: 39410 + - uid: 15881 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-61.5 + pos: 6.5,-32.5 parent: 2 -- proto: WallSolidRust - entities: - - uid: 35996 + - uid: 16294 components: - type: Transform - pos: -55.5,-10.5 + rot: 1.5707963267948966 rad + pos: -10.5,-33.5 parent: 2 - - uid: 36281 + - uid: 18562 components: - type: Transform - pos: -52.5,-8.5 + pos: -12.5,-53.5 parent: 2 - - uid: 36359 + - uid: 18580 components: - type: Transform - pos: -56.5,-7.5 + rot: -1.5707963267948966 rad + pos: 4.5,-26.5 parent: 2 - - uid: 37390 + - uid: 18581 components: - type: Transform - pos: -56.5,-6.5 + rot: -1.5707963267948966 rad + pos: 4.5,-27.5 parent: 2 - - uid: 37630 + - uid: 18746 components: - type: Transform - pos: -51.5,-5.5 + pos: -12.5,-51.5 parent: 2 - - uid: 37660 + - uid: 19829 components: - type: Transform - pos: -51.5,-6.5 + pos: -6.5,-29.5 parent: 2 - - uid: 37663 + - uid: 19830 components: - type: Transform - pos: -47.5,-1.5 + pos: -11.5,-29.5 parent: 2 - - uid: 37664 + - uid: 19843 components: - type: Transform - pos: -46.5,-1.5 + pos: 6.5,-60.5 parent: 2 - - uid: 37667 + - uid: 19844 components: - type: Transform - pos: -46.5,-4.5 + pos: -7.5,-29.5 parent: 2 - - uid: 37684 + - uid: 20004 components: - type: Transform - pos: -45.5,-4.5 + rot: 3.141592653589793 rad + pos: -6.5,-34.5 parent: 2 - - uid: 37758 + - uid: 20007 components: - type: Transform - pos: -40.5,3.5 + pos: -6.5,-55.5 parent: 2 - - uid: 37759 + - uid: 20009 components: - type: Transform - pos: -43.5,5.5 + pos: -5.5,-60.5 parent: 2 - - uid: 38471 + - uid: 20014 components: - type: Transform - pos: -44.5,5.5 + rot: 3.141592653589793 rad + pos: -6.5,-33.5 parent: 2 - - uid: 39411 + - uid: 20420 components: - type: Transform - pos: -12.5,-29.5 + pos: -15.5,-29.5 parent: 2 - - uid: 39412 + - uid: 23207 components: - type: Transform - pos: -12.5,-27.5 + rot: 1.5707963267948966 rad + pos: -6.5,-37.5 parent: 2 - - uid: 39413 + - uid: 23235 components: - type: Transform - pos: -13.5,-26.5 + rot: 1.5707963267948966 rad + pos: -7.5,-33.5 parent: 2 - - uid: 39414 + - uid: 23237 components: - type: Transform - pos: -14.5,-26.5 + rot: 1.5707963267948966 rad + pos: -12.5,-32.5 parent: 2 - - uid: 39415 + - uid: 23238 components: - type: Transform - pos: -15.5,-26.5 + rot: 1.5707963267948966 rad + pos: -12.5,-31.5 parent: 2 - - uid: 39416 + - uid: 23239 components: - type: Transform - pos: -16.5,-26.5 + rot: 1.5707963267948966 rad + pos: -12.5,-30.5 parent: 2 - - uid: 39417 + - uid: 23243 components: - type: Transform - pos: -17.5,-26.5 + rot: 1.5707963267948966 rad + pos: -7.5,-37.5 parent: 2 - - uid: 39418 + - uid: 23250 components: - type: Transform - pos: -18.5,-26.5 + rot: 1.5707963267948966 rad + pos: -16.5,-37.5 parent: 2 - - uid: 39419 + - uid: 23252 components: - type: Transform - pos: -19.5,-26.5 + rot: 1.5707963267948966 rad + pos: -17.5,-37.5 parent: 2 - proto: WallWeaponCapacitorRecharger entities: @@ -285903,13 +275894,6 @@ entities: showEnts: False occludes: True ent: null -- proto: WardrobeBotanistFilled - entities: - - uid: 26907 - components: - - type: Transform - pos: -14.5,-19.5 - parent: 2 - proto: WardrobeCargoFilled entities: - uid: 39427 @@ -286035,13 +276019,6 @@ entities: - 0 - 0 - 0 -- proto: WardrobeGeneticsFilled - entities: - - uid: 39429 - components: - - type: Transform - pos: -9.5,-35.5 - parent: 2 - proto: WardrobeGreenFilled entities: - uid: 39431 @@ -286264,8 +276241,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -286282,7 +276259,6 @@ entities: showEnts: False occludes: True ents: - - 19722 - 15795 paper_label: !type:ContainerSlot showEnts: False @@ -286299,8 +276275,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -286317,7 +276293,6 @@ entities: showEnts: False occludes: True ents: - - 19725 - 16161 paper_label: !type:ContainerSlot showEnts: False @@ -286334,8 +276309,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -286352,7 +276327,6 @@ entities: showEnts: False occludes: True ents: - - 30660 - 27970 paper_label: !type:ContainerSlot showEnts: False @@ -286557,71 +276531,146 @@ entities: showEnts: False occludes: True ents: - - 30794 - - 27567 + - 30794 + - 27567 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 39442 + components: + - type: Transform + pos: 72.5,-0.5 + parent: 2 + - uid: 39443 + components: + - type: Transform + pos: 73.5,-0.5 + parent: 2 + - uid: 39444 + components: + - type: Transform + pos: 74.5,-0.5 + parent: 2 + - uid: 39445 + components: + - type: Transform + pos: 75.5,-0.5 + parent: 2 + - uid: 39446 + components: + - type: Transform + pos: -74.5,-52.5 + parent: 2 + - uid: 39447 + components: + - type: Transform + pos: -70.5,-52.5 + parent: 2 +- proto: WardrobeSalvageFilled + entities: + - uid: 27646 + components: + - type: Transform + pos: -9.5,-95.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 24235 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 29071 + components: + - type: Transform + pos: -9.5,-93.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 24236 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 32769 + components: + - type: Transform + pos: -9.5,-96.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 24237 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 39442 - components: - - type: Transform - pos: 72.5,-0.5 - parent: 2 - - uid: 39443 - components: - - type: Transform - pos: 73.5,-0.5 - parent: 2 - - uid: 39444 - components: - - type: Transform - pos: 74.5,-0.5 - parent: 2 - - uid: 39445 - components: - - type: Transform - pos: 75.5,-0.5 - parent: 2 - - uid: 39446 - components: - - type: Transform - pos: -74.5,-52.5 - parent: 2 - - uid: 39447 - components: - - type: Transform - pos: -70.5,-52.5 - parent: 2 -- proto: WardrobeRoboticsFilled - entities: - - uid: 39448 - components: - - type: Transform - pos: -13.5,-46.5 - parent: 2 - - uid: 39449 - components: - - type: Transform - pos: -11.5,-46.5 - parent: 2 -- proto: WardrobeSalvageFilled - entities: - - uid: 27646 - components: - - type: Transform - pos: -9.5,-95.5 - parent: 2 - - uid: 29071 - components: - - type: Transform - pos: -9.5,-93.5 - parent: 2 - - uid: 32769 - components: - - type: Transform - pos: -9.5,-96.5 - parent: 2 - proto: WardrobeScienceFilled entities: - uid: 33348 @@ -286926,6 +276975,25 @@ entities: - type: Transform pos: -53.5,-3.5 parent: 2 +- proto: WaterDropletHat + entities: + - uid: 10092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.282791,-36.68262 + parent: 2 + - uid: 18853 + components: + - type: Transform + pos: -15.673416,-36.33887 + parent: 2 + - uid: 23568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.517166,-33.354496 + parent: 2 - proto: WaterTankFull entities: - uid: 15102 @@ -286938,6 +277006,16 @@ entities: - type: Transform pos: -27.5,-108.5 parent: 2 + - uid: 23253 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 23619 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 2 - uid: 39489 components: - type: Transform @@ -287060,16 +277138,6 @@ entities: - type: Transform pos: 38.5,9.5 parent: 2 - - uid: 39513 - components: - - type: Transform - pos: -17.5,-18.5 - parent: 2 - - uid: 39514 - components: - - type: Transform - pos: -17.5,-19.5 - parent: 2 - uid: 42039 components: - type: Transform @@ -287118,6 +277186,11 @@ entities: - type: Transform pos: -6.5,-78.5 parent: 2 + - uid: 23375 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 - uid: 39523 components: - type: Transform @@ -287255,14 +277328,6 @@ entities: - type: Transform pos: 61.430977,9.963861 parent: 2 - - uid: 39539 - components: - - type: MetaData - desc: Мгновенное распыление на атомы. Наверное... - name: квантовый распылитель - - type: Transform - pos: 12.46842,-18.429886 - parent: 2 - proto: WeaponDisablerSMG entities: - uid: 39540 @@ -287313,20 +277378,6 @@ entities: - type: Transform pos: 61.473564,10.985139 parent: 2 - - uid: 39546 - components: - - type: MetaData - name: плазменная винтовка - - type: Transform - pos: 8.510876,-18.319609 - parent: 2 - - uid: 39547 - components: - - type: MetaData - name: плазменная винтовка - - type: Transform - pos: 8.510876,-18.522734 - parent: 2 - uid: 39548 components: - type: Transform @@ -287341,38 +277392,27 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 16292 +- proto: WeaponLaserSvalinn + entities: + - uid: 23428 components: - type: Transform - parent: 16290 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WeaponMinigun + rot: 3.141592653589793 rad + pos: 12.854388,-28.679699 + parent: 2 +- proto: WeaponMakeshiftLaser entities: - - uid: 16289 + - uid: 23285 components: - - type: MetaData - desc: Он явно не желает стрелять в ваших руках. - name: миниган биокод - type: Transform - parent: 16287 - - type: StaticPrice - price: 10500 - - type: Physics - canCollide: False - - type: InsideEntityStorage - missingComponents: - - Gun - - BallisticAmmoProvider - - DamageExaminable - - Contraband -- proto: WeaponPistolFlintlock + pos: -10.334016,-45.340424 + parent: 2 +- proto: WeaponPistolCHIMPUpgraded entities: - - uid: 39550 + - uid: 23545 components: - type: Transform - pos: 12.479626,-19.42051 + pos: 2.5,-34.5 parent: 2 - proto: WeaponPistolMk58 entities: @@ -287392,13 +277432,12 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponProtoKineticAccelerator +- proto: WeaponPistolViper entities: - - uid: 39551 + - uid: 23286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.542126,-21.444609 + pos: -11.209016,-45.35605 parent: 2 - proto: WeaponPulsePistol entities: @@ -287476,13 +277515,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponRifleFoam - entities: - - uid: 39554 - components: - - type: Transform - pos: 8.477474,-24.49182 - parent: 2 - proto: WeaponRifleLecter entities: - uid: 41601 @@ -287495,15 +277527,6 @@ entities: - type: Transform pos: 6.577652,-11.609314 parent: 40828 -- proto: WeaponShotgunBlunderbuss - entities: - - uid: 2437 - components: - - type: Transform - parent: 2435 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: WeaponShotgunBulldog entities: - uid: 41603 @@ -287511,15 +277534,14 @@ entities: - type: Transform pos: 4.5026855,-13.328033 parent: 40828 -- proto: WeaponShotgunDoubleBarreledRubber +- proto: WeaponShotgunHandmade entities: - - uid: 2471 + - uid: 16506 components: - type: Transform - parent: 2469 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: -1.5707963267948966 rad + pos: -11.689889,-26.749538 + parent: 2 - proto: WeaponShotgunKammerer entities: - uid: 30912 @@ -287610,7 +277632,14 @@ entities: - type: Transform pos: 5.7313232,-10.509827 parent: 40828 -- proto: WeaponTurretHostile +- proto: WeaponTeslaGun + entities: + - uid: 18259 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 +- proto: WeaponTurretAllHostile entities: - uid: 28818 components: @@ -287618,22 +277647,25 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,19.5 parent: 2 - - uid: 39557 + - uid: 29308 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: 101.5,-90.5 parent: 2 - - uid: 39560 + - uid: 29310 components: - type: Transform - pos: 14.5,-27.5 + rot: -1.5707963267948966 rad + pos: 102.5,-78.5 parent: 2 - - uid: 39561 + - uid: 29312 components: - type: Transform pos: 96.5,-86.5 parent: 2 +- proto: WeaponTurretHostile + entities: - uid: 41605 components: - type: Transform @@ -287714,32 +277746,6 @@ entities: parent: 40828 - proto: WeaponTurretNanoTrasen entities: - - uid: 30795 - components: - - type: Transform - pos: 96.5,-74.5 - parent: 2 - - uid: 31716 - components: - - type: Transform - pos: 102.5,-78.5 - parent: 2 - - uid: 39564 - components: - - type: Transform - pos: 100.5,-74.5 - parent: 2 - - uid: 39565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,-78.5 - parent: 2 - - uid: 39566 - components: - - type: Transform - pos: 98.5,-66.5 - parent: 2 - uid: 41610 components: - type: Transform @@ -287766,47 +277772,139 @@ entities: parent: 40828 - proto: WeaponTurretSyndicateBroken entities: - - uid: 39567 + - uid: 29292 components: - type: Transform - pos: -54.5,-70.5 + pos: 98.5,-66.5 parent: 2 - - uid: 39568 + - uid: 29307 components: - type: Transform - pos: 17.5,-15.5 + pos: 100.5,-74.5 + parent: 2 + - uid: 29309 + components: + - type: Transform + pos: 94.5,-78.5 + parent: 2 + - uid: 29311 + components: + - type: Transform + pos: 96.5,-74.5 + parent: 2 + - uid: 39567 + components: + - type: Transform + pos: -54.5,-70.5 parent: 2 - uid: 42430 components: - type: Transform pos: 90.5,-81.5 parent: 2 -- proto: WeaponWaterBlaster +- proto: WeaponTurretXeno entities: - - uid: 39569 + - uid: 2590 components: - - type: MetaData - name: нейтронный бластер - type: Transform - pos: 8.542126,-19.561134 + pos: 9.5,-46.5 parent: 2 -- proto: WeaponWaterBlasterSuper - entities: - - uid: 39570 + - uid: 7508 components: - - type: MetaData - name: ' супер-бластер' - type: Transform - pos: 12.61051,-18.631842 + pos: 8.5,-46.5 parent: 2 -- proto: WeaponWaterPistol - entities: - - uid: 39571 + - uid: 9958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-49.5 + parent: 2 + - uid: 9991 components: - - type: MetaData - name: импульсный пистолет - type: Transform - pos: 12.470344,-15.756947 + pos: -16.5,-45.5 + parent: 2 + - uid: 10043 + components: + - type: Transform + pos: 1.5,-51.5 + parent: 2 + - uid: 10045 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 + - uid: 10054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-52.5 + parent: 2 + - uid: 10055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-52.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - uid: 12240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-30.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 2 + - uid: 12284 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 2 + - uid: 12285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-44.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-39.5 + parent: 2 + - uid: 20406 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 2 + - uid: 23300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-48.5 + parent: 2 + - uid: 23301 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 2 + - uid: 23358 + components: + - type: Transform + pos: -6.5,-38.5 parent: 2 - proto: Welder entities: @@ -287865,10 +277963,10 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 39578 + - uid: 23620 components: - type: Transform - pos: 8.5,-62.5 + pos: 15.5,-47.5 parent: 2 - uid: 39579 components: @@ -288010,11 +278108,6 @@ entities: - type: Transform pos: 38.5,33.5 parent: 2 - - uid: 39607 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 2 - uid: 43675 components: - type: Transform @@ -288037,11 +278130,6 @@ entities: - type: Transform pos: 46.5,-60.5 parent: 2 - - uid: 39611 - components: - - type: Transform - pos: -6.5,-48.5 - parent: 2 - proto: WetFloorSign entities: - uid: 26659 @@ -288220,204 +278308,6 @@ entities: - type: Transform pos: 36.5,8.5 parent: 2 - - uid: 39617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-38.5 - parent: 2 - - uid: 39618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-38.5 - parent: 2 - - uid: 39619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-37.5 - parent: 2 - - uid: 39620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-37.5 - parent: 2 - - uid: 39621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-39.5 - parent: 2 - - uid: 39622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-39.5 - parent: 2 - - uid: 39623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-38.5 - parent: 2 - - uid: 39624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-37.5 - parent: 2 - - uid: 39625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-36.5 - parent: 2 - - uid: 39626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-36.5 - parent: 2 - - uid: 39627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-37.5 - parent: 2 - - uid: 39628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-38.5 - parent: 2 - - uid: 39629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-37.5 - parent: 2 - - uid: 39630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-38.5 - parent: 2 - - uid: 39631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-39.5 - parent: 2 - - uid: 39632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-37.5 - parent: 2 - - uid: 39633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-38.5 - parent: 2 - - uid: 39634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-39.5 - parent: 2 - - uid: 39635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 2 - - uid: 39636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 2 - - uid: 39637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-34.5 - parent: 2 - - uid: 39638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 2 - - uid: 39639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 2 - - uid: 39640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 2 - - uid: 39641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-34.5 - parent: 2 - - uid: 39642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 2 - - uid: 39643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-32.5 - parent: 2 - - uid: 39644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 2 - - uid: 39645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 2 - - uid: 39646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-34.5 - parent: 2 - - uid: 39647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-34.5 - parent: 2 - - uid: 39648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 2 - - uid: 39649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 2 - uid: 39650 components: - type: Transform @@ -288603,17 +278493,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 - - uid: 39686 - components: - - type: Transform - pos: -2.5,-73.5 - parent: 2 - - uid: 39687 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-73.5 - parent: 2 - uid: 39688 components: - type: Transform @@ -288653,18 +278532,6 @@ entities: rot: -1.5707963267948966 rad pos: -72.5,1.5 parent: 2 - - uid: 39692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-47.5 - parent: 2 - - uid: 39693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-41.5 - parent: 2 - uid: 39694 components: - type: Transform @@ -288690,66 +278557,6 @@ entities: - type: Transform pos: 24.5,4.5 parent: 2 -- proto: WindoorClockwork - entities: - - uid: 39698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-22.5 - parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Service - - uid: 39699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-26.5 - parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Service - - uid: 39700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 2 - - uid: 39701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Service - - uid: 39702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-27.5 - parent: 2 - - uid: 39703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-28.5 - parent: 2 - - uid: 39704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Service - proto: WindoorHydroponicsLocked entities: - uid: 17337 @@ -288770,30 +278577,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,20.5 parent: 2 - - uid: 39706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-14.5 - parent: 2 - - uid: 39707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-14.5 - parent: 2 - - uid: 39708 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-13.5 - parent: 2 - - uid: 39709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-14.5 - parent: 2 - proto: WindoorKitchenHydroponicsLocked entities: - uid: 39710 @@ -288865,23 +278648,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-77.5 parent: 2 - - uid: 39723 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 2 - - uid: 39724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 2 - - uid: 39725 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 2 - uid: 39726 components: - type: Transform @@ -288892,26 +278658,6 @@ entities: - type: Transform pos: 86.5,-0.5 parent: 2 - - uid: 39728 - components: - - type: Transform - pos: -1.5,-28.5 - parent: 2 - - uid: 39729 - components: - - type: Transform - pos: 0.5,-29.5 - parent: 2 - - uid: 39730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-24.5 - parent: 2 - - type: AccessReader - containerAccessProvider: null - access: - - - Service - uid: 39731 components: - type: Transform @@ -288948,15 +278694,6 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-78.5 parent: 2 - - uid: 39736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-39.5 - parent: 2 - - type: AccessReader - access: - - - Medical - proto: WindoorSecureArmoryLocked entities: - uid: 20384 @@ -289313,116 +279050,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-27.5 parent: 2 -- proto: WindoorSecureNukeopLocked - entities: - - uid: 39786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-23.5 - parent: 2 - - uid: 39787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-21.5 - parent: 2 - - uid: 39788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 2 - - uid: 39789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-24.5 - parent: 2 - - uid: 39790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 2 - - uid: 39791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 2 - - uid: 39792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 2 - - uid: 39793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-22.5 - parent: 2 - - uid: 39794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 2 - - uid: 39795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-18.5 - parent: 2 - - uid: 39796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-17.5 - parent: 2 - - uid: 39797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-16.5 - parent: 2 - - uid: 39798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-15.5 - parent: 2 - - uid: 39799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 2 - - uid: 39800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-16.5 - parent: 2 - - uid: 39801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-17.5 - parent: 2 - - uid: 39802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 2 - - uid: 39803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-18.5 - parent: 2 - proto: WindoorSecurePlasma entities: - uid: 5078 @@ -289434,6 +279061,12 @@ entities: containerAccessProvider: null access: - - Maintenance + - uid: 23385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 2 - uid: 25243 components: - type: Transform @@ -289470,37 +279103,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-73.5 parent: 2 - - uid: 39806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 2 - - type: DoorBolt - boltsDown: True - - uid: 39807 - components: - - type: Transform - pos: 10.5,-12.5 - parent: 2 - - type: DoorBolt - boltsDown: True - - uid: 39808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-13.5 - parent: 2 - - type: DoorBolt - boltsDown: True - - uid: 39809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-14.5 - parent: 2 - - type: DoorBolt - boltsDown: True - uid: 39810 components: - type: Transform @@ -289973,12 +279575,6 @@ entities: - type: Transform pos: -39.5,-21.5 parent: 2 - - uid: 39879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-73.5 - parent: 2 - uid: 39881 components: - type: Transform @@ -290034,292 +279630,6 @@ entities: rot: 3.141592653589793 rad pos: 31.5,-65.5 parent: 2 -- proto: WindowClockworkDirectional - entities: - - uid: 39893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-23.5 - parent: 2 - - uid: 39894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-22.5 - parent: 2 - - uid: 39895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-23.5 - parent: 2 - - uid: 39896 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 2 - - uid: 39897 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 2 - - uid: 39898 - components: - - type: Transform - pos: -1.5,-23.5 - parent: 2 - - uid: 39899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-23.5 - parent: 2 - - uid: 39900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-22.5 - parent: 2 - - uid: 39901 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-23.5 - parent: 2 - - uid: 39902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-27.5 - parent: 2 - - uid: 39903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 2 - - uid: 39904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-26.5 - parent: 2 - - uid: 39905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 2 - - uid: 39906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-27.5 - parent: 2 - - uid: 39907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-29.5 - parent: 2 - - uid: 39908 - components: - - type: Transform - pos: 2.5,-29.5 - parent: 2 - - uid: 39909 - components: - - type: Transform - pos: 3.5,-29.5 - parent: 2 - - uid: 39910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-27.5 - parent: 2 - - uid: 39911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-25.5 - parent: 2 - - uid: 39912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-23.5 - parent: 2 - - uid: 39913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-21.5 - parent: 2 - - uid: 39914 - components: - - type: Transform - pos: -3.5,-28.5 - parent: 2 - - uid: 39915 - components: - - type: Transform - pos: 0.5,-28.5 - parent: 2 - - uid: 39916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-28.5 - parent: 2 - - uid: 39917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-28.5 - parent: 2 - - uid: 39918 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-27.5 - parent: 2 - - uid: 39919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 - parent: 2 - - uid: 39920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-26.5 - parent: 2 - - uid: 39921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-26.5 - parent: 2 - - uid: 39922 - components: - - type: Transform - pos: -0.5,-28.5 - parent: 2 - - uid: 39923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-28.5 - parent: 2 - - uid: 39924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-27.5 - parent: 2 - - uid: 39925 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 2 - - uid: 39926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-27.5 - parent: 2 - - uid: 39927 - components: - - type: Transform - pos: -2.5,-28.5 - parent: 2 - - uid: 39928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-26.5 - parent: 2 - - uid: 39929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 2 - - uid: 39930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-26.5 - parent: 2 - - uid: 39931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-54.5 - parent: 2 - - uid: 39932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-53.5 - parent: 2 - - uid: 39933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-52.5 - parent: 2 - - uid: 39934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-51.5 - parent: 2 - - uid: 39935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-50.5 - parent: 2 - - uid: 39936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-50.5 - parent: 2 - - uid: 39937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-49.5 - parent: 2 - - uid: 39938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-51.5 - parent: 2 - - uid: 39939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-52.5 - parent: 2 - - uid: 39940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-53.5 - parent: 2 - - uid: 39941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-54.5 - parent: 2 - proto: WindowDirectional entities: - uid: 12517 @@ -290429,444 +279739,6 @@ entities: - type: Transform pos: -7.5,21.5 parent: 2 - - uid: 39947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-15.5 - parent: 2 - - uid: 39948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-15.5 - parent: 2 - - uid: 39949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-15.5 - parent: 2 - - uid: 39950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-15.5 - parent: 2 - - uid: 39951 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-15.5 - parent: 2 - - uid: 39952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-13.5 - parent: 2 - - uid: 39953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-13.5 - parent: 2 - - uid: 39954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-13.5 - parent: 2 - - uid: 39955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-13.5 - parent: 2 - - uid: 39956 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-13.5 - parent: 2 - - uid: 39957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-14.5 - parent: 2 - - uid: 39958 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-14.5 - parent: 2 - - uid: 39959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-14.5 - parent: 2 - - uid: 39960 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-14.5 - parent: 2 - - uid: 39961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-14.5 - parent: 2 - - uid: 39962 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-14.5 - parent: 2 - - uid: 39963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-16.5 - parent: 2 - - uid: 39964 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-16.5 - parent: 2 - - uid: 39965 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-16.5 - parent: 2 - - uid: 39966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-16.5 - parent: 2 - - uid: 39967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 2 - - uid: 39968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-16.5 - parent: 2 - - uid: 39969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-18.5 - parent: 2 - - uid: 39970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-18.5 - parent: 2 - - uid: 39971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-18.5 - parent: 2 - - uid: 39972 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-18.5 - parent: 2 - - uid: 39973 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-18.5 - parent: 2 - - uid: 39974 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-16.5 - parent: 2 - - uid: 39975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-16.5 - parent: 2 - - uid: 39976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-16.5 - parent: 2 - - uid: 39977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-16.5 - parent: 2 - - uid: 39978 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-16.5 - parent: 2 - - uid: 39979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-16.5 - parent: 2 - - uid: 39980 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-14.5 - parent: 2 - - uid: 39981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-14.5 - parent: 2 - - uid: 39982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-15.5 - parent: 2 - - uid: 39983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 2 - - uid: 39984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 2 - - uid: 39985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 2 - - uid: 39986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 2 - - uid: 39987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-16.5 - parent: 2 - - uid: 39988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 2 - - uid: 39989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-12.5 - parent: 2 - - uid: 39990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-13.5 - parent: 2 - - uid: 39991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-16.5 - parent: 2 - - uid: 39992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-16.5 - parent: 2 - - uid: 39993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-14.5 - parent: 2 - - uid: 39994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-14.5 - parent: 2 - - uid: 39995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-15.5 - parent: 2 - - uid: 39996 - components: - - type: Transform - pos: -17.5,-37.5 - parent: 2 - - uid: 39997 - components: - - type: Transform - pos: -17.5,-38.5 - parent: 2 - - uid: 39998 - components: - - type: Transform - pos: -17.5,-33.5 - parent: 2 - - uid: 39999 - components: - - type: Transform - pos: -17.5,-32.5 - parent: 2 - - uid: 40000 - components: - - type: Transform - pos: -15.5,-32.5 - parent: 2 - - uid: 40001 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 2 - - uid: 40002 - components: - - type: Transform - pos: -15.5,-37.5 - parent: 2 - - uid: 40003 - components: - - type: Transform - pos: -15.5,-38.5 - parent: 2 - - uid: 40004 - components: - - type: Transform - pos: -17.5,-39.5 - parent: 2 - - uid: 40005 - components: - - type: Transform - pos: -15.5,-39.5 - parent: 2 - - uid: 40006 - components: - - type: Transform - pos: -15.5,-34.5 - parent: 2 - - uid: 40007 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 2 - - uid: 40008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-32.5 - parent: 2 - - uid: 40009 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-32.5 - parent: 2 - - uid: 40010 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-37.5 - parent: 2 - - uid: 40011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-37.5 - parent: 2 - - uid: 40012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-36.5 - parent: 2 - - uid: 40013 - components: - - type: Transform - pos: -19.5,-38.5 - parent: 2 - - uid: 40014 - components: - - type: Transform - pos: -19.5,-37.5 - parent: 2 - - uid: 40015 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 2 - - uid: 40016 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 2 - - uid: 40017 - components: - - type: Transform - pos: -19.5,-33.5 - parent: 2 - - uid: 40018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-32.5 - parent: 2 - - uid: 40019 - components: - - type: Transform - pos: -19.5,-32.5 - parent: 2 - - uid: 40020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 2 - - uid: 40021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 2 - - uid: 40022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-34.5 - parent: 2 - uid: 40023 components: - type: Transform @@ -291782,22 +280654,6 @@ entities: rot: 1.5707963267948966 rad pos: 86.5,-3.5 parent: 2 - - uid: 40188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 2 - - uid: 40189 - components: - - type: Transform - pos: -16.5,-24.5 - parent: 2 - - uid: 40190 - components: - - type: Transform - pos: -14.5,-24.5 - parent: 2 - uid: 40191 components: - type: Transform @@ -291836,30 +280692,6 @@ entities: - type: Transform pos: 87.5,-7.5 parent: 2 - - uid: 40198 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-16.5 - parent: 2 - - uid: 40199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-16.5 - parent: 2 - - uid: 40200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-17.5 - parent: 2 - - uid: 40201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-15.5 - parent: 2 - uid: 40202 components: - type: Transform @@ -292042,24 +280874,6 @@ entities: - type: Transform pos: 46.5,14.5 parent: 2 - - uid: 40215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-38.5 - parent: 2 - - uid: 40216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-38.5 - parent: 2 - - uid: 40217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-38.5 - parent: 2 - uid: 40219 components: - type: Transform @@ -292076,12 +280890,6 @@ entities: - type: Transform pos: -59.5,-18.5 parent: 2 - - uid: 40224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-40.5 - parent: 2 - uid: 40225 components: - type: Transform @@ -292105,24 +280913,6 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-21.5 parent: 2 - - uid: 40229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-16.5 - parent: 2 - - uid: 40230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 2 - - uid: 40231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 2 - uid: 40232 components: - type: Transform @@ -292159,264 +280949,23 @@ entities: rot: -1.5707963267948966 rad pos: 64.5,-38.5 parent: 2 - - uid: 40238 - components: - - type: Transform - pos: 8.5,-28.5 - parent: 2 - - uid: 40239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-28.5 - parent: 2 - - uid: 40240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-28.5 - parent: 2 - - uid: 40241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-28.5 - parent: 2 - - uid: 40242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 2 - - uid: 40243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-16.5 - parent: 2 - - uid: 40244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 2 - - uid: 40245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 2 - - uid: 40246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 2 - - uid: 40247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-21.5 - parent: 2 - - uid: 40248 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 2 - - uid: 40249 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 2 - - uid: 40250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-21.5 - parent: 2 - - uid: 40251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-22.5 - parent: 2 - - uid: 40252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-22.5 - parent: 2 - - uid: 40253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-23.5 - parent: 2 - - uid: 40254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-23.5 - parent: 2 - - uid: 40255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-24.5 - parent: 2 - - uid: 40256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-24.5 - parent: 2 - - uid: 40257 - components: - - type: Transform - pos: 8.5,-24.5 - parent: 2 - - uid: 40258 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 2 - - uid: 40259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-15.5 - parent: 2 - - uid: 40260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-16.5 - parent: 2 - - uid: 40261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-17.5 - parent: 2 - - uid: 40262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-18.5 - parent: 2 - - uid: 40263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-19.5 - parent: 2 - uid: 40265 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-38.5 parent: 2 - - uid: 40266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-15.5 - parent: 2 - - uid: 40267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-15.5 - parent: 2 - - uid: 40268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-15.5 - parent: 2 - - uid: 40269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-15.5 - parent: 2 - - uid: 40270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-17.5 - parent: 2 - - uid: 40271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-17.5 - parent: 2 - - uid: 40272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-17.5 - parent: 2 - - uid: 40273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-17.5 - parent: 2 - - uid: 40274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-15.5 - parent: 2 - - uid: 40275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-17.5 - parent: 2 - uid: 40276 components: - type: Transform pos: 47.5,14.5 parent: 2 - - uid: 40277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-41.5 - parent: 2 - - uid: 40278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-40.5 - parent: 2 - - uid: 40279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-38.5 - parent: 2 - uid: 40285 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-35.5 parent: 2 - - uid: 40286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-23.5 - parent: 2 - - uid: 40287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 2 - uid: 40288 components: - type: Transform @@ -293579,36 +282128,12 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-69.5 parent: 2 - - uid: 40493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-69.5 - parent: 2 - - uid: 40494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-69.5 - parent: 2 - - uid: 40495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-69.5 - parent: 2 - uid: 40496 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-69.5 parent: 2 - - uid: 40497 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-69.5 - parent: 2 - uid: 40498 components: - type: Transform @@ -294111,68 +282636,6 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,13.5 parent: 2 - - uid: 40589 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-40.5 - parent: 2 - - uid: 40590 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-40.5 - parent: 2 - - uid: 40591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-40.5 - parent: 2 - - uid: 40592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-38.5 - parent: 2 - - uid: 40593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 2 - - uid: 40594 - components: - - type: Transform - pos: -3.5,-41.5 - parent: 2 - - uid: 40595 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 2 - - uid: 40596 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 2 - - uid: 40597 - components: - - type: Transform - pos: -3.5,-39.5 - parent: 2 - - uid: 40598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 2 - - uid: 40599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-38.5 - parent: 2 - uid: 40600 components: - type: Transform @@ -294484,6 +282947,12 @@ entities: parent: 2 - proto: WoodDoor entities: + - uid: 12238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-62.5 + parent: 2 - uid: 40613 components: - type: Transform @@ -294502,130 +282971,19 @@ entities: rot: 3.141592653589793 rad pos: 68.4214,-50.618374 parent: 2 -- proto: WoodenSupportWall +- proto: WoodenSupportBeam entities: - - uid: 40620 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-38.5 - parent: 2 - - uid: 40621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 - parent: 2 - - uid: 40622 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-38.5 - parent: 2 - - uid: 40623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-38.5 - parent: 2 - - uid: 40624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-38.5 - parent: 2 - - uid: 40625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-40.5 - parent: 2 - - uid: 40626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-40.5 - parent: 2 - - uid: 40627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-40.5 - parent: 2 - - uid: 40628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-40.5 - parent: 2 - - uid: 40629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-40.5 - parent: 2 - - uid: 40630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-42.5 - parent: 2 - - uid: 40631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-42.5 - parent: 2 - - uid: 40632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-42.5 - parent: 2 - - uid: 40633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-42.5 - parent: 2 - - uid: 40634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-42.5 - parent: 2 - - uid: 40635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-39.5 - parent: 2 - - uid: 40636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-40.5 - parent: 2 - - uid: 40637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-41.5 - parent: 2 - - uid: 40638 - components: - - type: Transform - pos: 17.5,-42.5 - parent: 2 - - uid: 40639 + - uid: 20414 components: - type: Transform - pos: 17.5,-40.5 + pos: -5.5,-62.5 parent: 2 - - uid: 40640 +- proto: WoodenSupportWall + entities: + - uid: 20413 components: - type: Transform - pos: 17.5,-38.5 + pos: -5.5,-63.5 parent: 2 - proto: Wrench entities: @@ -294634,6 +282992,11 @@ entities: - type: Transform pos: 34.5,9.5 parent: 2 + - uid: 23360 + components: + - type: Transform + pos: -8.818029,-46.31089 + parent: 2 - uid: 40641 components: - type: Transform @@ -294753,6 +283116,56 @@ entities: - type: Transform pos: 86.09184,-66.17483 parent: 2 +- proto: XenoBasherGlass + entities: + - uid: 29208 + components: + - type: Transform + parent: 29203 + - type: Physics + canCollide: False +- proto: XenoWardingTower + entities: + - uid: 7556 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - uid: 10050 + components: + - type: Transform + pos: -5.5,-49.5 + parent: 2 + - uid: 10051 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 2 + - uid: 10052 + components: + - type: Transform + pos: 9.5,-49.5 + parent: 2 + - uid: 10053 + components: + - type: Transform + pos: 8.5,-52.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 14668 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 - proto: Zipties entities: - uid: 40661 From 36e0fd888973110543374d70e5eea411c5f143b2 Mon Sep 17 00:00:00 2001 From: Ko4ergaPunk <62609550+Ko4ergaPunk@users.noreply.github.com> Date: Tue, 21 Jan 2025 17:27:06 +0300 Subject: [PATCH 062/103] [Maps] Cute tweaks (#2946) --- Resources/Maps/Corvax/corvax_cute.yml | 188 +++++++++++------- .../Prototypes/Corvax/Maps/Corvax/cute.yml | 20 +- 2 files changed, 122 insertions(+), 86 deletions(-) diff --git a/Resources/Maps/Corvax/corvax_cute.yml b/Resources/Maps/Corvax/corvax_cute.yml index f4dedede1fc..9c5cf2a02a9 100644 --- a/Resources/Maps/Corvax/corvax_cute.yml +++ b/Resources/Maps/Corvax/corvax_cute.yml @@ -3673,11 +3673,6 @@ entities: 6880: 364,404 6881: 363,404 6882: 362,404 - - node: - zIndex: 1 - color: '#3535358E' - id: QuarterTileOverlayGreyscale - decals: 7010: 416,365 7011: 416,364 7012: 416,363 @@ -4216,11 +4211,6 @@ entities: 6876: 363,402 6877: 360,402 6878: 359,402 - - node: - zIndex: 1 - color: '#3535358E' - id: QuarterTileOverlayGreyscale180 - decals: 7007: 414,363 7008: 414,364 7009: 414,365 @@ -5060,11 +5050,6 @@ entities: 6793: 381,402 6794: 382,402 6795: 363,402 - - node: - zIndex: 1 - color: '#D3D3D32D' - id: QuarterTileOverlayGreyscale270 - decals: 7015: 416,363 7016: 416,364 7017: 416,365 @@ -5607,11 +5592,6 @@ entities: 1040: 356,404 1041: 355,404 1042: 354,404 - - node: - zIndex: 1 - color: '#D3D3D32D' - id: QuarterTileOverlayGreyscale90 - decals: 7019: 414,365 7020: 414,364 7021: 414,363 @@ -7204,7 +7184,9 @@ entities: 1: 2235 0: 8192 82,111: - 0: 245 + 0: 17653 + 82,112: + 0: 25708 83,108: 1: 50944 83,109: @@ -7212,17 +7194,35 @@ entities: 83,110: 1: 4095 83,111: - 0: 242 + 1: 61166 + 83,112: + 1: 60142 84,108: 1: 65280 84,109: 1: 61661 84,110: - 1: 4095 + 1: 20479 84,111: - 0: 241 + 1: 65535 80,112: 0: 8 + 82,113: + 0: 17996 + 82,114: + 0: 12 + 83,114: + 0: 47 + 83,113: + 1: 238 + 0: 16384 + 84,112: + 1: 65535 + 84,113: + 1: 255 + 0: 16384 + 84,114: + 0: 47 84,89: 0: 8936 84,88: @@ -7374,7 +7374,8 @@ entities: 1: 255 0: 61440 87,107: - 1: 32624 + 5: 30576 + 1: 2048 88,104: 1: 39150 0: 8192 @@ -7391,11 +7392,19 @@ entities: 85,110: 1: 1911 85,111: - 0: 49 + 1: 13107 + 0: 128 + 85,112: + 1: 51 + 0: 16512 86,108: 1: 56576 86,109: 1: 12281 + 86,111: + 0: 12560 + 86,112: + 0: 4881 87,109: 1: 10098 87,108: @@ -7445,7 +7454,7 @@ entities: 90,99: 1: 30454 90,100: - 1: 63342 + 1: 65390 91,97: 1: 61182 91,98: @@ -7473,7 +7482,7 @@ entities: 89,104: 1: 33790 90,101: - 1: 47623 + 1: 47631 90,102: 1: 59640 90,103: @@ -7601,7 +7610,7 @@ entities: 1: 13311 0: 32768 95,100: - 1: 64392 + 1: 65416 0: 2 92,103: 1: 2720 @@ -7622,7 +7631,7 @@ entities: 94,104: 1: 53241 95,101: - 1: 30475 + 1: 30479 95,102: 1: 32631 95,103: @@ -7815,14 +7824,10 @@ entities: 1: 4096 98,97: 1: 16 - 98,99: - 1: 239 - 0: 24576 98,98: - 1: 57344 - 98,100: - 0: 5 - 1: 65280 + 1: 61440 + 98,99: + 1: 13311 99,98: 1: 61440 99,99: @@ -7832,9 +7837,9 @@ entities: 0: 4 1: 65280 100,98: - 1: 45192 + 1: 61576 100,99: - 1: 191 + 1: 255 0: 16384 97,101: 1: 58895 @@ -7844,6 +7849,8 @@ entities: 1: 17990 97,104: 1: 27733 + 98,100: + 1: 65328 98,101: 1: 64319 98,102: @@ -7859,10 +7866,10 @@ entities: 99,103: 1: 62395 100,100: - 1: 64256 + 1: 65280 0: 12 100,101: - 1: 47883 + 1: 47887 100,102: 1: 35835 100,103: @@ -8036,28 +8043,28 @@ entities: 101,97: 1: 48059 101,98: - 1: 45499 + 1: 61883 101,99: - 1: 191 + 1: 255 0: 16384 101,100: 0: 4 - 1: 64256 + 1: 65280 102,97: 1: 48127 102,98: - 1: 45247 + 1: 61631 102,99: - 1: 32959 + 1: 35071 103,97: 1: 57343 103,98: - 1: 47583 + 1: 63967 103,99: - 1: 12735 + 1: 13311 0: 32768 102,100: - 1: 64392 + 1: 65416 103,100: 1: 45875 104,96: @@ -8065,12 +8072,12 @@ entities: 104,97: 1: 53727 104,98: - 1: 55519 + 1: 63711 104,99: - 1: 51423 + 1: 51455 0: 4096 101,101: - 1: 47899 + 1: 47903 101,102: 1: 48123 101,103: @@ -8078,7 +8085,7 @@ entities: 101,104: 1: 8191 102,101: - 1: 47899 + 1: 47903 102,102: 1: 48059 102,103: @@ -8805,6 +8812,10 @@ entities: 1: 560 127,99: 1: 32 + 85,113: + 0: 19564 + 86,113: + 0: 1 uniqueMixes: - volume: 2500 immutable: True @@ -9304,21 +9315,24 @@ entities: data: tiles: 0,0: - 0: 4912 - 1: 8192 - 2: 4 + 0: 13104 + 1: 34820 + 0,-1: + 1: 28672 0,1: 0: 19 - 2: 64 + 1: 200 -1,0: 0: 58432 - 2: 2 + 1: 19 -1,1: 0: 15 -2,0: - 2: 32768 + 1: 32768 -2,1: - 2: 128 + 1: 128 + -1,-1: + 1: 49152 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -9335,21 +9349,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 immutable: True moles: @@ -9408,6 +9407,43 @@ entities: - type: GridAtmosphere version: 2 data: + tiles: + 0,0: + 0: 5 + 1: 2 + 0,-1: + 1: 30464 + 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 @@ -144360,7 +144396,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -91392.336 + secondsUntilStateChange: -91430.336 state: Opening - type: Airlock autoClose: False diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/cute.yml b/Resources/Prototypes/Corvax/Maps/Corvax/cute.yml index 1a08154a1d1..d935619babc 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/cute.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/cute.yml @@ -4,8 +4,8 @@ mapPath: /Maps/Corvax/corvax_cute.yml maxRandomOffset: 0 randomRotation: false - minPlayers: 25 - maxPlayers: 55 + minPlayers: 0 + maxPlayers: 35 stations: Cute: stationProto: StandardNanotrasenStation @@ -27,23 +27,23 @@ # cargo Quartermaster: [ 1, 1 ] SalvageSpecialist: [ 2, 2 ] - CargoTechnician: [ 3, 3 ] + CargoTechnician: [ 2, 2 ] # engineering ChiefEngineer: [ 1, 1 ] AtmosphericTechnician: [ 2, 2 ] - StationEngineer: [ 5, 5 ] - TechnicalAssistant: [ 2, 2 ] + StationEngineer: [ 3, 3 ] + TechnicalAssistant: [ 1, 1 ] # medical ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 3, 3 ] + MedicalDoctor: [ 2, 2 ] MedicalIntern: [ 2, 2 ] Psychologist: [ 1, 1 ] - Paramedic: [ 2, 2 ] + Paramedic: [ 1, 1 ] Chemist: [ 2, 2 ] # science ResearchDirector: [ 1, 1 ] - Scientist: [ 4, 4 ] - ResearchAssistant: [ 2, 2 ] + Scientist: [ 3, 3 ] + ResearchAssistant: [ 1, 1 ] # security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] @@ -59,7 +59,7 @@ Chaplain: [ 1, 1 ] Chef: [ 1, 1 ] Clown: [ 1, 1 ] - Janitor: [ 3, 3 ] + Janitor: [ 2, 2 ] Librarian: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] From 0da6a9995aeb7bb7c48ce43074aa5c5e02f11c87 Mon Sep 17 00:00:00 2001 From: Nim <128169402+Nimfar11@users.noreply.github.com> Date: Tue, 21 Jan 2025 18:08:21 +0200 Subject: [PATCH 063/103] Blueprint double emergency tank (#34232) * blueprint * NitrogenTank * description --- .../Spawners/Random/Salvage/tables_loot.yml | 1 + .../Entities/Objects/Tools/blueprint.yml | 11 +++++++++++ Resources/Prototypes/Recipes/Lathes/misc.yml | 14 ++++++++++++++ 3 files changed, 26 insertions(+) diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml index 943b9065603..6f753fa413a 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Salvage/tables_loot.yml @@ -222,6 +222,7 @@ id: SalvageEquipmentRare table: !type:GroupSelector children: + - id: BlueprintDoubleEmergencyTank - id: FultonBeacon - id: Fulton amount: !type:RangeNumberSelector diff --git a/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml b/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml index 43cbdc2431f..64aa91c3736 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/blueprint.yml @@ -37,3 +37,14 @@ - type: Blueprint providedRecipes: - SeismicCharge + +- type: entity + parent: BaseBlueprint + id: BlueprintDoubleEmergencyTank + name: double emergency tank blueprint + description: A blueprint with a schematic of a double emergency tank. It can be inserted into an autolathe. + components: + - type: Blueprint + providedRecipes: + - DoubleEmergencyOxygenTank + - DoubleEmergencyNitrogenTank diff --git a/Resources/Prototypes/Recipes/Lathes/misc.yml b/Resources/Prototypes/Recipes/Lathes/misc.yml index a9ae608674e..19b02993b27 100644 --- a/Resources/Prototypes/Recipes/Lathes/misc.yml +++ b/Resources/Prototypes/Recipes/Lathes/misc.yml @@ -119,6 +119,20 @@ materials: Steel: 300 +- type: latheRecipe + id: DoubleEmergencyOxygenTank + result: DoubleEmergencyOxygenTank + completetime: 4 + materials: + Steel: 250 + +- type: latheRecipe + id: DoubleEmergencyNitrogenTank + result: DoubleEmergencyNitrogenTank + completetime: 4 + materials: + Steel: 250 + - type: latheRecipe id: ClothingShoesBootsMagSci result: ClothingShoesBootsMagSci From 1031d2a6c17f160caf7105aac719a67838e66f0f Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 21 Jan 2025 16:09:27 +0000 Subject: [PATCH 064/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 5b246d4db63..d1cbbc880c2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: DieselMohawk - changes: - - message: Made Trooper Uniform accessible for Security Officers in loadouts - type: Fix - id: 7338 - time: '2024-09-09T23:59:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32019 - author: IProduceWidgets changes: - message: Visitors now can have the correct Id cards and PDA! @@ -3904,3 +3897,10 @@ id: 7837 time: '2025-01-21T10:39:16.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34502 +- author: Nimfar11 + changes: + - message: Adds Blueprint double emergency tank. + type: Add + id: 7838 + time: '2025-01-21T16:08:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34232 From 1d51fd67d0833ec8ad34b1dd81b41d56ee2c055b Mon Sep 17 00:00:00 2001 From: lastPechkin Date: Tue, 21 Jan 2025 20:43:16 +0300 Subject: [PATCH 065/103] [Maps] Astra extra fix (#2947) --- Resources/Maps/Corvax/corvax_astra.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Maps/Corvax/corvax_astra.yml b/Resources/Maps/Corvax/corvax_astra.yml index c506a870d2b..af404f6a7bb 100644 --- a/Resources/Maps/Corvax/corvax_astra.yml +++ b/Resources/Maps/Corvax/corvax_astra.yml @@ -130709,7 +130709,7 @@ entities: parent: 18963 - type: Physics canCollide: False -- proto: EnergySword +- proto: ToySword entities: - uid: 7350 components: From ae213066b1adb0bc68742b740b39d7d135e6e679 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Tue, 21 Jan 2025 23:48:07 +0100 Subject: [PATCH 066/103] HOTFIX Admin playerlist character update fix (#34560) fix IdentityChangedEvent subscription --- Content.Server/Administration/Systems/AdminSystem.cs | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Content.Server/Administration/Systems/AdminSystem.cs b/Content.Server/Administration/Systems/AdminSystem.cs index 1d8c278584e..eb29617f497 100644 --- a/Content.Server/Administration/Systems/AdminSystem.cs +++ b/Content.Server/Administration/Systems/AdminSystem.cs @@ -82,13 +82,14 @@ public override void Initialize() Subs.CVar(_config, CCVars.PanicBunkerMinAccountAge, OnPanicBunkerMinAccountAgeChanged, true); Subs.CVar(_config, CCVars.PanicBunkerMinOverallMinutes, OnPanicBunkerMinOverallMinutesChanged, true); - SubscribeLocalEvent(OnIdentityChanged); SubscribeLocalEvent(OnPlayerAttached); SubscribeLocalEvent(OnPlayerDetached); SubscribeLocalEvent(OnRoleEvent); SubscribeLocalEvent(OnRoleEvent); SubscribeLocalEvent(OnRoundRestartCleanup); + SubscribeLocalEvent(OnPlayerRenamed); + SubscribeLocalEvent(OnIdentityChanged); } private void OnRoundRestartCleanup(RoundRestartCleanupEvent ev) @@ -144,12 +145,9 @@ public void UpdatePlayerList(ICommonSession player) return value ?? null; } - private void OnIdentityChanged(ref IdentityChangedEvent ev) + private void OnIdentityChanged(Entity ent, ref IdentityChangedEvent ev) { - if (!TryComp(ev.CharacterEntity, out var actor)) - return; - - UpdatePlayerList(actor.PlayerSession); + UpdatePlayerList(ent.Comp.PlayerSession); } private void OnRoleEvent(RoleEvent ev) From 71c9dfc9ea5ec53333fccf566523dee7556f9e48 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 22 Jan 2025 00:23:47 +0100 Subject: [PATCH 067/103] Add system to kick people if they connect to multiple servers at once. (#34563) --- .../Managers/BanManager.Notification.cs | 29 +---- .../Administration/Managers/BanManager.cs | 7 +- .../Managers/MultiServerKickManager.cs | 114 ++++++++++++++++++ Content.Server/Database/ServerDbBase.cs | 2 + Content.Server/Database/ServerDbManager.cs | 15 +++ Content.Server/Database/ServerDbManagerExt.cs | 76 ++++++++++++ .../ServerDbPostgres.Notifications.cs | 10 ++ Content.Server/Database/ServerDbSqlite.cs | 6 + Content.Server/Entry/EntryPoint.cs | 1 + Content.Server/IoC/ServerContentIoC.cs | 1 + Content.Shared/CCVar/CCVars.Admin.cs | 7 ++ .../administration/multi-server-kick.ftl | 1 + 12 files changed, 242 insertions(+), 27 deletions(-) create mode 100644 Content.Server/Administration/Managers/MultiServerKickManager.cs create mode 100644 Content.Server/Database/ServerDbManagerExt.cs create mode 100644 Resources/Locale/en-US/administration/multi-server-kick.ftl diff --git a/Content.Server/Administration/Managers/BanManager.Notification.cs b/Content.Server/Administration/Managers/BanManager.Notification.cs index e9bfa628841..ff84887f00d 100644 --- a/Content.Server/Administration/Managers/BanManager.Notification.cs +++ b/Content.Server/Administration/Managers/BanManager.Notification.cs @@ -1,6 +1,4 @@ -using System.Text.Json; using System.Text.Json.Serialization; -using Content.Server.Database; namespace Content.Server.Administration.Managers; @@ -30,36 +28,15 @@ public sealed partial class BanManager private TimeSpan _banNotificationRateLimitStart; private int _banNotificationRateLimitCount; - private void OnDatabaseNotification(DatabaseNotification notification) + private bool OnDatabaseNotificationEarlyFilter() { - if (notification.Channel != BanNotificationChannel) - return; - - if (notification.Payload == null) - { - _sawmill.Error("Got ban notification with null payload!"); - return; - } - - BanNotificationData data; - try - { - data = JsonSerializer.Deserialize(notification.Payload) - ?? throw new JsonException("Content is null"); - } - catch (JsonException e) - { - _sawmill.Error($"Got invalid JSON in ban notification: {e}"); - return; - } - if (!CheckBanRateLimit()) { _sawmill.Verbose("Not processing ban notification due to rate limit"); - return; + return false; } - _taskManager.RunOnMainThread(() => ProcessBanNotification(data)); + return true; } private async void ProcessBanNotification(BanNotificationData data) diff --git a/Content.Server/Administration/Managers/BanManager.cs b/Content.Server/Administration/Managers/BanManager.cs index 2e21710e51d..c65059f55dd 100644 --- a/Content.Server/Administration/Managers/BanManager.cs +++ b/Content.Server/Administration/Managers/BanManager.cs @@ -53,7 +53,12 @@ public void Initialize() { _netManager.RegisterNetMessage(); - _db.SubscribeToNotifications(OnDatabaseNotification); + _db.SubscribeToJsonNotification( + _taskManager, + _sawmill, + BanNotificationChannel, + ProcessBanNotification, + OnDatabaseNotificationEarlyFilter); _userDbData.AddOnLoadPlayer(CachePlayerData); _userDbData.AddOnPlayerDisconnect(ClearPlayerData); diff --git a/Content.Server/Administration/Managers/MultiServerKickManager.cs b/Content.Server/Administration/Managers/MultiServerKickManager.cs new file mode 100644 index 00000000000..abc8bb1f2d3 --- /dev/null +++ b/Content.Server/Administration/Managers/MultiServerKickManager.cs @@ -0,0 +1,114 @@ +using System.Text.Json; +using System.Text.Json.Serialization; +using Content.Server.Database; +using Content.Shared.CCVar; +using Robust.Server.Player; +using Robust.Shared.Asynchronous; +using Robust.Shared.Configuration; +using Robust.Shared.Enums; +using Robust.Shared.Network; +using Robust.Shared.Player; + +namespace Content.Server.Administration.Managers; + +/// +/// Handles kicking people that connect to multiple servers on the same DB at once. +/// +/// +public sealed class MultiServerKickManager +{ + public const string NotificationChannel = "multi_server_kick"; + + [Dependency] private readonly IPlayerManager _playerManager = null!; + [Dependency] private readonly IServerDbManager _dbManager = null!; + [Dependency] private readonly ILogManager _logManager = null!; + [Dependency] private readonly IConfigurationManager _cfg = null!; + [Dependency] private readonly IAdminManager _adminManager = null!; + [Dependency] private readonly ITaskManager _taskManager = null!; + [Dependency] private readonly IServerNetManager _netManager = null!; + [Dependency] private readonly ILocalizationManager _loc = null!; + [Dependency] private readonly ServerDbEntryManager _serverDbEntry = null!; + + private ISawmill _sawmill = null!; + private bool _allowed; + + public void Initialize() + { + _sawmill = _logManager.GetSawmill("multi_server_kick"); + + _playerManager.PlayerStatusChanged += OnPlayerStatusChanged; + _cfg.OnValueChanged(CCVars.AdminAllowMultiServerPlay, b => _allowed = b, true); + + _dbManager.SubscribeToJsonNotification( + _taskManager, + _sawmill, + NotificationChannel, + OnNotification, + OnNotificationEarlyFilter + ); + } + + // ReSharper disable once AsyncVoidMethod + private async void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) + { + if (_allowed) + return; + + if (e.NewStatus != SessionStatus.InGame) + return; + + // Send notification to other servers so they can kick this player that just connected. + try + { + await _dbManager.SendNotification(new DatabaseNotification + { + Channel = NotificationChannel, + Payload = JsonSerializer.Serialize(new NotificationData + { + PlayerId = e.Session.UserId, + ServerId = (await _serverDbEntry.ServerEntity).Id, + }), + }); + } + catch (Exception ex) + { + _sawmill.Error($"Failed to send notification for multi server kick: {ex}"); + } + } + + private bool OnNotificationEarlyFilter() + { + if (_allowed) + { + _sawmill.Verbose("Received notification for player join, but multi server play is allowed on this server. Ignoring"); + return false; + } + + return true; + } + + // ReSharper disable once AsyncVoidMethod + private async void OnNotification(NotificationData notification) + { + if (!_playerManager.TryGetSessionById(new NetUserId(notification.PlayerId), out var player)) + return; + + if (notification.ServerId == (await _serverDbEntry.ServerEntity).Id) + return; + + if (_adminManager.IsAdmin(player, includeDeAdmin: true)) + return; + + _sawmill.Info($"Kicking {player} for connecting to another server. Multi-server play is not allowed."); + _netManager.DisconnectChannel(player.Channel, _loc.GetString("multi-server-kick-reason")); + } + + private sealed class NotificationData + { + [JsonPropertyName("player_id")] + public Guid PlayerId { get; set; } + + [JsonPropertyName("server_id")] + public int ServerId { get; set; } + } +} diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index c1a52447b79..b75870ac0e6 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -1801,6 +1801,8 @@ await db.DbContext.IPIntelCache #endregion + public abstract Task SendNotification(DatabaseNotification notification); + // SQLite returns DateTime as Kind=Unspecified, Npgsql actually knows for sure it's Kind=Utc. // Normalize DateTimes here so they're always Utc. Thanks. protected abstract DateTime NormalizeDatabaseTime(DateTime time); diff --git a/Content.Server/Database/ServerDbManager.cs b/Content.Server/Database/ServerDbManager.cs index 9fee2c021bd..5ddb3a590cb 100644 --- a/Content.Server/Database/ServerDbManager.cs +++ b/Content.Server/Database/ServerDbManager.cs @@ -350,6 +350,15 @@ Task AddConnectionLogAsync( /// The notification to trigger void InjectTestNotification(DatabaseNotification notification); + /// + /// Send a notification to all other servers connected to the same database. + /// + /// + /// The local server will receive the sent notification itself again. + /// + /// The notification to send. + Task SendNotification(DatabaseNotification notification); + #endregion } @@ -1045,6 +1054,12 @@ public void InjectTestNotification(DatabaseNotification notification) HandleDatabaseNotification(notification); } + public Task SendNotification(DatabaseNotification notification) + { + DbWriteOpsMetric.Inc(); + return RunDbCommand(() => _db.SendNotification(notification)); + } + private async void HandleDatabaseNotification(DatabaseNotification notification) { lock (_notificationHandlers) diff --git a/Content.Server/Database/ServerDbManagerExt.cs b/Content.Server/Database/ServerDbManagerExt.cs new file mode 100644 index 00000000000..fad7a7234ec --- /dev/null +++ b/Content.Server/Database/ServerDbManagerExt.cs @@ -0,0 +1,76 @@ +using System.Text.Json; +using Robust.Shared.Asynchronous; + +namespace Content.Server.Database; + +public static class ServerDbManagerExt +{ + /// + /// Subscribe to a database notification on a specific channel, formatted as JSON. + /// + /// The database manager to subscribe on. + /// The task manager used to run the main callback on the main thread. + /// Sawmill to log any errors to. + /// + /// The notification channel to listen on. Only notifications on this channel will be handled. + /// + /// + /// The action to run on the notification data. + /// This runs on the main thread. + /// + /// + /// An early filter callback that runs before the JSON message is deserialized. + /// Return false to not handle the notification. + /// This does not run on the main thread. + /// + /// + /// A filter callback that runs after the JSON message is deserialized. + /// Return false to not handle the notification. + /// This does not run on the main thread. + /// + /// The type of JSON data to deserialize. + public static void SubscribeToJsonNotification( + this IServerDbManager dbManager, + ITaskManager taskManager, + ISawmill sawmill, + string channel, + Action action, + Func? earlyFilter = null, + Func? filter = null) + { + dbManager.SubscribeToNotifications(notification => + { + if (notification.Channel != channel) + return; + + if (notification.Payload == null) + { + sawmill.Error($"Got {channel} notification with null payload!"); + return; + } + + if (earlyFilter != null && !earlyFilter()) + return; + + TData data; + try + { + data = JsonSerializer.Deserialize(notification.Payload) + ?? throw new JsonException("Content is null"); + } + catch (JsonException e) + { + sawmill.Error($"Got invalid JSON in {channel} notification: {e}"); + return; + } + + if (filter != null && !filter(data)) + return; + + taskManager.RunOnMainThread(() => + { + action(data); + }); + }); + } +} diff --git a/Content.Server/Database/ServerDbPostgres.Notifications.cs b/Content.Server/Database/ServerDbPostgres.Notifications.cs index 69cf2c7d775..91db2d100f8 100644 --- a/Content.Server/Database/ServerDbPostgres.Notifications.cs +++ b/Content.Server/Database/ServerDbPostgres.Notifications.cs @@ -2,6 +2,7 @@ using System.Threading; using System.Threading.Tasks; using Content.Server.Administration.Managers; +using Microsoft.EntityFrameworkCore; using Npgsql; namespace Content.Server.Database; @@ -17,6 +18,7 @@ public sealed partial class ServerDbPostgres private static readonly string[] NotificationChannels = [ BanManager.BanNotificationChannel, + MultiServerKickManager.NotificationChannel, ]; private static readonly TimeSpan ReconnectWaitIncrease = TimeSpan.FromSeconds(10); @@ -111,6 +113,14 @@ private void OnNotification(object _, NpgsqlNotificationEventArgs notification) }); } + public override async Task SendNotification(DatabaseNotification notification) + { + await using var db = await GetDbImpl(); + + await db.PgDbContext.Database.ExecuteSqlAsync( + $"SELECT pg_notify({notification.Channel}, {notification.Payload})"); + } + public override void Shutdown() { _notificationTokenSource.Cancel(); diff --git a/Content.Server/Database/ServerDbSqlite.cs b/Content.Server/Database/ServerDbSqlite.cs index 6ec90c3332f..c3109ec6e66 100644 --- a/Content.Server/Database/ServerDbSqlite.cs +++ b/Content.Server/Database/ServerDbSqlite.cs @@ -537,6 +537,12 @@ public override async Task AddAdminMessage(AdminMessage message) return await base.AddAdminMessage(message); } + public override Task SendNotification(DatabaseNotification notification) + { + // Notifications not implemented on SQLite. + return Task.CompletedTask; + } + protected override DateTime NormalizeDatabaseTime(DateTime time) { DebugTools.Assert(time.Kind == DateTimeKind.Unspecified); diff --git a/Content.Server/Entry/EntryPoint.cs b/Content.Server/Entry/EntryPoint.cs index 3d4ea922dc0..b9c20942a02 100644 --- a/Content.Server/Entry/EntryPoint.cs +++ b/Content.Server/Entry/EntryPoint.cs @@ -152,6 +152,7 @@ public override void PostInit() IoCManager.Resolve().GetEntitySystem().PostInitialize(); IoCManager.Resolve().Initialize(); IoCManager.Resolve().PostInit(); + IoCManager.Resolve().Initialize(); } } diff --git a/Content.Server/IoC/ServerContentIoC.cs b/Content.Server/IoC/ServerContentIoC.cs index 777e1342469..50b248a9ea3 100644 --- a/Content.Server/IoC/ServerContentIoC.cs +++ b/Content.Server/IoC/ServerContentIoC.cs @@ -75,6 +75,7 @@ public static void Register() IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); + IoCManager.Register(); } } } diff --git a/Content.Shared/CCVar/CCVars.Admin.cs b/Content.Shared/CCVar/CCVars.Admin.cs index 7754a6cbb8b..bbce533ed1b 100644 --- a/Content.Shared/CCVar/CCVars.Admin.cs +++ b/Content.Shared/CCVar/CCVars.Admin.cs @@ -176,4 +176,11 @@ public sealed partial class CCVars public static readonly CVarDef BanHardwareIds = CVarDef.Create("ban.hardware_ids", true, CVar.SERVERONLY); + + /// + /// If true, players are allowed to connect to multiple game servers at once. + /// If false, they will be kicked from the first when connecting to another. + /// + public static readonly CVarDef AdminAllowMultiServerPlay = + CVarDef.Create("admin.allow_multi_server_play", true, CVar.SERVERONLY); } diff --git a/Resources/Locale/en-US/administration/multi-server-kick.ftl b/Resources/Locale/en-US/administration/multi-server-kick.ftl new file mode 100644 index 00000000000..2aa3c4ed35f --- /dev/null +++ b/Resources/Locale/en-US/administration/multi-server-kick.ftl @@ -0,0 +1 @@ +multi-server-kick-reason = Connected to different server in this community. From ef24e4b070ab5a4e5a35b77fec3046dcf685d5bb Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 21 Jan 2025 23:24:53 +0000 Subject: [PATCH 068/103] Automatic changelog update --- Resources/Changelog/Admin.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 3e29fcedd36..440a5d567aa 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -728,5 +728,14 @@ Entries: id: 90 time: '2025-01-17T07:24:50.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33782 +- author: PJB3005 + changes: + - message: Introduced an option to automatically disconnect players from their current + server if they join another one within the same server community. Admins are + always exempt. + type: Add + id: 91 + time: '2025-01-21T23:23:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34563 Name: Admin Order: 1 From 3499b47465d4e53724024adc4bc4773cf823e588 Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Tue, 21 Jan 2025 22:48:41 -0700 Subject: [PATCH 069/103] bagel update (#34572) * bagel update * Decal fault tolerance * Also fix writes * fix mv cable, decal issues, yar * fix a floor tile and some other shit --------- Co-authored-by: metalgearsloth --- .../DecalGridChunkCollectionTypeSerializer.cs | 27 +- Resources/Maps/bagel.yml | 21978 ++++++++-------- 2 files changed, 10633 insertions(+), 11372 deletions(-) diff --git a/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs b/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs index 85364fe5f40..ae4c89c9703 100644 --- a/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs +++ b/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs @@ -32,6 +32,8 @@ public DecalGridChunkCollection Read(ISerializationManager serializationManager, node.TryGetValue(new ValueDataNode("version"), out var versionNode); var version = ((ValueDataNode?) versionNode)?.AsInt() ?? 1; Dictionary dictionary; + uint nextIndex = 0; + var ids = new HashSet(); // TODO: Dump this when we don't need support anymore. if (version > 1) @@ -53,22 +55,31 @@ public DecalGridChunkCollection Read(ISerializationManager serializationManager, var chunkOrigin = SharedMapSystem.GetChunkIndices(coords, SharedDecalSystem.ChunkSize); var chunk = dictionary.GetOrNew(chunkOrigin); var decal = new Decal(coords, data.Id, data.Color, data.Angle, data.ZIndex, data.Cleanable); - chunk.Decals.Add(dUid, decal); + + nextIndex = Math.Max(nextIndex, dUid); + + // Re-used ID somehow + // This will bump all IDs by up to 1 but will ensure the map is still readable. + if (!ids.Add(dUid)) + { + dUid = nextIndex++; + ids.Add(dUid); + } + + chunk.Decals[dUid] = decal; } } } else { dictionary = serializationManager.Read>(node, hookCtx, context, notNullableOverride: true); - } - uint nextIndex = 0; - - foreach (var decals in dictionary.Values) - { - foreach (var uid in decals.Decals.Keys) + foreach (var decals in dictionary.Values) { - nextIndex = Math.Max(uid, nextIndex); + foreach (var uid in decals.Decals.Keys) + { + nextIndex = Math.Max(uid, nextIndex); + } } } diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 2ea0e587c15..86dac99313c 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -77,99 +77,99 @@ entities: chunks: 0,-1: ind: 0,-1 - tiles: XQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAACHwAAAAADHwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAAAHwAAAAACHwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAADfgAAAAAATwAAAAAAEQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAC + tiles: XQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAACHwAAAAAAHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAACHwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAADfgAAAAAATwAAAAAAEQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAB version: 6 -1,-1: ind: -1,-1 - tiles: XQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAZAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAADZAAAAAAAXQAAAAACZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAADcwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAMwAAAAAAegAAAAACegAAAAABegAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAACMwAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAHwAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAACJAAAAAAAegAAAAACegAAAAABegAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAABegAAAAADegAAAAADfgAAAAAAHwAAAAABTQAAAAADTQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAACXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAB + tiles: XQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABZAAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAABZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAABcwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAHwAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADMwAAAAAAegAAAAADegAAAAAAegAAAAADfgAAAAAAHwAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADMwAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAHwAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABJAAAAAACegAAAAAAegAAAAADegAAAAABfgAAAAAAHwAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAHwAAAAABTQAAAAABTQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAC version: 6 0,0: ind: 0,0 - tiles: HwAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAABLwAAAAACLwAAAAACfQAAAAAAfgAAAAAAXQAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAABDAAAAAABDAAAAAABDAAAAAADLwAAAAABfgAAAAAAXQAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAADDAAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAADLwAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAACDAAAAAABDAAAAAADDAAAAAABDAAAAAACDAAAAAAALwAAAAAAXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAADHwAAAAAADAAAAAABDAAAAAACDAAAAAADHwAAAAACLwAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAABLwAAAAAATgAAAAADLwAAAAACLwAAAAACfgAAAAAATQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACTQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADTQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAATQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAC + tiles: HwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAABLwAAAAADLwAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAADDAAAAAABDAAAAAACDAAAAAADLwAAAAABfgAAAAAAXQAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAACDAAAAAADDAAAAAADDAAAAAABDAAAAAAADAAAAAACLwAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAACDAAAAAADLwAAAAADXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAABHwAAAAACDAAAAAACDAAAAAACDAAAAAABHwAAAAACLwAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAADLwAAAAABTgAAAAABLwAAAAACLwAAAAADfgAAAAAATQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABTQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAATQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACTQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAC version: 6 -1,0: ind: -1,0 - tiles: XQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACXQAAAAADXQAAAAADHwAAAAACbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABXQAAAAABXQAAAAABfgAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAOAAAAAAAOAAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATQAAAAACTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADTQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACTQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADTQAAAAABTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAADHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACHwAAAAADHwAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADHwAAAAAAHwAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAAAegAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAXQAAAAAB + tiles: XQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADXQAAAAACXQAAAAACfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACXQAAAAAAXQAAAAACHwAAAAADbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACXQAAAAABXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAOAAAAAAAOAAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABTQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAACTQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABTQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAATQAAAAACTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABHwAAAAADHwAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADHwAAAAAAHwAAAAACfgAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAAAHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAABegAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAADegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAXQAAAAAD version: 6 0,-2: ind: 0,-2 - tiles: XQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAATgAAAAACfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAADgAAAAADegAAAAACegAAAAADegAAAAADegAAAAADegAAAAADXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAAAfgAAAAAADgAAAAABegAAAAADegAAAAACegAAAAAAegAAAAAAegAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAACDgAAAAACDgAAAAABXQAAAAAAXQAAAAADfgAAAAAATQAAAAAATQAAAAACTQAAAAACTQAAAAAATQAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACTQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAATQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAC + tiles: XQAAAAACXQAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAABegAAAAAAegAAAAAAegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAATgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAADgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAABegAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAADgAAAAABegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAADDgAAAAAADgAAAAACXQAAAAABXQAAAAACfgAAAAAATQAAAAADTQAAAAACTQAAAAADTQAAAAAATQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAATQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABTQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAATQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAC version: 6 -1,-2: ind: -1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACfgAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAATQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADTQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACTQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAAgAAAAACfgAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAALgAAAAAAfgAAAAAAAwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTQAAAAAATQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAC + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABfgAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACTQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAATQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABTQAAAAAAXQAAAAABTQAAAAACTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAAgAAAAADfgAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAALgAAAAAAfgAAAAAAAwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAD version: 6 0,-3: ind: 0,-3 - tiles: XQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAACXQAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAADXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAA + tiles: XQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAACXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAegAAAAAAegAAAAACegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAegAAAAACegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAegAAAAACegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAABXQAAAAADXQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAAAXQAAAAABXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAC version: 6 1,-2: ind: 1,-2 - tiles: egAAAAADegAAAAABegAAAAACegAAAAACegAAAAADegAAAAADfgAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACfgAAAAAAHwAAAAACXQAAAAACXQAAAAABXQAAAAABegAAAAACegAAAAACegAAAAACegAAAAABegAAAAADegAAAAABfgAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAABXQAAAAAAegAAAAADegAAAAADegAAAAABegAAAAABegAAAAACegAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAABDgAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAAADgAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABDgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAPAAAAAAAXQAAAAACXQAAAAAATQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAATQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADTQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACTQAAAAAATQAAAAACfgAAAAAAfgAAAAAADgAAAAAADgAAAAACDgAAAAABDgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAADDgAAAAACDgAAAAABDgAAAAABDgAAAAABDgAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAACcAAAAAADfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAADegAAAAAAegAAAAAAegAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADXQAAAAABXQAAAAAAHwAAAAADHwAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAACegAAAAABegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABHwAAAAAAHwAAAAABDgAAAAACDgAAAAACDgAAAAADDgAAAAAADgAAAAAAegAAAAACegAAAAACegAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAABXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACDgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAAAegAAAAACegAAAAADegAAAAAAfgAAAAAAcAAAAAACcAAAAAADfgAAAAAA + tiles: egAAAAACegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAADfgAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAACXQAAAAABegAAAAACegAAAAAAegAAAAACegAAAAABegAAAAACegAAAAACfgAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAACfgAAAAAAHwAAAAADXQAAAAACXQAAAAACXQAAAAACegAAAAACegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAACfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAAAegAAAAADegAAAAACegAAAAABegAAAAAAegAAAAADegAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAAAXQAAAAACXQAAAAAAXQAAAAACegAAAAABegAAAAABegAAAAAAegAAAAABegAAAAABegAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAACXQAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAADDgAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABDgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAPAAAAAAAXQAAAAACXQAAAAADTQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACTQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABTQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACTQAAAAACTQAAAAADfgAAAAAAfgAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABDgAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAXQAAAAACcAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAADDgAAAAABDgAAAAABDgAAAAABDgAAAAADDgAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADXQAAAAADXQAAAAABHwAAAAADHwAAAAABDgAAAAACDgAAAAACDgAAAAADDgAAAAACDgAAAAADegAAAAACegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADHwAAAAAAHwAAAAADDgAAAAAADgAAAAADDgAAAAADDgAAAAADDgAAAAADegAAAAAAegAAAAADegAAAAADfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACXQAAAAACXQAAAAADfgAAAAAAHwAAAAACDgAAAAAADgAAAAADDgAAAAADDgAAAAACDgAAAAADegAAAAADegAAAAAAegAAAAADfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: XQAAAAACXQAAAAAAfgAAAAAAHwAAAAAADgAAAAABDgAAAAAADgAAAAABDgAAAAABDgAAAAACegAAAAAAegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAegAAAAABegAAAAACcAAAAAADXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAACfgAAAAAAegAAAAACegAAAAAAHwAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAABEQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: XQAAAAAAXQAAAAACfgAAAAAAHwAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAACDgAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAegAAAAADegAAAAABcAAAAAACXQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAABHwAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAATQAAAAABTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABEQAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,0: ind: 1,0 - tiles: XQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAXQAAAAAAEQAAAAAAHwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAEQAAAAAAXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAATQAAAAAATQAAAAADfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACTQAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAdAAAAAADdAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAcAAAAAADdAAAAAABdAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAdAAAAAADdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAdAAAAAAAVgAAAAACfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: XQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAXQAAAAACEQAAAAAAHwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAEQAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAATQAAAAACTQAAAAADfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACTQAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABcAAAAAABdAAAAAACdAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAABXQAAAAACfgAAAAAAdAAAAAACdAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAdAAAAAABVgAAAAADfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAACfAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAABTQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAATQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADTQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAHwAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABHwAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADHwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADHwAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATQAAAAADHwAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAADfAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABTQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADTQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADTQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAATQAAAAADHwAAAAAAHwAAAAADHwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAXQAAAAADHwAAAAACTQAAAAACTQAAAAADLgAAAAAALgAAAAAATgAAAAAALgAAAAAALgAAAAAATQAAAAADTQAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAADHwAAAAABTQAAAAACTQAAAAADHwAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAABTQAAAAABTQAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACLgAAAAAATgAAAAAALgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABLgAAAAAALgAAAAAALgAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAAC version: 6 -2,-1: ind: -2,-1 - tiles: fgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAHwAAAAADHwAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAcAAAAAAAcAAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAcAAAAAACcAAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAHwAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAHwAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAATQAAAAABfgAAAAAAHwAAAAACXQAAAAABXQAAAAADfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATQAAAAACTQAAAAACXQAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABfgAAAAAAXQAAAAACXQAAAAAC + tiles: XQAAAAAAXQAAAAADHwAAAAADLgAAAAAALgAAAAAATgAAAAACLgAAAAAALgAAAAAAHwAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAADTQAAAAACTQAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADHwAAAAACHwAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAATQAAAAAAHwAAAAADHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAAAHwAAAAAAHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAABegAAAAADfgAAAAAAXQAAAAAAXQAAAAAD version: 6 -2,0: ind: -2,0 - tiles: TQAAAAAATQAAAAABXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAegAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAACXQAAAAAATQAAAAAATQAAAAACXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABegAAAAABegAAAAABegAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAACHwAAAAADHwAAAAACXQAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAHwAAAAACHwAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAATQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADTQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADTQAAAAABXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAADHwAAAAADfgAAAAAAHwAAAAAAegAAAAADegAAAAADegAAAAACegAAAAADegAAAAABHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABEQAAAAAAHwAAAAADfgAAAAAAHwAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAABegAAAAABHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADEQAAAAAAXQAAAAACfgAAAAAAHwAAAAABegAAAAABegAAAAABegAAAAACegAAAAABegAAAAACHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAABegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAACegAAAAAAegAAAAACegAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAAB + tiles: HwAAAAADHwAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADegAAAAADfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADTQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACTQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAAAHwAAAAABfgAAAAAAHwAAAAABegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADEQAAAAAAHwAAAAADfgAAAAAAHwAAAAABegAAAAADegAAAAACegAAAAAAegAAAAAAegAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACEQAAAAAAXQAAAAACfgAAAAAAHwAAAAADegAAAAABegAAAAACegAAAAACegAAAAADegAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABEQAAAAAAHwAAAAACfgAAAAAAHwAAAAADegAAAAAAegAAAAABegAAAAABegAAAAABegAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACHwAAAAACfgAAAAAAHwAAAAABegAAAAAAegAAAAABegAAAAABegAAAAABegAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAAB version: 6 1,-3: ind: 1,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAABfgAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACfgAAAAAADAAAAAABDAAAAAADfgAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAABegAAAAAAegAAAAABHwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAACHwAAAAADDAAAAAAADAAAAAADfgAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAADfgAAAAAADAAAAAACDAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAABegAAAAACegAAAAAAfgAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACfgAAAAAAfgAAAAAADAAAAAADDAAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADegAAAAACegAAAAADegAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAAD + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAADfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAABfgAAAAAADAAAAAAADAAAAAACfgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAADegAAAAAAegAAAAABHwAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABHwAAAAADDAAAAAADDAAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAAAegAAAAABegAAAAADfgAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACfgAAAAAADAAAAAACDAAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAABfgAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAADfgAAAAAAfgAAAAAADAAAAAACDAAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADegAAAAADfgAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAAAfgAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAAA version: 6 -3,0: ind: -3,0 - tiles: HwAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAeQAAAAACeQAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAATQAAAAABTQAAAAAATQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAATQAAAAACTQAAAAADTQAAAAACHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAATQAAAAAATQAAAAABTQAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAATQAAAAADTQAAAAAATQAAAAABHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAABHwAAAAAATQAAAAABTQAAAAACTQAAAAACMgAAAAADMgAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAACfgAAAAAATQAAAAAATQAAAAADTQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAACfgAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADTQAAAAACXQAAAAABXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABegAAAAAAegAAAAABHwAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABTQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABTQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADKAAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAACcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAXQAAAAABEQAAAAAAXQAAAAABKAAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAADHwAAAAACXQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAXQAAAAACEQAAAAAAXQAAAAABaAAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAD + tiles: HwAAAAACHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAeQAAAAAAeQAAAAABfgAAAAAATQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAMgAAAAACMgAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAACfgAAAAAAegAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACTQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAADHwAAAAACegAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAATQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACTQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAcAAAAAABcAAAAAAAcAAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADKAAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACcAAAAAACcAAAAAACcAAAAAABfgAAAAAAXQAAAAABEQAAAAAAXQAAAAAAKAAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABHwAAAAAAXQAAAAABEQAAAAAAEQAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAXQAAAAABEQAAAAAAXQAAAAACaAAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAD version: 6 -3,-2: ind: -3,-2 - tiles: ZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAKAAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACKAAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAAAKAAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAACegAAAAABegAAAAABegAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAATQAAAAABTQAAAAADTQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAADegAAAAADegAAAAABegAAAAABegAAAAADegAAAAACegAAAAACegAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA + tiles: ZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAABegAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAACfgAAAAAATQAAAAACTQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADegAAAAADegAAAAACegAAAAADegAAAAAAegAAAAADegAAAAACegAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAB version: 6 -3,-1: ind: -3,-1 - tiles: fgAAAAAAfAAAAAAAfAAAAAABegAAAAAAegAAAAABegAAAAADfAAAAAADfAAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAABHwAAAAADXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAXQAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAACHwAAAAACXQAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATQAAAAABXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAACKAAAAAAAKAAAAAABHwAAAAADTQAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAATQAAAAABTQAAAAAATQAAAAAA + tiles: fgAAAAAAfAAAAAACfAAAAAADegAAAAACegAAAAAAegAAAAABfAAAAAADfAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAABXQAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAADXQAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATQAAAAACXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAADKAAAAAADKAAAAAABHwAAAAABTQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATQAAAAABTQAAAAACTQAAAAACfgAAAAAAcAAAAAACcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAcAAAAAABeQAAAAABcAAAAAABcAAAAAAAcAAAAAAD + tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABTQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATQAAAAADTQAAAAACTQAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAACcAAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABHwAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAcAAAAAABeQAAAAADcAAAAAACcAAAAAACcAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: XQAAAAABXQAAAAABXQAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAcAAAAAAAcAAAAAABeQAAAAACcAAAAAADcAAAAAADcAAAAAADXQAAAAACXQAAAAADXQAAAAADHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABcAAAAAADcAAAAAACXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACXQAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACcAAAAAADcAAAAAADeQAAAAADcAAAAAAAcAAAAAABdQAAAAADXQAAAAABXQAAAAADXQAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABfgAAAAAAcAAAAAACeQAAAAADcAAAAAABcAAAAAAAdQAAAAABXQAAAAAAXQAAAAABXQAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABcAAAAAAAcAAAAAABeQAAAAADcAAAAAACcAAAAAACdQAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAADPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAcAAAAAADcAAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAACcAAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABcAAAAAAAcAAAAAABeQAAAAAAeQAAAAACeQAAAAADcAAAAAABcAAAAAADcAAAAAACeQAAAAADcAAAAAAAfgAAAAAAKAAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAcAAAAAACeQAAAAABcAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAAAcAAAAAADHwAAAAADcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAADcAAAAAABcAAAAAABfgAAAAAAcAAAAAABeQAAAAACcAAAAAAAfgAAAAAAXQAAAAADcAAAAAADeQAAAAACeQAAAAACeQAAAAAAeQAAAAACeQAAAAADeQAAAAACeQAAAAABeQAAAAAAcAAAAAADXQAAAAABcAAAAAAAeQAAAAABcAAAAAABfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAACcAAAAAAAeQAAAAADeQAAAAACcAAAAAADcAAAAAACeQAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAAAeQAAAAABeQAAAAAAeQAAAAAAeQAAAAABcAAAAAABfgAAAAAAcAAAAAABeQAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAABfgAAAAAAcAAAAAACcAAAAAABcAAAAAABcAAAAAABcAAAAAAB + tiles: XQAAAAABXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABcAAAAAAAcAAAAAACeQAAAAAAcAAAAAAAcAAAAAAAcAAAAAABXQAAAAACXQAAAAADXQAAAAADHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAcAAAAAADeQAAAAAAcAAAAAABcAAAAAABcAAAAAADXQAAAAABXQAAAAABXQAAAAACHwAAAAACXQAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAcAAAAAADcAAAAAAAeQAAAAADcAAAAAAAcAAAAAADdQAAAAACXQAAAAACXQAAAAACXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAcAAAAAADeQAAAAADcAAAAAAAcAAAAAAAdQAAAAABXQAAAAAAXQAAAAABXQAAAAABHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAADcAAAAAACcAAAAAAAeQAAAAAAcAAAAAADcAAAAAAAdQAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABfgAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAAAPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAcAAAAAABcAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAACfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACcAAAAAAAcAAAAAAAeQAAAAADeQAAAAACeQAAAAADcAAAAAAAcAAAAAADcAAAAAABeQAAAAAAcAAAAAACfgAAAAAAKAAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACfgAAAAAAHwAAAAADfgAAAAAAcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAADcAAAAAACcAAAAAAAHwAAAAADcAAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAABcAAAAAAAcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAcAAAAAABeQAAAAACcAAAAAABfgAAAAAAXQAAAAAAcAAAAAABeQAAAAADeQAAAAACeQAAAAACeQAAAAABeQAAAAACeQAAAAABeQAAAAACeQAAAAAAcAAAAAADXQAAAAACcAAAAAADeQAAAAAAcAAAAAADfgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAABcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAADeQAAAAACeQAAAAAAcAAAAAADcAAAAAACeQAAAAACcAAAAAABcAAAAAAAcAAAAAADcAAAAAADeQAAAAABeQAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAABeQAAAAADeQAAAAABcAAAAAADfgAAAAAAcAAAAAADeQAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: fgAAAAAAegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAADfgAAAAAAegAAAAABfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAAAegAAAAABegAAAAADQAAAAAAAegAAAAABegAAAAADegAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAAAegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAABegAAAAADegAAAAADegAAAAABegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAZAAAAAAAXQAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAABcAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA + tiles: fgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAADegAAAAABfgAAAAAAegAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAADegAAAAADegAAAAACQAAAAAAAegAAAAACegAAAAAAegAAAAACZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAegAAAAACegAAAAACfgAAAAAAegAAAAADegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAXQAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAXQAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: cAAAAAAAcAAAAAACcAAAAAADeQAAAAABcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAAAcAAAAAABcAAAAAABeQAAAAACcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAABdQAAAAABcAAAAAADeQAAAAABcAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfQAAAAAAdQAAAAABdQAAAAADcAAAAAACeQAAAAAAcAAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAACdQAAAAABcAAAAAACeQAAAAABcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAACcAAAAAABcAAAAAABeQAAAAACcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAKAAAAAABKAAAAAADKAAAAAADKAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAACKAAAAAAAKAAAAAADKAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAAAKAAAAAAAKAAAAAADKAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAXQAAAAAATQAAAAACXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA + tiles: cAAAAAACcAAAAAADcAAAAAACeQAAAAABcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAADcAAAAAADcAAAAAADeQAAAAACcAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAADdQAAAAABcAAAAAADeQAAAAACcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAdQAAAAACdQAAAAABcAAAAAADeQAAAAADcAAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAABdQAAAAAAcAAAAAABeQAAAAABcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAADcAAAAAABcAAAAAADeQAAAAABcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAKAAAAAABKAAAAAABKAAAAAABKAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAACKAAAAAAAKAAAAAABKAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAADKAAAAAADKAAAAAADKAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAXQAAAAADTQAAAAADXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: fgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAADeQAAAAABeQAAAAABcAAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAADfgAAAAAAXQAAAAABcAAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAACHwAAAAADcAAAAAACeQAAAAABcAAAAAABfgAAAAAAXQAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAAAcAAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAABfgAAAAAAcAAAAAAAeQAAAAADcAAAAAABfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAADcAAAAAADfgAAAAAAXQAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAcAAAAAADeQAAAAACcAAAAAADfgAAAAAAcAAAAAADHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAcAAAAAABeQAAAAACcAAAAAACcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAACfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAA + tiles: fgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAABcAAAAAABfgAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAABcAAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAADHwAAAAADcAAAAAACeQAAAAABcAAAAAAAfgAAAAAAXQAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAADfgAAAAAAcAAAAAAAeQAAAAADcAAAAAADfgAAAAAAXQAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAABcAAAAAACfgAAAAAAXQAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAcAAAAAADeQAAAAAAcAAAAAADfgAAAAAAcAAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACcAAAAAAAeQAAAAACcAAAAAABcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAcAAAAAABcAAAAAADcAAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAC version: 6 3,-1: ind: 3,-1 - tiles: cAAAAAAAfgAAAAAAcAAAAAACAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAACcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAADcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAADcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAABXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAfgAAAAAAcAAAAAADAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAADcAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAACXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAABXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-4: ind: 1,-4 @@ -197,11 +197,11 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAACbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAACfgAAAAAAbgAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAALwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABLwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABfgAAAAAAHwAAAAAALwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADLwAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAABbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAAAfgAAAAAAbgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAHwAAAAABLwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAADLwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAAALwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAACLwAAAAAD version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA version: 6 -6,-1: ind: -6,-1 @@ -213,7 +213,7 @@ entities: version: 6 -4,0: ind: -4,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABcAAAAAABfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAABLwAAAAACHwAAAAAALwAAAAACHwAAAAADLwAAAAABHwAAAAACLwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAABXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAOAAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAOAAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAOAAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACKAAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAKAAAAAAAKAAAAAAAKAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACcAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAACLwAAAAADHwAAAAABLwAAAAACHwAAAAAALwAAAAACHwAAAAAALwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAACXQAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAOAAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAOAAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAACfgAAAAAAOAAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAKAAAAAADHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAKAAAAAADKAAAAAABKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAA version: 6 -4,-3: ind: -4,-3 @@ -221,15 +221,15 @@ entities: version: 6 0,-4: ind: 0,-4 - tiles: XQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA + tiles: XQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAJAAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAB + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAADHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAD version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA version: 6 -1,-6: ind: -1,-6 @@ -237,23 +237,23 @@ entities: version: 6 0,-5: ind: 0,-5 - tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAABXQAAAAADXQAAAAADXQAAAAACBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAAAXQAAAAABXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAABXQAAAAABXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAADXQAAAAAAXQAAAAAAXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAABXQAAAAADXQAAAAAAXQAAAAABBwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAABXQAAAAABXQAAAAACXQAAAAACBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAACXQAAAAACXQAAAAAAXQAAAAADBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAAAXQAAAAACXQAAAAABXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: XQAAAAACXQAAAAABXQAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAADegAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAATQAAAAAATQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAATgAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADXQAAAAAA + tiles: XQAAAAAAXQAAAAABXQAAAAAAegAAAAADegAAAAACegAAAAADegAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAACegAAAAADegAAAAACegAAAAADegAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAACHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABTQAAAAADTQAAAAADfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADHwAAAAAAfgAAAAAATgAAAAADXQAAAAACbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADXQAAAAAA version: 6 3,0: ind: 3,0 - tiles: XQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAegAAAAADegAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAegAAAAAAegAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAegAAAAADegAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAegAAAAACegAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAABXQAAAAACXQAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA version: 6 0,-6: ind: 0,-6 @@ -261,15 +261,15 @@ entities: version: 6 -1,-5: ind: -1,-5 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAADAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABXQAAAAAAXQAAAAABXQAAAAACDAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABXQAAAAAAXQAAAAABXQAAAAAADAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAABXQAAAAAAXQAAAAADDAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAADXQAAAAADXQAAAAACDAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADDAAAAAAC + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAADAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAABXQAAAAADXQAAAAADDAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABXQAAAAACXQAAAAAAXQAAAAAADAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAADXQAAAAAAXQAAAAADDAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAAAXQAAAAABXQAAAAAADAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADDAAAAAAD version: 6 1,1: ind: 1,1 - tiles: XQAAAAADXQAAAAADfgAAAAAATQAAAAACTQAAAAACfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAABTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAATQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA + tiles: XQAAAAAAXQAAAAACfgAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADTQAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA version: 6 2,1: ind: 2,1 - tiles: fgAAAAAAfgAAAAAAJgAAAAACJgAAAAABJgAAAAADJgAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAegAAAAACegAAAAAAegAAAAACXQAAAAABXQAAAAABbAAAAAAAfgAAAAAAJgAAAAABLwAAAAADLwAAAAAALwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAJgAAAAACLwAAAAAALwAAAAABLwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADTQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADTQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACTQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAJgAAAAAAJgAAAAABJgAAAAAAJgAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAXQAAAAADXQAAAAACbAAAAAAAfgAAAAAAJgAAAAADLwAAAAACLwAAAAAALwAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAJgAAAAADLwAAAAABLwAAAAABLwAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACTQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACTQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABTQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-2: ind: 4,-2 @@ -285,27 +285,27 @@ entities: version: 6 2,0: ind: 2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAegAAAAACegAAAAADegAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAegAAAAACegAAAAABegAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAfgAAAAAA version: 6 3,1: ind: 3,1 - tiles: XQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAACXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: aAAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADHwAAAAADXQAAAAADXQAAAAACXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACegAAAAADegAAAAAAegAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADTgAAAAABXQAAAAAATgAAAAAAXQAAAAAATgAAAAACXQAAAAABTgAAAAAAXQAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAA + tiles: aAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAaAAAAAACaAAAAAAAaAAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAAAHwAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAegAAAAAAegAAAAABegAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAATgAAAAADXQAAAAADTgAAAAACXQAAAAADTgAAAAACXQAAAAACTgAAAAAAXQAAAAACegAAAAABegAAAAAAegAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAADfgAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACZAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAADTgAAAAABfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAXQAAAAADfgAAAAAAXQAAAAABegAAAAADegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAegAAAAABegAAAAADegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAATgAAAAABXQAAAAABfgAAAAAAegAAAAACegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAADTgAAAAADfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAXQAAAAABfgAAAAAAXQAAAAACegAAAAAAegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAADHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAACegAAAAABegAAAAABegAAAAADegAAAAABegAAAAABHwAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAABegAAAAADegAAAAAAegAAAAADegAAAAAAHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAACegAAAAACegAAAAADegAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAACegAAAAACegAAAAACegAAAAABHwAAAAAAHwAAAAACIwAAAAAAHwAAAAABIwAAAAACfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAACegAAAAACegAAAAABegAAAAABHwAAAAABfgAAAAAAIwAAAAAAHwAAAAAAIwAAAAACfgAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACTgAAAAABXQAAAAADTgAAAAABXQAAAAACTgAAAAABXQAAAAACTgAAAAAAXQAAAAADTgAAAAABXQAAAAADTgAAAAAAXQAAAAACTgAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACfgAAAAAATQAAAAADTQAAAAABTQAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAADegAAAAACegAAAAADegAAAAABHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAABegAAAAAAegAAAAACegAAAAADegAAAAABegAAAAAAHwAAAAABHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAACegAAAAABegAAAAABegAAAAACegAAAAACHwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAADegAAAAADegAAAAACegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAACegAAAAAAHwAAAAABHwAAAAAAIwAAAAABHwAAAAADIwAAAAACfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABHwAAAAABfgAAAAAAIwAAAAADHwAAAAADIwAAAAADfgAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACTgAAAAABXQAAAAAATgAAAAADXQAAAAABTgAAAAABXQAAAAADTgAAAAACXQAAAAAATgAAAAADXQAAAAAATgAAAAAAXQAAAAAATgAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAATQAAAAACTQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -2,2: ind: -2,2 - tiles: fgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAABTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATwAAAAAABQAAAAAAfgAAAAAATwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAAHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAACHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAA + tiles: fgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADTwAAAAAABQAAAAAAfgAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADTwAAAAAATwAAAAAAfgAAAAAATwAAAAAAHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAA version: 6 -1,3: ind: -1,3 @@ -313,7 +313,7 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: TwAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACbAAAAAAATwAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADbAAAAAAATwAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACbAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: TwAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAbAAAAAAATwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAbAAAAAAATwAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -3,2: ind: -3,2 @@ -333,23 +333,23 @@ entities: version: 6 0,2: ind: 0,2 - tiles: bAAAAAAAbAAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAXQAAAAABXQAAAAADbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA + tiles: bAAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAABbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAA version: 6 -4,3: ind: -4,3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,1: ind: -5,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 2,-5: ind: 2,-5 @@ -405,11 +405,11 @@ entities: version: 6 -6,1: ind: -6,1 - tiles: HwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,1: ind: -7,1 - tiles: QAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAIwAAAAADOAAAAAAAOAAAAAAAIwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAACOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: QAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAADIwAAAAABIwAAAAADIwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAIwAAAAACOAAAAAAAOAAAAAAAIwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAfgAAAAAAOAAAAAAAIwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAABIwAAAAACIwAAAAAAIwAAAAAAIwAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,0: ind: -6,0 @@ -417,23 +417,23 @@ entities: version: 6 -7,0: ind: -7,0 - tiles: fQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAABHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAABHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACJAAAAAACHwAAAAABHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAEQAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAA + tiles: fQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAABHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAACHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADJAAAAAACHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACEQAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -8,0: ind: -8,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADEQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABJAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAHwAAAAADEQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAACHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADHwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAACEQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAJAAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAD version: 6 -8,1: ind: -8,1 - tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAADQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAABHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACIwAAAAACIwAAAAAAIwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADIwAAAAADOAAAAAAAOAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACIwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABIwAAAAADOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACIwAAAAADIwAAAAADIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAADHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAC + tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACIwAAAAABIwAAAAAAIwAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACIwAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACIwAAAAACOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIwAAAAABOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABIwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAIwAAAAACOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADIwAAAAAAIwAAAAACIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAD version: 6 -8,2: ind: -8,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,2: ind: -7,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAABHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-1: ind: -7,-1 @@ -445,7 +445,7 @@ entities: version: 6 -5,3: ind: -5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,2: ind: -5,2 @@ -465,11 +465,11 @@ entities: version: 6 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 - tiles: XQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAABXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 @@ -477,11 +477,11 @@ entities: version: 6 2,3: ind: 2,3 - tiles: fgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 - tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -501,6 +501,334 @@ entities: chunkCollection: version: 2 nodes: + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + decals: + 55: -7,-24 + 56: 11,-29 + 58: 13,-28 + 59: 16,-38 + 60: 21,-38 + 61: 37,-22 + 62: 44,-37 + 63: 44,-38 + 67: 30,-12 + 68: 31,-12 + 69: 33,-12 + 70: -45,9 + 71: -44,9 + 72: -45,8 + 79: -7,9 + 81: 17,12 + 82: 16,13 + 83: 17,14 + 84: 15,16 + 85: 11,11 + 89: 11,15 + 91: 1,-42 + 92: 1,-35 + 93: 15,-17 + 94: 13,-17 + 95: 17,-9 + 98: -37,0 + 100: -17,-1 + 101: -17,-2 + 102: -15,-12 + 103: -1,-24 + 104: 0,-28 + 106: 19,-30 + 107: 19,-13 + 108: 20,-11 + 111: -1,-31 + 119: -11,-43 + 120: -13,-43 + 121: -10,-43 + 122: -9,-43 + 123: -7,-43 + 124: -6,-42 + 125: -15,-40 + 135: -47,-33 + 136: -45,-35 + 137: -50,-30 + 152: -38,-13 + 153: -38,-14 + 154: -38,-18 + 155: -39,-19 + 283: -23,-12 + 359: 11,-21 + 360: 12,-21 + 374: 16,-9 + 409: -26,31 + 410: -27,30 + 411: -23,31 + 412: -23,29 + 413: -21,29 + 414: -18,29 + 415: -22,27 + 416: -24,30 + 417: -29,31 + 448: -16,12 + 449: -16,23 + 450: -23,24 + 451: -39,24 + 452: -42,22 + 453: -43,21 + 460: -58,20 + 461: -59,18 + 462: -60,17 + 463: -59,25 + 464: -60,24 + 465: -56,24 + 466: -57,20 + 511: -38,8 + 512: -38,6 + 514: -39,12 + 585: 47,-1 + 586: 48,-2 + 587: 49,-2 + 588: 51,1 + 589: 50,1 + 591: 48,2 + 592: 47,0 + 597: 55,12 + 598: 54,11 + 599: 53,11 + 600: 55,13 + 601: 55,9 + 602: 49,14 + 603: 50,13 + 607: 37,4 + 608: 36,5 + 675: -22,25 + 676: -17,18 + 677: -37,4 + 683: -16,-5 + 691: -16,7 + 693: -16,4 + 694: -15,9 + 695: -16,0 + 828: -9,-25 + 829: -8,-25 + 830: -8,-25 + 835: -4,-24 + 836: -1,-25 + 895: -6,-23 + 896: -25,-23 + 898: -37,-24 + 1068: -10,-55 + 1069: -14,-56 + 1070: -19,-55 + 1071: -7,-54 + 1072: -2,-54 + 1073: -3,-57 + 1074: 2,-59 + 1075: -3,-64 + 1076: 0,-61 + 1077: -3,-66 + 1078: -3,-71 + 1079: -1,-73 + 1080: 2,-71 + 1081: 1,-55 + 1082: -1,-47 + 1083: 0,-45 + 1153: 15,25 + 1154: 16,27 + 1156: 38,24 + 1163: 41,20 + 1164: 52,14 + 1165: 48,18 + 1166: 49,16 + 1167: 45,7 + 1168: 20,8 + 1169: 32,7 + 1170: 34,8 + 1171: 16,8 + 1172: 5,8 + 1173: -7,9 + 1174: -8,8 + 1216: 7,-24 + 1218: 18,-28 + 1219: 21,-35 + 1220: 19,-34 + 1629: -38,9 + 1630: -39,8 + 1631: -39,7 + 1632: -39,-1 + 1641: -8,-14 + 1642: -9,-13 + 1657: -9,-16 + 1658: -8,-16 + 1659: -8,-16 + 1981: -39,-12 + 1983: -40,-7 + 1986: -39,-9 + 1987: -39,-3 + 1988: -39,3 + 2218: 1,13 + 2219: 0,14 + 2220: 0,15 + 2221: 0,15 + 2222: 1,15 + 2223: 3,14 + 2224: 5,15 + 2225: 7,13 + 2226: 9,14 + 2227: 11,12 + 2228: 11,14 + 2229: 5,17 + 2230: 4,17 + 2231: 4,18 + 2232: -4,17 + 2233: -4,19 + 2234: -3,20 + 2235: -2,17 + 2272: 3,19 + 2273: 4,20 + 2275: -4,21 + 2276: -3,22 + 2278: -2,21 + 2279: -2,20 + 2281: -5,28 + 2283: -11,28 + 2284: -12,29 + 2285: -13,30 + 2286: -13,31 + 2287: -12,32 + 2288: -22,31 + 2289: -30,30 + 2292: 51,-38 + 2293: 51,-38 + 2302: 49,-39 + 2418: -52,-35 + 2419: -52,-35 + 2420: -52,-32 + 2421: -49,-31 + 2422: -49,-31 + 2423: -48,-32 + 2424: -48,-32 + 2425: -45,-33 + 2426: -45,-33 + 2427: -45,-33 + 2428: -46,-32 + 2429: -46,-32 + 2430: -46,-32 + 2528: 28,21 + 2529: 31,18 + 2530: 31,12 + 2531: 27,12 + 2895: 44,9 + 2896: 46,8 + 2897: 44,10 + 2898: 45,12 + 3069: 37,1 + 3070: 37,-1 + 3071: 38,0 + 3072: 36,0 + 3073: 36,-1 + 3074: 40,0 + 3109: 46,-1 + 3110: 46,1 + 3111: 47,2 + 3112: 48,1 + 3115: 46,2 + 3116: 40,2 + 3128: 49,6 + 3129: 48,7 + 3132: 41,8 + 3133: 40,9 + 3134: 39,8 + 3135: 41,13 + 3136: 41,15 + 3137: 40,16 + 3138: 56,7 + 3139: 41,1 + 3140: 41,0 + 3141: 42,2 + 3142: 40,-1 + 3153: 56,12 + 3154: 54,15 + 3155: 49,17 + 3156: 55,7 + 3157: 49,9 + 3158: 50,11 + 3159: 37,7 + 3486: 43,-19 + 3487: 43,-23 + 3488: 41,-24 + 3573: 35,-23 + 3574: 34,-25 + 3576: 33,-22 + 3729: -33,8 + 3730: -34,9 + 3731: -35,8 + 3732: -35,7 + 3733: -37,8 + 4407: 33,23 + 4408: 34,23 + 4409: 37,23 + 4410: 38,25 + 4411: 37,25 + 4412: 19,25 + 4413: 20,25 + 4414: 19,23 + 4415: 24,25 + 4417: 28,23 + 4418: 29,24 + 4419: 27,23 + 4420: 33,27 + 4421: 33,28 + 4423: 35,33 + 4424: 33,38 + 4425: 35,40 + 4426: 35,44 + 4427: 35,45 + 4428: 33,46 + 4429: 53,44 + 4430: 53,45 + 4431: 55,46 + 4432: 53,48 + 4433: 55,41 + 4434: 53,41 + 4435: 53,40 + 4436: 54,39 + 4437: 54,38 + 4438: 53,35 + 4439: 53,34 + 4440: 53,28 + 4441: 55,30 + 4442: 55,25 + 4443: 56,25 + 4444: 57,24 + 4445: 55,20 + 4446: 54,20 + 4447: 49,20 + 4448: 51,25 + 4449: 50,24 + 4452: 50,25 + 4453: 48,25 + 4454: 48,24 + 4455: 47,25 + 4456: 46,25 + 4632: -28,-20 + 4634: -27,-20 + 4636: -30,-15 + 4637: -29,-16 + 4638: -24,-15 + 4639: -23,-8 + 4640: -23,-7 + 4641: -24,-5 + 4642: -31,-7 + 4643: -19,-20 + 4660: 16,-15 + 4661: 17,-14 + 4662: 17,-13 + 4663: 17,-17 + 4664: 16,-16 + 4665: 16,-18 + 4666: 16,-12 + 4667: 15,-21 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -533,7 +861,6 @@ entities: 3288: -40,42 3289: -40,44 3291: -36,30 - 3690: -39,-8 3736: 8,43 3737: 8,51 4104: 54,9 @@ -631,14 +958,12 @@ entities: 147: 6,-26 184: -2,-45 185: 12,11 - 358: -37,1 400: -27,35 401: -28,35 402: -29,35 403: -29,36 404: -28,36 405: -27,36 - 502: -15,-10 503: -32,26 566: 22,18 567: 22,19 @@ -651,7 +976,6 @@ entities: 731: -119,17 732: -98,17 1041: -4,-69 - 1066: -26,2 1221: -52,13 1222: -50,13 1264: -58,-4 @@ -669,7 +993,6 @@ entities: 1486: 30,-23 1516: -48,16 1517: -47,17 - 1691: -25,-6 1800: -19,27 1817: -27,32 1818: -28,32 @@ -683,7 +1006,6 @@ entities: 1997: -42,-8 2007: -57,7 2009: -44,-4 - 2057: -40,-20 2139: -11,32 2140: -13,32 2213: 3,15 @@ -695,8 +1017,6 @@ entities: 2323: 19,-21 2339: 2,-1 2345: 3,-8 - 2349: -20,5 - 2350: -19,5 2363: -42,19 2364: -42,20 2365: 30,9 @@ -704,7 +1024,6 @@ entities: 2513: 20,16 2514: 19,16 2749: 4,-35 - 2777: -31,-19 2778: -6,-27 2779: 3,-28 2818: 45,-27 @@ -735,6 +1054,12 @@ entities: 4869: -31,19 4870: -31,20 4871: -31,21 + 5045: -40,-8 + 5065: -14,-2 + 5094: -19,5 + 5095: -20,5 + 5096: -25,5 + 5227: -25,-12 - node: cleanable: True color: '#FFFFFFFF' @@ -765,11 +1090,6 @@ entities: id: BotGreyscale decals: 4186: 43,3 - - node: - color: '#DE3A3AFF' - id: BotLeft - decals: - 2775: -33,-21 - node: color: '#FFFFFFFF' id: BotLeft @@ -790,19 +1110,15 @@ entities: 3673: 50,-11 3841: 4,-47 3897: 5,-47 + 5047: -30,-21 + 5069: -26,1 + 5077: -25,-2 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: 2385: 39,-6 - - node: - color: '#DE3A3AFF' - id: BotRight - decals: - 2772: -35,-17 - 2773: -35,-18 - 2774: -35,-19 - 2776: -35,-20 + 5078: -25,-1 - node: color: '#FFFFFFFF' id: BotRight @@ -817,8 +1133,9 @@ entities: 2748: 4,-36 3205: 6,-37 3300: -15,46 - 3344: -35,5 - 3872: -28,2 + 5048: -24,-21 + 5070: -28,1 + 5225: -29,-12 - node: color: '#FF8FC9FF' id: BotRightGreyscale @@ -828,39 +1145,22 @@ entities: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 3759: -29,-1 - 3760: -29,0 - 3761: -29,1 3774: 7,34 3775: 7,35 3776: 7,36 3777: 8,36 3778: 8,34 3779: 8,35 - - node: - color: '#79150096' - id: Box - decals: - 1888: -24,-12 - 1889: -24,-13 - - node: - color: '#9FED5896' - id: Box - decals: - 1887: -30,-8 - - node: - color: '#EFB341FF' - id: Box - decals: - 1885: -30,-13 + 5067: -29,-1 + 5068: -29,0 + 5083: -29,-2 + 5226: -29,-13 - node: color: '#FFFFFFFF' id: Box decals: 1593: 38,6 1594: 38,10 - 2012: -26,0 - 2013: -28,0 3842: 5,-45 3843: 4,-45 4874: 1,25 @@ -869,11 +1169,8 @@ entities: 4877: 1,23 4879: -1,23 4880: 0,23 - - node: - color: '#52B4E996' - id: BoxGreyscale - decals: - 1886: -30,-12 + 5079: -28,-1 + 5080: -26,-1 - node: color: '#DE3A3A96' id: BoxGreyscale @@ -1019,16 +1316,12 @@ entities: color: '#52B4E996' id: BrickTileSteelCornerNe decals: - 1878: -34,-10 - 2025: -20,-5 - 2026: -20,-5 3681: 51,-22 - node: color: '#9FED5896' id: BrickTileSteelCornerNe decals: 1529: -3,-26 - 1875: -34,-7 - node: color: '#D381C996' id: BrickTileSteelCornerNe @@ -1038,20 +1331,10 @@ entities: 1907: -45,0 1942: -42,-4 1989: -40,12 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerNe - decals: - 1717: -19,-16 - 1865: -19,-10 - 1866: -19,-13 - node: color: '#52B4E996' id: BrickTileSteelCornerNw decals: - 1877: -35,-10 - 2027: -19,-5 - 2028: -19,-5 3675: 47,-22 - node: color: '#9FED5896' @@ -1059,7 +1342,6 @@ entities: decals: 1531: -5,-26 1532: -8,-27 - 1876: -35,-7 - node: color: '#D381C996' id: BrickTileSteelCornerNw @@ -1068,26 +1350,11 @@ entities: 1938: -46,-4 1990: -43,12 3968: -57,14 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerNw - decals: - 1718: -21,-16 - 1867: -20,-10 - 1868: -20,-13 - node: color: '#52B4E996' id: BrickTileSteelCornerSe decals: - 1880: -34,-11 - 2031: -20,-4 - 2032: -20,-4 3679: 51,-24 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerSe - decals: - 1873: -34,-8 - node: color: '#D381C996' id: BrickTileSteelCornerSe @@ -1098,26 +1365,11 @@ entities: 1945: -42,-9 1992: -40,11 2011: -44,-11 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerSe - decals: - 1720: -19,-17 - 1871: -19,-14 - 1872: -19,-11 - node: color: '#52B4E996' id: BrickTileSteelCornerSw decals: - 1879: -35,-11 - 2029: -19,-4 - 2030: -19,-4 3680: 47,-24 - - node: - color: '#9FED5896' - id: BrickTileSteelCornerSw - decals: - 1874: -35,-8 - node: color: '#D381C996' id: BrickTileSteelCornerSw @@ -1129,13 +1381,6 @@ entities: 1932: -46,-11 1991: -43,11 3966: -57,11 - - node: - color: '#DE3A3A96' - id: BrickTileSteelCornerSw - decals: - 1719: -21,-17 - 1869: -20,-14 - 1870: -20,-11 - node: color: '#D381C996' id: BrickTileSteelInnerNe @@ -1280,7 +1525,6 @@ entities: 1643: -8,-18 1644: -9,-18 1650: -6,-18 - 1721: -20,-16 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -1327,7 +1571,6 @@ entities: 1645: -6,-19 1646: -7,-19 1647: -8,-19 - 1722: -20,-17 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1433,6 +1676,12 @@ entities: decals: 2719: 8,-28 2740: 5,-39 + 5005: -34,-10 + - node: + color: '#43990996' + id: BrickTileWhiteCornerNe + decals: + 5000: -34,-6 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe @@ -1446,18 +1695,18 @@ entities: id: BrickTileWhiteCornerNe decals: 2042: -41,-20 - 3345: -33,4 - 3347: -31,1 - node: - color: '#DE3A3A96' + color: '#8C347F96' id: BrickTileWhiteCornerNe decals: - 1698: -24,-19 + 5017: -19,-10 - node: - color: '#EFB34141' + color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 1881: -34,-13 + 5211: -26,-9 + 5217: -25,-11 + 5244: -22,-4 - node: color: '#EFD54193' id: BrickTileWhiteCornerNe @@ -1474,12 +1723,23 @@ entities: id: BrickTileWhiteCornerNe decals: 1827: -15,29 + - node: + color: '#EFE54193' + id: BrickTileWhiteCornerNe + decals: + 5010: -19,-6 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: 2720: 3,-28 2739: 3,-39 + 5006: -35,-10 + - node: + color: '#43990996' + id: BrickTileWhiteCornerNw + decals: + 4999: -35,-6 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw @@ -1493,22 +1753,23 @@ entities: id: BrickTileWhiteCornerNw decals: 2043: -47,-20 - 3346: -35,4 - node: - color: '#D381C996' + color: '#8C347F96' id: BrickTileWhiteCornerNw decals: - 1229: -47,16 + 5018: -20,-10 - node: - color: '#DE3A3A96' + color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 1697: -31,-19 + 1229: -47,16 - node: - color: '#EFB34141' + color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 1882: -35,-13 + 5210: -28,-9 + 5218: -29,-11 + 5253: -32,-4 - node: color: '#EFCC4196' id: BrickTileWhiteCornerNw @@ -1525,6 +1786,11 @@ entities: decals: 1791: -23,32 1811: -31,32 + - node: + color: '#EFE54193' + id: BrickTileWhiteCornerNw + decals: + 5009: -20,-6 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw @@ -1538,6 +1804,12 @@ entities: 2726: 5,-33 2732: 8,-30 2736: 5,-40 + 5008: -34,-12 + - node: + color: '#43990996' + id: BrickTileWhiteCornerSe + decals: + 4998: -34,-8 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe @@ -1550,17 +1822,17 @@ entities: id: BrickTileWhiteCornerSe decals: 2044: -41,-22 - 3348: -31,-1 - node: - color: '#DE3A3A96' + color: '#8C347F96' id: BrickTileWhiteCornerSe decals: - 1699: -24,-21 + 5020: -19,-12 - node: - color: '#EFB34141' + color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 1883: -34,-14 + 5220: -25,-13 + 5282: -31,-17 - node: color: '#EFD54193' id: BrickTileWhiteCornerSe @@ -1571,6 +1843,11 @@ entities: id: BrickTileWhiteCornerSe decals: 1788: -15,27 + - node: + color: '#EFE54193' + id: BrickTileWhiteCornerSe + decals: + 5012: -19,-8 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe @@ -1582,6 +1859,12 @@ entities: decals: 2724: 3,-33 2738: 3,-40 + 5007: -35,-12 + - node: + color: '#43990996' + id: BrickTileWhiteCornerSw + decals: + 4997: -35,-8 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw @@ -1595,17 +1878,17 @@ entities: id: BrickTileWhiteCornerSw decals: 2045: -47,-22 - 3349: -35,-1 - node: - color: '#DE3A3A96' + color: '#8C347F96' id: BrickTileWhiteCornerSw decals: - 1700: -31,-21 + 5019: -20,-12 - node: - color: '#EFB34141' + color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 1884: -35,-14 + 5219: -29,-13 + 5275: -23,-17 - node: color: '#EFCC4196' id: BrickTileWhiteCornerSw @@ -1623,23 +1906,22 @@ entities: decals: 1793: -23,28 1797: -19,27 + - node: + color: '#EFE54193' + id: BrickTileWhiteCornerSw + decals: + 5011: -20,-8 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: 816: 19,11 3365: -4,-11 - - node: - color: '#79150096' - id: BrickTileWhiteInnerNe - decals: - 3354: -33,1 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 1695: -29,-14 - 1738: -22,-23 + 5216: -26,-11 - node: zIndex: 5 color: '#EFCC4193' @@ -1660,10 +1942,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 1686: -31,-6 - 1696: -25,-14 - 1736: -18,-23 - 1737: -17,-22 + 5215: -28,-11 - node: color: '#EFCC4196' id: BrickTileWhiteInnerNw @@ -1674,12 +1953,6 @@ entities: id: BrickTileWhiteInnerSe decals: 2729: 5,-30 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSe - decals: - 1690: -29,-6 - 1862: -31,-17 - node: zIndex: 5 color: '#EFCC4193' @@ -1696,11 +1969,6 @@ entities: id: BrickTileWhiteInnerSw decals: 3670: 48,-11 - - node: - color: '#DE3A3A96' - id: BrickTileWhiteInnerSw - decals: - 1689: -25,-6 - node: color: '#EFCC4193' id: BrickTileWhiteInnerSw @@ -1723,6 +1991,12 @@ entities: 2727: 5,-32 2728: 5,-31 2733: 8,-29 + 5004: -34,-11 + - node: + color: '#43990996' + id: BrickTileWhiteLineE + decals: + 5001: -34,-7 - node: color: '#52B4E996' id: BrickTileWhiteLineE @@ -1745,23 +2019,26 @@ entities: 3664: 49,-12 3665: 49,-11 - node: - color: '#79150096' + color: '#8C347F96' id: BrickTileWhiteLineE decals: - 3353: -31,0 - 3360: -33,3 - 3361: -33,2 + 5015: -19,-11 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 851: -33,-21 - 852: -33,-19 - 853: -33,-18 - 854: -33,-16 - 1671: -22,-6 - 1672: -22,-5 - 1711: -24,-20 + 5214: -26,-10 + 5223: -25,-12 + 5236: -22,-12 + 5237: -22,-11 + 5238: -22,-10 + 5239: -22,-9 + 5240: -22,-8 + 5241: -22,-7 + 5242: -22,-6 + 5243: -22,-5 + 5280: -31,-14 + 5281: -31,-15 - node: color: '#EFCC4193' id: BrickTileWhiteLineE @@ -1790,6 +2067,11 @@ entities: id: BrickTileWhiteLineE decals: 1834: -21,30 + - node: + color: '#EFE54193' + id: BrickTileWhiteLineE + decals: + 5014: -19,-7 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE @@ -1811,6 +2093,9 @@ entities: id: BrickTileWhiteLineN decals: 3666: 48,-10 + 5305: -21,-15 + 5306: -20,-15 + 5307: -19,-15 - node: color: '#79150096' id: BrickTileWhiteLineN @@ -1819,8 +2104,6 @@ entities: 2039: -43,-20 2040: -45,-20 2041: -46,-20 - 3359: -34,4 - 3362: -32,1 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -1830,23 +2113,15 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 1675: -23,-3 - 1676: -24,-3 - 1677: -25,-3 - 1678: -26,-3 - 1679: -28,-3 - 1680: -29,-3 - 1681: -30,-3 - 1692: -26,-14 - 1693: -27,-14 - 1694: -28,-14 - 1708: -27,-19 - 1709: -29,-19 - 1710: -30,-19 - 1730: -19,-23 - 1731: -20,-23 - 1732: -21,-23 - 4627: -25,-19 + 5212: -27,-9 + 5245: -23,-4 + 5246: -24,-4 + 5247: -25,-4 + 5248: -26,-4 + 5249: -28,-4 + 5250: -29,-4 + 5251: -30,-4 + 5252: -31,-4 - node: color: '#EFB3414A' id: BrickTileWhiteLineN @@ -1923,9 +2198,6 @@ entities: 2035: -44,-22 2036: -45,-22 2037: -46,-22 - 3350: -34,-1 - 3351: -33,-1 - 3352: -32,-1 - node: color: '#D381C925' id: BrickTileWhiteLineS @@ -1935,20 +2207,13 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 1687: -26,-6 - 1688: -28,-6 - 1701: -30,-21 - 1702: -29,-21 - 1703: -28,-21 - 1704: -27,-21 - 1705: -26,-21 - 1706: -25,-21 - 1856: -23,-17 - 1857: -24,-17 - 1858: -25,-17 - 1859: -27,-17 - 1860: -29,-17 - 1861: -30,-17 + 5221: -28,-13 + 5222: -26,-13 + 5273: -20,-17 + 5274: -22,-17 + 5283: -32,-17 + 5284: -33,-17 + 5285: -35,-17 - node: zIndex: 5 color: '#EFCC4193' @@ -2003,6 +2268,12 @@ entities: 2721: 3,-29 2722: 3,-31 2723: 3,-32 + 5003: -35,-11 + - node: + color: '#43990996' + id: BrickTileWhiteLineW + decals: + 5002: -35,-7 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -2022,13 +2293,10 @@ entities: 3668: 48,-13 3669: 48,-14 - node: - color: '#79150096' + color: '#8C347F96' id: BrickTileWhiteLineW decals: - 3355: -35,0 - 3356: -35,1 - 3357: -35,2 - 3358: -35,3 + 5016: -20,-11 - node: color: '#D381C996' id: BrickTileWhiteLineW @@ -2038,18 +2306,18 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 845: -35,-21 - 846: -35,-20 - 847: -35,-19 - 848: -35,-18 - 849: -35,-17 - 850: -35,-16 - 1685: -31,-5 - 1733: -17,-21 - 1734: -17,-20 - 1735: -17,-19 - 1853: -21,-20 - 1854: -21,-22 + 5213: -28,-10 + 5224: -29,-12 + 5254: -32,-5 + 5255: -32,-6 + 5256: -32,-7 + 5257: -32,-8 + 5258: -32,-9 + 5259: -32,-10 + 5260: -32,-11 + 5261: -32,-12 + 5276: -23,-15 + 5277: -23,-14 - node: color: '#EFCC4196' id: BrickTileWhiteLineW @@ -2072,6 +2340,11 @@ entities: id: BrickTileWhiteLineW decals: 1792: -23,29 + - node: + color: '#EFE54193' + id: BrickTileWhiteLineW + decals: + 5013: -20,-7 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -2175,31 +2448,20 @@ entities: color: '#FFFFFFFF' id: Caution decals: - 1067: -27,-1 1662: -9,-21 3839: -26,32 + 5081: -27,-2 - node: color: '#DE3A3A96' id: CautionGreyscale decals: 1664: -7,-18 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 1342: -20,-8 - 1343: -20,-7 - 1344: -19,-7 - 1345: -19,-8 - node: color: '#D4D4D428' id: CheckerNESW decals: 156: 2,-46 157: 2,-45 - 159: -37,-5 - 160: -37,-4 - 161: -37,-3 - node: color: '#D4D4D453' id: CheckerNESW @@ -2396,19 +2658,6 @@ entities: 339: -56,9 340: -55,9 341: -54,9 - - node: - color: '#D4D4D406' - id: CheckerNWSE - decals: - 2386: -33,-4 - 2387: -33,-3 - 2388: -34,-3 - 2389: -35,-3 - 2390: -35,-4 - 2391: -34,-4 - 2392: -35,-5 - 2393: -34,-5 - 2394: -33,-5 - node: color: '#D4D4D428' id: CheckerNWSE @@ -2440,6 +2689,14 @@ entities: decals: 1824: -16,30 1825: -17,30 + 5097: -23,-20 + 5098: -24,-20 + 5099: -24,-19 + 5100: -23,-19 + 5101: -31,-20 + 5102: -30,-20 + 5103: -30,-19 + 5104: -31,-19 - node: color: '#EFB34196' id: CheckerNWSE @@ -2478,14 +2735,22 @@ entities: 2761: -58,26 2762: -59,26 2763: -60,27 + - node: + color: '#9FED5896' + id: Delivery + decals: + 5038: -30,-8 - node: color: '#DE3A3A96' id: Delivery decals: - 2902: -32,-20 - 3363: -32,2 - 3364: -31,2 3674: 51,-21 + 5027: -29,-19 + 5028: -29,-18 + 5029: -29,-17 + 5030: -25,-19 + 5031: -25,-18 + 5032: -25,-17 - node: color: '#FFFFFFFF' id: Delivery @@ -2564,6 +2829,25 @@ entities: 4575: 46,0 4576: 46,1 4873: -31,18 + 4984: -17,6 + 4985: -16,6 + 4986: -15,6 + 4991: -17,-22 + 4992: -16,-22 + 4993: -15,-22 + 5040: -24,-8 + 5107: -20,-21 + 5108: -20,-20 + 5109: -20,-19 + 5110: -35,-20 + 5111: -34,-20 + 5112: -34,-19 + 5125: -36,-20 + 5126: -34,-18 + 5127: -21,-18 + 5128: -19,-18 + 5129: -19,-22 + 5130: -21,-22 - node: cleanable: True color: '#FFFFFFFF' @@ -2577,6 +2861,12 @@ entities: decals: 3460: 31,-20 3461: 31,-18 + 5039: -30,-9 + - node: + color: '#C74EBDD6' + id: DeliveryGreyscale + decals: + 5042: -24,-9 - node: color: '#D381C941' id: DeliveryGreyscale @@ -2621,6 +2911,13 @@ entities: 52: 18,-51 53: 17,-51 54: 17,-51 + 126: -15,-43 + 127: -16,-43 + 128: -14,-43 + 129: -16,-41 + 130: -16,-42 + 131: -15,-40 + 132: -12,-42 2431: -45,-32 2432: -46,-32 2433: -46,-33 @@ -2798,26 +3095,21 @@ entities: 3862: -9,-12 3863: -11,-12 3864: -10,-12 - 126: -15,-43 - 127: -16,-43 - 128: -14,-43 - 129: -16,-41 - 130: -16,-42 - 131: -15,-40 - 132: -12,-42 - node: cleanable: True zIndex: 1 color: '#FFFFFFFF' id: DirtHeavy decals: - 36: 0,-3 37: 2,-2 - 3062: 37,-2 - 3063: 37,2 64: 53,-38 65: 60,-28 86: 13,11 + 112: -16,-43 + 113: -14,-43 + 114: -14,-44 + 115: -16,-42 + 116: -16,-40 133: -51,-30 149: -39,-14 455: -59,19 @@ -2850,17 +3142,14 @@ entities: 2764: -59,26 2765: -60,26 2894: 45,9 + 3062: 37,-2 + 3063: 37,2 3279: -59,20 3280: -59,22 3281: -59,22 3811: -12,-16 3813: -12,-15 3854: -13,-16 - 112: -16,-43 - 113: -14,-43 - 114: -14,-44 - 115: -16,-42 - 116: -16,-40 - node: cleanable: True zIndex: 1 @@ -2874,361 +3163,14 @@ entities: 3494: 8,14 3855: -11,-17 3856: -11,-14 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - decals: - 283: -23,-12 - 284: -32,-11 - 511: -38,8 - 512: -38,6 - 513: -38,5 - 514: -39,12 - 858: -33,-20 - 859: -33,-17 - 860: -32,-20 - 3069: 37,1 - 3070: 37,-1 - 3071: 38,0 - 3072: 36,0 - 3073: 36,-1 - 3074: 40,0 - 55: -7,-24 - 56: 11,-29 - 58: 13,-28 - 59: 16,-38 - 60: 21,-38 - 61: 37,-22 - 62: 44,-37 - 63: 44,-38 - 67: 30,-12 - 68: 31,-12 - 69: 33,-12 - 70: -45,9 - 71: -44,9 - 72: -45,8 - 79: -7,9 - 81: 17,12 - 82: 16,13 - 83: 17,14 - 84: 15,16 - 85: 11,11 - 89: 11,15 - 91: 1,-42 - 92: 1,-35 - 93: 15,-17 - 94: 13,-17 - 95: 17,-9 - 98: -37,0 - 100: -17,-1 - 101: -17,-2 - 102: -15,-12 - 103: -1,-24 - 104: 0,-28 - 106: 19,-30 - 135: -47,-33 - 136: -45,-35 - 137: -50,-30 - 152: -38,-13 - 153: -38,-14 - 154: -38,-18 - 155: -39,-19 - 359: 11,-21 - 360: 12,-21 - 374: 16,-9 - 409: -26,31 - 410: -27,30 - 411: -23,31 - 412: -23,29 - 413: -21,29 - 414: -18,29 - 415: -22,27 - 416: -24,30 - 417: -29,31 - 448: -16,12 - 449: -16,23 - 450: -23,24 - 451: -39,24 - 452: -42,22 - 453: -43,21 - 460: -58,20 - 461: -59,18 - 462: -60,17 - 463: -59,25 - 464: -60,24 - 465: -56,24 - 466: -57,20 - 585: 47,-1 - 586: 48,-2 - 587: 49,-2 - 588: 51,1 - 589: 50,1 - 591: 48,2 - 592: 47,0 - 597: 55,12 - 598: 54,11 - 599: 53,11 - 600: 55,13 - 601: 55,9 - 602: 49,14 - 603: 50,13 - 607: 37,4 - 608: 36,5 - 675: -22,25 - 676: -17,18 - 677: -37,4 - 678: -37,-11 - 679: -37,-15 - 681: -17,-14 - 682: -17,-7 - 683: -16,-5 - 691: -16,7 - 693: -16,4 - 694: -15,9 - 695: -16,0 - 828: -9,-25 - 829: -8,-25 - 830: -8,-25 - 835: -4,-24 - 836: -1,-25 - 895: -6,-23 - 896: -25,-23 - 897: -34,-23 - 898: -37,-24 - 1068: -10,-55 - 1069: -14,-56 - 1070: -19,-55 - 1071: -7,-54 - 1072: -2,-54 - 1073: -3,-57 - 1074: 2,-59 - 1075: -3,-64 - 1076: 0,-61 - 1077: -3,-66 - 1078: -3,-71 - 1079: -1,-73 - 1080: 2,-71 - 1081: 1,-55 - 1082: -1,-47 - 1083: 0,-45 - 1153: 15,25 - 1154: 16,27 - 1156: 38,24 - 1163: 41,20 - 1164: 52,14 - 1165: 48,18 - 1166: 49,16 - 1167: 45,7 - 1168: 20,8 - 1169: 32,7 - 1170: 34,8 - 1171: 16,8 - 1172: 5,8 - 1173: -7,9 - 1174: -8,8 - 1216: 7,-24 - 1218: 18,-28 - 1219: 21,-35 - 1220: 19,-34 - 1629: -38,9 - 1630: -39,8 - 1631: -39,7 - 1632: -39,-1 - 1641: -8,-14 - 1642: -9,-13 - 1657: -9,-16 - 1658: -8,-16 - 1659: -8,-16 - 1981: -39,-12 - 1982: -39,-8 - 1983: -40,-7 - 1984: -39,-8 - 1986: -39,-9 - 1987: -39,-3 - 1988: -39,3 - 2218: 1,13 - 2219: 0,14 - 2220: 0,15 - 2221: 0,15 - 2222: 1,15 - 2223: 3,14 - 2224: 5,15 - 2225: 7,13 - 2226: 9,14 - 2227: 11,12 - 2228: 11,14 - 2229: 5,17 - 2230: 4,17 - 2231: 4,18 - 2232: -4,17 - 2233: -4,19 - 2234: -3,20 - 2235: -2,17 - 2272: 3,19 - 2273: 4,20 - 2275: -4,21 - 2276: -3,22 - 2278: -2,21 - 2279: -2,20 - 2281: -5,28 - 2283: -11,28 - 2284: -12,29 - 2285: -13,30 - 2286: -13,31 - 2287: -12,32 - 2288: -22,31 - 2289: -30,30 - 2292: 51,-38 - 2293: 51,-38 - 2302: 49,-39 - 2418: -52,-35 - 2419: -52,-35 - 2420: -52,-32 - 2421: -49,-31 - 2422: -49,-31 - 2423: -48,-32 - 2424: -48,-32 - 2425: -45,-33 - 2426: -45,-33 - 2427: -45,-33 - 2428: -46,-32 - 2429: -46,-32 - 2430: -46,-32 - 2528: 28,21 - 2529: 31,18 - 2530: 31,12 - 2531: 27,12 - 2895: 44,9 - 2896: 46,8 - 2897: 44,10 - 2898: 45,12 - 3109: 46,-1 - 3110: 46,1 - 3111: 47,2 - 3112: 48,1 - 3115: 46,2 - 3116: 40,2 - 3128: 49,6 - 3129: 48,7 - 3132: 41,8 - 3133: 40,9 - 3134: 39,8 - 3135: 41,13 - 3136: 41,15 - 3137: 40,16 - 3138: 56,7 - 3139: 41,1 - 3140: 41,0 - 3141: 42,2 - 3142: 40,-1 - 3153: 56,12 - 3154: 54,15 - 3155: 49,17 - 3156: 55,7 - 3157: 49,9 - 3158: 50,11 - 3159: 37,7 - 3486: 43,-19 - 3487: 43,-23 - 3488: 41,-24 - 3573: 35,-23 - 3574: 34,-25 - 3576: 33,-22 - 3729: -33,8 - 3730: -34,9 - 3731: -35,8 - 3732: -35,7 - 3733: -37,8 - 4407: 33,23 - 4408: 34,23 - 4409: 37,23 - 4410: 38,25 - 4411: 37,25 - 4412: 19,25 - 4413: 20,25 - 4414: 19,23 - 4415: 24,25 - 4417: 28,23 - 4418: 29,24 - 4419: 27,23 - 4420: 33,27 - 4421: 33,28 - 4423: 35,33 - 4424: 33,38 - 4425: 35,40 - 4426: 35,44 - 4427: 35,45 - 4428: 33,46 - 4429: 53,44 - 4430: 53,45 - 4431: 55,46 - 4432: 53,48 - 4433: 55,41 - 4434: 53,41 - 4435: 53,40 - 4436: 54,39 - 4437: 54,38 - 4438: 53,35 - 4439: 53,34 - 4440: 53,28 - 4441: 55,30 - 4442: 55,25 - 4443: 56,25 - 4444: 57,24 - 4445: 55,20 - 4446: 54,20 - 4447: 49,20 - 4448: 51,25 - 4449: 50,24 - 4452: 50,25 - 4453: 48,25 - 4454: 48,24 - 4455: 47,25 - 4456: 46,25 - 4628: -24,-19 - 4631: -27,-19 - 4632: -28,-20 - 4633: -29,-19 - 4634: -27,-20 - 4635: -30,-20 - 4636: -30,-15 - 4637: -29,-16 - 4638: -24,-15 - 4639: -23,-8 - 4640: -23,-7 - 4641: -24,-5 - 4642: -31,-7 - 4643: -19,-20 - 4644: -21,-19 - 4660: 16,-15 - 4661: 17,-14 - 4662: 17,-13 - 4663: 17,-17 - 4664: 16,-16 - 4665: 16,-18 - 4666: 16,-12 - 4667: 15,-21 - 107: 19,-13 - 108: 20,-11 - 111: -1,-31 - 119: -11,-43 - 120: -13,-43 - 121: -10,-43 - 122: -9,-43 - 123: -7,-43 - 124: -6,-42 - 125: -15,-40 - node: cleanable: True zIndex: 1 color: '#FFFFFFFF' id: DirtLight decals: - 31: -2,-3 + 31: 50,-33 38: 3,-2 - 39: 4,-2 - 40: -1,-3 41: 11,-4 - node: cleanable: True @@ -3236,21 +3178,12 @@ entities: color: '#FFFFFFFF' id: DirtMedium decals: - 32: -2,-4 - 33: -3,-4 + 32: 52,-33 + 33: 51,-33 34: -6,-3 - 35: -4,-4 42: 11,-3 43: 5,-3 44: -4,-3 - 508: -38,7 - 509: -39,10 - 510: -39,11 - 3064: 36,-2 - 3065: 38,-2 - 3066: 36,2 - 3067: 38,2 - 3068: 37,1 57: 11,-28 66: 35,-12 78: -7,10 @@ -3258,7 +3191,8 @@ entities: 87: 12,11 88: 10,15 90: -1,-42 - 99: -37,-1 + 117: -16,-42 + 118: -12,-43 134: -50,-33 150: -39,-15 151: -39,-16 @@ -3267,6 +3201,9 @@ entities: 408: -25,31 458: -58,21 459: -59,25 + 508: -38,7 + 509: -39,10 + 510: -39,11 582: 50,2 584: 49,0 690: -16,6 @@ -3297,17 +3234,18 @@ entities: 2700: -64,-10 2701: -62,-9 2702: -60,-12 + 3064: 36,-2 + 3065: 38,-2 + 3066: 36,2 + 3067: 38,2 + 3068: 37,1 4405: 31,22 4406: 32,22 4416: 29,23 4450: 49,24 4451: 49,25 - 4629: -26,-19 - 4630: -28,-19 4658: 17,-16 4659: 17,-15 - 117: -16,-42 - 118: -12,-43 - node: cleanable: True color: '#FED83DFF' @@ -3466,16 +3404,10 @@ entities: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 251: -33,-13 - 252: -33,-10 - 253: -33,-7 - 254: -21,-13 - 255: -21,-10 - 256: -21,-7 - 270: -26,-18 - 271: -28,-18 - 285: -22,-21 - 286: -22,-19 + 5232: -33,-10 + 5233: -33,-6 + 5234: -21,-6 + 5235: -21,-10 - node: color: '#EFCC4196' id: FullTileOverlayGreyscale @@ -3694,11 +3626,11 @@ entities: decals: 14: 48,-27 16: 49,-27 - 33: 51,-33 3910: 30,-33 3911: 31,-33 3912: 32,-33 3913: 33,-33 + 5312: 51,-33 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -3709,11 +3641,6 @@ entities: 4357: 49,20 4358: 50,20 4359: 51,20 - - node: - color: '#D381C93E' - id: HalfTileOverlayGreyscale180 - decals: - 332: -36,2 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -3723,6 +3650,11 @@ entities: 301: -41,13 302: -40,13 1975: -42,-11 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 5123: -34,-21 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -3817,14 +3749,7 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 264: -32,-13 - 265: -32,-12 - 266: -32,-11 - 267: -32,-10 - 268: -32,-9 - 269: -32,-8 - 1669: -32,-14 - 1670: -32,-7 + 5117: -21,-20 - node: color: '#EFCC4196' id: HalfTileOverlayGreyscale270 @@ -3901,19 +3826,12 @@ entities: id: HalfTileOverlayGreyscale90 decals: 162: 17,-9 - 164: -37,-1 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 257: -22,-13 - 258: -22,-12 - 259: -22,-11 - 260: -22,-10 - 261: -22,-9 - 262: -22,-8 - 263: -22,-7 - 1668: -22,-14 + 5118: -19,-20 + 5124: -33,-20 - node: color: '#EFCC4196' id: HalfTileOverlayGreyscale90 @@ -4063,7 +3981,6 @@ entities: 469: -1,-6 470: -1,-5 471: -1,-4 - 472: -1,-3 499: -3,1 500: -4,0 613: -74,18 @@ -4076,10 +3993,11 @@ entities: 882: -1,-16 883: -1,-15 884: -1,-14 - 885: -1,-13 886: -1,-12 887: -1,-11 888: -1,-10 + 5093: -1,-13 + 5327: -1,-3 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale @@ -4168,7 +4086,6 @@ entities: 1599: -39,9 1600: -39,8 1601: -39,7 - 1602: -39,6 1957: -40,-4 1958: -39,-4 1959: -39,-3 @@ -4213,7 +4130,6 @@ entities: 1434: -26,25 1435: -25,25 1436: -24,25 - 1460: -22,-23 1461: -23,-23 1462: -24,-23 1463: -25,-23 @@ -4356,20 +4272,19 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 651: -17,-17 - 652: -17,-16 - 653: -17,-15 - 654: -17,-14 - 655: -17,-13 - 656: -17,-12 - 657: -17,-11 - 658: -17,-10 - 659: -17,-9 - 660: -17,-8 - 661: -17,-7 - 662: -17,-6 - 698: -18,1 - 699: -18,2 + 5056: -18,-2 + 5057: -18,-1 + 5058: -18,0 + 5131: -26,-23 + 5132: -25,-23 + 5133: -24,-23 + 5134: -23,-23 + 5135: -22,-23 + 5152: -21,-23 + 5153: -20,-23 + 5154: -19,-23 + 5155: -18,-23 + 5156: -17,-23 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale @@ -4460,13 +4375,13 @@ entities: decals: 13: 47,-27 23: 52,-26 - 31: 50,-33 3556: 35,-25 3557: 34,-25 3558: 33,-25 4967: 30,-25 4968: 31,-25 4969: 32,-25 + 5313: 50,-33 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 @@ -4492,6 +4407,7 @@ entities: 4123: 55,6 4124: 54,6 4140: 54,5 + 5091: 41,12 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 @@ -4503,9 +4419,7 @@ entities: 1448: -32,7 1449: -33,7 1450: -34,7 - 1494: -14,-2 1495: -15,-2 - 1496: -15,-3 1497: -15,-4 1498: -15,-5 1499: -15,-6 @@ -4513,7 +4427,6 @@ entities: 1501: -15,-8 1502: -15,-9 1503: -15,5 - 1504: -15,6 1505: -15,7 1507: 10,7 1508: 9,7 @@ -4614,6 +4527,23 @@ entities: 4470: 36,50 4521: 44,20 4522: 45,20 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 5173: -37,-17 + 5174: -37,-16 + 5175: -37,-15 + 5176: -37,-14 + 5177: -37,-13 + 5178: -37,-12 + 5179: -37,-11 + 5180: -37,-10 + 5181: -37,-9 + 5182: -37,-8 + 5183: -37,-7 + 5184: -37,-6 + 5185: -37,-5 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale180 @@ -4701,7 +4631,7 @@ entities: id: QuarterTileOverlayGreyscale270 decals: 15: 50,-27 - 32: 52,-33 + 5314: 52,-33 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 @@ -4724,12 +4654,12 @@ entities: 1962: -39,3 1963: -39,4 1964: -40,-8 - 1965: -39,-8 1966: -39,-9 1967: -39,-10 1968: -39,-11 1969: -39,-12 1970: -40,-7 + 4990: -39,-8 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -4807,7 +4737,6 @@ entities: 2564: 15,19 2565: 15,20 2566: 15,21 - 2576: -17,-22 2590: -24,23 2591: -23,23 2592: -22,23 @@ -4876,8 +4805,23 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 696: -18,-1 - 697: -18,0 + 5190: -17,-21 + 5191: -17,-20 + 5192: -17,-19 + 5193: -17,-18 + 5194: -17,-17 + 5195: -17,-16 + 5196: -17,-15 + 5199: -17,-14 + 5200: -17,-13 + 5201: -17,-12 + 5202: -17,-11 + 5203: -17,-10 + 5204: -17,-9 + 5205: -17,-8 + 5206: -17,-7 + 5207: -17,-6 + 5208: -17,-5 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale270 @@ -4913,7 +4857,6 @@ entities: 865: 1,-10 866: 1,-11 867: 1,-12 - 868: 1,-13 869: 1,-14 870: 1,-15 871: 1,-16 @@ -4922,6 +4865,7 @@ entities: 874: 1,-19 875: 1,-20 876: 1,-21 + 5092: 1,-13 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale90 @@ -5055,7 +4999,6 @@ entities: 1473: 30,-23 1491: -15,1 1492: -15,0 - 1493: -14,0 1838: -15,21 1839: -15,20 1840: -15,19 @@ -5072,15 +5015,9 @@ entities: 2066: -30,-23 2067: -31,-23 2068: -32,-23 - 2069: -33,-23 - 2070: -34,-23 - 2071: -35,-23 2072: -36,-23 2073: -37,-23 2074: -37,-22 - 2075: -37,-21 - 2076: -37,-20 - 2077: -37,-19 2304: -21,9 2305: -22,9 2306: -23,9 @@ -5091,12 +5028,7 @@ entities: 2557: 17,12 2558: 17,11 2570: 17,9 - 2577: -18,-23 2578: -15,-23 - 2579: -15,-22 - 2580: -15,-21 - 2581: -15,-20 - 2582: -15,-19 2583: -15,-17 2584: -15,-16 2585: -15,-15 @@ -5158,6 +5090,9 @@ entities: 4979: 20,-23 4980: 19,-23 4981: 18,-23 + 5062: -14,-2 + 5063: -14,-1 + 5064: -14,0 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale90 @@ -5202,21 +5137,23 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 663: -37,-17 - 664: -37,-16 - 665: -37,-15 - 666: -37,-14 - 667: -37,-13 - 668: -37,-12 - 669: -37,-11 - 670: -37,-10 - 671: -37,-9 - 672: -37,-8 - 673: -37,-7 - 674: -37,-6 1635: -8,-15 1636: -8,-14 1637: -8,-13 + 5136: -28,-23 + 5137: -29,-23 + 5138: -30,-23 + 5139: -31,-23 + 5140: -32,-23 + 5141: -33,-23 + 5142: -34,-23 + 5143: -36,-23 + 5144: -35,-23 + 5145: -37,-23 + 5146: -37,-22 + 5149: -37,-19 + 5150: -37,-20 + 5151: -37,-21 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale90 @@ -5284,18 +5221,14 @@ entities: color: '#FFFFFFFF' id: Rust decals: - 34: 10,-44 - 35: 10,-44 - 36: 11,-47 - 37: 15,-46 - 38: 16,-45 - 39: 16,-45 - 40: 18,-45 - 41: 13,-44 - 42: 13,-44 - 43: 13,-45 - 44: 18,-47 138: -45,-35 + 5315: -6,-3 + 5318: 2,-2 + 5319: 3,-2 + 5322: 11,-4 + 5323: 11,-3 + 5324: 5,-3 + 5325: -4,-3 - node: cleanable: True color: '#80C71FFF' @@ -5342,7 +5275,6 @@ entities: id: StandClear decals: 333: -40,-1 - 1729: -23,-20 1783: -22,26 - node: color: '#D381C996' @@ -5371,6 +5303,12 @@ entities: decals: 296: -43,14 1974: -43,-10 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 5116: -21,-19 + 5119: -35,-19 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale @@ -5404,6 +5342,12 @@ entities: decals: 1955: -37,11 1973: -41,-11 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 5113: -19,-21 + 5120: -33,-21 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale180 @@ -5434,6 +5378,12 @@ entities: 294: -39,11 295: -43,13 1978: -43,-11 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 5114: -21,-21 + 5122: -35,-21 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale270 @@ -5473,6 +5423,12 @@ entities: decals: 1954: -37,14 1977: -41,-10 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 5115: -19,-19 + 5121: -33,-19 - node: color: '#EFCC4196' id: ThreeQuarterTileOverlayGreyscale90 @@ -5505,7 +5461,6 @@ entities: color: '#FFFFFFFF' id: WarnBox decals: - 2014: -25,2 3169: 12,-55 3170: -25,-36 3171: 23,-47 @@ -5515,6 +5470,8 @@ entities: 3176: 5,-64 3177: 39,-47 3302: -17,48 + 5071: -25,1 + 5228: -25,-13 - node: color: '#FFFFFFFF' id: WarnCorner @@ -5537,21 +5494,11 @@ entities: id: WarnCornerFlipped decals: 4: 47,-32 - - node: - color: '#DE3A3A96' - id: WarnCornerGreyscaleNE - decals: - 1674: -22,-3 - node: color: '#D381C996' id: WarnCornerGreyscaleNW decals: 1275: -58,-1 - - node: - color: '#DE3A3A96' - id: WarnCornerGreyscaleNW - decals: - 1682: -31,-3 - node: color: '#FFFFFFFF' id: WarnCornerNE @@ -5611,9 +5558,9 @@ entities: decals: 1050: -2,-78 3340: -19,42 - 3762: -29,-1 3894: -15,4 4923: -2,36 + 5082: -29,-2 - node: zIndex: 5 color: '#FFFFFFFF' @@ -5630,8 +5577,8 @@ entities: 2544: 40,-35 3329: -27,40 3339: -15,42 - 3870: -25,-1 3963: -54,6 + 5075: -25,-2 - node: zIndex: 5 color: '#FFFFFFFF' @@ -5643,6 +5590,9 @@ entities: id: WarnFullGreyscale decals: 3449: 42,-19 + 5299: -21,-14 + 5300: -19,-14 + 5301: -20,-14 - node: color: '#D381C996' id: WarnFullGreyscale @@ -5650,6 +5600,11 @@ entities: 1999: -58,0 3977: -56,10 3978: -55,10 + - node: + color: '#DE3A3A96' + id: WarnFullGreyscale + decals: + 5230: -27,-14 - node: color: '#FFFFFFFF' id: WarnFullGreyscale @@ -5665,6 +5620,8 @@ entities: 3258: -32,31 3259: -22,33 3260: -12,33 + 5293: -30,-16 + 5294: -24,-16 - node: color: '#FFFFFFFF' id: WarnLineE @@ -5680,18 +5637,13 @@ entities: 1354: -2,33 1355: -2,34 1356: -2,35 - 1744: -15,-18 1748: -37,-18 - 1752: -37,5 - 1757: -15,6 1759: -15,22 1763: 17,6 - 1765: 41,12 1773: 17,22 1774: 17,26 1775: 17,-9 1787: -21,26 - 1850: -15,-3 1894: -52,1 1895: -48,1 2113: -2,25 @@ -5707,11 +5659,12 @@ entities: 3151: 56,12 3152: 56,11 3338: -19,41 - 3390: 1,-13 3893: -15,3 4099: 17,-22 4214: -16,33 4886: -2,23 + 5267: -31,-13 + 5268: -22,-13 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -5731,23 +5684,10 @@ entities: 1929: -48,-6 1931: -45,-1 1949: -42,-6 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleE - decals: - 1673: -22,-4 - 1715: -33,-20 - 1716: -33,-17 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 1726: -23,-21 - 1727: -23,-20 - 1728: -23,-19 - 1739: -18,-21 - 1740: -18,-20 - 1741: -18,-19 1802: -15,28 1808: -25,31 2264: 6,19 @@ -5758,6 +5698,11 @@ entities: 3541: -5,-54 3889: -25,30 3939: 41,-32 + 5105: -30,-20 + 5262: -33,-10 + 5263: -33,-6 + 5289: -31,-16 + 5292: -25,-16 - node: color: '#52B4E996' id: WarnLineGreyscaleN @@ -5783,9 +5728,8 @@ entities: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 1684: -27,-3 - 4625: -28,-19 - 4626: -26,-19 + 5231: -27,-15 + 5311: -27,-4 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -5809,6 +5753,9 @@ entities: 3526: -1,-76 4148: 53,2 4149: 54,2 + 4987: -17,5 + 4988: -16,5 + 4989: -15,5 - node: color: '#334E6DC8' id: WarnLineGreyscaleS @@ -5844,18 +5791,13 @@ entities: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 1667: -27,-6 - 1863: -26,-17 - 1864: -28,-17 + 5229: -27,-13 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 1742: -19,-22 - 1743: -20,-22 1801: -18,27 1803: -22,28 - 1855: -21,-22 2263: 5,17 3032: 23,7 3369: 1,-21 @@ -5890,6 +5832,12 @@ entities: 4252: 54,27 4253: 55,27 4651: -11,27 + 4995: -16,-21 + 4996: -15,-21 + 5209: -17,-21 + 5286: -34,-17 + 5287: -21,-17 + 5288: -19,-17 - node: color: '#52B4E996' id: WarnLineGreyscaleW @@ -5911,21 +5859,10 @@ entities: id: WarnLineGreyscaleW decals: 1930: -46,-6 - - node: - color: '#DE3A3A96' - id: WarnLineGreyscaleW - decals: - 1683: -31,-4 - 1851: -21,-21 - 4624: -31,-20 - 4645: -21,-19 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 1723: -23,-21 - 1724: -23,-20 - 1725: -23,-19 1805: -23,30 1806: -23,31 1809: -31,30 @@ -5943,13 +5880,15 @@ entities: 4245: 19,23 4246: 19,24 4292: 19,25 + 5106: -24,-20 + 5264: -21,-10 + 5265: -21,-6 + 5290: -23,-16 + 5291: -29,-16 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 706: -26,-1 - 707: -27,-1 - 708: -28,-1 726: -31,36 738: -117,18 739: -118,18 @@ -5987,16 +5926,16 @@ entities: 3745: -6,31 3961: -56,6 3962: -55,6 - 3985: 14,7 - 3998: -14,7 - 4100: -14,-25 - 4103: -18,7 4211: -17,32 4243: 38,23 4881: -1,24 4882: 0,24 4883: 1,24 4983: 18,-25 + 5072: -28,-2 + 5073: -27,-2 + 5074: -26,-2 + 5090: -18,7 - node: color: '#DE3A3A96' id: WarnLineS @@ -6021,18 +5960,13 @@ entities: 1350: 2,33 1351: 2,34 1352: 2,35 - 1745: -17,-18 1747: -39,-18 - 1751: -39,5 - 1755: -17,6 1760: -17,22 1762: 15,6 - 1766: 39,12 1771: 15,22 1772: 15,26 1776: 15,-9 1786: -23,26 - 1849: -17,-3 1893: -54,1 1896: -50,1 2114: 2,25 @@ -6044,13 +5978,14 @@ entities: 2846: 43,-16 3328: -27,39 3334: -15,41 - 3391: -1,-13 3780: 40,-36 4098: 15,-22 4212: -18,33 4887: 2,23 4921: -3,35 4922: -3,36 + 5266: -32,-13 + 5269: -23,-13 - node: color: '#DE3A3A96' id: WarnLineW @@ -6124,10 +6059,6 @@ entities: 3877: -113,30 3878: -112,30 3879: -111,30 - 3984: 14,9 - 3999: -14,9 - 4101: -14,-23 - 4102: -18,9 4137: 58,3 4187: 57,3 4213: -17,34 @@ -6136,6 +6067,10 @@ entities: 4889: 0,24 4890: 1,24 4982: 18,-23 + 5089: -18,9 + 5308: -35,-15 + 5309: -34,-15 + 5310: -33,-15 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -6295,10 +6230,6 @@ entities: 1282: 19,-38 1283: 20,-38 1284: 21,-38 - 2019: -20,-1 - 2020: -21,-1 - 2021: -22,-1 - 2022: -23,-1 2024: -23,-28 2054: -41,9 2055: -44,9 @@ -6315,6 +6246,10 @@ entities: 3577: -15,-53 3581: -13,-51 3582: -14,-51 + 5052: -23,-2 + 5053: -22,-2 + 5054: -21,-2 + 5055: -20,-2 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -6328,10 +6263,6 @@ entities: 1199: -10,19 1200: -9,19 1201: -8,19 - 2015: -20,2 - 2016: -21,2 - 2017: -22,2 - 2018: -23,2 2046: -47,-16 2047: -46,-16 2053: -41,7 @@ -6351,6 +6282,9 @@ entities: 3703: 19,-27 3704: 20,-27 3705: 21,-27 + 5049: -23,1 + 5050: -22,1 + 5051: -21,1 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -6589,21 +6523,21 @@ entities: -4,-5: 0: 64447 -5,-4: - 0: 48011 + 0: 35771 -4,-3: 0: 15295 -5,-3: - 0: 35768 + 0: 35771 -4,-2: 0: 13107 1: 34952 -5,-2: - 0: 48059 + 0: 35771 -4,-1: 0: 30515 1: 8 -5,-1: - 0: 55483 + 0: 56715 -4,0: 0: 64311 -3,-4: @@ -6667,7 +6601,7 @@ entities: 1: 300 0: 60416 3,1: - 0: 63675 + 0: 63679 3,2: 0: 47359 3,3: @@ -6684,11 +6618,11 @@ entities: 3,4: 0: 48056 -5,0: - 0: 36317 + 0: 64141 -4,1: 0: 62395 -5,1: - 0: 63679 + 0: 63675 -4,2: 0: 62463 -5,2: @@ -6785,9 +6719,9 @@ entities: -4,-6: 0: 46079 -5,-6: - 0: 64511 + 0: 47871 -5,-5: - 0: 47615 + 0: 47803 -4,-9: 0: 19921 -3,-8: @@ -7017,30 +6951,30 @@ entities: 1: 17 0: 62668 -8,-6: - 0: 57599 + 0: 61695 -9,-7: 0: 61440 -9,-6: 0: 57599 -8,-5: - 0: 61679 + 0: 47359 -9,-5: - 0: 61166 + 0: 58607 -8,-4: - 0: 32750 + 0: 46015 -7,-7: 0: 63726 -7,-6: 0: 61695 -7,-5: - 0: 62975 + 0: 65535 -7,-9: 0: 65160 1: 2 -7,-8: 0: 61152 -7,-4: - 0: 4095 + 0: 62207 -6,-8: 0: 48057 -6,-7: @@ -7048,50 +6982,50 @@ entities: -6,-6: 0: 63743 -6,-5: - 0: 45307 + 0: 59647 -6,-9: 0: 65280 1: 6 -6,-4: - 0: 63295 + 0: 28399 -9,-4: - 0: 58894 + 0: 3822 -8,-3: - 0: 16183 + 0: 29691 -9,-3: - 0: 3680 + 0: 3694 -8,-2: - 0: 61047 + 0: 65527 -9,-2: - 0: 57574 + 0: 3694 -8,-1: - 0: 45807 + 0: 47903 -9,-1: - 0: 57582 + 0: 61038 -8,0: - 0: 3003 + 0: 9131 -7,-3: - 0: 32631 + 0: 30719 -7,-2: - 0: 65319 + 0: 65520 -7,-1: - 0: 62207 + 0: 65327 -7,0: - 0: 4095 + 0: 255 -6,-3: - 0: 28519 + 0: 32382 -6,-2: - 0: 30711 + 0: 32639 -6,-1: - 0: 58495 + 0: 60999 -6,0: - 0: 3822 + 0: 57582 -9,0: - 0: 61166 + 0: 60942 -8,1: - 0: 61683 + 0: 61694 -9,1: - 0: 61679 + 0: 61684 -8,2: 0: 45311 -9,2: @@ -7101,7 +7035,7 @@ entities: -9,3: 0: 61182 -7,1: - 0: 62192 + 0: 62143 -7,2: 0: 65279 -7,3: @@ -7111,7 +7045,7 @@ entities: -7,4: 0: 65535 -6,1: - 0: 61694 + 0: 61695 -6,2: 0: 12543 1: 32768 @@ -7249,11 +7183,11 @@ entities: 1: 17 0: 57344 -10,-6: - 0: 65519 - -10,-5: - 0: 61167 + 0: 65263 -10,-9: 0: 61661 + -10,-5: + 0: 61166 -10,-4: 0: 65262 -9,-9: @@ -8229,8 +8163,10 @@ entities: 0: 61567 -13,6: 0: 61440 + -12,7: + 1: 240 -13,7: - 1: 39312 + 1: 39408 -12,8: 4: 12 5: 3072 @@ -8239,12 +8175,12 @@ entities: -11,6: 0: 4607 1: 49152 + -11,7: + 1: 17532 -11,8: 4: 1 1: 17476 5: 256 - -11,7: - 1: 17484 -10,5: 0: 62139 -10,6: @@ -9550,15 +9486,10 @@ entities: id: docking43669 localAnchorB: -47.5,-40 localAnchorA: 0.5,0 - damping: 1560.5402 - stiffness: 14007.377 + damping: 1560.5498 + stiffness: 14007.463 - proto: AcousticGuitarInstrument entities: - - uid: 2133 - components: - - type: Transform - pos: -27.45107,-11.577459 - parent: 60 - uid: 6610 components: - type: Transform @@ -9571,6 +9502,11 @@ entities: - type: Transform pos: 31.477634,-79.4623 parent: 60 + - uid: 14226 + components: + - type: Transform + pos: -23.537233,-10.44661 + parent: 60 - proto: ActionToggleInternals entities: - uid: 13159 @@ -9597,48 +9533,105 @@ entities: container: 18476 - proto: AirAlarm entities: - - uid: 249 + - uid: 12 components: - type: Transform - pos: -24.5,-1.5 + rot: -1.5707963267948966 rad + pos: -35.5,-15.5 parent: 60 - type: DeviceList devices: - - 21734 - - 21733 - - 5565 - - 5562 - - 8466 - - 5563 - - 6307 - - 6308 - - 1902 - - 1651 - - 1893 - - 1682 - - 5454 - - 1665 - - 1850 - - 1669 - - 1846 - - 1652 - - 1564 - - 1838 - - 6759 - - 7790 - - uid: 2103 + - 21615 + - 1771 + - 1787 + - 5952 + - 2772 + - 21614 + - 6018 + - 8388 + - uid: 57 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-20.5 + pos: -10.5,-21.5 parent: 60 - type: DeviceList devices: - - 6648 - - 8230 - - 1633 - - 1636 - - 1559 + - 21505 + - 1511 + - 516 + - 904 + - 928 + - 21495 + - uid: 105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 60 + - type: DeviceList + devices: + - 109 + - 8416 + - 9157 + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-17.5 + parent: 60 + - type: DeviceList + devices: + - 1976 + - 1966 + - 1974 + - 1659 + - 777 + - uid: 178 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 60 + - type: DeviceList + devices: + - 1975 + - 1983 + - 2009 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-17.5 + parent: 60 + - type: DeviceList + devices: + - 1985 + - 1971 + - 157 + - 779 + - 778 + - uid: 1960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,1.5 + parent: 60 + - type: DeviceList + devices: + - 1645 + - 21407 + - 9155 + - 788 + - 792 + - uid: 3204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-21.5 + parent: 60 + - type: DeviceList + devices: + - 5688 + - 5364 - uid: 4046 components: - type: Transform @@ -9650,6 +9643,19 @@ entities: - 4502 - 5518 - 12511 + - uid: 4709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-17.5 + parent: 60 + - type: DeviceList + devices: + - 1136 + - 1133 + - 122 + - 788 + - 792 - uid: 5092 components: - type: Transform @@ -9679,23 +9685,16 @@ entities: - 5065 - 7485 - 7463 - - uid: 5224 + - uid: 5933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,7.5 + rot: 3.141592653589793 rad + pos: -25.5,-13.5 parent: 60 - type: DeviceList devices: - - 780 - - 7721 - - 1017 - - 21614 - - 491 - - 8774 - - 8957 - - 6018 - - 8388 + - 841 + - 1845 - uid: 7065 components: - type: Transform @@ -9743,61 +9742,33 @@ entities: - 21029 - 21084 - 21087 - - uid: 8260 - components: - - type: Transform - pos: -19.5,3.5 - parent: 60 - - type: DeviceList - devices: - - 6762 - - 5425 - - uid: 8265 + - uid: 8483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 + rot: 1.5707963267948966 rad + pos: -51.5,-16.5 parent: 60 - type: DeviceList devices: - - 8259 - - 8269 - - uid: 8271 + - 116 + - 7099 + - uid: 8516 components: - type: Transform - pos: -25.5,3.5 + rot: 3.141592653589793 rad + pos: -44.5,-22.5 parent: 60 - type: DeviceList devices: - - 3197 - - 8898 + - 8439 + - 9150 + - 1682 + - 8942 - uid: 8669 components: - type: Transform pos: -33.5,6.5 parent: 60 - - type: DeviceList - devices: - - 2861 - - 8718 - - uid: 8714 - components: - - type: Transform - pos: -18.5,-1.5 - parent: 60 - - type: DeviceList - devices: - - 11978 - - 9156 - - uid: 8791 - components: - - type: Transform - pos: -32.5,-1.5 - parent: 60 - - type: DeviceList - devices: - - 9034 - - 2791 - uid: 11464 components: - type: Transform @@ -9858,16 +9829,6 @@ entities: devices: - 16635 - 16634 - - uid: 16145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-17.5 - parent: 60 - - type: DeviceList - devices: - - 8578 - - 856 - uid: 19868 components: - type: Transform @@ -9896,9 +9857,6 @@ entities: - 428 - 426 - 21485 - - 18464 - - 18463 - - 18462 - uid: 21488 components: - type: Transform @@ -9909,9 +9867,6 @@ entities: devices: - 18609 - 21486 - - 18464 - - 18463 - - 18462 - 18426 - 18425 - 18429 @@ -9928,19 +9883,6 @@ entities: - 18257 - 21491 - 18608 - - uid: 21496 - components: - - type: Transform - pos: -6.5,-21.5 - parent: 60 - - type: DeviceList - devices: - - 670 - - 672 - - 671 - - 21495 - - 928 - - 904 - uid: 21499 components: - type: Transform @@ -9957,27 +9899,6 @@ entities: - 673 - 1455 - 1456 - - uid: 21504 - components: - - type: Transform - pos: -24.5,-21.5 - parent: 60 - - type: DeviceList - devices: - - 21505 - - 112 - - 81 - - 63 - - 121 - - 836 - - 158 - - 11338 - - 11339 - - 11340 - - 1511 - - 516 - - 6065 - - 6087 - uid: 21507 components: - type: Transform @@ -9991,30 +9912,11 @@ entities: - 6098 - 6002 - 5962 - - 6093 - - 5961 - 15846 - 2585 - 17493 - - uid: 21509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-5.5 - parent: 60 - - type: DeviceList - devices: - - 11340 - - 11339 - - 11338 - - 18859 - - 18858 - - 18857 - - 21511 - - 792 - - 788 - - 1133 - - 1136 + - 1660 + - 1581 - uid: 21515 components: - type: Transform @@ -10071,9 +9973,6 @@ entities: devices: - 13106 - 13107 - - 13148 - - 13149 - - 13150 - 13151 - 13152 - 13153 @@ -10088,9 +9987,6 @@ entities: parent: 60 - type: DeviceList devices: - - 13148 - - 13149 - - 13150 - 21547 - 13073 - 19403 @@ -10316,20 +10212,14 @@ entities: parent: 60 - type: DeviceList devices: - - 8957 - - 8774 - - 491 - - 9468 - - 5623 - - 8168 - - 6098 - - 6097 - - 5940 - - 21615 + - 8388 + - 6018 + - 21614 - 2772 - 5952 - 1787 - 1771 + - 21615 - uid: 21616 components: - type: Transform @@ -10903,19 +10793,28 @@ entities: parent: 60 - proto: AirlockArmoryGlassLocked entities: - - uid: 1467 + - uid: 342 components: - type: MetaData - name: Warden Office + name: Ready Room - type: Transform - pos: -26.5,-6.5 + rot: 1.5707963267948966 rad + pos: -29.5,-15.5 parent: 60 - - uid: 19786 + - uid: 8471 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 60 +- proto: AirlockArmoryLocked + entities: + - uid: 813 components: - type: MetaData - name: Secure Armory + name: Panopticon - type: Transform - pos: -26.5,-1.5 + rot: 1.5707963267948966 rad + pos: -26.5,-13.5 parent: 60 - proto: AirlockAtmosphericsGlass entities: @@ -11012,35 +10911,35 @@ entities: parent: 60 - proto: AirlockBrigGlassLocked entities: - - uid: 144 + - uid: 242 components: - - type: MetaData - name: Brig Medbay - type: Transform - pos: -20.5,-3.5 + pos: -20.5,-21.5 parent: 60 - - type: PaintableAirlock - department: Medical - - uid: 244 + - uid: 243 components: - - type: MetaData - name: Security Brig - type: Transform - pos: -27.5,-17.5 + pos: -20.5,-17.5 parent: 60 - - uid: 1487 + - uid: 245 components: - - type: MetaData - name: Security Front Desk - type: Transform - pos: -21.5,-15.5 + pos: -18.5,-17.5 parent: 60 - - uid: 7901 + - uid: 1919 components: - - type: MetaData - name: Security Brig - type: Transform - pos: -25.5,-17.5 + pos: -33.5,-17.5 + parent: 60 + - uid: 8297 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 60 + - uid: 8454 + components: + - type: Transform + pos: -18.5,-21.5 parent: 60 - proto: AirlockBrigLocked entities: @@ -11065,6 +10964,13 @@ entities: - type: Transform pos: -49.5,-22.5 parent: 60 + - uid: 14225 + components: + - type: MetaData + name: Interrogation + - type: Transform + pos: -31.5,-2.5 + parent: 60 - proto: AirlockCaptainGlassLocked entities: - uid: 18369 @@ -11427,6 +11333,13 @@ entities: - type: Transform pos: -5.5,-49.5 parent: 60 + - uid: 11660 + components: + - type: MetaData + name: Security Substation + - type: Transform + pos: -33.5,4.5 + parent: 60 - uid: 12015 components: - type: Transform @@ -11526,6 +11439,11 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: + - uid: 97 + components: + - type: Transform + pos: -47.5,27.5 + parent: 60 - uid: 1543 components: - type: Transform @@ -11544,6 +11462,11 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,47.5 parent: 60 + - uid: 4214 + components: + - type: Transform + pos: -53.5,27.5 + parent: 60 - uid: 4237 components: - type: Transform @@ -12316,26 +12239,6 @@ entities: parent: 60 - proto: AirlockGlass entities: - - uid: 51 - components: - - type: MetaData - name: Security Lobby - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-18.5 - parent: 60 - - type: PaintableAirlock - department: Security - - uid: 84 - components: - - type: MetaData - name: Security Lobby - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-20.5 - parent: 60 - - type: PaintableAirlock - department: Security - uid: 211 components: - type: Transform @@ -12376,6 +12279,11 @@ entities: - type: Transform pos: 36.5,-23.5 parent: 60 + - uid: 3149 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 60 - uid: 3987 components: - type: Transform @@ -12391,6 +12299,36 @@ entities: - type: Transform pos: 1.5,-43.5 parent: 60 + - uid: 4553 + components: + - type: Transform + pos: -16.5,6.5 + parent: 60 + - uid: 4554 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 60 + - uid: 4555 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 60 + - uid: 4561 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 60 + - uid: 4566 + components: + - type: Transform + pos: -14.5,6.5 + parent: 60 + - uid: 4567 + components: + - type: Transform + pos: -15.5,6.5 + parent: 60 - uid: 5001 components: - type: Transform @@ -12701,12 +12639,13 @@ entities: parent: 60 - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 1729 + - uid: 8467 components: - type: MetaData - name: Head of Security Office + name: HoS Office - type: Transform - pos: -21.5,-1.5 + rot: 1.5707963267948966 rad + pos: -21.5,-2.5 parent: 60 - proto: AirlockHydroGlassLocked entities: @@ -12829,18 +12768,6 @@ entities: - type: Transform pos: -10.5,26.5 parent: 60 -- proto: AirlockMaintGlass - entities: - - uid: 11660 - components: - - type: Transform - pos: -53.5,27.5 - parent: 60 - - uid: 11663 - components: - - type: Transform - pos: -47.5,27.5 - parent: 60 - proto: AirlockMaintGlassLocked entities: - uid: 3415 @@ -12913,13 +12840,6 @@ entities: parent: 60 - proto: AirlockMaintLocked entities: - - uid: 363 - components: - - type: MetaData - name: Security Maintenance - - type: Transform - pos: -26.5,6.5 - parent: 60 - uid: 555 components: - type: Transform @@ -12935,6 +12855,18 @@ entities: - type: Transform pos: -1.5,-30.5 parent: 60 + - uid: 1587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,5.5 + parent: 60 + - uid: 1637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,6.5 + parent: 60 - uid: 1670 components: - type: Transform @@ -13002,6 +12934,12 @@ entities: - type: Transform pos: -39.5,-23.5 parent: 60 + - uid: 4686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,3.5 + parent: 60 - uid: 5227 components: - type: Transform @@ -13051,13 +12989,6 @@ entities: - type: Transform pos: 35.5,5.5 parent: 60 - - uid: 9151 - components: - - type: MetaData - name: Security Maintenance - - type: Transform - pos: -17.5,4.5 - parent: 60 - uid: 9620 components: - type: Transform @@ -13214,12 +13145,13 @@ entities: parent: 60 - proto: AirlockMaintSecLocked entities: - - uid: 1847 + - uid: 18781 components: - type: MetaData - name: Security Maintenance + name: Security Maint - type: Transform - pos: -29.5,5.5 + rot: 1.5707963267948966 rad + pos: -30.5,3.5 parent: 60 - proto: AirlockMaintTheatreLocked entities: @@ -13479,21 +13411,12 @@ entities: parent: 60 - proto: AirlockSecurityGlassLocked entities: - - uid: 1835 - components: - - type: MetaData - name: Security Locker Room - - type: Transform - pos: -31.5,-16.5 - parent: 60 -- proto: AirlockSecurityLawyerLocked - entities: - - uid: 4686 + - uid: 1225 components: - type: MetaData - name: Interrogation + name: Ready Room - type: Transform - pos: -31.5,-3.5 + pos: -23.5,-15.5 parent: 60 - proto: AirlockSecurityLocked entities: @@ -13502,31 +13425,17 @@ entities: - type: Transform pos: -8.5,-21.5 parent: 60 - - uid: 1889 - components: - - type: MetaData - name: Security Break Room - - type: Transform - pos: -35.5,4.5 - parent: 60 - - uid: 2086 + - uid: 13881 components: - - type: MetaData - name: Security Break Room - type: Transform - pos: -30.5,-1.5 + pos: -6.5,-16.5 parent: 60 - - uid: 8242 + - uid: 19620 components: - type: MetaData - name: Security Locker Room + name: Security Maint - type: Transform - pos: -31.5,-19.5 - parent: 60 - - uid: 13881 - components: - - type: Transform - pos: -6.5,-16.5 + pos: -30.5,1.5 parent: 60 - proto: AirlockServiceLocked entities: @@ -13663,6 +13572,59 @@ entities: - DoorStatus: DoorBolt - proto: AirSensor entities: + - uid: 109 + components: + - type: Transform + pos: -9.5,2.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 105 + - uid: 122 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 4710 + - 4709 + - uid: 1645 + components: + - type: Transform + pos: -15.5,1.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 1960 + - 1962 + - uid: 1975 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 178 + - 177 + - uid: 1976 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 1970 + - 148 + - uid: 1985 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 230 + - 231 - uid: 2084 components: - type: Transform @@ -13778,7 +13740,7 @@ entities: parent: 60 - type: DeviceNetwork deviceLists: - - 21497 + - 57 - uid: 21501 components: - type: Transform @@ -13799,17 +13761,18 @@ entities: parent: 60 - type: DeviceNetwork deviceLists: - - 21503 + - 4191 + - 4190 + - 63 + - 57 - uid: 21508 components: - type: Transform pos: -31.5,-23.5 parent: 60 - - uid: 21511 - components: - - type: Transform - pos: -15.5,-10.5 - parent: 60 + - type: DeviceNetwork + deviceLists: + - 21506 - uid: 21512 components: - type: Transform @@ -13826,6 +13789,7 @@ entities: - type: DeviceNetwork deviceLists: - 21514 + - 4545 - uid: 21538 components: - type: Transform @@ -13937,11 +13901,25 @@ entities: - type: Transform pos: -37.5,7.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21613 + - 11347 + - 4627 + - 21612 + - 12 - uid: 21615 components: - type: Transform pos: -37.5,-15.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21613 + - 11347 + - 4627 + - 21612 + - 12 - uid: 21624 components: - type: Transform @@ -14051,23 +14029,6 @@ entities: - type: Transform pos: -3.5,28.5 parent: 60 - - uid: 21733 - components: - - type: Transform - pos: -25.5,-3.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 249 - - uid: 21734 - components: - - type: Transform - pos: -27.5,-15.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21736 - - 249 - uid: 21772 components: - type: Transform @@ -14213,6 +14174,14 @@ entities: parent: 60 - proto: APCBasic entities: + - uid: 124 + components: + - type: MetaData + name: Security Ready Room APC + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-21.5 + parent: 60 - uid: 283 components: - type: MetaData @@ -14254,6 +14223,22 @@ entities: rot: 3.141592653589793 rad pos: -12.5,1.5 parent: 60 + - uid: 1955 + components: + - type: MetaData + name: East Security APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 60 + - uid: 1956 + components: + - type: MetaData + name: West Security APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 60 - uid: 2277 components: - type: MetaData @@ -14416,6 +14401,14 @@ entities: - type: Transform pos: 10.5,-52.5 parent: 60 + - uid: 7032 + components: + - type: MetaData + name: Warden's Office APC + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-13.5 + parent: 60 - uid: 7124 components: - type: MetaData @@ -14469,26 +14462,12 @@ entities: - type: Transform pos: 9.5,-1.5 parent: 7536 - - uid: 8244 - components: - - type: MetaData - name: Security Locker Room APC - - type: Transform - pos: -32.5,-14.5 - parent: 60 - - uid: 8684 - components: - - type: MetaData - name: Security Entrance APC - - type: Transform - pos: -24.5,-17.5 - parent: 60 - - uid: 8695 + - uid: 8348 components: - type: MetaData - name: Security North APC + name: Interrogation APC - type: Transform - pos: -29.5,-1.5 + pos: -32.5,1.5 parent: 60 - uid: 9448 components: @@ -14497,6 +14476,11 @@ entities: - type: Transform pos: -44.5,15.5 parent: 60 + - uid: 9465 + components: + - type: Transform + pos: -19.5,1.5 + parent: 60 - uid: 9694 components: - type: MetaData @@ -14576,6 +14560,13 @@ entities: - type: Transform pos: 51.5,15.5 parent: 60 + - uid: 13718 + components: + - type: MetaData + name: Armory APC + - type: Transform + pos: -24.5,-2.5 + parent: 60 - uid: 14328 components: - type: MetaData @@ -15575,18 +15566,6 @@ entities: - type: Transform pos: 11.5,2.5 parent: 60 -- proto: BannerSecurity - entities: - - uid: 8247 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 60 - - uid: 8248 - components: - - type: Transform - pos: -24.5,-2.5 - parent: 60 - proto: Barricade entities: - uid: 3310 @@ -15746,45 +15725,30 @@ entities: - type: Transform pos: 52.5,-44.5 parent: 60 - - uid: 806 - components: - - type: Transform - pos: -6.5,24.5 - parent: 60 - - uid: 1722 - components: - - type: Transform - pos: -18.5,-10.5 - parent: 60 - - uid: 1739 - components: - - type: Transform - pos: -18.5,-13.5 - parent: 60 - - uid: 1764 + - uid: 309 components: - type: Transform - pos: -33.5,-10.5 + pos: -34.5,-6.5 parent: 60 - - uid: 1767 + - uid: 806 components: - type: Transform - pos: -33.5,-7.5 + pos: -6.5,24.5 parent: 60 - - uid: 1857 + - uid: 1850 components: - type: Transform - pos: -33.5,-13.5 + pos: -19.5,-3.5 parent: 60 - - uid: 1888 + - uid: 2150 components: - type: Transform - pos: -19.5,0.5 + pos: 30.5,-14.5 parent: 60 - - uid: 2150 + - uid: 2581 components: - type: Transform - pos: 30.5,-14.5 + pos: -34.5,-10.5 parent: 60 - uid: 2923 components: @@ -15846,6 +15810,11 @@ entities: - type: Transform pos: 3.5,-3.5 parent: 7536 + - uid: 9223 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 60 - uid: 13733 components: - type: Transform @@ -15911,6 +15880,11 @@ entities: - type: Transform pos: -6.5,-6.5 parent: 60 + - uid: 19170 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 60 - uid: 24362 components: - type: Transform @@ -15982,10 +15956,10 @@ entities: parent: 60 - proto: BedsheetHOS entities: - - uid: 11456 + - uid: 6117 components: - type: Transform - pos: -19.5,0.5 + pos: -19.5,-3.5 parent: 60 - proto: BedsheetIan entities: @@ -16003,17 +15977,6 @@ entities: - type: Transform pos: 36.5,-16.5 parent: 60 - - uid: 1354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-2.5 - parent: 60 - - uid: 1502 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 60 - uid: 9005 components: - type: Transform @@ -16043,35 +16006,30 @@ entities: parent: 60 - proto: BedsheetOrange entities: - - uid: 1717 + - uid: 269 components: - type: Transform pos: -18.5,-10.5 parent: 60 - - uid: 1718 - components: - - type: Transform - pos: -18.5,-13.5 - parent: 60 - - uid: 1719 + - uid: 6830 components: - type: Transform - pos: -33.5,-7.5 + pos: -34.5,-10.5 parent: 60 - - uid: 1720 + - uid: 10684 components: - type: Transform - pos: -33.5,-10.5 + pos: -34.5,-6.5 parent: 60 - - uid: 1721 + - uid: 13699 components: - type: Transform - pos: -33.5,-13.5 + pos: -7.5,-12.5 parent: 60 - - uid: 13699 + - uid: 17469 components: - type: Transform - pos: -7.5,-12.5 + pos: -18.5,-6.5 parent: 60 - proto: BedsheetQM entities: @@ -16248,11 +16206,6 @@ entities: - type: Transform pos: -16.5,-43.5 parent: 60 - - uid: 12598 - components: - - type: Transform - pos: -55.5,0.5 - parent: 60 - uid: 13901 components: - type: Transform @@ -16328,50 +16281,148 @@ entities: - type: Transform pos: 55.5,-0.5 parent: 60 -- proto: BlastDoorBridgeOpen +- proto: BlastDoorOpen entities: - - uid: 21763 + - uid: 187 components: - type: Transform - pos: -0.5,-1.5 + pos: 5.5,1.5 parent: 60 - - uid: 21764 + - uid: 188 + components: + - type: Transform + pos: 5.5,0.5 + parent: 60 + - uid: 189 components: - type: Transform pos: 1.5,-1.5 parent: 60 - - uid: 21765 + - uid: 190 components: - type: Transform - pos: 1.5,-8.5 + pos: -0.5,-1.5 parent: 60 - - uid: 21766 + - uid: 191 components: - type: Transform pos: -0.5,-8.5 parent: 60 - - uid: 21767 + - uid: 206 components: - type: Transform - pos: 5.5,0.5 + pos: 1.5,-8.5 parent: 60 - - uid: 21768 + - uid: 207 components: - type: Transform - pos: 5.5,1.5 + pos: -3.5,3.5 parent: 60 - - uid: 21769 + - uid: 208 components: - type: Transform - pos: -4.5,0.5 + pos: -4.5,1.5 parent: 60 - - uid: 21770 + - uid: 1238 components: - type: Transform - pos: -4.5,1.5 + pos: -17.5,-10.5 + parent: 60 + - uid: 1257 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 60 + - uid: 1293 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 60 + - uid: 1354 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 60 + - uid: 1384 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 60 + - uid: 1638 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 60 + - uid: 1639 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 60 + - uid: 1640 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 60 + - uid: 1652 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 60 + - uid: 1653 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 60 + - uid: 1655 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 60 + - uid: 1656 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 60 + - uid: 1681 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 60 + - uid: 4457 + components: + - type: Transform + pos: -0.5,4.5 + parent: 60 + - uid: 4505 + components: + - type: Transform + pos: 0.5,4.5 + parent: 60 + - uid: 4542 + components: + - type: Transform + pos: 1.5,4.5 + parent: 60 + - uid: 4552 + components: + - type: Transform + pos: 2.5,4.5 + parent: 60 + - uid: 4563 + components: + - type: Transform + pos: 3.5,4.5 + parent: 60 + - uid: 4564 + components: + - type: Transform + pos: 4.5,4.5 + parent: 60 + - uid: 4565 + components: + - type: Transform + pos: -3.5,4.5 parent: 60 -- proto: BlastDoorOpen - entities: - uid: 5344 components: - type: Transform @@ -16414,6 +16465,36 @@ entities: rot: 3.141592653589793 rad pos: -115.5,9.5 parent: 60 + - uid: 5432 + components: + - type: Transform + pos: -18.5,0.5 + parent: 60 + - uid: 8721 + components: + - type: Transform + pos: -2.5,4.5 + parent: 60 + - uid: 9679 + components: + - type: Transform + pos: -4.5,0.5 + parent: 60 + - uid: 9680 + components: + - type: Transform + pos: 4.5,3.5 + parent: 60 + - uid: 10622 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 60 + - uid: 13978 + components: + - type: Transform + pos: -1.5,4.5 + parent: 60 - proto: BlastDoorWindowsOpen entities: - uid: 21780 @@ -16748,10 +16829,10 @@ entities: parent: 60 - proto: BoxFlashbang entities: - - uid: 7793 + - uid: 23646 components: - type: Transform - pos: -25.31633,-11.483709 + pos: -27.693483,-9.22786 parent: 60 - proto: BoxFolderBlack entities: @@ -16772,6 +16853,11 @@ entities: parent: 60 - proto: BoxFolderBlue entities: + - uid: 213 + components: + - type: Transform + pos: -41.41446,-17.409948 + parent: 60 - uid: 8972 components: - type: Transform @@ -16782,11 +16868,6 @@ entities: - type: Transform pos: 56.403923,-12.374418 parent: 60 - - uid: 11576 - components: - - type: Transform - pos: -40.52726,-17.397173 - parent: 60 - uid: 11581 components: - type: Transform @@ -16822,6 +16903,18 @@ entities: - type: Transform pos: -106.46888,28.590736 parent: 60 +- proto: BoxFolderClipboard + entities: + - uid: 8478 + components: + - type: Transform + pos: -49.488464,-19.519323 + parent: 60 + - uid: 8673 + components: + - type: Transform + pos: -49.332214,-19.409948 + parent: 60 - proto: BoxFolderGrey entities: - uid: 9534 @@ -16892,10 +16985,10 @@ entities: parent: 60 - proto: BoxHandcuff entities: - - uid: 1872 + - uid: 8517 components: - type: Transform - pos: -25.850195,-13.340575 + pos: -25.770853,-6.4264956 parent: 60 - proto: BoxLatexGloves entities: @@ -16918,11 +17011,6 @@ entities: parent: 60 - proto: BoxLightMixed entities: - - uid: 1940 - components: - - type: Transform - pos: -32.45523,-0.43822744 - parent: 60 - uid: 3972 components: - type: Transform @@ -16933,6 +17021,11 @@ entities: - type: Transform pos: 1.5511138,15.604638 parent: 60 + - uid: 6704 + components: + - type: Transform + pos: -22.497168,-20.37416 + parent: 60 - uid: 7217 components: - type: Transform @@ -17011,10 +17104,15 @@ entities: parent: 60 - proto: BoxZiptie entities: - - uid: 19869 + - uid: 13148 + components: + - type: Transform + pos: -30.92134,-20.595226 + parent: 60 + - uid: 21067 components: - type: Transform - pos: -25.488205,-11.296209 + pos: -27.615358,-9.430985 parent: 60 - proto: BrbSign entities: @@ -17030,84 +17128,62 @@ entities: parent: 60 - proto: BrigTimer entities: - - uid: 1468 + - uid: 24 components: - type: MetaData - name: Cell 3 Timer + name: Cell 1 Brig Timer - type: Transform - pos: -32.5,-5.5 + rot: -1.5707963267948966 rad + pos: -32.5,-4.5 parent: 60 - type: DeviceLinkSource linkedPorts: - 230: + 1483: - Start: Close - - Timer: AutoClose - Timer: Open - - uid: 1485 - components: - - type: MetaData - name: Cell 4 Timer - - type: Transform - pos: -32.5,-8.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 268: - - Start: Close - Timer: AutoClose - - Timer: Open - - uid: 1486 + - uid: 1853 components: - type: MetaData - name: Cell 5 Timer + name: Cell 3 Brig Timer - type: Transform - pos: -32.5,-11.5 + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 parent: 60 - type: DeviceLinkSource linkedPorts: - 243: + 1548: - Start: Close - - Timer: AutoClose - Timer: Open - - uid: 1488 - components: - - type: MetaData - name: Cell 1 Timer - - type: Transform - pos: -20.5,-8.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 151: - - Start: Close - Timer: AutoClose - - Timer: Open - - uid: 6971 + - uid: 9058 components: - type: MetaData - name: Medical Cell Timer + name: Cell 2 Brig Timer - type: Transform - pos: -20.5,-5.5 + rot: -1.5707963267948966 rad + pos: -32.5,-8.5 parent: 60 - type: DeviceLinkSource linkedPorts: - 843: + 1555: - Start: Close - - Timer: AutoClose - Timer: Open - - uid: 6972 + - Timer: AutoClose + - uid: 9158 components: - type: MetaData - name: Cell 2 Timer + name: Cell 4 Brig Timer - type: Transform - pos: -20.5,-11.5 + rot: -1.5707963267948966 rad + pos: -20.5,-8.5 parent: 60 - type: DeviceLinkSource linkedPorts: - 72: + 1487: - Start: Close - - Timer: AutoClose - Timer: Open + - Timer: AutoClose - proto: BrokenBottle entities: - uid: 23662 @@ -17115,6 +17191,13 @@ entities: - type: Transform pos: -56.485756,52.334377 parent: 60 +- proto: Brutepack + entities: + - uid: 9030 + components: + - type: Transform + pos: -19.411993,-13.214928 + parent: 60 - proto: Bucket entities: - uid: 2708 @@ -17161,6 +17244,12 @@ entities: - type: Transform pos: -8.5,-2.5 parent: 60 + - uid: 4551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,1.5 + parent: 60 - uid: 4723 components: - type: Transform @@ -17179,22 +17268,33 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 60 - - uid: 13637 + - uid: 8233 components: - type: Transform - pos: -48.5,15.5 + pos: -54.5,0.5 parent: 60 - - uid: 13853 + - uid: 9682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 60 + - uid: 10671 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-21.5 + pos: -20.5,-2.5 parent: 60 - - uid: 18968 + - uid: 13637 + components: + - type: Transform + pos: -48.5,15.5 + parent: 60 + - uid: 13853 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-1.5 + pos: 37.5,-21.5 parent: 60 - uid: 19838 components: @@ -17207,12 +17307,6 @@ entities: - type: Transform pos: 25.5,5.5 parent: 60 - - uid: 23939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-18.5 - parent: 60 - uid: 25261 components: - type: Transform @@ -17286,10 +17380,15 @@ entities: parent: 60 - proto: ButtonFrameCautionSecurity entities: - - uid: 766 + - uid: 4299 components: - type: Transform - pos: -20.5,-14.5 + pos: -52.5,28.5 + parent: 60 + - uid: 4333 + components: + - type: Transform + pos: -48.5,28.5 parent: 60 - uid: 5659 components: @@ -17314,17 +17413,17 @@ entities: parent: 60 - proto: ButtonFrameJanitor entities: - - uid: 21482 + - uid: 19869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,5.5 + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 parent: 60 - - uid: 23940 + - uid: 21482 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-14.5 + pos: 46.5,5.5 parent: 60 - uid: 25263 components: @@ -17361,11 +17460,71 @@ entities: - type: Transform pos: -65.5,7.5 parent: 60 + - uid: 69 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 60 - uid: 70 components: - type: Transform pos: 1.5,-77.5 parent: 60 + - uid: 72 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 60 + - uid: 76 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 60 + - uid: 79 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 60 + - uid: 81 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 60 + - uid: 96 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 60 + - uid: 112 + components: + - type: Transform + pos: -27.5,0.5 + parent: 60 + - uid: 115 + components: + - type: Transform + pos: -25.5,0.5 + parent: 60 + - uid: 119 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 60 + - uid: 151 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 60 + - uid: 152 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 60 + - uid: 155 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 60 - uid: 167 components: - type: Transform @@ -17391,6 +17550,11 @@ entities: - type: Transform pos: 50.5,23.5 parent: 60 + - uid: 315 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 60 - uid: 332 components: - type: Transform @@ -17451,11 +17615,6 @@ entities: - type: Transform pos: -10.5,5.5 parent: 60 - - uid: 630 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 60 - uid: 643 components: - type: Transform @@ -17466,16 +17625,6 @@ entities: - type: Transform pos: -11.5,5.5 parent: 60 - - uid: 778 - components: - - type: Transform - pos: -32.5,-15.5 - parent: 60 - - uid: 781 - components: - - type: Transform - pos: -32.5,-14.5 - parent: 60 - uid: 815 components: - type: Transform @@ -17556,16 +17705,6 @@ entities: - type: Transform pos: -11.5,25.5 parent: 60 - - uid: 1555 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 60 - - uid: 1560 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 60 - uid: 1628 components: - type: Transform @@ -17586,20 +17725,55 @@ entities: - type: Transform pos: -20.5,-33.5 parent: 60 + - uid: 1697 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 60 + - uid: 1701 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 60 - uid: 1703 components: - type: Transform pos: 30.5,-17.5 parent: 60 + - uid: 1706 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 60 - uid: 1716 components: - type: Transform pos: 1.5,-6.5 parent: 60 - - uid: 1762 + - uid: 1717 components: - type: Transform - pos: -33.5,-15.5 + pos: -18.5,-5.5 + parent: 60 + - uid: 1720 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 60 + - uid: 1722 + components: + - type: Transform + pos: -20.5,0.5 + parent: 60 + - uid: 1735 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 60 + - uid: 1751 + components: + - type: Transform + pos: -19.5,-19.5 parent: 60 - uid: 1763 components: @@ -17611,21 +17785,131 @@ entities: - type: Transform pos: -57.5,-22.5 parent: 60 + - uid: 1824 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 60 + - uid: 1831 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 60 + - uid: 1835 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 60 + - uid: 1836 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 60 + - uid: 1854 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 60 + - uid: 1855 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 60 + - uid: 1859 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 60 - uid: 1860 components: - type: Transform pos: 32.5,-17.5 parent: 60 - - uid: 1862 + - uid: 1872 components: - type: Transform - pos: -33.5,-18.5 + pos: -27.5,-11.5 + parent: 60 + - uid: 1874 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 60 + - uid: 1881 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 60 + - uid: 1883 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 60 + - uid: 1887 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 60 + - uid: 1888 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 60 + - uid: 1889 + components: + - type: Transform + pos: -26.5,-9.5 parent: 60 - uid: 1891 components: - type: Transform pos: 52.5,-24.5 parent: 60 + - uid: 1892 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 60 + - uid: 1893 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 60 + - uid: 1901 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 60 + - uid: 1935 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 60 + - uid: 1938 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 60 + - uid: 1947 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 60 + - uid: 1951 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 60 + - uid: 1958 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 60 + - uid: 1965 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 60 - uid: 2019 components: - type: Transform @@ -17636,10 +17920,30 @@ entities: - type: Transform pos: -23.5,-29.5 parent: 60 - - uid: 2119 + - uid: 2090 components: - type: Transform - pos: -25.5,-21.5 + pos: -33.5,2.5 + parent: 60 + - uid: 2093 + components: + - type: Transform + pos: -32.5,1.5 + parent: 60 + - uid: 2096 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 60 + - uid: 2097 + components: + - type: Transform + pos: -19.5,0.5 + parent: 60 + - uid: 2099 + components: + - type: Transform + pos: -34.5,-17.5 parent: 60 - uid: 2166 components: @@ -17701,11 +18005,6 @@ entities: - type: Transform pos: -61.5,-18.5 parent: 60 - - uid: 2602 - components: - - type: Transform - pos: -33.5,-21.5 - parent: 60 - uid: 2606 components: - type: Transform @@ -17721,6 +18020,31 @@ entities: - type: Transform pos: 39.5,-44.5 parent: 60 + - uid: 2760 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 60 + - uid: 2791 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 60 + - uid: 2792 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 60 + - uid: 2793 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 60 + - uid: 2807 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 60 - uid: 2887 components: - type: Transform @@ -17761,6 +18085,11 @@ entities: - type: Transform pos: -12.5,-19.5 parent: 60 + - uid: 3198 + components: + - type: Transform + pos: -30.5,0.5 + parent: 60 - uid: 3246 components: - type: Transform @@ -17906,6 +18235,11 @@ entities: - type: Transform pos: 45.5,6.5 parent: 60 + - uid: 4009 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 60 - uid: 4017 components: - type: Transform @@ -17916,6 +18250,11 @@ entities: - type: Transform pos: -65.5,-0.5 parent: 60 + - uid: 4235 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 60 - uid: 4259 components: - type: Transform @@ -17931,6 +18270,11 @@ entities: - type: Transform pos: -52.5,-13.5 parent: 60 + - uid: 4282 + components: + - type: Transform + pos: -43.5,26.5 + parent: 60 - uid: 4327 components: - type: Transform @@ -17951,11 +18295,31 @@ entities: - type: Transform pos: -66.5,1.5 parent: 60 + - uid: 4504 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 60 + - uid: 4516 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 60 - uid: 4528 components: - type: Transform pos: 55.5,-35.5 parent: 60 + - uid: 4562 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 60 + - uid: 4568 + components: + - type: Transform + pos: -43.5,25.5 + parent: 60 - uid: 4632 components: - type: Transform @@ -18301,10 +18665,10 @@ entities: - type: Transform pos: -15.5,-31.5 parent: 60 - - uid: 5219 + - uid: 5224 components: - type: Transform - pos: -27.5,-20.5 + pos: -29.5,-11.5 parent: 60 - uid: 5233 components: @@ -18316,6 +18680,11 @@ entities: - type: Transform pos: 40.5,-7.5 parent: 60 + - uid: 5294 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 60 - uid: 5325 components: - type: Transform @@ -18361,6 +18730,21 @@ entities: - type: Transform pos: 8.5,5.5 parent: 60 + - uid: 5423 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 60 + - uid: 5431 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 60 + - uid: 5436 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 60 - uid: 5462 components: - type: Transform @@ -18386,6 +18770,11 @@ entities: - type: Transform pos: 58.5,5.5 parent: 60 + - uid: 5662 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 60 - uid: 5665 components: - type: Transform @@ -18421,21 +18810,81 @@ entities: - type: Transform pos: 55.5,4.5 parent: 60 + - uid: 5810 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 60 - uid: 5838 components: - type: Transform pos: -15.5,-29.5 parent: 60 + - uid: 5925 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 60 + - uid: 5935 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 60 + - uid: 5936 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 60 + - uid: 5972 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 60 + - uid: 6043 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 60 - uid: 6086 components: - type: Transform pos: 52.5,-25.5 parent: 60 + - uid: 6087 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 60 + - uid: 6093 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 60 + - uid: 6156 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 60 + - uid: 6173 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 60 + - uid: 6174 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 60 - uid: 6216 components: - type: Transform pos: -16.5,-54.5 parent: 60 + - uid: 6365 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 60 - uid: 6428 components: - type: Transform @@ -18451,11 +18900,31 @@ entities: - type: Transform pos: 49.5,-11.5 parent: 60 + - uid: 6467 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 60 + - uid: 6541 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 60 + - uid: 6560 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 60 - uid: 6591 components: - type: Transform pos: -57.5,-13.5 parent: 60 + - uid: 6611 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 60 - uid: 6664 components: - type: Transform @@ -18466,6 +18935,26 @@ entities: - type: Transform pos: -59.5,-21.5 parent: 60 + - uid: 6702 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 60 + - uid: 6703 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 60 + - uid: 6714 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 60 + - uid: 6733 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 60 - uid: 6740 components: - type: Transform @@ -18516,6 +19005,36 @@ entities: - type: Transform pos: -7.5,-54.5 parent: 60 + - uid: 6761 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 60 + - uid: 6763 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 60 + - uid: 6794 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 60 + - uid: 6818 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 60 + - uid: 6825 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 60 + - uid: 6828 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 60 - uid: 6858 components: - type: Transform @@ -18526,6 +19045,26 @@ entities: - type: Transform pos: -52.5,-16.5 parent: 60 + - uid: 6885 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 60 + - uid: 6886 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 60 + - uid: 6888 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 60 + - uid: 6889 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 60 - uid: 6921 components: - type: Transform @@ -18561,11 +19100,41 @@ entities: - type: Transform pos: -62.5,-0.5 parent: 60 + - uid: 6971 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 60 + - uid: 6983 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 60 + - uid: 6992 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 60 + - uid: 6993 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 60 + - uid: 7006 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 60 - uid: 7010 components: - type: Transform pos: -34.5,-32.5 parent: 60 + - uid: 7041 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 60 - uid: 7062 components: - type: Transform @@ -18586,6 +19155,16 @@ entities: - type: Transform pos: -10.5,27.5 parent: 60 + - uid: 7231 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 60 + - uid: 7284 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 60 - uid: 7366 components: - type: Transform @@ -18731,150 +19310,125 @@ entities: - type: Transform pos: -63.5,7.5 parent: 60 - - uid: 7668 + - uid: 7656 components: - type: Transform - pos: 3.5,33.5 + pos: -19.5,-0.5 parent: 60 - - uid: 7741 + - uid: 7668 components: - type: Transform - pos: -10.5,-18.5 + pos: 3.5,33.5 parent: 60 - - uid: 7907 + - uid: 7685 components: - type: Transform - pos: -33.5,-19.5 + pos: -21.5,0.5 parent: 60 - - uid: 8190 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 7536 - - uid: 8191 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 7536 - - uid: 8209 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 7536 - - uid: 8275 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 7536 - - uid: 8276 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 7536 - - uid: 8277 + - uid: 7741 components: - type: Transform - pos: -18.5,4.5 + pos: -10.5,-18.5 parent: 60 - - uid: 8278 + - uid: 7786 components: - type: Transform - pos: -19.5,4.5 + pos: -18.5,-3.5 parent: 60 - - uid: 8279 + - uid: 7790 components: - type: Transform - pos: -20.5,4.5 + pos: -21.5,-5.5 parent: 60 - - uid: 8280 + - uid: 7793 components: - type: Transform - pos: -21.5,4.5 + pos: -33.5,-17.5 parent: 60 - - uid: 8281 + - uid: 7812 components: - type: Transform - pos: -21.5,5.5 + pos: -20.5,-10.5 parent: 60 - - uid: 8282 + - uid: 7917 components: - type: Transform - pos: -22.5,5.5 + pos: -19.5,-5.5 parent: 60 - - uid: 8283 + - uid: 8190 components: - type: Transform - pos: -23.5,5.5 - parent: 60 - - uid: 8284 + pos: 9.5,-1.5 + parent: 7536 + - uid: 8191 components: - type: Transform - pos: -24.5,5.5 - parent: 60 - - uid: 8285 + pos: 9.5,-2.5 + parent: 7536 + - uid: 8209 components: - type: Transform - pos: -25.5,5.5 - parent: 60 - - uid: 8286 + pos: 10.5,-2.5 + parent: 7536 + - uid: 8223 components: - type: Transform - pos: -26.5,5.5 + pos: -19.5,-20.5 parent: 60 - - uid: 8287 + - uid: 8226 components: - type: Transform - pos: -27.5,5.5 + pos: -21.5,-13.5 parent: 60 - - uid: 8288 + - uid: 8229 components: - type: Transform - pos: -28.5,5.5 + pos: -28.5,-9.5 parent: 60 - - uid: 8289 + - uid: 8247 components: - type: Transform - pos: -29.5,5.5 + pos: -29.5,-12.5 parent: 60 - - uid: 8290 + - uid: 8252 components: - type: Transform - pos: -34.5,5.5 + pos: -21.5,-9.5 parent: 60 - - uid: 8291 + - uid: 8263 components: - type: Transform - pos: -33.5,5.5 + pos: -35.5,-20.5 parent: 60 - - uid: 8292 + - uid: 8265 components: - type: Transform - pos: -30.5,5.5 + pos: -19.5,1.5 parent: 60 - - uid: 8293 + - uid: 8271 components: - type: Transform - pos: -31.5,5.5 + pos: -26.5,-10.5 parent: 60 - - uid: 8294 + - uid: 8273 components: - type: Transform - pos: -32.5,5.5 + pos: -23.5,-12.5 parent: 60 - - uid: 8295 + - uid: 8275 components: - type: Transform - pos: -32.5,4.5 - parent: 60 - - uid: 8296 + pos: 11.5,-2.5 + parent: 7536 + - uid: 8276 components: - type: Transform - pos: -32.5,3.5 - parent: 60 - - uid: 8297 + pos: 12.5,-2.5 + parent: 7536 + - uid: 8282 components: - type: Transform - pos: -32.5,2.5 + pos: -17.5,-11.5 parent: 60 - uid: 8315 components: @@ -18906,145 +19460,25 @@ entities: - type: Transform pos: -59.5,-13.5 parent: 60 - - uid: 8326 - components: - - type: Transform - pos: -32.5,1.5 - parent: 60 - - uid: 8327 - components: - - type: Transform - pos: -32.5,0.5 - parent: 60 - - uid: 8328 - components: - - type: Transform - pos: -34.5,-0.5 - parent: 60 - - uid: 8329 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 60 - - uid: 8330 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 60 - - uid: 8331 - components: - - type: Transform - pos: -31.5,-0.5 - parent: 60 - - uid: 8332 - components: - - type: Transform - pos: -30.5,-0.5 - parent: 60 - - uid: 8333 - components: - - type: Transform - pos: -30.5,-1.5 - parent: 60 - - uid: 8334 - components: - - type: Transform - pos: -30.5,-2.5 - parent: 60 - uid: 8335 components: - type: Transform - pos: -34.5,-3.5 - parent: 60 - - uid: 8336 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 60 - - uid: 8337 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 60 - - uid: 8338 - components: - - type: Transform - pos: -31.5,-3.5 - parent: 60 - - uid: 8339 - components: - - type: Transform - pos: -30.5,-3.5 + pos: -35.5,-11.5 parent: 60 - uid: 8340 components: - type: Transform - pos: -24.5,-9.5 + pos: -35.5,-7.5 parent: 60 - uid: 8341 components: - type: Transform - pos: -28.5,-9.5 - parent: 60 - - uid: 8342 - components: - - type: Transform - pos: -27.5,-9.5 - parent: 60 - - uid: 8343 - components: - - type: Transform - pos: -25.5,-9.5 - parent: 60 - - uid: 8344 - components: - - type: Transform - pos: -26.5,-11.5 - parent: 60 - - uid: 8345 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 60 - - uid: 8346 - components: - - type: Transform - pos: -26.5,-9.5 + pos: -33.5,-9.5 parent: 60 - uid: 8347 components: - type: Transform - pos: -26.5,-8.5 - parent: 60 - - uid: 8348 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 60 - - uid: 8349 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 60 - - uid: 8350 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 60 - - uid: 8351 - components: - - type: Transform - pos: -25.5,1.5 - parent: 60 - - uid: 8352 - components: - - type: Transform - pos: -27.5,1.5 - parent: 60 - - uid: 8353 - components: - - type: Transform - pos: -26.5,2.5 + pos: -31.5,-11.5 parent: 60 - uid: 8356 components: @@ -19066,11 +19500,6 @@ entities: - type: Transform pos: 5.5,-0.5 parent: 7536 - - uid: 8392 - components: - - type: Transform - pos: -26.5,1.5 - parent: 60 - uid: 8405 components: - type: Transform @@ -19086,395 +19515,35 @@ entities: - type: Transform pos: 5.5,-3.5 parent: 7536 - - uid: 8416 - components: - - type: Transform - pos: -26.5,0.5 - parent: 60 - - uid: 8417 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 60 - - uid: 8418 - components: - - type: Transform - pos: -26.5,-1.5 - parent: 60 - - uid: 8419 - components: - - type: Transform - pos: -26.5,-2.5 - parent: 60 - - uid: 8420 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 60 - - uid: 8421 - components: - - type: Transform - pos: -21.5,1.5 - parent: 60 - - uid: 8424 - components: - - type: Transform - pos: -20.5,1.5 - parent: 60 - - uid: 8425 - components: - - type: Transform - pos: -19.5,1.5 - parent: 60 - - uid: 8428 - components: - - type: Transform - pos: -19.5,0.5 - parent: 60 - uid: 8429 components: - type: Transform - pos: -19.5,-0.5 - parent: 60 - - uid: 8430 - components: - - type: Transform - pos: -20.5,-0.5 - parent: 60 - - uid: 8431 - components: - - type: Transform - pos: -21.5,-0.5 - parent: 60 - - uid: 8433 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 60 - - uid: 8434 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 60 - - uid: 8436 - components: - - type: Transform - pos: -18.5,-3.5 - parent: 60 - - uid: 8437 - components: - - type: Transform - pos: -19.5,-3.5 - parent: 60 - - uid: 8438 - components: - - type: Transform - pos: -20.5,-3.5 - parent: 60 - - uid: 8439 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 60 - - uid: 8440 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 60 - - uid: 8441 - components: - - type: Transform - pos: -22.5,-4.5 - parent: 60 - - uid: 8442 - components: - - type: Transform - pos: -23.5,-4.5 - parent: 60 - - uid: 8443 - components: - - type: Transform - pos: -24.5,-4.5 - parent: 60 - - uid: 8444 - components: - - type: Transform - pos: -25.5,-4.5 - parent: 60 - - uid: 8445 - components: - - type: Transform - pos: -26.5,-4.5 - parent: 60 - - uid: 8446 - components: - - type: Transform - pos: -27.5,-4.5 - parent: 60 - - uid: 8447 - components: - - type: Transform - pos: -28.5,-4.5 - parent: 60 - - uid: 8448 - components: - - type: Transform - pos: -29.5,-4.5 - parent: 60 - - uid: 8449 - components: - - type: Transform - pos: -29.5,-3.5 - parent: 60 - - uid: 8450 - components: - - type: Transform - pos: -29.5,-2.5 - parent: 60 - - uid: 8451 - components: - - type: Transform - pos: -29.5,-1.5 - parent: 60 - - uid: 8452 - components: - - type: Transform - pos: -34.5,-6.5 - parent: 60 - - uid: 8453 - components: - - type: Transform - pos: -33.5,-6.5 - parent: 60 - - uid: 8454 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 60 - - uid: 8455 - components: - - type: Transform - pos: -31.5,-6.5 - parent: 60 - - uid: 8456 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 60 - - uid: 8457 - components: - - type: Transform - pos: -33.5,-9.5 - parent: 60 - - uid: 8458 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 60 - - uid: 8462 - components: - - type: Transform - pos: -31.5,-9.5 - parent: 60 - - uid: 8463 - components: - - type: Transform - pos: -34.5,-12.5 - parent: 60 - - uid: 8464 - components: - - type: Transform - pos: -33.5,-12.5 + pos: -35.5,-10.5 parent: 60 - uid: 8465 components: - type: Transform - pos: -32.5,-12.5 - parent: 60 - - uid: 8467 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 60 - - uid: 8468 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 60 - - uid: 8469 - components: - - type: Transform - pos: -30.5,-7.5 + pos: -25.5,-7.5 parent: 60 - uid: 8470 components: - type: Transform - pos: -30.5,-8.5 - parent: 60 - - uid: 8471 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 60 - - uid: 8472 - components: - - type: Transform - pos: -30.5,-10.5 - parent: 60 - - uid: 8473 - components: - - type: Transform - pos: -30.5,-11.5 + pos: -24.5,-7.5 parent: 60 - uid: 8474 components: - type: Transform - pos: -30.5,-12.5 - parent: 60 - - uid: 8475 - components: - - type: Transform - pos: -30.5,-13.5 - parent: 60 - - uid: 8476 - components: - - type: Transform - pos: -30.5,-14.5 - parent: 60 - - uid: 8477 - components: - - type: Transform - pos: -18.5,-12.5 - parent: 60 - - uid: 8478 - components: - - type: Transform - pos: -19.5,-12.5 - parent: 60 - - uid: 8479 - components: - - type: Transform - pos: -20.5,-12.5 - parent: 60 - - uid: 8480 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 60 - - uid: 8481 - components: - - type: Transform - pos: -18.5,-9.5 + pos: -29.5,-9.5 parent: 60 - uid: 8482 components: - type: Transform - pos: -19.5,-9.5 - parent: 60 - - uid: 8483 - components: - - type: Transform - pos: -20.5,-9.5 - parent: 60 - - uid: 8484 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 60 - - uid: 8503 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 60 - - uid: 8504 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 60 - - uid: 8505 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 60 - - uid: 8506 - components: - - type: Transform - pos: -20.5,-6.5 - parent: 60 - - uid: 8507 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 60 - - uid: 8508 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 60 - - uid: 8509 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 60 - - uid: 8510 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 60 - - uid: 8511 - components: - - type: Transform - pos: -22.5,-10.5 + pos: -35.5,-9.5 parent: 60 - uid: 8512 components: - type: Transform - pos: -22.5,-11.5 - parent: 60 - - uid: 8513 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 60 - - uid: 8514 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 60 - - uid: 8515 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 60 - - uid: 8516 - components: - - type: Transform - pos: -19.5,-16.5 - parent: 60 - - uid: 8517 - components: - - type: Transform - pos: -20.5,-15.5 - parent: 60 - - uid: 8518 - components: - - type: Transform - pos: -19.5,-15.5 - parent: 60 - - uid: 8519 - components: - - type: Transform - pos: -21.5,-15.5 - parent: 60 - - uid: 8520 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 60 - - uid: 8523 - components: - - type: Transform - pos: -23.5,-15.5 + pos: -34.5,-1.5 parent: 60 - uid: 8531 components: @@ -19486,125 +19555,25 @@ entities: - type: Transform pos: 3.5,-1.5 parent: 7536 - - uid: 8569 - components: - - type: Transform - pos: -30.5,-15.5 - parent: 60 - - uid: 8570 - components: - - type: Transform - pos: -29.5,-15.5 - parent: 60 - - uid: 8571 - components: - - type: Transform - pos: -28.5,-15.5 - parent: 60 - - uid: 8572 - components: - - type: Transform - pos: -27.5,-15.5 - parent: 60 - - uid: 8573 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 60 - - uid: 8574 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 60 - - uid: 8575 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 60 - - uid: 8576 - components: - - type: Transform - pos: -24.5,-16.5 - parent: 60 - - uid: 8582 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 60 - - uid: 8590 - components: - - type: Transform - pos: -19.5,-20.5 - parent: 60 - - uid: 8595 - components: - - type: Transform - pos: -18.5,-19.5 - parent: 60 - - uid: 8596 - components: - - type: Transform - pos: -19.5,-19.5 - parent: 60 - - uid: 8597 - components: - - type: Transform - pos: -20.5,-19.5 - parent: 60 - - uid: 8598 - components: - - type: Transform - pos: -21.5,-19.5 - parent: 60 - - uid: 8601 - components: - - type: Transform - pos: -22.5,-19.5 - parent: 60 - - uid: 8606 - components: - - type: Transform - pos: -23.5,-19.5 - parent: 60 - uid: 8609 components: - type: Transform - pos: -29.5,-19.5 + pos: -24.5,-4.5 parent: 60 - uid: 8610 components: - type: Transform - pos: -28.5,-19.5 - parent: 60 - - uid: 8654 - components: - - type: Transform - pos: -27.5,-19.5 - parent: 60 - - uid: 8655 - components: - - type: Transform - pos: -26.5,-19.5 - parent: 60 - - uid: 8656 - components: - - type: Transform - pos: -25.5,-19.5 - parent: 60 - - uid: 8662 - components: - - type: Transform - pos: -24.5,-19.5 + pos: -27.5,-4.5 parent: 60 - - uid: 8664 + - uid: 8695 components: - type: Transform - pos: -24.5,-18.5 + pos: -32.5,2.5 parent: 60 - - uid: 8665 + - uid: 8709 components: - type: Transform - pos: -24.5,-17.5 + pos: -29.5,-4.5 parent: 60 - uid: 8739 components: @@ -19631,11 +19600,6 @@ entities: - type: Transform pos: -66.5,2.5 parent: 60 - - uid: 8770 - components: - - type: Transform - pos: -33.5,-17.5 - parent: 60 - uid: 8786 components: - type: Transform @@ -19656,6 +19620,11 @@ entities: - type: Transform pos: -0.5,-2.5 parent: 7536 + - uid: 8790 + components: + - type: Transform + pos: -33.5,3.5 + parent: 60 - uid: 8893 components: - type: Transform @@ -21426,6 +21395,11 @@ entities: - type: Transform pos: -34.5,13.5 parent: 60 + - uid: 10368 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 60 - uid: 10370 components: - type: Transform @@ -22551,6 +22525,16 @@ entities: - type: Transform pos: -37.5,-24.5 parent: 60 + - uid: 10673 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 60 + - uid: 10677 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 60 - uid: 10683 components: - type: Transform @@ -23671,6 +23655,16 @@ entities: - type: Transform pos: 24.5,-37.5 parent: 60 + - uid: 11373 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 60 + - uid: 11374 + components: + - type: Transform + pos: -26.5,0.5 + parent: 60 - uid: 11380 components: - type: Transform @@ -23681,6 +23675,11 @@ entities: - type: Transform pos: -10.5,-1.5 parent: 7536 + - uid: 11383 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 60 - uid: 11398 components: - type: Transform @@ -23691,6 +23690,11 @@ entities: - type: Transform pos: -52.5,-15.5 parent: 60 + - uid: 11456 + components: + - type: Transform + pos: -30.5,2.5 + parent: 60 - uid: 11475 components: - type: Transform @@ -24421,6 +24425,11 @@ entities: - type: Transform pos: 7.5,-20.5 parent: 60 + - uid: 12188 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 60 - uid: 12278 components: - type: Transform @@ -25391,6 +25400,16 @@ entities: - type: Transform pos: 36.5,-16.5 parent: 60 + - uid: 13149 + components: + - type: Transform + pos: -32.5,0.5 + parent: 60 + - uid: 13158 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 60 - uid: 13203 components: - type: Transform @@ -26226,11 +26245,31 @@ entities: - type: Transform pos: 31.5,-51.5 parent: 60 + - uid: 13583 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 60 + - uid: 13585 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 60 + - uid: 13623 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 60 - uid: 13655 components: - type: Transform pos: -10.5,25.5 parent: 60 + - uid: 13662 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 60 - uid: 13686 components: - type: Transform @@ -26376,6 +26415,21 @@ entities: - type: Transform pos: -62.5,27.5 parent: 60 + - uid: 14227 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 60 + - uid: 14230 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 60 + - uid: 14231 + components: + - type: Transform + pos: -30.5,1.5 + parent: 60 - uid: 14345 components: - type: Transform @@ -27066,11 +27120,21 @@ entities: - type: Transform pos: -20.5,17.5 parent: 60 + - uid: 14631 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 60 - uid: 14652 components: - type: Transform pos: -12.5,-14.5 parent: 60 + - uid: 14726 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 60 - uid: 14904 components: - type: Transform @@ -27161,6 +27225,11 @@ entities: - type: Transform pos: -17.5,48.5 parent: 60 + - uid: 15183 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 60 - uid: 15272 components: - type: Transform @@ -27471,6 +27540,11 @@ entities: - type: Transform pos: -50.5,16.5 parent: 60 + - uid: 16164 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 60 - uid: 16361 components: - type: Transform @@ -27501,6 +27575,11 @@ entities: - type: Transform pos: -7.5,38.5 parent: 60 + - uid: 16447 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 60 - uid: 16510 components: - type: Transform @@ -29236,6 +29315,11 @@ entities: - type: Transform pos: -44.5,15.5 parent: 60 + - uid: 18104 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 60 - uid: 18213 components: - type: Transform @@ -29606,6 +29690,16 @@ entities: - type: Transform pos: 3.5,-10.5 parent: 60 + - uid: 18590 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 60 + - uid: 18606 + components: + - type: Transform + pos: -31.5,2.5 + parent: 60 - uid: 18631 components: - type: Transform @@ -30736,6 +30830,11 @@ entities: - type: Transform pos: 8.5,-23.5 parent: 60 + - uid: 21074 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 60 - uid: 21093 components: - type: Transform @@ -30859,7 +30958,7 @@ entities: - uid: 21158 components: - type: Transform - pos: -33.5,-20.5 + pos: -23.5,-4.5 parent: 60 - uid: 21171 components: @@ -30966,6 +31065,16 @@ entities: - type: Transform pos: 10.5,-23.5 parent: 60 + - uid: 21380 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 60 + - uid: 21409 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 60 - uid: 21466 components: - type: Transform @@ -31041,6 +31150,11 @@ entities: - type: Transform pos: -2.5,-4.5 parent: 60 + - uid: 21770 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 60 - uid: 22548 components: - type: Transform @@ -33195,6 +33309,21 @@ entities: parent: 60 - proto: CableApcStack1 entities: + - uid: 4580 + components: + - type: Transform + pos: -58.5,19.5 + parent: 60 + - uid: 8666 + components: + - type: Transform + pos: -58.5,17.5 + parent: 60 + - uid: 9683 + components: + - type: Transform + pos: -58.5,18.5 + parent: 60 - uid: 21173 components: - type: Transform @@ -33212,6 +33341,11 @@ entities: - type: Transform pos: -65.5,-17.5 parent: 60 + - uid: 255 + components: + - type: Transform + pos: -26.5,6.5 + parent: 60 - uid: 277 components: - type: Transform @@ -33312,6 +33446,86 @@ entities: - type: Transform pos: 31.5,-58.5 parent: 60 + - uid: 1582 + components: + - type: Transform + pos: -36.5,4.5 + parent: 60 + - uid: 1585 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 60 + - uid: 1586 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 60 + - uid: 1589 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 60 + - uid: 1594 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 60 + - uid: 1596 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 60 + - uid: 1597 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 60 + - uid: 1599 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 60 + - uid: 1600 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 60 + - uid: 1601 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 60 + - uid: 1615 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 60 + - uid: 1617 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 60 + - uid: 1618 + components: + - type: Transform + pos: -36.5,0.5 + parent: 60 + - uid: 1619 + components: + - type: Transform + pos: -36.5,1.5 + parent: 60 + - uid: 1620 + components: + - type: Transform + pos: -36.5,2.5 + parent: 60 + - uid: 1623 + components: + - type: Transform + pos: -36.5,3.5 + parent: 60 - uid: 1626 components: - type: Transform @@ -33537,6 +33751,11 @@ entities: - type: Transform pos: 1.5,-39.5 parent: 60 + - uid: 4018 + components: + - type: Transform + pos: -27.5,5.5 + parent: 60 - uid: 4031 components: - type: Transform @@ -33547,6 +33766,11 @@ entities: - type: Transform pos: -86.5,-16.5 parent: 60 + - uid: 4215 + components: + - type: Transform + pos: -46.5,27.5 + parent: 60 - uid: 4240 components: - type: Transform @@ -34152,11 +34376,6 @@ entities: - type: Transform pos: 27.5,-62.5 parent: 60 - - uid: 6779 - components: - - type: Transform - pos: -33.5,4.5 - parent: 60 - uid: 6829 components: - type: Transform @@ -34242,11 +34461,6 @@ entities: - type: Transform pos: 55.5,-41.5 parent: 60 - - uid: 7909 - components: - - type: Transform - pos: -35.5,4.5 - parent: 60 - uid: 7910 components: - type: Transform @@ -34482,16 +34696,6 @@ entities: - type: Transform pos: -9.5,-2.5 parent: 7536 - - uid: 8221 - components: - - type: Transform - pos: -36.5,4.5 - parent: 60 - - uid: 8240 - components: - - type: Transform - pos: -34.5,4.5 - parent: 60 - uid: 8306 components: - type: Transform @@ -34517,6 +34721,21 @@ entities: - type: Transform pos: -72.5,-21.5 parent: 60 + - uid: 8441 + components: + - type: Transform + pos: -22.5,4.5 + parent: 60 + - uid: 8455 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 60 + - uid: 8505 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 60 - uid: 8628 components: - type: Transform @@ -34577,6 +34796,21 @@ entities: - type: Transform pos: -80.5,-12.5 parent: 60 + - uid: 8696 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 60 + - uid: 8711 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 60 + - uid: 8715 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 60 - uid: 8727 components: - type: Transform @@ -34627,6 +34861,11 @@ entities: - type: Transform pos: 41.5,-44.5 parent: 60 + - uid: 8770 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 60 - uid: 8772 components: - type: Transform @@ -34672,6 +34911,11 @@ entities: - type: Transform pos: 37.5,-72.5 parent: 60 + - uid: 9014 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 60 - uid: 9025 components: - type: Transform @@ -34697,6 +34941,11 @@ entities: - type: Transform pos: 34.5,-70.5 parent: 60 + - uid: 9031 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 60 - uid: 9055 components: - type: Transform @@ -34867,6 +35116,11 @@ entities: - type: Transform pos: 24.5,-76.5 parent: 60 + - uid: 9283 + components: + - type: Transform + pos: -26.5,5.5 + parent: 60 - uid: 9296 components: - type: Transform @@ -36447,115 +36701,10 @@ entities: - type: Transform pos: -37.5,-12.5 parent: 60 - - uid: 11361 - components: - - type: Transform - pos: -37.5,-11.5 - parent: 60 - - uid: 11362 - components: - - type: Transform - pos: -37.5,-10.5 - parent: 60 - - uid: 11363 - components: - - type: Transform - pos: -37.5,-9.5 - parent: 60 - - uid: 11364 - components: - - type: Transform - pos: -37.5,-8.5 - parent: 60 - - uid: 11365 - components: - - type: Transform - pos: -37.5,-7.5 - parent: 60 - - uid: 11366 - components: - - type: Transform - pos: -37.5,-6.5 - parent: 60 - - uid: 11367 - components: - - type: Transform - pos: -37.5,-5.5 - parent: 60 - - uid: 11368 - components: - - type: Transform - pos: -37.5,-4.5 - parent: 60 - - uid: 11369 - components: - - type: Transform - pos: -37.5,-3.5 - parent: 60 - - uid: 11370 - components: - - type: Transform - pos: -37.5,-2.5 - parent: 60 - - uid: 11371 - components: - - type: Transform - pos: -37.5,-1.5 - parent: 60 - - uid: 11372 - components: - - type: Transform - pos: -37.5,-0.5 - parent: 60 - - uid: 11373 - components: - - type: Transform - pos: -37.5,0.5 - parent: 60 - - uid: 11374 - components: - - type: Transform - pos: -37.5,1.5 - parent: 60 - - uid: 11375 - components: - - type: Transform - pos: -37.5,2.5 - parent: 60 - - uid: 11376 - components: - - type: Transform - pos: -37.5,3.5 - parent: 60 - - uid: 11377 - components: - - type: Transform - pos: -37.5,4.5 - parent: 60 - - uid: 11382 - components: - - type: Transform - pos: -33.5,5.5 - parent: 60 - - uid: 11383 - components: - - type: Transform - pos: -32.5,5.5 - parent: 60 - - uid: 11384 - components: - - type: Transform - pos: -31.5,5.5 - parent: 60 - - uid: 11385 - components: - - type: Transform - pos: -30.5,5.5 - parent: 60 - uid: 11386 components: - type: Transform - pos: -30.5,4.5 + pos: -31.5,5.5 parent: 60 - uid: 11451 components: @@ -36637,6 +36786,11 @@ entities: - type: Transform pos: -5.5,-49.5 parent: 60 + - uid: 11510 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 60 - uid: 11515 components: - type: Transform @@ -36672,6 +36826,16 @@ entities: - type: Transform pos: -58.5,15.5 parent: 60 + - uid: 11536 + components: + - type: Transform + pos: -33.5,4.5 + parent: 60 + - uid: 11555 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 60 - uid: 11584 components: - type: Transform @@ -36775,7 +36939,7 @@ entities: - uid: 11604 components: - type: Transform - pos: -46.5,27.5 + pos: -26.5,4.5 parent: 60 - uid: 11605 components: @@ -36897,6 +37061,11 @@ entities: - type: Transform pos: 38.5,-76.5 parent: 60 + - uid: 11759 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 60 - uid: 11786 components: - type: Transform @@ -37202,6 +37371,11 @@ entities: - type: Transform pos: 35.5,-3.5 parent: 60 + - uid: 11978 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 60 - uid: 11983 components: - type: Transform @@ -37417,6 +37591,11 @@ entities: - type: Transform pos: 7.5,-37.5 parent: 60 + - uid: 12189 + components: + - type: Transform + pos: -18.5,3.5 + parent: 60 - uid: 12198 components: - type: Transform @@ -37657,6 +37836,11 @@ entities: - type: Transform pos: -7.5,39.5 parent: 60 + - uid: 12598 + components: + - type: Transform + pos: -35.5,5.5 + parent: 60 - uid: 12649 components: - type: Transform @@ -37687,6 +37871,16 @@ entities: - type: Transform pos: 38.5,-66.5 parent: 60 + - uid: 12684 + components: + - type: Transform + pos: -32.5,5.5 + parent: 60 + - uid: 12685 + components: + - type: Transform + pos: -18.5,4.5 + parent: 60 - uid: 12696 components: - type: Transform @@ -37977,21 +38171,61 @@ entities: - type: Transform pos: 16.5,24.5 parent: 60 + - uid: 13150 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 60 - uid: 13249 components: - type: Transform pos: 5.5,38.5 parent: 60 + - uid: 13478 + components: + - type: Transform + pos: -19.5,4.5 + parent: 60 - uid: 13532 components: - type: Transform pos: -58.5,9.5 parent: 60 + - uid: 13582 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 60 + - uid: 13624 + components: + - type: Transform + pos: -25.5,4.5 + parent: 60 + - uid: 13660 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 60 + - uid: 13667 + components: + - type: Transform + pos: -23.5,4.5 + parent: 60 - uid: 13694 components: - type: Transform pos: -112.5,31.5 parent: 60 + - uid: 13972 + components: + - type: Transform + pos: -21.5,4.5 + parent: 60 + - uid: 14212 + components: + - type: Transform + pos: -34.5,5.5 + parent: 60 - uid: 14343 components: - type: Transform @@ -38797,31 +39031,6 @@ entities: - type: Transform pos: -26.5,7.5 parent: 60 - - uid: 15897 - components: - - type: Transform - pos: -26.5,6.5 - parent: 60 - - uid: 15898 - components: - - type: Transform - pos: -26.5,5.5 - parent: 60 - - uid: 15899 - components: - - type: Transform - pos: -27.5,5.5 - parent: 60 - - uid: 15900 - components: - - type: Transform - pos: -28.5,5.5 - parent: 60 - - uid: 15901 - components: - - type: Transform - pos: -29.5,5.5 - parent: 60 - uid: 15902 components: - type: Transform @@ -39752,6 +39961,11 @@ entities: - type: Transform pos: -4.5,35.5 parent: 60 + - uid: 16456 + components: + - type: Transform + pos: -28.5,5.5 + parent: 60 - uid: 16502 components: - type: Transform @@ -39772,6 +39986,11 @@ entities: - type: Transform pos: -2.5,35.5 parent: 60 + - uid: 16678 + components: + - type: Transform + pos: -34.5,2.5 + parent: 60 - uid: 17085 components: - type: Transform @@ -40032,6 +40251,11 @@ entities: - type: Transform pos: 10.5,37.5 parent: 60 + - uid: 17467 + components: + - type: Transform + pos: -33.5,5.5 + parent: 60 - uid: 17928 components: - type: Transform @@ -40092,65 +40316,25 @@ entities: - type: Transform pos: -16.5,3.5 parent: 60 - - uid: 17952 - components: - - type: Transform - pos: -16.5,4.5 - parent: 60 - - uid: 17953 - components: - - type: Transform - pos: -16.5,4.5 - parent: 60 - - uid: 17954 - components: - - type: Transform - pos: -17.5,4.5 - parent: 60 - - uid: 17955 - components: - - type: Transform - pos: -18.5,4.5 - parent: 60 - uid: 17956 components: - type: Transform - pos: -19.5,4.5 - parent: 60 - - uid: 17957 - components: - - type: Transform - pos: -20.5,4.5 - parent: 60 - - uid: 17958 - components: - - type: Transform - pos: -21.5,4.5 + pos: -36.5,5.5 parent: 60 - uid: 17959 components: - type: Transform - pos: -22.5,4.5 - parent: 60 - - uid: 17960 - components: - - type: Transform - pos: -22.5,5.5 - parent: 60 - - uid: 17961 - components: - - type: Transform - pos: -23.5,5.5 + pos: -35.5,-6.5 parent: 60 - uid: 17962 components: - type: Transform - pos: -24.5,5.5 + pos: -35.5,-11.5 parent: 60 - uid: 17963 components: - type: Transform - pos: -25.5,5.5 + pos: -36.5,-6.5 parent: 60 - uid: 17964 components: @@ -40202,6 +40386,11 @@ entities: - type: Transform pos: 11.5,-3.5 parent: 60 + - uid: 17987 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 60 - uid: 18001 components: - type: Transform @@ -40212,6 +40401,21 @@ entities: - type: Transform pos: 10.5,-3.5 parent: 60 + - uid: 18008 + components: + - type: Transform + pos: -16.5,2.5 + parent: 60 + - uid: 18092 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 60 + - uid: 18103 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 60 - uid: 18108 components: - type: Transform @@ -40507,6 +40711,11 @@ entities: - type: Transform pos: 4.5,3.5 parent: 60 + - uid: 18267 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 60 - uid: 18405 components: - type: Transform @@ -40527,6 +40736,81 @@ entities: - type: Transform pos: -0.5,-8.5 parent: 60 + - uid: 18463 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 60 + - uid: 18509 + components: + - type: Transform + pos: -16.5,0.5 + parent: 60 + - uid: 18510 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 60 + - uid: 18592 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 60 + - uid: 18594 + components: + - type: Transform + pos: -16.5,1.5 + parent: 60 + - uid: 18595 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 60 + - uid: 18596 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 60 + - uid: 18597 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 60 + - uid: 18598 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 60 + - uid: 18599 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 60 + - uid: 18600 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 60 + - uid: 18602 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 60 + - uid: 18603 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 60 + - uid: 18604 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 60 + - uid: 18605 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 60 - uid: 18613 components: - type: Transform @@ -40597,6 +40881,11 @@ entities: - type: Transform pos: -9.5,-3.5 parent: 60 + - uid: 18766 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 60 - uid: 18775 components: - type: Transform @@ -40627,6 +40916,11 @@ entities: - type: Transform pos: 25.5,4.5 parent: 60 + - uid: 18998 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 60 - uid: 19205 components: - type: Transform @@ -42172,6 +42466,31 @@ entities: - type: Transform pos: 4.5,36.5 parent: 60 + - uid: 21012 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 60 + - uid: 21050 + components: + - type: Transform + pos: -29.5,5.5 + parent: 60 + - uid: 21069 + components: + - type: Transform + pos: -30.5,5.5 + parent: 60 + - uid: 21214 + components: + - type: Transform + pos: -20.5,4.5 + parent: 60 + - uid: 21217 + components: + - type: Transform + pos: -24.5,4.5 + parent: 60 - uid: 21429 components: - type: Transform @@ -42197,11 +42516,26 @@ entities: - type: Transform pos: -11.5,-34.5 parent: 60 + - uid: 21726 + components: + - type: Transform + pos: -33.5,3.5 + parent: 60 - uid: 21741 components: - type: Transform pos: 0.5,34.5 parent: 60 + - uid: 21763 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 60 + - uid: 21765 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 60 - uid: 22475 components: - type: Transform @@ -42252,6 +42586,21 @@ entities: - type: Transform pos: -118.5,15.5 parent: 60 + - uid: 23108 + components: + - type: Transform + pos: -33.5,2.5 + parent: 60 + - uid: 23644 + components: + - type: Transform + pos: -17.5,3.5 + parent: 60 + - uid: 23830 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 60 - uid: 24416 components: - type: Transform @@ -42731,6 +43080,21 @@ entities: - type: Transform pos: -11.5,4.5 parent: 60 + - uid: 84 + components: + - type: Transform + pos: -31.5,2.5 + parent: 60 + - uid: 88 + components: + - type: Transform + pos: -30.5,2.5 + parent: 60 + - uid: 113 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 60 - uid: 117 components: - type: Transform @@ -42741,15 +43105,30 @@ entities: - type: Transform pos: 4.5,-32.5 parent: 60 - - uid: 166 + - uid: 121 components: - type: Transform - pos: 41.5,-18.5 + pos: -22.5,-3.5 parent: 60 - - uid: 178 + - uid: 149 components: - type: Transform - pos: -20.5,-2.5 + pos: -21.5,-5.5 + parent: 60 + - uid: 150 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 60 + - uid: 156 + components: + - type: Transform + pos: -33.5,2.5 + parent: 60 + - uid: 166 + components: + - type: Transform + pos: 41.5,-18.5 parent: 60 - uid: 241 components: @@ -42791,31 +43170,11 @@ entities: - type: Transform pos: 50.5,-21.5 parent: 60 - - uid: 564 - components: - - type: Transform - pos: -17.5,-13.5 - parent: 60 - uid: 592 components: - type: Transform pos: -12.5,1.5 parent: 60 - - uid: 628 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 60 - - uid: 634 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 60 - - uid: 635 - components: - - type: Transform - pos: -29.5,-17.5 - parent: 60 - uid: 718 components: - type: Transform @@ -42831,46 +43190,6 @@ entities: - type: Transform pos: 51.5,-21.5 parent: 60 - - uid: 774 - components: - - type: Transform - pos: -34.5,-6.5 - parent: 60 - - uid: 776 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 60 - - uid: 777 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 60 - - uid: 779 - components: - - type: Transform - pos: -27.5,-5.5 - parent: 60 - - uid: 782 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 60 - - uid: 783 - components: - - type: Transform - pos: -34.5,-12.5 - parent: 60 - - uid: 793 - components: - - type: Transform - pos: -35.5,-6.5 - parent: 60 - - uid: 813 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 60 - uid: 814 components: - type: Transform @@ -42911,66 +43230,11 @@ entities: - type: Transform pos: 4.5,-27.5 parent: 60 - - uid: 1504 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 60 - - uid: 1527 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 60 - - uid: 1540 - components: - - type: Transform - pos: -30.5,5.5 - parent: 60 - - uid: 1541 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 60 - - uid: 1542 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 60 - - uid: 1551 - components: - - type: Transform - pos: -21.5,-7.5 - parent: 60 - - uid: 1552 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 60 - - uid: 1553 - components: - - type: Transform - pos: -31.5,-6.5 - parent: 60 - uid: 1554 components: - type: Transform pos: 34.5,-15.5 parent: 60 - - uid: 1557 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 60 - - uid: 1558 - components: - - type: Transform - pos: -20.5,-7.5 - parent: 60 - - uid: 1561 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 60 - uid: 1565 components: - type: Transform @@ -42986,106 +43250,6 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 60 - - uid: 1568 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 60 - - uid: 1569 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 60 - - uid: 1570 - components: - - type: Transform - pos: -31.5,-10.5 - parent: 60 - - uid: 1571 - components: - - type: Transform - pos: -31.5,-11.5 - parent: 60 - - uid: 1572 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 60 - - uid: 1573 - components: - - type: Transform - pos: -33.5,-6.5 - parent: 60 - - uid: 1574 - components: - - type: Transform - pos: -31.5,-7.5 - parent: 60 - - uid: 1575 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 60 - - uid: 1576 - components: - - type: Transform - pos: -26.5,-17.5 - parent: 60 - - uid: 1577 - components: - - type: Transform - pos: -23.5,-16.5 - parent: 60 - - uid: 1578 - components: - - type: Transform - pos: -29.5,-5.5 - parent: 60 - - uid: 1579 - components: - - type: Transform - pos: -20.5,-13.5 - parent: 60 - - uid: 1580 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 60 - - uid: 1581 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 60 - - uid: 1582 - components: - - type: Transform - pos: -32.5,-10.5 - parent: 60 - - uid: 1583 - components: - - type: Transform - pos: -23.5,-18.5 - parent: 60 - - uid: 1584 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 60 - - uid: 1585 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 60 - - uid: 1586 - components: - - type: Transform - pos: -21.5,-13.5 - parent: 60 - - uid: 1589 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 60 - uid: 1590 components: - type: Transform @@ -43096,41 +43260,11 @@ entities: - type: Transform pos: 4.5,-28.5 parent: 60 - - uid: 1597 - components: - - type: Transform - pos: -31.5,-13.5 - parent: 60 - uid: 1598 components: - type: Transform pos: 32.5,-16.5 parent: 60 - - uid: 1599 - components: - - type: Transform - pos: -22.5,-19.5 - parent: 60 - - uid: 1617 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 60 - - uid: 1618 - components: - - type: Transform - pos: -30.5,-14.5 - parent: 60 - - uid: 1623 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 60 - - uid: 1659 - components: - - type: Transform - pos: -21.5,0.5 - parent: 60 - uid: 1695 components: - type: Transform @@ -43141,11 +43275,6 @@ entities: - type: Transform pos: 4.5,-29.5 parent: 60 - - uid: 1728 - components: - - type: Transform - pos: -18.5,0.5 - parent: 60 - uid: 1738 components: - type: Transform @@ -43181,20 +43310,30 @@ entities: - type: Transform pos: 52.5,-28.5 parent: 60 - - uid: 1843 + - uid: 1948 components: - type: Transform - pos: -18.5,1.5 + pos: -30.5,-0.5 parent: 60 - - uid: 1971 + - uid: 1953 components: - type: Transform - pos: -21.5,-0.5 + pos: -30.5,-1.5 parent: 60 - - uid: 1979 + - uid: 1957 components: - type: Transform - pos: -23.5,-15.5 + pos: -25.5,-2.5 + parent: 60 + - uid: 2017 + components: + - type: Transform + pos: -34.5,2.5 + parent: 60 + - uid: 2042 + components: + - type: Transform + pos: -32.5,2.5 parent: 60 - uid: 2058 components: @@ -43216,10 +43355,25 @@ entities: - type: Transform pos: 11.5,-20.5 parent: 60 - - uid: 2105 + - uid: 2086 components: - type: Transform - pos: -21.5,-1.5 + pos: -25.5,-3.5 + parent: 60 + - uid: 2087 + components: + - type: Transform + pos: -18.5,0.5 + parent: 60 + - uid: 2091 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 60 + - uid: 2092 + components: + - type: Transform + pos: -30.5,-8.5 parent: 60 - uid: 2136 components: @@ -43236,11 +43390,6 @@ entities: - type: Transform pos: 38.5,-18.5 parent: 60 - - uid: 2160 - components: - - type: Transform - pos: -23.5,-19.5 - parent: 60 - uid: 2171 components: - type: Transform @@ -43351,11 +43500,21 @@ entities: - type: Transform pos: -55.5,-18.5 parent: 60 + - uid: 3196 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 60 - uid: 3203 components: - type: Transform pos: -52.5,-18.5 parent: 60 + - uid: 3217 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 60 - uid: 3222 components: - type: Transform @@ -43396,71 +43555,31 @@ entities: - type: Transform pos: -7.5,38.5 parent: 60 - - uid: 4108 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 60 - - uid: 4457 + - uid: 4010 components: - type: Transform - pos: -31.5,5.5 + pos: -30.5,-2.5 parent: 60 - - uid: 4504 + - uid: 4011 components: - type: Transform - pos: -35.5,-10.5 + pos: -28.5,-15.5 parent: 60 - - uid: 4505 + - uid: 4080 components: - type: Transform - pos: -32.5,-12.5 + pos: -25.5,-18.5 parent: 60 - - uid: 4506 + - uid: 4108 components: - type: Transform - pos: -33.5,-12.5 + pos: -13.5,-14.5 parent: 60 - uid: 4508 components: - type: Transform pos: -1.5,-74.5 parent: 60 - - uid: 4561 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 60 - - uid: 4562 - components: - - type: Transform - pos: -33.5,-9.5 - parent: 60 - - uid: 4563 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 60 - - uid: 4564 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 60 - - uid: 4565 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 60 - - uid: 4566 - components: - - type: Transform - pos: -23.5,-5.5 - parent: 60 - - uid: 4567 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 60 - uid: 4619 components: - type: Transform @@ -43651,56 +43770,11 @@ entities: - type: Transform pos: 46.5,2.5 parent: 60 - - uid: 5423 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 60 - - uid: 5427 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 60 - - uid: 5428 - components: - - type: Transform - pos: -27.5,-14.5 - parent: 60 - - uid: 5429 - components: - - type: Transform - pos: -20.5,-17.5 - parent: 60 - - uid: 5430 - components: - - type: Transform - pos: -18.5,-17.5 - parent: 60 - - uid: 5431 - components: - - type: Transform - pos: -21.5,-16.5 - parent: 60 - - uid: 5436 - components: - - type: Transform - pos: -20.5,-6.5 - parent: 60 - uid: 5455 components: - type: Transform pos: 52.5,-29.5 parent: 60 - - uid: 5682 - components: - - type: Transform - pos: -23.5,-14.5 - parent: 60 - - uid: 5689 - components: - - type: Transform - pos: -25.5,-14.5 - parent: 60 - uid: 5833 components: - type: Transform @@ -43716,21 +43790,11 @@ entities: - type: Transform pos: 36.5,-7.5 parent: 60 - - uid: 5909 - components: - - type: Transform - pos: -30.5,-13.5 - parent: 60 - uid: 5934 components: - type: Transform pos: 48.5,-9.5 parent: 60 - - uid: 5974 - components: - - type: Transform - pos: -32.5,5.5 - parent: 60 - uid: 6066 components: - type: Transform @@ -43851,126 +43915,16 @@ entities: - type: Transform pos: -11.5,-54.5 parent: 60 - - uid: 6702 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 60 - - uid: 6703 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 60 - - uid: 6704 - components: - - type: Transform - pos: -17.5,-6.5 - parent: 60 - - uid: 6705 - components: - - type: Transform - pos: -17.5,-7.5 - parent: 60 - - uid: 6706 - components: - - type: Transform - pos: -20.5,-12.5 - parent: 60 - - uid: 6707 - components: - - type: Transform - pos: -18.5,-9.5 - parent: 60 - - uid: 6708 - components: - - type: Transform - pos: -20.5,-9.5 - parent: 60 - - uid: 6709 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 60 - - uid: 6710 - components: - - type: Transform - pos: -17.5,-12.5 - parent: 60 - uid: 6713 components: - type: Transform pos: -12.5,-54.5 parent: 60 - - uid: 6794 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 60 - uid: 6817 components: - type: Transform pos: 36.5,-8.5 parent: 60 - - uid: 6818 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 60 - - uid: 6819 - components: - - type: Transform - pos: -19.5,-9.5 - parent: 60 - - uid: 6828 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 60 - - uid: 6884 - components: - - type: Transform - pos: -21.5,-19.5 - parent: 60 - - uid: 6885 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 60 - - uid: 6886 - components: - - type: Transform - pos: -20.5,-16.5 - parent: 60 - - uid: 6887 - components: - - type: Transform - pos: -19.5,-16.5 - parent: 60 - - uid: 6888 - components: - - type: Transform - pos: -18.5,-16.5 - parent: 60 - - uid: 6889 - components: - - type: Transform - pos: -24.5,-14.5 - parent: 60 - - uid: 6890 - components: - - type: Transform - pos: -26.5,-14.5 - parent: 60 - - uid: 6992 - components: - - type: Transform - pos: -17.5,-9.5 - parent: 60 - - uid: 7031 - components: - - type: Transform - pos: -18.5,-12.5 - parent: 60 - uid: 7197 components: - type: Transform @@ -44001,11 +43955,6 @@ entities: - type: Transform pos: 41.5,-42.5 parent: 60 - - uid: 7612 - components: - - type: Transform - pos: -19.5,-12.5 - parent: 60 - uid: 7694 components: - type: Transform @@ -44016,16 +43965,6 @@ entities: - type: Transform pos: 46.5,3.5 parent: 60 - - uid: 7813 - components: - - type: Transform - pos: -21.5,-4.5 - parent: 60 - - uid: 8030 - components: - - type: Transform - pos: -17.5,-10.5 - parent: 60 - uid: 8114 components: - type: Transform @@ -44161,115 +44100,255 @@ entities: - type: Transform pos: 41.5,-48.5 parent: 60 - - uid: 8231 + - uid: 8280 components: - type: Transform - pos: -31.5,-9.5 + pos: -19.5,0.5 parent: 60 - - uid: 8232 + - uid: 8281 components: - type: Transform - pos: -31.5,-12.5 + pos: -30.5,-4.5 parent: 60 - - uid: 8245 + - uid: 8283 components: - type: Transform - pos: -30.5,-15.5 + pos: -30.5,-7.5 parent: 60 - - uid: 8246 + - uid: 8284 components: - type: Transform - pos: -31.5,-15.5 + pos: -29.5,-3.5 + parent: 60 + - uid: 8285 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 60 + - uid: 8286 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 60 + - uid: 8287 + components: + - type: Transform + pos: -30.5,-10.5 + parent: 60 + - uid: 8288 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 60 + - uid: 8289 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 60 + - uid: 8290 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 60 + - uid: 8293 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 60 + - uid: 8294 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 60 + - uid: 8295 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 60 + - uid: 8326 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 60 + - uid: 8327 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 60 + - uid: 8328 + components: + - type: Transform + pos: -19.5,1.5 + parent: 60 + - uid: 8329 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 60 + - uid: 8330 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 60 + - uid: 8331 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 60 + - uid: 8332 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 60 + - uid: 8333 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 60 + - uid: 8334 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 60 + - uid: 8338 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 60 + - uid: 8351 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 60 + - uid: 8392 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 60 + - uid: 8401 + components: + - type: Transform + pos: -30.5,-6.5 parent: 60 - uid: 8402 components: - type: Transform pos: -25.5,52.5 parent: 60 - - uid: 8581 + - uid: 8403 components: - type: Transform - pos: -28.5,-15.5 + pos: -18.5,-0.5 parent: 60 - - uid: 8666 + - uid: 8418 components: - type: Transform - pos: -24.5,-17.5 + pos: -21.5,-2.5 parent: 60 - - uid: 8668 + - uid: 8425 components: - type: Transform - pos: -30.5,4.5 + pos: -25.5,-17.5 parent: 60 - - uid: 8670 + - uid: 8430 components: - type: Transform - pos: -32.5,4.5 + pos: -20.5,-12.5 parent: 60 - - uid: 8671 + - uid: 8446 components: - type: Transform pos: -32.5,3.5 parent: 60 - - uid: 8672 + - uid: 8463 components: - type: Transform - pos: -32.5,2.5 + pos: -30.5,-14.5 parent: 60 - - uid: 8673 + - uid: 8507 components: - type: Transform - pos: -32.5,1.5 + pos: -30.5,-13.5 + parent: 60 + - uid: 8515 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 60 + - uid: 8524 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 60 + - uid: 8578 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 60 + - uid: 8579 + components: + - type: Transform + pos: -23.5,-15.5 parent: 60 - uid: 8674 components: - type: Transform - pos: -32.5,0.5 + pos: -29.5,-15.5 parent: 60 - uid: 8675 components: - type: Transform - pos: -32.5,-0.5 + pos: -24.5,-15.5 parent: 60 - - uid: 8676 + - uid: 8683 components: - type: Transform - pos: -31.5,-0.5 + pos: -22.5,-12.5 parent: 60 - - uid: 8677 + - uid: 8684 components: - type: Transform - pos: -30.5,-0.5 + pos: -22.5,-14.5 parent: 60 - - uid: 8678 + - uid: 8694 components: - type: Transform - pos: -29.5,-1.5 + pos: -23.5,-3.5 parent: 60 - - uid: 8679 + - uid: 8714 components: - type: Transform - pos: -30.5,-1.5 + pos: -25.5,-15.5 parent: 60 - - uid: 8680 + - uid: 8718 components: - type: Transform - pos: -30.5,-2.5 + pos: -25.5,-21.5 parent: 60 - - uid: 8681 + - uid: 8719 components: - type: Transform - pos: -30.5,-2.5 + pos: -21.5,-1.5 parent: 60 - - uid: 8682 + - uid: 8735 components: - type: Transform - pos: -30.5,-3.5 + pos: -27.5,-15.5 parent: 60 - - uid: 8683 + - uid: 8744 components: - type: Transform - pos: -30.5,-4.5 + pos: -21.5,-11.5 + parent: 60 + - uid: 8791 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 60 + - uid: 8883 + components: + - type: Transform + pos: -25.5,-19.5 parent: 60 - uid: 8913 components: @@ -45266,11 +45345,6 @@ entities: - type: Transform pos: 41.5,-43.5 parent: 60 - - uid: 10829 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 60 - uid: 10846 components: - type: Transform @@ -45711,6 +45785,11 @@ entities: - type: Transform pos: 26.5,-39.5 parent: 60 + - uid: 11375 + components: + - type: Transform + pos: -30.5,1.5 + parent: 60 - uid: 11467 components: - type: Transform @@ -45721,6 +45800,16 @@ entities: - type: Transform pos: 50.5,-32.5 parent: 60 + - uid: 11556 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 60 + - uid: 11576 + components: + - type: Transform + pos: -30.5,0.5 + parent: 60 - uid: 11651 components: - type: Transform @@ -45766,11 +45855,6 @@ entities: - type: Transform pos: 29.5,18.5 parent: 60 - - uid: 11759 - components: - - type: Transform - pos: -20.5,-4.5 - parent: 60 - uid: 11890 components: - type: Transform @@ -46176,6 +46260,11 @@ entities: - type: Transform pos: 52.5,14.5 parent: 60 + - uid: 13383 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 60 - uid: 13391 components: - type: Transform @@ -46351,6 +46440,21 @@ entities: - type: Transform pos: -11.5,-16.5 parent: 60 + - uid: 13983 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 60 + - uid: 14055 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 60 + - uid: 14224 + components: + - type: Transform + pos: -32.5,1.5 + parent: 60 - uid: 14329 components: - type: Transform @@ -47181,11 +47285,6 @@ entities: - type: Transform pos: -8.5,2.5 parent: 60 - - uid: 18096 - components: - - type: Transform - pos: -32.5,-14.5 - parent: 60 - uid: 18282 components: - type: Transform @@ -47251,16 +47350,6 @@ entities: - type: Transform pos: -93.5,17.5 parent: 60 - - uid: 18521 - components: - - type: Transform - pos: -32.5,-15.5 - parent: 60 - - uid: 18547 - components: - - type: Transform - pos: -20.5,1.5 - parent: 60 - uid: 18575 components: - type: Transform @@ -47361,16 +47450,6 @@ entities: - type: Transform pos: -12.5,-4.5 parent: 60 - - uid: 18790 - components: - - type: Transform - pos: -21.5,1.5 - parent: 60 - - uid: 18791 - components: - - type: Transform - pos: -19.5,1.5 - parent: 60 - uid: 18842 components: - type: Transform @@ -48651,6 +48730,21 @@ entities: - type: Transform pos: 27.5,-34.5 parent: 60 + - uid: 23839 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 60 + - uid: 23851 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 60 + - uid: 23852 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 60 - uid: 24094 components: - type: Transform @@ -49427,21 +49521,6 @@ entities: parent: 60 - proto: Carpet entities: - - uid: 1656 - components: - - type: Transform - pos: -20.5,0.5 - parent: 60 - - uid: 1962 - components: - - type: Transform - pos: -21.5,1.5 - parent: 60 - - uid: 2098 - components: - - type: Transform - pos: -20.5,1.5 - parent: 60 - uid: 4276 components: - type: Transform @@ -49462,16 +49541,41 @@ entities: - type: Transform pos: -46.5,-18.5 parent: 60 - - uid: 5835 + - uid: 5660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-3.5 + parent: 60 + - uid: 5910 components: - type: Transform + rot: 3.141592653589793 rad pos: -21.5,0.5 parent: 60 + - uid: 6091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 60 - uid: 7293 components: - type: Transform pos: -26.5,-29.5 parent: 60 + - uid: 8227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-0.5 + parent: 60 + - uid: 8255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 60 - uid: 10823 components: - type: Transform @@ -50163,51 +50267,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-45.5 parent: 60 - - uid: 4211 - components: - - type: Transform - pos: -40.5,-20.5 - parent: 60 - - uid: 4212 - components: - - type: Transform - pos: -41.5,-20.5 - parent: 60 - - uid: 4213 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 60 - - uid: 4214 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 60 - - uid: 4215 - components: - - type: Transform - pos: -44.5,-20.5 - parent: 60 - - uid: 4216 - components: - - type: Transform - pos: -44.5,-20.5 - parent: 60 - - uid: 4217 - components: - - type: Transform - pos: -46.5,-20.5 - parent: 60 - - uid: 4218 - components: - - type: Transform - pos: -45.5,-20.5 - parent: 60 - - uid: 4220 - components: - - type: Transform - pos: -43.5,-19.5 - parent: 60 - uid: 6597 components: - type: Transform @@ -50610,6 +50669,11 @@ entities: - type: Transform pos: -56.5,-18.5 parent: 60 + - uid: 98 + components: + - type: Transform + pos: -48.5,27.5 + parent: 60 - uid: 399 components: - type: Transform @@ -50660,6 +50724,11 @@ entities: - type: Transform pos: -12.5,24.5 parent: 60 + - uid: 1636 + components: + - type: Transform + pos: -52.5,27.5 + parent: 60 - uid: 1988 components: - type: Transform @@ -50770,6 +50839,21 @@ entities: - type: Transform pos: 5.5,-41.5 parent: 60 + - uid: 4211 + components: + - type: Transform + pos: -32.5,5.5 + parent: 60 + - uid: 4212 + components: + - type: Transform + pos: -33.5,5.5 + parent: 60 + - uid: 4213 + components: + - type: Transform + pos: -34.5,5.5 + parent: 60 - uid: 4279 components: - type: Transform @@ -50815,6 +50899,12 @@ entities: - type: Transform pos: -52.5,-22.5 parent: 60 + - uid: 4746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 60 - uid: 5175 components: - type: Transform @@ -51575,6 +51665,12 @@ entities: - type: Transform pos: -73.5,-20.5 parent: 60 + - uid: 8344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,2.5 + parent: 60 - uid: 8364 components: - type: Transform @@ -51625,6 +51721,11 @@ entities: - type: Transform pos: -73.5,-16.5 parent: 60 + - uid: 8456 + components: + - type: Transform + pos: -24.5,4.5 + parent: 60 - uid: 8485 components: - type: Transform @@ -51670,6 +51771,11 @@ entities: - type: Transform pos: -84.5,-18.5 parent: 60 + - uid: 8513 + components: + - type: Transform + pos: -27.5,5.5 + parent: 60 - uid: 8529 components: - type: Transform @@ -51860,6 +51966,16 @@ entities: - type: Transform pos: -58.5,-5.5 parent: 60 + - uid: 9032 + components: + - type: Transform + pos: -22.5,4.5 + parent: 60 + - uid: 9033 + components: + - type: Transform + pos: -25.5,4.5 + parent: 60 - uid: 9064 components: - type: Transform @@ -52390,6 +52506,12 @@ entities: - type: Transform pos: 47.5,-41.5 parent: 60 + - uid: 11376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,2.5 + parent: 60 - uid: 11387 components: - type: Transform @@ -53474,6 +53596,11 @@ entities: - type: Transform pos: 54.5,-11.5 parent: 60 + - uid: 13139 + components: + - type: Transform + pos: -23.5,4.5 + parent: 60 - uid: 13320 components: - type: Transform @@ -54104,62 +54231,37 @@ entities: - type: Transform pos: -25.5,49.5 parent: 60 - - uid: 18007 - components: - - type: Transform - pos: -92.5,16.5 - parent: 60 - - uid: 18484 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 60 - - uid: 18485 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 60 - - uid: 18590 + - uid: 17953 components: - type: Transform pos: -28.5,5.5 parent: 60 - - uid: 18591 - components: - - type: Transform - pos: -27.5,5.5 - parent: 60 - - uid: 18594 - components: - - type: Transform - pos: -25.5,5.5 - parent: 60 - - uid: 18595 + - uid: 18007 components: - type: Transform - pos: -24.5,5.5 + pos: -92.5,16.5 parent: 60 - - uid: 18596 + - uid: 18438 components: - type: Transform - pos: -23.5,5.5 + pos: -30.5,5.5 parent: 60 - - uid: 18597 + - uid: 18484 components: - type: Transform - pos: -22.5,4.5 + pos: 3.5,-11.5 parent: 60 - - uid: 18598 + - uid: 18485 components: - type: Transform - pos: -21.5,4.5 + pos: 3.5,-10.5 parent: 60 - - uid: 18599 + - uid: 18547 components: - type: Transform - pos: -20.5,4.5 + pos: -31.5,5.5 parent: 60 - - uid: 18600 + - uid: 18591 components: - type: Transform pos: -19.5,4.5 @@ -54167,7 +54269,7 @@ entities: - uid: 18601 components: - type: Transform - pos: -18.5,4.5 + pos: -21.5,4.5 parent: 60 - uid: 18726 components: @@ -54354,6 +54456,11 @@ entities: - type: Transform pos: 55.5,-23.5 parent: 60 + - uid: 18827 + components: + - type: Transform + pos: -29.5,5.5 + parent: 60 - uid: 19000 components: - type: Transform @@ -54379,6 +54486,11 @@ entities: - type: Transform pos: 40.5,4.5 parent: 60 + - uid: 19130 + components: + - type: Transform + pos: -20.5,4.5 + parent: 60 - uid: 19703 components: - type: Transform @@ -56352,12 +56464,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-5.5 parent: 60 - - uid: 69 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-18.5 - parent: 60 - uid: 662 components: - type: Transform @@ -56389,17 +56495,11 @@ entities: rot: -1.5707963267948966 rad pos: -63.5,-13.5 parent: 60 - - uid: 1448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-19.5 - parent: 60 - - uid: 1480 + - uid: 1648 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-19.5 + rot: 1.5707963267948966 rad + pos: -27.5,-20.5 parent: 60 - uid: 1672 components: @@ -56407,16 +56507,23 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-2.5 parent: 60 - - uid: 1701 + - uid: 1810 components: - type: Transform - pos: -33.5,-2.5 + rot: -1.5707963267948966 rad + pos: 54.5,-42.5 parent: 60 - - uid: 1810 + - uid: 1867 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-42.5 + pos: -25.5,-20.5 + parent: 60 + - uid: 2088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,0.5 parent: 60 - uid: 2143 components: @@ -56441,54 +56548,6 @@ entities: - type: Transform pos: -66.5,8.5 parent: 60 - - uid: 4200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-19.5 - parent: 60 - - uid: 4201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-19.5 - parent: 60 - - uid: 4202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-19.5 - parent: 60 - - uid: 4203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-19.5 - parent: 60 - - uid: 4206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-21.5 - parent: 60 - - uid: 4207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-21.5 - parent: 60 - - uid: 4208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-21.5 - parent: 60 - - uid: 4209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-21.5 - parent: 60 - uid: 4233 components: - type: Transform @@ -56558,11 +56617,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-49.5 parent: 60 - - uid: 5010 - components: - - type: Transform - pos: -33.5,-15.5 - parent: 60 - uid: 5096 components: - type: Transform @@ -56590,12 +56644,6 @@ entities: - type: Transform pos: -11.5,-55.5 parent: 60 - - uid: 5971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-20.5 - parent: 60 - uid: 6322 components: - type: Transform @@ -56762,11 +56810,6 @@ entities: - type: Transform pos: -36.5,-24.5 parent: 60 - - uid: 7786 - components: - - type: Transform - pos: -32.5,4.5 - parent: 60 - uid: 7791 components: - type: Transform @@ -56784,11 +56827,11 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-50.5 parent: 60 - - uid: 9042 + - uid: 8510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-20.5 + rot: -1.5707963267948966 rad + pos: -31.5,-0.5 parent: 60 - uid: 9079 components: @@ -56807,18 +56850,6 @@ entities: rot: 3.141592653589793 rad pos: 55.5,-13.5 parent: 60 - - uid: 9309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-2.5 - parent: 60 - - uid: 9546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 - parent: 60 - uid: 9604 components: - type: Transform @@ -56834,11 +56865,17 @@ entities: - type: Transform pos: -48.5,4.5 parent: 60 - - uid: 9680 + - uid: 11377 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-20.5 + rot: 1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 60 + - uid: 11385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,0.5 parent: 60 - uid: 11480 components: @@ -56885,12 +56922,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,21.5 parent: 60 - - uid: 16150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-17.5 - parent: 60 - uid: 17262 components: - type: Transform @@ -56921,6 +56952,12 @@ entities: - type: Transform pos: -26.5,26.5 parent: 60 + - uid: 17330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 60 - uid: 17669 components: - type: Transform @@ -56980,18 +57017,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-51.5 parent: 60 - - uid: 18103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 60 - - uid: 18104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 60 - uid: 18210 components: - type: Transform @@ -57002,13 +57027,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 60 - - uid: 18487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 + pos: -0.5,-5.5 parent: 60 - uid: 18524 components: @@ -57068,12 +57087,6 @@ entities: rot: 1.5707963267948966 rad pos: 52.5,-42.5 parent: 60 - - uid: 21030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,2.5 - parent: 60 - uid: 21399 components: - type: Transform @@ -57106,6 +57119,12 @@ entities: - type: Transform pos: -110.5,3.5 parent: 60 + - uid: 23894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 60 - uid: 24023 components: - type: Transform @@ -57358,36 +57377,55 @@ entities: rot: 1.5707963267948966 rad pos: 12.52908,-13.379191 parent: 60 -- proto: ChairOfficeDark +- proto: ChairFoldingSpawnFolded entities: - - uid: 1379 + - uid: 1762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-27.5 + rot: 1.5707963267948966 rad + pos: -33.5,-11.5 parent: 60 - - uid: 1642 + - uid: 1764 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-4.5 + pos: -19.5,-11.5 parent: 60 - - uid: 1861 + - uid: 1909 components: - type: Transform - pos: -19.5,-16.5 + rot: 1.5707963267948966 rad + pos: -33.5,-7.5 parent: 60 - - uid: 1924 + - uid: 8232 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.474321,-9.37935 + pos: -19.5,-7.5 parent: 60 - - uid: 1937 +- proto: ChairOfficeDark + entities: + - uid: 238 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.568071,-9.4106 + pos: -30.5,-19.5 + parent: 60 + - uid: 1379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-27.5 + parent: 60 + - uid: 1573 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 60 + - uid: 2094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.446068,-3.4362593 parent: 60 - uid: 2590 components: @@ -57406,11 +57444,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,16.5 parent: 60 - - uid: 3070 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 60 - uid: 3588 components: - type: Transform @@ -57493,6 +57526,12 @@ entities: - type: Transform pos: -65.5,10.5 parent: 60 + - uid: 8345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-19.5 + parent: 60 - uid: 8383 components: - type: Transform @@ -57504,12 +57543,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,19.5 parent: 60 - - uid: 8946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-4.5 - parent: 60 - uid: 9203 components: - type: Transform @@ -58152,6 +58185,11 @@ entities: - type: Transform pos: 45.485657,-24.447033 parent: 60 + - uid: 16150 + components: + - type: Transform + pos: -19.84328,-13.204234 + parent: 60 - proto: ChemDispenser entities: - uid: 2520 @@ -58190,11 +58228,10 @@ entities: - type: Transform pos: 2.5348077,-76.44673 parent: 60 - - uid: 9155 + - uid: 8948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.503572,-20.408875 + pos: -34.5,-15.5 parent: 60 - uid: 13678 components: @@ -58294,6 +58331,13 @@ entities: - type: Transform pos: 5.5158696,-7.3988457 parent: 60 +- proto: CigarSpent + entities: + - uid: 21734 + components: + - type: Transform + pos: -33.433487,-2.3675175 + parent: 60 - proto: CigPackGreen entities: - uid: 12874 @@ -58324,34 +58368,11 @@ entities: parent: 60 - proto: ClosetBombFilled entities: - - uid: 5662 - components: - - type: Transform - pos: -34.5,5.5 - parent: 60 - - uid: 8919 + - uid: 2112 components: - type: Transform - pos: -25.5,2.5 + pos: -23.5,-20.5 parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.877957 - - 7.0646954 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11346 components: - type: Transform @@ -58693,29 +58714,6 @@ entities: - 0 - 0 - 0 - - uid: 18602 - components: - - type: Transform - pos: -18.5,5.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 19085 components: - type: Transform @@ -58790,6 +58788,11 @@ entities: - 0 - 0 - 0 + - uid: 21497 + components: + - type: Transform + pos: -18.5,5.5 + parent: 60 - uid: 24008 components: - type: Transform @@ -58817,6 +58820,11 @@ entities: parent: 60 - proto: ClosetEmergencyN2FilledRandom entities: + - uid: 21503 + components: + - type: Transform + pos: -19.5,5.5 + parent: 60 - uid: 24022 components: - type: Transform @@ -58967,6 +58975,11 @@ entities: - 0 - 0 - 0 + - uid: 8447 + components: + - type: Transform + pos: -24.5,5.5 + parent: 60 - uid: 12851 components: - type: Transform @@ -59023,29 +59036,6 @@ entities: - 0 - 0 - 0 - - uid: 18603 - components: - - type: Transform - pos: -19.5,5.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 19893 components: - type: Transform @@ -59146,29 +59136,11 @@ entities: - 0 - proto: ClosetL3SecurityFilled entities: - - uid: 1462 + - uid: 8469 components: - type: Transform - pos: -32.5,-20.5 + pos: -29.5,-20.5 parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetL3VirologyFilled entities: - uid: 2962 @@ -60002,10 +59974,10 @@ entities: parent: 7536 - proto: ClothingBeltSecurityFilled entities: - - uid: 7099 + - uid: 6546 components: - type: Transform - pos: -33.78202,-0.46209612 + pos: -30.497168,-20.40541 parent: 60 - proto: ClothingBeltUtilityFilled entities: @@ -60268,13 +60240,6 @@ entities: - type: Transform pos: -38.320274,19.65635 parent: 60 -- proto: ClothingHeadHatBeretWarden - entities: - - uid: 11556 - components: - - type: Transform - pos: -27.758022,-9.545581 - parent: 60 - proto: ClothingHeadHatBowlerHat entities: - uid: 8020 @@ -60356,6 +60321,13 @@ entities: - type: Transform pos: 42.399185,-38.15878 parent: 60 +- proto: ClothingHeadHatGreysoft + entities: + - uid: 18096 + components: + - type: Transform + pos: -12.635327,-50.409695 + parent: 60 - proto: ClothingHeadHatPaper entities: - uid: 13642 @@ -60450,13 +60422,6 @@ entities: - type: Transform pos: -39.62937,16.44374 parent: 60 -- proto: ClothingHeadHatWarden - entities: - - uid: 16450 - components: - - type: Transform - pos: -27.336147,-11.701831 - parent: 60 - proto: ClothingHeadHatWelding entities: - uid: 6584 @@ -60559,15 +60524,20 @@ entities: parent: 60 - proto: ClothingHeadHelmetRiot entities: - - uid: 1866 + - uid: 6308 components: - type: Transform - pos: -24.644444,1.636905 + pos: -24.634363,-12.292603 parent: 60 - - uid: 1867 + - uid: 6707 + components: + - type: Transform + pos: -24.634363,-12.292603 + parent: 60 + - uid: 7747 components: - type: Transform - pos: -24.644444,1.636905 + pos: -24.634363,-12.292603 parent: 60 - proto: ClothingHeadHelmetTemplar entities: @@ -60760,13 +60730,6 @@ entities: - type: Transform pos: 83.621025,-13.51627 parent: 60 -- proto: ClothingNeckBisexualPin - entities: - - uid: 24090 - components: - - type: Transform - pos: -20.494595,5.7531924 - parent: 60 - proto: ClothingNeckBling entities: - uid: 18461 @@ -60823,15 +60786,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingNeckMantleHOS - entities: - - uid: 17672 - components: - - type: Transform - parent: 5933 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingNeckMantleRD entities: - uid: 17673 @@ -60931,66 +60885,44 @@ entities: parent: 60 - proto: ClothingOuterApronChef entities: - - uid: 2513 - components: - - type: MetaData - desc: An apron-jacket used by Mr.Chang - name: Mr.Chang Official Apron - - type: Transform - pos: -12.442651,-50.453358 - parent: 60 -- proto: ClothingOuterArmorBasic - entities: - - uid: 19886 - components: - - type: Transform - pos: -24.397709,1.3971437 - parent: 60 - - uid: 20003 + - uid: 1986 components: - type: Transform - pos: -24.397709,1.3971437 + pos: -12.119702,-50.42532 parent: 60 -- proto: ClothingOuterArmorBulletproof +- proto: ClothingOuterArmorReflective entities: - - uid: 21011 + - uid: 5010 components: - type: Transform - pos: -24.521177,1.5767841 + pos: -24.587488,-12.605103 parent: 60 - - uid: 21012 + - uid: 5909 components: - type: Transform - pos: -24.521177,1.5767841 + pos: -24.587488,-12.605103 parent: 60 - - uid: 21016 + - uid: 7785 components: - type: Transform - pos: -24.521177,1.5767841 + pos: -24.587488,-12.605103 parent: 60 -- proto: ClothingOuterArmorReflective +- proto: ClothingOuterArmorRiot entities: - - uid: 24113 - components: - - type: Transform - pos: -24.597569,1.293155 - parent: 60 - - uid: 24114 + - uid: 5201 components: - type: Transform - pos: -24.597569,1.293155 + pos: -24.384363,-12.511353 parent: 60 -- proto: ClothingOuterArmorRiot - entities: - - uid: 1816 + - uid: 5849 components: - type: Transform - pos: -24.316319,1.574405 + pos: -24.384363,-12.511353 parent: 60 - - uid: 8203 + - uid: 21723 components: - type: Transform - pos: -24.316319,1.574405 + pos: -24.384363,-12.511353 parent: 60 - proto: ClothingOuterCardborg entities: @@ -61025,13 +60957,6 @@ entities: - type: Transform pos: 51.556362,-34.423466 parent: 60 -- proto: ClothingOuterCoatJensen - entities: - - uid: 18606 - components: - - type: Transform - pos: -20.447735,5.5611706 - parent: 60 - proto: ClothingOuterCoatLab entities: - uid: 9624 @@ -61055,20 +60980,20 @@ entities: parent: 60 - proto: ClothingOuterHardsuitSecurity entities: - - uid: 1820 + - uid: 1862 components: - type: Transform - pos: -28.680038,2.632019 + pos: -28.693623,1.6351235 parent: 60 - - uid: 13767 + - uid: 5313 components: - type: Transform - pos: -28.414413,2.444519 + pos: -28.552998,1.5257485 parent: 60 - - uid: 13978 + - uid: 6367 components: - type: Transform - pos: -28.555038,2.538269 + pos: -28.381123,1.4163735 parent: 60 - proto: ClothingOuterHoodieBlack entities: @@ -61420,11 +61345,6 @@ entities: - type: Transform pos: -5.5,-44.5 parent: 60 - - uid: 1957 - components: - - type: Transform - pos: -21.5,1.5 - parent: 60 - uid: 2249 components: - type: Transform @@ -61503,11 +61423,16 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-40.5 parent: 60 - - uid: 7232 + - uid: 8225 + components: + - type: Transform + pos: -21.5,0.5 + parent: 60 + - uid: 8259 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-0.5 + pos: -22.5,-1.5 parent: 60 - uid: 8745 components: @@ -61797,12 +61722,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-30.5 parent: 60 - - uid: 6582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-11.5 - parent: 60 - uid: 8705 components: - type: Transform @@ -61816,17 +61735,15 @@ entities: parent: 60 - proto: ComputerCriminalRecords entities: - - uid: 1796 + - uid: 617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-10.5 + pos: -30.5,-18.5 parent: 60 - - uid: 1868 + - uid: 667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,1.5 + pos: -22.5,-18.5 parent: 60 - uid: 2024 components: @@ -61834,17 +61751,16 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-30.5 parent: 60 - - uid: 9153 + - uid: 4217 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-7.5 + pos: -27.5,-8.5 parent: 60 - - uid: 13383 + - uid: 8213 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-16.5 + pos: -22.5,0.5 parent: 60 - uid: 18561 components: @@ -62034,11 +61950,10 @@ entities: parent: 60 - proto: ComputerStationRecords entities: - - uid: 6611 + - uid: 584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-10.5 + pos: -23.5,-18.5 parent: 60 - uid: 10938 components: @@ -62058,6 +61973,11 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-12.5 parent: 60 + - uid: 15898 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 60 - uid: 19686 components: - type: Transform @@ -62066,10 +61986,15 @@ entities: parent: 60 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 1980 + - uid: 564 components: - type: Transform - pos: -21.5,2.5 + pos: -29.5,-18.5 + parent: 60 + - uid: 1658 + components: + - type: Transform + pos: -26.5,-8.5 parent: 60 - uid: 2068 components: @@ -63127,10 +63052,10 @@ entities: - 0 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 11097 + - uid: 1559 components: - type: Transform - pos: -27.5,-8.5 + pos: -24.5,-11.5 parent: 60 - proto: CrateServiceJanitorialSupplies entities: @@ -63246,6 +63171,11 @@ entities: available: False - proto: Crowbar entities: + - uid: 1977 + components: + - type: Transform + pos: -27.476547,-12.57161 + parent: 60 - uid: 23156 components: - type: Transform @@ -63265,11 +63195,6 @@ entities: parent: 60 - proto: CrowbarRed entities: - - uid: 6041 - components: - - type: Transform - pos: -27.486204,-11.386857 - parent: 60 - uid: 9351 components: - type: Transform @@ -63362,6 +63287,18 @@ entities: parent: 60 - proto: CurtainsBlackOpen entities: + - uid: 8672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-2.5 + parent: 60 + - uid: 14624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-2.5 + parent: 60 - uid: 23835 components: - type: Transform @@ -63486,10 +63423,10 @@ entities: parent: 60 - proto: DefaultStationBeaconArmory entities: - - uid: 18267 + - uid: 8462 components: - type: Transform - pos: -26.5,0.5 + pos: -26.5,-1.5 parent: 60 - proto: DefaultStationBeaconArrivals entities: @@ -63533,13 +63470,6 @@ entities: - type: Transform pos: 0.5,0.5 parent: 60 -- proto: DefaultStationBeaconBrig - entities: - - uid: 4147 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 60 - proto: DefaultStationBeaconCaptainsQuarters entities: - uid: 15423 @@ -63666,13 +63596,6 @@ entities: - type: Transform pos: 5.5,-28.5 parent: 60 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 23108 - components: - - type: Transform - pos: -21.5,-0.5 - parent: 60 - proto: DefaultStationBeaconJanitorsCloset entities: - uid: 22485 @@ -63764,6 +63687,13 @@ entities: - type: Transform pos: 50.5,1.5 parent: 60 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 21496 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 60 - proto: DefaultStationBeaconServerRoom entities: - uid: 24418 @@ -63851,10 +63781,10 @@ entities: parent: 60 - proto: DefaultStationBeaconWardensOffice entities: - - uid: 24426 + - uid: 8458 components: - type: Transform - pos: -26.5,-8.5 + pos: -27.5,-11.5 parent: 60 - proto: DefibrillatorCabinetFilled entities: @@ -63879,11 +63809,10 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-14.5 parent: 60 - - uid: 19450 + - uid: 19514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-3.5 + pos: -19.5,-12.5 parent: 60 - uid: 21264 components: @@ -63892,18 +63821,28 @@ entities: parent: 60 - proto: DeployableBarrier entities: - - uid: 6044 + - uid: 8606 components: - type: Transform - pos: -23.5,-7.5 + pos: -34.5,-13.5 parent: 60 - - uid: 10681 + - uid: 8722 components: - type: Transform - pos: -23.5,-6.5 + pos: -33.5,-13.5 + parent: 60 + - uid: 21733 + components: + - type: Transform + pos: -32.5,-13.5 parent: 60 - proto: DeskBell entities: + - uid: 8279 + components: + - type: Transform + pos: 4.6358204,12.572609 + parent: 60 - uid: 19741 components: - type: Transform @@ -63920,11 +63859,6 @@ entities: - type: Physics canCollide: False bodyType: Static - - uid: 24779 - components: - - type: Transform - pos: -19.317991,-17.371677 - parent: 60 - proto: DiceBag entities: - uid: 14192 @@ -64226,22 +64160,11 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-24.5 parent: 60 - - uid: 8273 + - uid: 8450 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-5.5 - parent: 60 - - uid: 8710 - components: - - type: Transform - pos: -18.5,-19.5 - parent: 60 - - uid: 8947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-19.5 + pos: -33.5,-16.5 parent: 60 - uid: 9343 components: @@ -64271,6 +64194,12 @@ entities: rot: 3.141592653589793 rad pos: -48.5,-5.5 parent: 60 + - uid: 11365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-19.5 + parent: 60 - uid: 13092 components: - type: Transform @@ -64521,6 +64450,12 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,-23.5 parent: 60 + - uid: 2714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-5.5 + parent: 60 - uid: 3048 components: - type: Transform @@ -64554,11 +64489,6 @@ entities: - type: Transform pos: 16.5,11.5 parent: 60 - - uid: 9147 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 60 - uid: 9392 components: - type: Transform @@ -64607,11 +64537,6 @@ entities: - type: Transform pos: 16.5,9.5 parent: 60 - - uid: 979 - components: - - type: Transform - pos: -15.5,-9.5 - parent: 60 - uid: 1208 components: - type: Transform @@ -64634,6 +64559,11 @@ entities: - type: Transform pos: 0.5,-23.5 parent: 60 + - uid: 2115 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 60 - uid: 2192 components: - type: Transform @@ -64652,6 +64582,11 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,-22.5 parent: 60 + - uid: 3187 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 60 - uid: 4767 components: - type: Transform @@ -64664,11 +64599,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-44.5 parent: 60 - - uid: 6091 - components: - - type: Transform - pos: -37.5,1.5 - parent: 60 - uid: 6602 components: - type: Transform @@ -64726,12 +64656,6 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,8.5 parent: 60 - - uid: 23938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-19.5 - parent: 60 - proto: DisposalPipe entities: - uid: 5 @@ -65274,11 +65198,6 @@ entities: - type: Transform pos: -15.5,-3.5 parent: 60 - - uid: 986 - components: - - type: Transform - pos: -15.5,-1.5 - parent: 60 - uid: 987 components: - type: Transform @@ -65581,12 +65500,6 @@ entities: - type: Transform pos: -37.5,-22.5 parent: 60 - - uid: 1637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-19.5 - parent: 60 - uid: 1649 components: - type: Transform @@ -65610,12 +65523,6 @@ entities: - type: Transform pos: -37.5,-21.5 parent: 60 - - uid: 1708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-19.5 - parent: 60 - uid: 1709 components: - type: Transform @@ -65664,18 +65571,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,24.5 parent: 60 - - uid: 1919 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 60 - - uid: 1922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-19.5 - parent: 60 - uid: 1950 components: - type: Transform @@ -65728,6 +65623,18 @@ entities: - type: Transform pos: 0.5,-21.5 parent: 60 + - uid: 2118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 60 + - uid: 2119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,1.5 + parent: 60 - uid: 2188 components: - type: Transform @@ -66137,12 +66044,30 @@ entities: rot: 3.141592653589793 rad pos: -38.5,9.5 parent: 60 + - uid: 3156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-6.5 + parent: 60 + - uid: 3493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-19.5 + parent: 60 - uid: 3542 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-32.5 parent: 60 + - uid: 3590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-18.5 + parent: 60 - uid: 3880 components: - type: Transform @@ -66866,34 +66791,29 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-44.5 parent: 60 - - uid: 8229 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 60 - - uid: 8251 + - uid: 8379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-19.5 + rot: 1.5707963267948966 rad + pos: 20.5,24.5 parent: 60 - - uid: 8252 + - uid: 8421 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-19.5 + pos: -36.5,-19.5 parent: 60 - - uid: 8253 + - uid: 8451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-19.5 + rot: 1.5707963267948966 rad + pos: -31.5,-16.5 parent: 60 - - uid: 8379 + - uid: 8464 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,24.5 + pos: -32.5,-16.5 parent: 60 - uid: 8536 components: @@ -66925,58 +66845,18 @@ entities: - type: Transform pos: 16.5,23.5 parent: 60 - - uid: 8891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-19.5 - parent: 60 - uid: 8897 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,24.5 parent: 60 - - uid: 8908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 60 - - uid: 8941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-19.5 - parent: 60 - - uid: 8942 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 60 - - uid: 8943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-19.5 - parent: 60 - - uid: 8944 - components: - - type: Transform - pos: -18.5,-20.5 - parent: 60 - uid: 8971 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-23.5 parent: 60 - - uid: 9048 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 60 - uid: 9050 components: - type: Transform @@ -67046,12 +66926,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-5.5 parent: 60 - - uid: 9397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-5.5 - parent: 60 - uid: 9398 components: - type: Transform @@ -67099,6 +66973,17 @@ entities: - type: Transform pos: -55.5,6.5 parent: 60 + - uid: 11364 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 60 + - uid: 11370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 60 - uid: 11881 components: - type: Transform @@ -67866,6 +67751,12 @@ entities: - type: Transform pos: -24.5,-24.5 parent: 60 + - uid: 21509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-17.5 + parent: 60 - uid: 21689 components: - type: Transform @@ -67997,66 +67888,6 @@ entities: rot: -1.5707963267948966 rad pos: -93.5,17.5 parent: 60 - - uid: 23926 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 60 - - uid: 23927 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 60 - - uid: 23928 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 60 - - uid: 23929 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 60 - - uid: 23930 - components: - - type: Transform - pos: -26.5,-11.5 - parent: 60 - - uid: 23931 - components: - - type: Transform - pos: -26.5,-12.5 - parent: 60 - - uid: 23932 - components: - - type: Transform - pos: -26.5,-13.5 - parent: 60 - - uid: 23933 - components: - - type: Transform - pos: -26.5,-14.5 - parent: 60 - - uid: 23934 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 60 - - uid: 23935 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 60 - - uid: 23936 - components: - - type: Transform - pos: -26.5,-17.5 - parent: 60 - - uid: 23937 - components: - - type: Transform - pos: -26.5,-18.5 - parent: 60 - uid: 24082 components: - type: Transform @@ -68337,6 +68168,12 @@ entities: rot: 3.141592653589793 rad pos: 33.5,22.5 parent: 60 + - uid: 2121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 60 - uid: 2271 components: - type: Transform @@ -68376,6 +68213,12 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-26.5 parent: 60 + - uid: 3199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-7.5 + parent: 60 - uid: 3793 components: - type: Transform @@ -68388,12 +68231,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-43.5 parent: 60 - - uid: 4337 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-19.5 - parent: 60 - uid: 4514 components: - type: Transform @@ -68423,12 +68260,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 60 - - uid: 6094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,1.5 - parent: 60 - uid: 6327 components: - type: Transform @@ -68446,38 +68277,27 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,17.5 parent: 60 - - uid: 7906 - components: - - type: Transform - pos: -30.5,-18.5 - parent: 60 - uid: 7959 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-44.5 parent: 60 - - uid: 8709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-5.5 - parent: 60 - uid: 9414 components: - type: Transform pos: -56.5,14.5 parent: 60 - - uid: 13756 + - uid: 11367 components: - type: Transform - pos: 7.5,10.5 + rot: -1.5707963267948966 rad + pos: -30.5,-16.5 parent: 60 - - uid: 13983 + - uid: 13756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-9.5 + pos: 7.5,10.5 parent: 60 - uid: 14067 components: @@ -68611,10 +68431,10 @@ entities: - type: Transform pos: 19.5,-20.5 parent: 60 - - uid: 77 + - uid: 144 components: - type: Transform - pos: -30.5,-18.5 + pos: -30.5,-16.5 parent: 60 - uid: 659 components: @@ -68681,11 +68501,6 @@ entities: - type: Transform pos: 50.5,-31.5 parent: 60 - - uid: 4338 - components: - - type: Transform - pos: -39.5,-19.5 - parent: 60 - uid: 4826 components: - type: Transform @@ -68701,11 +68516,6 @@ entities: - type: Transform pos: 45.5,-8.5 parent: 60 - - uid: 5800 - components: - - type: Transform - pos: -24.5,-5.5 - parent: 60 - uid: 6328 components: - type: Transform @@ -68736,6 +68546,11 @@ entities: - type: Transform pos: -1.5,-44.5 parent: 60 + - uid: 8679 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 60 - uid: 9037 components: - type: Transform @@ -68751,15 +68566,15 @@ entities: - type: Transform pos: -43.5,-3.5 parent: 60 - - uid: 9550 + - uid: 9568 components: - type: Transform - pos: -36.5,1.5 + pos: -56.5,14.5 parent: 60 - - uid: 9568 + - uid: 11363 components: - type: Transform - pos: -56.5,14.5 + pos: -13.5,-1.5 parent: 60 - uid: 11474 components: @@ -68771,11 +68586,6 @@ entities: - type: Transform pos: 7.5,10.5 parent: 60 - - uid: 13975 - components: - - type: Transform - pos: -14.5,-9.5 - parent: 60 - uid: 13982 components: - type: Transform @@ -68886,11 +68696,6 @@ entities: parent: 60 - proto: DogBed entities: - - uid: 1201 - components: - - type: Transform - pos: -27.5,-9.5 - parent: 60 - uid: 2036 components: - type: MetaData @@ -68913,6 +68718,11 @@ entities: - type: Transform pos: 6.5,-29.5 parent: 60 + - uid: 7920 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 60 - uid: 11557 components: - type: Transform @@ -68928,6 +68738,11 @@ entities: parent: 60 - proto: DonkpocketBoxSpawner entities: + - uid: 628 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 60 - uid: 3137 components: - type: Transform @@ -69054,10 +68869,10 @@ entities: parent: 60 - proto: DresserHeadOfSecurityFilled entities: - - uid: 15403 + - uid: 1696 components: - type: Transform - pos: -19.5,-0.5 + pos: -18.5,-3.5 parent: 60 - proto: DresserQuarterMasterFilled entities: @@ -69096,6 +68911,16 @@ entities: parent: 60 - proto: DrinkGlass entities: + - uid: 3722 + components: + - type: Transform + pos: -13.197583,-50.45657 + parent: 60 + - uid: 3737 + components: + - type: Transform + pos: -13.135083,-50.284695 + parent: 60 - uid: 23627 components: - type: Transform @@ -69127,13 +68952,6 @@ entities: parent: 60 - type: Tag tags: [] -- proto: DrinkMugBlack - entities: - - uid: 4551 - components: - - type: Transform - pos: -34.42806,-0.22675279 - parent: 60 - proto: DrinkMugDog entities: - uid: 14993 @@ -69143,10 +68961,10 @@ entities: parent: 60 - proto: DrinkMugMetal entities: - - uid: 1624 + - uid: 1915 components: - type: Transform - pos: -34.349934,-0.4142528 + pos: -26.325293,-20.46791 parent: 60 - uid: 16127 components: @@ -69169,27 +68987,17 @@ entities: parent: 60 - proto: DrinkMugRed entities: - - uid: 18826 + - uid: 9546 components: - type: Transform - pos: -34.58431,-0.4611278 + pos: -26.590918,-20.34291 parent: 60 -- proto: DrinkSakeGlass +- proto: DrinkSakeBottleFull entities: - - uid: 4281 - components: - - type: Transform - pos: -13.1094885,-50.43419 - parent: 60 - - uid: 4282 - components: - - type: Transform - pos: -13.1094885,-50.37169 - parent: 60 - - uid: 4545 + - uid: 3742 components: - type: Transform - pos: -13.1094885,-50.49669 + pos: -13.744458,-50.23782 parent: 60 - proto: DrinkShaker entities: @@ -69208,13 +69016,6 @@ entities: - type: Transform pos: -62.596844,46.56719 parent: 60 -- proto: DrinkShinyFlask - entities: - - uid: 12189 - components: - - type: Transform - pos: -25.703217,-11.4913645 - parent: 60 - proto: DrinkShotGlass entities: - uid: 6388 @@ -69297,21 +69098,6 @@ entities: - type: Transform pos: -7.5137773,-11.361463 parent: 60 - - uid: 14454 - components: - - type: Transform - pos: -27.223204,-13.440722 - parent: 60 - - uid: 14618 - components: - - type: Transform - pos: -27.098204,-13.175097 - parent: 60 - - uid: 14625 - components: - - type: Transform - pos: -27.035704,-13.425097 - parent: 60 - uid: 16380 components: - type: Transform @@ -69431,24 +69217,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 5234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-5.5 - parent: 60 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 5235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-16.5 - parent: 60 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 6186 components: - type: Transform @@ -69552,23 +69320,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 21380 - components: - - type: Transform - pos: -26.5,2.5 - parent: 60 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 21381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-14.5 - parent: 60 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 21382 components: - type: Transform @@ -69639,15 +69390,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 21392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,3.5 - parent: 60 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 25126 components: - type: Transform @@ -69667,10 +69409,10 @@ entities: parent: 60 - proto: EmergencyMedipen entities: - - uid: 3505 + - uid: 17955 components: - type: Transform - pos: -19.478468,-2.5346627 + pos: -18.983906,-13.563609 parent: 60 - proto: EmergencyOxygenTankFilled entities: @@ -69837,6 +69579,26 @@ entities: parent: 60 - proto: ExtinguisherCabinetFilled entities: + - uid: 158 + components: + - type: Transform + pos: -34.5,10.5 + parent: 60 + - uid: 176 + components: + - type: Transform + pos: -17.5,16.5 + parent: 60 + - uid: 1979 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 60 + - uid: 2005 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 60 - uid: 3153 components: - type: Transform @@ -69963,21 +69725,6 @@ entities: - type: Transform pos: -52.5,8.5 parent: 60 - - uid: 21722 - components: - - type: Transform - pos: -35.5,1.5 - parent: 60 - - uid: 21723 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 60 - - uid: 21726 - components: - - type: Transform - pos: -18.5,-0.5 - parent: 60 - uid: 21727 components: - type: Transform @@ -70023,6 +69770,16 @@ entities: - type: Transform pos: 36.5,-32.5 parent: 60 + - uid: 21768 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 60 + - uid: 21769 + components: + - type: Transform + pos: -35.5,1.5 + parent: 60 - uid: 23077 components: - type: Transform @@ -70047,6 +69804,13 @@ entities: parent: 60 - proto: FaxMachineBase entities: + - uid: 1578 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 60 + - type: FaxMachine + name: Security - uid: 4256 components: - type: Transform @@ -70061,6 +69825,13 @@ entities: parent: 60 - type: FaxMachine name: HoP Office + - uid: 6890 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 60 + - type: FaxMachine + name: HoS Office - uid: 7919 components: - type: Transform @@ -70124,13 +69895,6 @@ entities: parent: 60 - type: FaxMachine name: Library - - uid: 24176 - components: - - type: Transform - pos: -26.5,-13.5 - parent: 60 - - type: FaxMachine - name: Security Fax - proto: FaxMachineCaptain entities: - uid: 15836 @@ -70154,6 +69918,11 @@ entities: parent: 60 - proto: filingCabinetDrawerRandom entities: + - uid: 1942 + components: + - type: Transform + pos: -45.5,-15.5 + parent: 60 - uid: 4172 components: - type: Transform @@ -70205,6 +69974,110 @@ entities: parent: 60 - proto: FireAlarm entities: + - uid: 63 + components: + - type: Transform + pos: -24.5,-21.5 + parent: 60 + - type: DeviceList + devices: + - 21505 + - 17493 + - 15846 + - 2585 + - 9052 + - 22 + - 1491 + - 670 + - 672 + - 671 + - uid: 177 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 60 + - type: DeviceList + devices: + - 1975 + - 2002 + - 1993 + - 182 + - 180 + - 210 + - 1972 + - 1982 + - 1967 + - uid: 230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 60 + - type: DeviceList + devices: + - 180 + - 182 + - 1969 + - 1985 + - uid: 1962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,5.5 + parent: 60 + - type: DeviceList + devices: + - 8574 + - 1644 + - 1643 + - 1645 + - uid: 1970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 60 + - type: DeviceList + devices: + - 232 + - 184 + - 1976 + - 1972 + - 210 + - uid: 4190 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 60 + - type: DeviceList + devices: + - 21505 + - 17493 + - 15846 + - 2585 + - 9052 + - 22 + - 1491 + - 670 + - 672 + - 671 + - uid: 4191 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 60 + - type: DeviceList + devices: + - 21505 + - 17493 + - 15846 + - 2585 + - 9052 + - 22 + - 1491 + - 670 + - 672 + - 671 - uid: 4511 components: - type: Transform @@ -70224,6 +70097,54 @@ entities: - 21015 - 21023 - 21022 + - uid: 4545 + components: + - type: Transform + pos: -12.5,10.5 + parent: 60 + - type: DeviceList + devices: + - 4338 + - 4337 + - 4361 + - 1643 + - 1644 + - 8574 + - 8986 + - 8521 + - 9054 + - 21513 + - uid: 4627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-16.5 + parent: 60 + - type: DeviceList + devices: + - 780 + - 7721 + - 1017 + - 8168 + - 5623 + - 9468 + - 21614 + - 6098 + - 6097 + - 5940 + - 21615 + - uid: 4710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-17.5 + parent: 60 + - type: DeviceList + devices: + - 122 + - 9052 + - 22 + - 1491 - uid: 4831 components: - type: Transform @@ -70310,13 +70231,17 @@ entities: parent: 60 - type: DeviceList devices: - - 780 - - 7721 + - 8168 - 1017 + - 7721 + - 780 - 21614 - - 491 - - 8774 - - 8957 + - 9468 + - 5623 + - 6098 + - 6097 + - 5940 + - 21615 - uid: 12733 components: - type: Transform @@ -70327,21 +70252,6 @@ entities: devices: - 12571 - 12594 - - uid: 18592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 60 - - type: DeviceList - devices: - - 18859 - - 18858 - - 18857 - - 21511 - - 11338 - - 11339 - - 11340 - uid: 21484 components: - type: Transform @@ -70353,9 +70263,6 @@ entities: - 458 - 459 - 460 - - 18464 - - 18463 - - 18462 - 21485 - uid: 21487 components: @@ -70367,9 +70274,6 @@ entities: devices: - 18609 - 21486 - - 18464 - - 18463 - - 18462 - uid: 21490 components: - type: Transform @@ -70390,20 +70294,6 @@ entities: devices: - 18609 - 21494 - - uid: 21497 - components: - - type: Transform - pos: -10.5,-21.5 - parent: 60 - - type: DeviceList - devices: - - 671 - - 672 - - 670 - - 21495 - - 6147 - - 6173 - - 6156 - uid: 21498 components: - type: Transform @@ -70421,29 +70311,6 @@ entities: - 9184 - 9237 - 6626 - - uid: 21503 - components: - - type: Transform - pos: -22.5,-21.5 - parent: 60 - - type: DeviceList - devices: - - 11340 - - 11339 - - 11338 - - 158 - - 836 - - 121 - - 63 - - 81 - - 112 - - 2585 - - 15846 - - 17493 - - 21505 - - 6147 - - 6173 - - 6156 - uid: 21506 components: - type: Transform @@ -70451,13 +70318,13 @@ entities: parent: 60 - type: DeviceList devices: - - 21508 - - 5940 - - 6097 - 6098 - - 15846 + - 6097 + - 5940 - 2585 + - 15846 - 17493 + - 21508 - uid: 21514 components: - type: Transform @@ -70465,14 +70332,8 @@ entities: parent: 60 - type: DeviceList devices: - - 6367 - - 6174 - - 6542 - 21512 - 21513 - - 9283 - - 9465 - - 9488 - 4127 - 13243 - uid: 21536 @@ -70502,9 +70363,6 @@ entities: parent: 60 - type: DeviceList devices: - - 13148 - - 13149 - - 13150 - 13107 - 13106 - 13153 @@ -70519,9 +70377,6 @@ entities: parent: 60 - type: DeviceList devices: - - 13148 - - 13149 - - 13150 - 21547 - 19862 - 19861 @@ -70650,15 +70505,16 @@ entities: parent: 60 - type: DeviceList devices: - - 8957 - - 8774 - - 491 + - 5940 + - 6097 + - 6098 + - 21614 - 9468 - 5623 - 8168 - - 6098 - - 6097 - - 5940 + - 1017 + - 7721 + - 780 - 21615 - uid: 21617 components: @@ -70712,9 +70568,9 @@ entities: - 7721 - 780 - 21633 - - 9058 - - 6830 - - 6560 + - 4338 + - 4337 + - 4361 - uid: 21637 components: - type: Transform @@ -70830,21 +70686,6 @@ entities: - 16558 - 21678 - 21713 - - uid: 21736 - components: - - type: Transform - pos: -19.5,-14.5 - parent: 60 - - type: DeviceList - devices: - - 13098 - - 21734 - - 5562 - - 5565 - - 5563 - - 8466 - - 6734 - - 7139 - uid: 23384 components: - type: Transform @@ -70887,19 +70728,6 @@ entities: - 23765 - 23766 - 21643 - - uid: 24148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-6.5 - parent: 60 - - type: DeviceList - devices: - - 5562 - - 5565 - - 5563 - - 8466 - - 21733 - uid: 25156 components: - type: Transform @@ -71006,48 +70834,33 @@ entities: parent: 60 - proto: FirelockEdge entities: - - uid: 63 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21503 - - uid: 81 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21503 - - uid: 112 + - uid: 22 components: - type: Transform - pos: -20.5,-21.5 + pos: -15.5,-20.5 parent: 60 - type: DeviceNetwork deviceLists: - - 21503 - - uid: 121 + - 4191 + - 4710 + - 4190 + - 63 + - uid: 184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-20.5 + pos: -18.5,-16.5 parent: 60 - type: DeviceNetwork deviceLists: - - 21503 - - uid: 158 + - 1970 + - uid: 232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-18.5 + pos: -20.5,-16.5 parent: 60 - type: DeviceNetwork deviceLists: - - 21503 + - 1970 - uid: 458 components: - type: Transform @@ -71063,23 +70876,45 @@ entities: - type: Transform pos: -0.5,-20.5 parent: 60 - - uid: 836 + - uid: 1280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-19.5 + pos: 17.5,11.5 parent: 60 - type: DeviceNetwork deviceLists: - - 21503 - - uid: 1280 + - 21553 + - uid: 1491 components: - type: Transform - pos: 17.5,11.5 + pos: -14.5,-20.5 parent: 60 - type: DeviceNetwork deviceLists: - - 21553 + - 4191 + - 4710 + - 4190 + - 63 + - uid: 1643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,5.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 4545 + - 1962 + - uid: 1644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,5.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 4545 + - 1962 - uid: 1698 components: - type: Transform @@ -71096,6 +70931,50 @@ entities: - type: DeviceNetwork deviceLists: - 21553 + - uid: 1967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 177 + - uid: 1969 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 230 + - uid: 1982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 177 + - uid: 1993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 177 + - uid: 2002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 177 - uid: 2455 components: - type: Transform @@ -71128,24 +71007,6 @@ entities: - type: Transform pos: 1.5,-42.5 parent: 60 - - uid: 4009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-42.5 - parent: 60 - - uid: 4010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-41.5 - parent: 60 - - uid: 4011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-40.5 - parent: 60 - uid: 4501 components: - type: Transform @@ -71222,6 +71083,17 @@ entities: - type: DeviceNetwork deviceLists: - 23767 + - 4545 + - uid: 8574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,5.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 4545 + - 1962 - uid: 8986 components: - type: Transform @@ -71230,6 +71102,18 @@ entities: - type: DeviceNetwork deviceLists: - 23767 + - 4545 + - uid: 9052 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 4191 + - 4710 + - 4190 + - 63 - uid: 9054 components: - type: Transform @@ -71238,6 +71122,7 @@ entities: - type: DeviceNetwork deviceLists: - 23767 + - 4545 - uid: 9095 components: - type: Transform @@ -71256,18 +71141,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-27.5 parent: 60 - - uid: 11510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,27.5 - parent: 60 - - uid: 11551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,27.5 - parent: 60 - uid: 11698 components: - type: Transform @@ -71568,11 +71441,33 @@ entities: parent: 60 - proto: FirelockGlass entities: - - uid: 491 + - uid: 180 components: - type: Transform - pos: -36.5,5.5 + pos: -30.5,-12.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 230 + - 177 + - uid: 182 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 230 + - 177 + - uid: 210 + components: + - type: Transform + pos: -22.5,-12.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 1970 + - 177 - uid: 670 components: - type: Transform @@ -71580,7 +71475,9 @@ entities: parent: 60 - type: DeviceNetwork deviceLists: - - 21497 + - 4191 + - 4190 + - 63 - uid: 671 components: - type: Transform @@ -71588,7 +71485,9 @@ entities: parent: 60 - type: DeviceNetwork deviceLists: - - 21497 + - 4191 + - 4190 + - 63 - uid: 672 components: - type: Transform @@ -71596,7 +71495,9 @@ entities: parent: 60 - type: DeviceNetwork deviceLists: - - 21497 + - 4191 + - 4190 + - 63 - uid: 673 components: - type: Transform @@ -71629,6 +71530,9 @@ entities: - type: DeviceNetwork deviceLists: - 21635 + - 21613 + - 11347 + - 4627 - uid: 1017 components: - type: Transform @@ -71637,6 +71541,9 @@ entities: - type: DeviceNetwork deviceLists: - 21635 + - 21613 + - 11347 + - 4627 - uid: 1191 components: - type: Transform @@ -71650,30 +71557,15 @@ entities: - type: DeviceNetwork deviceLists: - 21558 - - uid: 1559 - components: - - type: Transform - pos: -22.5,-20.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 2103 - - uid: 1633 - components: - - type: Transform - pos: -22.5,-18.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 2103 - - uid: 1636 + - uid: 1972 components: - type: Transform - pos: -22.5,-19.5 + pos: -21.5,-12.5 parent: 60 - type: DeviceNetwork deviceLists: - - 2103 + - 1970 + - 177 - uid: 2044 components: - type: Transform @@ -71696,7 +71588,10 @@ entities: parent: 60 - type: DeviceNetwork deviceLists: - - 21503 + - 4191 + - 21506 + - 4190 + - 63 - uid: 2680 components: - type: Transform @@ -71790,6 +71685,33 @@ entities: - type: Transform pos: -50.5,-23.5 parent: 60 + - uid: 4337 + components: + - type: Transform + pos: -17.5,8.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 21635 + - 4545 + - uid: 4338 + components: + - type: Transform + pos: -17.5,7.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 21635 + - 4545 + - uid: 4361 + components: + - type: Transform + pos: -17.5,9.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 21635 + - 4545 - uid: 4369 components: - type: Transform @@ -71914,38 +71836,16 @@ entities: - type: Transform pos: 45.5,-38.5 parent: 60 - - uid: 5562 - components: - - type: Transform - pos: -30.5,-8.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21736 - - 249 - - uid: 5563 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21736 - - 249 - - uid: 5565 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21736 - - 249 - uid: 5623 components: - type: Transform pos: -39.5,-0.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21613 + - 11347 + - 4627 - uid: 5684 components: - type: Transform @@ -71966,64 +71866,39 @@ entities: - type: Transform pos: -36.5,-17.5 parent: 60 - - uid: 6097 - components: - - type: Transform - pos: -37.5,-17.5 - parent: 60 - - uid: 6098 - components: - - type: Transform - pos: -38.5,-17.5 - parent: 60 - - uid: 6133 - components: - - type: Transform - pos: 15.5,6.5 - parent: 60 - - uid: 6147 - components: - - type: Transform - pos: -13.5,-22.5 - parent: 60 - type: DeviceNetwork deviceLists: - - 21497 - - 21503 - - uid: 6156 - components: - - type: Transform - pos: -13.5,-24.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21497 - - 21503 - - uid: 6173 + - 21506 + - 21613 + - 11347 + - 4627 + - uid: 6097 components: - type: Transform - pos: -13.5,-23.5 + pos: -37.5,-17.5 parent: 60 - type: DeviceNetwork deviceLists: - - 21497 - - 21503 - - uid: 6174 + - 21506 + - 21613 + - 11347 + - 4627 + - uid: 6098 components: - type: Transform - pos: 14.5,8.5 + pos: -38.5,-17.5 parent: 60 - type: DeviceNetwork deviceLists: - - 21514 - - uid: 6367 + - 21506 + - 21613 + - 11347 + - 4627 + - uid: 6133 components: - type: Transform - pos: 14.5,9.5 + pos: 15.5,6.5 parent: 60 - - type: DeviceNetwork - deviceLists: - - 21514 - uid: 6489 components: - type: Transform @@ -72034,22 +71909,6 @@ entities: - type: Transform pos: 20.5,-21.5 parent: 60 - - uid: 6542 - components: - - type: Transform - pos: 14.5,7.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21514 - - uid: 6560 - components: - - type: Transform - pos: -17.5,7.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21635 - uid: 6561 components: - type: Transform @@ -72074,14 +71933,6 @@ entities: - type: Transform pos: -40.5,25.5 parent: 60 - - uid: 6734 - components: - - type: Transform - pos: -23.5,-9.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21736 - uid: 6736 components: - type: Transform @@ -72092,14 +71943,6 @@ entities: - type: Transform pos: -40.5,24.5 parent: 60 - - uid: 6830 - components: - - type: Transform - pos: -17.5,8.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21635 - uid: 6854 components: - type: Transform @@ -72115,14 +71958,6 @@ entities: - type: Transform pos: -61.5,10.5 parent: 60 - - uid: 7139 - components: - - type: Transform - pos: -19.5,-17.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21736 - uid: 7146 components: - type: Transform @@ -72169,20 +72004,19 @@ entities: - type: DeviceNetwork deviceLists: - 21635 + - 21613 + - 11347 + - 4627 - uid: 8168 components: - type: Transform pos: -39.5,-1.5 parent: 60 - - uid: 8466 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 60 - type: DeviceNetwork deviceLists: - - 21736 - - 249 + - 21613 + - 11347 + - 4627 - uid: 8611 components: - type: Transform @@ -72207,11 +72041,6 @@ entities: - type: DeviceNetwork deviceLists: - 21553 - - uid: 8774 - components: - - type: Transform - pos: -37.5,5.5 - parent: 60 - uid: 8778 components: - type: Transform @@ -72222,24 +72051,11 @@ entities: - type: Transform pos: 39.5,-38.5 parent: 60 - - uid: 8957 - components: - - type: Transform - pos: -38.5,5.5 - parent: 60 - uid: 8961 components: - type: Transform pos: 44.5,-15.5 parent: 60 - - uid: 9058 - components: - - type: Transform - pos: -17.5,9.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21635 - uid: 9184 components: - type: Transform @@ -72258,14 +72074,6 @@ entities: deviceLists: - 21558 - 21498 - - uid: 9283 - components: - - type: Transform - pos: -13.5,9.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21514 - uid: 9409 components: - type: Transform @@ -72289,27 +72097,16 @@ entities: - type: DeviceNetwork deviceLists: - 21630 - - uid: 9465 - components: - - type: Transform - pos: -13.5,8.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21514 - uid: 9468 components: - type: Transform pos: -39.5,0.5 parent: 60 - - uid: 9488 - components: - - type: Transform - pos: -13.5,7.5 - parent: 60 - type: DeviceNetwork deviceLists: - - 21514 + - 21613 + - 11347 + - 4627 - uid: 9526 components: - type: Transform @@ -72325,40 +72122,11 @@ entities: - type: Transform pos: -49.5,1.5 parent: 60 - - uid: 10686 - components: - - type: Transform - pos: -16.5,6.5 - parent: 60 - uid: 11017 components: - type: Transform pos: 40.5,-41.5 parent: 60 - - uid: 11338 - components: - - type: Transform - pos: -16.5,-17.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21503 - - uid: 11339 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21503 - - uid: 11340 - components: - - type: Transform - pos: -14.5,-17.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21503 - uid: 11520 components: - type: Transform @@ -72389,14 +72157,6 @@ entities: - type: Transform pos: -50.5,-24.5 parent: 60 - - uid: 13098 - components: - - type: Transform - pos: -29.5,-9.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21736 - uid: 13106 components: - type: Transform @@ -72413,30 +72173,6 @@ entities: - type: DeviceNetwork deviceLists: - 21543 - - uid: 13148 - components: - - type: Transform - pos: 41.5,12.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21543 - - uid: 13149 - components: - - type: Transform - pos: 40.5,12.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21543 - - uid: 13150 - components: - - type: Transform - pos: 39.5,12.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 21543 - uid: 13151 components: - type: Transform @@ -72477,16 +72213,6 @@ entities: - type: Transform pos: -15.5,26.5 parent: 60 - - uid: 13966 - components: - - type: Transform - pos: -14.5,6.5 - parent: 60 - - uid: 13967 - components: - - type: Transform - pos: -15.5,6.5 - parent: 60 - uid: 13979 components: - type: Transform @@ -72509,7 +72235,10 @@ entities: parent: 60 - type: DeviceNetwork deviceLists: - - 21503 + - 4191 + - 21506 + - 4190 + - 63 - uid: 16007 components: - type: Transform @@ -72557,22 +72286,10 @@ entities: parent: 60 - type: DeviceNetwork deviceLists: - - 21503 - - uid: 18462 - components: - - type: Transform - pos: 1.5,-12.5 - parent: 60 - - uid: 18463 - components: - - type: Transform - pos: 0.5,-12.5 - parent: 60 - - uid: 18464 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 60 + - 4191 + - 21506 + - 4190 + - 63 - uid: 18608 components: - type: Transform @@ -72583,21 +72300,6 @@ entities: - type: Transform pos: 0.5,-1.5 parent: 60 - - uid: 18857 - components: - - type: Transform - pos: -14.5,-2.5 - parent: 60 - - uid: 18858 - components: - - type: Transform - pos: -15.5,-2.5 - parent: 60 - - uid: 18859 - components: - - type: Transform - pos: -16.5,-2.5 - parent: 60 - uid: 19088 components: - type: Transform @@ -72719,10 +72421,10 @@ entities: - 25158 - proto: Fireplace entities: - - uid: 1532 + - uid: 6065 components: - type: Transform - pos: -20.5,2.5 + pos: -21.5,1.5 parent: 60 - uid: 7044 components: @@ -72838,6 +72540,13 @@ entities: - type: Transform pos: -70.59139,20.353971 parent: 60 +- proto: FlashlightSeclite + entities: + - uid: 323 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 60 - proto: FlippoLighter entities: - uid: 1352 @@ -73713,11 +73422,6 @@ entities: parent: 60 - proto: FoodBoxDonkpocketPizza entities: - - uid: 177 - components: - - type: Transform - pos: -34.542274,1.9138722 - parent: 60 - uid: 15714 components: - type: Transform @@ -73725,10 +73429,10 @@ entities: parent: 60 - proto: FoodBoxDonut entities: - - uid: 1930 + - uid: 1737 components: - type: Transform - pos: -25.24082,-13.2937 + pos: -25.411478,-6.2389956 parent: 60 - uid: 24664 components: @@ -74116,7 +73820,7 @@ entities: pos: 47.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF1212FF' - proto: GasFilterFlipped entities: - uid: 23468 @@ -74323,7 +74027,7 @@ entities: pos: 23.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - proto: GasPassiveVent entities: - uid: 2979 @@ -74547,7 +74251,7 @@ entities: pos: 44.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 125 components: - type: Transform @@ -74563,7 +74267,7 @@ entities: pos: 27.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 222 components: - type: Transform @@ -74571,7 +74275,7 @@ entities: pos: 20.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 248 components: - type: Transform @@ -74579,21 +74283,44 @@ entities: pos: -24.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 311 components: - type: Transform pos: 27.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-15.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 784 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 947 components: - type: Transform pos: 16.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 995 components: - type: Transform @@ -74601,14 +74328,14 @@ entities: pos: 9.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1388 components: - type: Transform pos: 4.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1408 components: - type: Transform @@ -74616,7 +74343,7 @@ entities: pos: 5.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1409 components: - type: Transform @@ -74624,53 +74351,46 @@ entities: pos: 7.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-14.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1836 + color: '#0335FCFF' + - uid: 1700 components: - type: Transform - pos: -30.5,-13.5 + rot: -1.5707963267948966 rad + pos: -31.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1892 + color: '#FF1212FF' + - uid: 1776 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-20.5 + pos: -9.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1926 + color: '#0335FCFF' + - uid: 2025 components: - type: Transform - pos: -29.5,-12.5 + rot: 3.141592653589793 rad + pos: -23.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1973 + color: '#0335FCFF' + - uid: 2113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-13.5 + rot: -1.5707963267948966 rad + pos: -32.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2025 + color: '#0335FCFF' + - uid: 2120 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-27.5 + pos: -20.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2203 components: - type: Transform @@ -74678,7 +74398,7 @@ entities: pos: 15.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2207 components: - type: Transform @@ -74686,14 +74406,22 @@ entities: pos: 32.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2274 components: - type: Transform pos: 34.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 2278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-16.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 2366 components: - type: Transform @@ -74701,7 +74429,7 @@ entities: pos: 30.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2443 components: - type: Transform @@ -74709,7 +74437,23 @@ entities: pos: 16.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 2513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-16.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-16.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 2999 components: - type: Transform @@ -74755,7 +74499,7 @@ entities: pos: 40.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3188 components: - type: Transform @@ -74763,14 +74507,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 3198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-3.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - uid: 3211 components: - type: Transform @@ -74778,7 +74514,7 @@ entities: pos: 49.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3960 components: - type: Transform @@ -74786,7 +74522,7 @@ entities: pos: -13.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3961 components: - type: Transform @@ -74794,7 +74530,7 @@ entities: pos: -13.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4739 components: - type: Transform @@ -74802,7 +74538,7 @@ entities: pos: 43.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4911 components: - type: Transform @@ -74810,14 +74546,14 @@ entities: pos: -2.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4912 components: - type: Transform pos: -0.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4913 components: - type: Transform @@ -74825,7 +74561,7 @@ entities: pos: 3.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4914 components: - type: Transform @@ -74833,7 +74569,7 @@ entities: pos: -2.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4935 components: - type: Transform @@ -74841,14 +74577,14 @@ entities: pos: 1.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4936 components: - type: Transform pos: 3.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4961 components: - type: Transform @@ -74856,7 +74592,7 @@ entities: pos: 43.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4985 components: - type: Transform @@ -74864,7 +74600,7 @@ entities: pos: 1.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4987 components: - type: Transform @@ -74872,7 +74608,7 @@ entities: pos: -0.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5474 components: - type: Transform @@ -74880,7 +74616,7 @@ entities: pos: -38.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5550 components: - type: Transform @@ -74903,14 +74639,14 @@ entities: pos: 8.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5695 components: - type: Transform pos: 8.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5699 components: - type: Transform @@ -74918,7 +74654,7 @@ entities: pos: 5.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5700 components: - type: Transform @@ -74926,21 +74662,21 @@ entities: pos: 6.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5701 components: - type: Transform pos: 6.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5702 components: - type: Transform pos: 5.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5703 components: - type: Transform @@ -74948,7 +74684,7 @@ entities: pos: -7.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5706 components: - type: Transform @@ -74956,7 +74692,7 @@ entities: pos: -7.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5709 components: - type: Transform @@ -74964,7 +74700,7 @@ entities: pos: -4.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5710 components: - type: Transform @@ -74972,7 +74708,7 @@ entities: pos: -4.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5711 components: - type: Transform @@ -74980,7 +74716,7 @@ entities: pos: -5.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5712 components: - type: Transform @@ -74988,14 +74724,14 @@ entities: pos: -5.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5819 components: - type: Transform pos: 19.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5902 components: - type: Transform @@ -75003,7 +74739,7 @@ entities: pos: 15.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5950 components: - type: Transform @@ -75011,7 +74747,7 @@ entities: pos: -54.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5967 components: - type: Transform @@ -75019,14 +74755,14 @@ entities: pos: -55.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6046 components: - type: Transform pos: -44.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6047 components: - type: Transform @@ -75034,14 +74770,14 @@ entities: pos: -49.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6062 components: - type: Transform pos: -43.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6112 components: - type: Transform @@ -75049,7 +74785,7 @@ entities: pos: -43.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6135 components: - type: Transform @@ -75057,7 +74793,15 @@ entities: pos: -44.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 6309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6401 components: - type: Transform @@ -75065,37 +74809,22 @@ entities: pos: -47.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6803 + color: '#FF1212FF' + - uid: 6796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-14.5 + rot: 3.141592653589793 rad + pos: -27.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 6823 components: - type: Transform pos: 17.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7285 - components: - - type: Transform - pos: -24.5,-18.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 7357 components: - type: Transform @@ -75115,83 +74844,112 @@ entities: pos: 23.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8255 + color: '#FF1212FF' + - uid: 7907 components: - type: Transform - pos: -37.5,-19.5 + rot: -1.5707963267948966 rad + pos: -25.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8258 + color: '#FF1212FF' + - uid: 8212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-8.5 + pos: -18.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8579 + color: '#FF1212FF' + - uid: 8343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-16.5 + pos: -31.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8771 + color: '#FF1212FF' + - uid: 8386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-18.5 + pos: -12.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8948 + color: '#FF1212FF' + - uid: 8417 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-0.5 + pos: -45.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8970 + color: '#0335FCFF' + - uid: 8472 components: - type: Transform - pos: 21.5,-15.5 + pos: -46.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9019 + color: '#0335FCFF' + - uid: 8475 + components: + - type: Transform + pos: -43.5,-16.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8511 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-21.5 + pos: -43.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9030 + color: '#FF1212FF' + - uid: 8580 components: - type: Transform - pos: -30.5,0.5 + rot: 3.141592653589793 rad + pos: -46.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9032 + color: '#0335FCFF' + - uid: 8919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,1.5 + rot: -1.5707963267948966 rad + pos: -7.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9157 + color: '#0335FCFF' + - uid: 8943 components: - type: Transform - pos: -18.5,-2.5 + pos: -7.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 8944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8970 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-21.5 + parent: 60 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 9638 components: - type: Transform @@ -75199,7 +74957,7 @@ entities: pos: -54.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 11105 components: - type: Transform @@ -75214,7 +74972,7 @@ entities: pos: -6.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 11281 components: - type: Transform @@ -75228,7 +74986,7 @@ entities: pos: 37.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 11488 components: - type: Transform @@ -75236,7 +74994,7 @@ entities: pos: 12.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 11723 components: - type: Transform @@ -75244,7 +75002,7 @@ entities: pos: 40.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 11841 components: - type: Transform @@ -75252,7 +75010,7 @@ entities: pos: 48.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12192 components: - type: Transform @@ -75260,7 +75018,7 @@ entities: pos: 41.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12629 components: - type: Transform @@ -75268,7 +75026,7 @@ entities: pos: 39.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12635 components: - type: Transform @@ -75276,7 +75034,7 @@ entities: pos: 40.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12823 components: - type: Transform @@ -75284,7 +75042,7 @@ entities: pos: -36.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12829 components: - type: Transform @@ -75292,7 +75050,7 @@ entities: pos: -43.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12835 components: - type: Transform @@ -75300,7 +75058,7 @@ entities: pos: -43.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13230 components: - type: Transform @@ -75323,7 +75081,7 @@ entities: pos: 49.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13515 components: - type: Transform @@ -75331,7 +75089,7 @@ entities: pos: 41.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13516 components: - type: Transform @@ -75339,7 +75097,7 @@ entities: pos: 37.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13517 components: - type: Transform @@ -75347,7 +75105,7 @@ entities: pos: 37.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13537 components: - type: Transform @@ -75355,7 +75113,7 @@ entities: pos: 20.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13538 components: - type: Transform @@ -75363,7 +75121,7 @@ entities: pos: 20.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13631 components: - type: Transform @@ -75371,30 +75129,14 @@ entities: pos: -8.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,10.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14260 components: - type: Transform pos: -14.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14297 components: - type: Transform @@ -75402,14 +75144,14 @@ entities: pos: -7.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14311 components: - type: Transform pos: -8.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14666 components: - type: Transform @@ -75424,7 +75166,7 @@ entities: pos: -12.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14668 components: - type: Transform @@ -75432,7 +75174,7 @@ entities: pos: -20.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14674 components: - type: Transform @@ -75440,7 +75182,7 @@ entities: pos: -20.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14698 components: - type: Transform @@ -75448,7 +75190,7 @@ entities: pos: -12.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14702 components: - type: Transform @@ -75469,7 +75211,7 @@ entities: pos: -20.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14842 components: - type: Transform @@ -75566,7 +75308,7 @@ entities: pos: -33.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15181 components: - type: Transform @@ -75666,14 +75408,14 @@ entities: pos: -22.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15594 components: - type: Transform pos: -10.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15612 components: - type: Transform @@ -75681,14 +75423,14 @@ entities: pos: -20.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15613 components: - type: Transform pos: -12.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16611 components: - type: Transform @@ -75696,7 +75438,7 @@ entities: pos: 1.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16641 components: - type: Transform @@ -75704,7 +75446,7 @@ entities: pos: -3.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16741 components: - type: Transform @@ -75734,7 +75476,7 @@ entities: pos: -47.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17290 components: - type: Transform @@ -75742,7 +75484,7 @@ entities: pos: -52.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17586 components: - type: Transform @@ -75750,7 +75492,7 @@ entities: pos: -41.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17587 components: - type: Transform @@ -75758,7 +75500,7 @@ entities: pos: -43.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18020 components: - type: Transform @@ -75772,7 +75514,7 @@ entities: pos: -2.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18250 components: - type: Transform @@ -75780,14 +75522,14 @@ entities: pos: -3.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18276 components: - type: Transform pos: -2.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18277 components: - type: Transform @@ -75795,7 +75537,7 @@ entities: pos: -4.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18366 components: - type: Transform @@ -75808,7 +75550,7 @@ entities: pos: 4.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18435 components: - type: Transform @@ -75816,7 +75558,7 @@ entities: pos: -3.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18511 components: - type: Transform @@ -75824,21 +75566,21 @@ entities: pos: -2.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18532 components: - type: Transform pos: 2.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18534 components: - type: Transform pos: 4.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18712 components: - type: Transform @@ -75846,7 +75588,7 @@ entities: pos: 39.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18713 components: - type: Transform @@ -75854,7 +75596,7 @@ entities: pos: 37.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18914 components: - type: Transform @@ -75862,7 +75604,7 @@ entities: pos: 47.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21325 components: - type: Transform @@ -75870,14 +75612,14 @@ entities: pos: -58.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21326 components: - type: Transform pos: -58.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21393 components: - type: Transform @@ -75885,14 +75627,14 @@ entities: pos: -15.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21440 components: - type: Transform pos: -7.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21441 components: - type: Transform @@ -75900,7 +75642,7 @@ entities: pos: -8.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21534 components: - type: Transform @@ -75908,14 +75650,14 @@ entities: pos: 53.5,45.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21666 components: - type: Transform pos: -29.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 22829 components: - type: Transform @@ -75923,7 +75665,7 @@ entities: pos: -119.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22846 components: - type: Transform @@ -75931,7 +75673,7 @@ entities: pos: -111.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22872 components: - type: Transform @@ -75939,14 +75681,14 @@ entities: pos: -110.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22873 components: - type: Transform pos: -102.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22874 components: - type: Transform @@ -75954,35 +75696,35 @@ entities: pos: -102.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22875 components: - type: Transform pos: -99.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22877 components: - type: Transform pos: -110.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22880 components: - type: Transform pos: -98.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22895 components: - type: Transform pos: -111.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22896 components: - type: Transform @@ -75990,7 +75732,7 @@ entities: pos: -113.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22897 components: - type: Transform @@ -75998,7 +75740,7 @@ entities: pos: -113.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22898 components: - type: Transform @@ -76006,7 +75748,7 @@ entities: pos: -111.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22899 components: - type: Transform @@ -76014,7 +75756,7 @@ entities: pos: -111.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22909 components: - type: Transform @@ -76250,7 +75992,7 @@ entities: pos: 55.5,47.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24902 components: - type: Transform @@ -76258,14 +76000,14 @@ entities: pos: 33.5,45.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 25167 components: - type: Transform pos: 35.5,47.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - proto: GasPipeFourway entities: - uid: 467 @@ -76274,70 +76016,77 @@ entities: pos: 1.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 483 components: - type: Transform pos: -0.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 872 components: - type: Transform pos: 44.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 942 components: - type: Transform pos: 45.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1040 components: - type: Transform pos: 15.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1177 components: - type: Transform pos: -16.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 2002 + color: '#FF1212FF' + - uid: 1664 components: - type: Transform - pos: -22.5,-3.5 + pos: -22.5,-5.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1744 + components: + - type: Transform + pos: -30.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 2361 components: - type: Transform pos: 23.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2470 components: - type: Transform pos: 21.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2491 components: - type: Transform pos: 39.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2903 components: - type: Transform @@ -76356,126 +76105,133 @@ entities: pos: 45.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3194 components: - type: Transform pos: 44.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3195 components: - type: Transform pos: 44.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4002 components: - type: Transform pos: -7.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4116 components: - type: Transform pos: 33.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4656 components: - type: Transform pos: -0.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 5247 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5473 + components: + - type: Transform + pos: -9.5,7.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5837 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 5991 components: - type: Transform pos: -52.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6213 components: - type: Transform pos: 1.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6264 components: - type: Transform pos: 17.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6268 components: - type: Transform pos: -38.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6275 components: - type: Transform pos: -47.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6834 components: - type: Transform pos: -47.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7563 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8720 - components: - - type: Transform - pos: -18.5,-19.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8748 + color: '#FF1212FF' + - uid: 7904 components: - type: Transform - pos: -21.5,-7.5 + pos: -14.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9232 components: - type: Transform pos: 17.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14241 components: - type: Transform pos: -14.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15113 components: - type: Transform pos: -33.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15531 components: - type: Transform @@ -76489,35 +76245,35 @@ entities: pos: 39.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17887 components: - type: Transform pos: 45.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18231 components: - type: Transform pos: 1.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18239 components: - type: Transform pos: 1.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22822 components: - type: Transform pos: -111.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22997 components: - type: Transform @@ -76559,7 +76315,7 @@ entities: pos: -30.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - proto: GasPipeSensorTEGCold entities: - uid: 15074 @@ -76587,7 +76343,7 @@ entities: pos: -30.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - proto: GasPipeStraight entities: - uid: 47 @@ -76596,23 +76352,7 @@ entities: pos: -36.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 88 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-7.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 98 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-11.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 133 components: - type: Transform @@ -76620,14 +76360,14 @@ entities: pos: 23.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 171 components: - type: Transform pos: 44.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 195 components: - type: Transform @@ -76635,7 +76375,7 @@ entities: pos: 39.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 196 components: - type: Transform @@ -76643,7 +76383,7 @@ entities: pos: 40.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 198 components: - type: Transform @@ -76651,7 +76391,7 @@ entities: pos: 41.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 199 components: - type: Transform @@ -76659,7 +76399,7 @@ entities: pos: 42.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 202 components: - type: Transform @@ -76667,7 +76407,7 @@ entities: pos: 23.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 212 components: - type: Transform @@ -76675,7 +76415,7 @@ entities: pos: 21.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 221 components: - type: Transform @@ -76683,7 +76423,7 @@ entities: pos: 20.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 224 components: - type: Transform @@ -76691,7 +76431,7 @@ entities: pos: 21.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 272 components: - type: Transform @@ -76699,7 +76439,7 @@ entities: pos: 21.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 293 components: - type: Transform @@ -76707,7 +76447,7 @@ entities: pos: 20.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 294 components: - type: Transform @@ -76715,7 +76455,7 @@ entities: pos: 27.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 299 components: - type: Transform @@ -76723,7 +76463,7 @@ entities: pos: 21.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 301 components: - type: Transform @@ -76731,7 +76471,7 @@ entities: pos: 27.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 302 components: - type: Transform @@ -76739,7 +76479,7 @@ entities: pos: 23.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 305 components: - type: Transform @@ -76747,7 +76487,7 @@ entities: pos: 24.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 310 components: - type: Transform @@ -76755,7 +76495,7 @@ entities: pos: 26.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 312 components: - type: Transform @@ -76763,7 +76503,7 @@ entities: pos: 23.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 318 components: - type: Transform @@ -76771,7 +76511,15 @@ entities: pos: 27.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-16.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 360 components: - type: Transform @@ -76779,7 +76527,7 @@ entities: pos: 21.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 361 components: - type: Transform @@ -76787,105 +76535,105 @@ entities: pos: 25.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 412 components: - type: Transform pos: 1.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 413 components: - type: Transform pos: 1.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 414 components: - type: Transform pos: 1.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 415 components: - type: Transform pos: 1.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 416 components: - type: Transform pos: 1.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 418 components: - type: Transform pos: 1.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 420 components: - type: Transform pos: -0.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 421 components: - type: Transform pos: -0.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 422 components: - type: Transform pos: -0.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 423 components: - type: Transform pos: -0.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 424 components: - type: Transform pos: -0.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 425 components: - type: Transform pos: -0.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 427 components: - type: Transform pos: -0.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 440 components: - type: Transform pos: 44.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 462 components: - type: Transform @@ -76893,7 +76641,7 @@ entities: pos: 1.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 463 components: - type: Transform @@ -76901,14 +76649,14 @@ entities: pos: 0.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 465 components: - type: Transform pos: 45.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 468 components: - type: Transform @@ -76916,7 +76664,7 @@ entities: pos: -0.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 469 components: - type: Transform @@ -76924,7 +76672,7 @@ entities: pos: -1.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 470 components: - type: Transform @@ -76932,7 +76680,7 @@ entities: pos: -2.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 471 components: - type: Transform @@ -76940,7 +76688,7 @@ entities: pos: 2.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 472 components: - type: Transform @@ -76948,35 +76696,35 @@ entities: pos: 3.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 475 components: - type: Transform pos: 1.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 476 components: - type: Transform pos: 1.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 477 components: - type: Transform pos: 1.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 478 components: - type: Transform pos: 1.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 480 components: - type: Transform @@ -76984,7 +76732,7 @@ entities: pos: -0.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 481 components: - type: Transform @@ -76992,7 +76740,7 @@ entities: pos: -0.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 484 components: - type: Transform @@ -77000,7 +76748,7 @@ entities: pos: -0.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 485 components: - type: Transform @@ -77008,7 +76756,7 @@ entities: pos: -0.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 486 components: - type: Transform @@ -77016,7 +76764,7 @@ entities: pos: -0.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 495 components: - type: Transform @@ -77024,7 +76772,7 @@ entities: pos: -2.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 496 components: - type: Transform @@ -77032,7 +76780,7 @@ entities: pos: -1.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 505 components: - type: Transform @@ -77040,7 +76788,7 @@ entities: pos: 0.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 506 components: - type: Transform @@ -77048,7 +76796,7 @@ entities: pos: 1.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 507 components: - type: Transform @@ -77056,7 +76804,7 @@ entities: pos: 2.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 509 components: - type: Transform @@ -77064,7 +76812,7 @@ entities: pos: 4.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 510 components: - type: Transform @@ -77072,7 +76820,7 @@ entities: pos: 4.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 512 components: - type: Transform @@ -77080,7 +76828,7 @@ entities: pos: -3.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 532 components: - type: Transform @@ -77088,7 +76836,7 @@ entities: pos: 43.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 618 components: - type: Transform @@ -77096,7 +76844,7 @@ entities: pos: -32.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 619 components: - type: Transform @@ -77104,14 +76852,14 @@ entities: pos: -31.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 632 components: - type: Transform pos: -14.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 716 components: - type: Transform @@ -77119,29 +76867,38 @@ entities: pos: 13.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 720 + color: '#0335FCFF' + - uid: 735 + components: + - type: Transform + pos: 30.5,-31.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 781 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-15.5 + pos: -21.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 735 + color: '#0335FCFF' + - uid: 782 components: - type: Transform - pos: 30.5,-31.5 + rot: -1.5707963267948966 rad + pos: -29.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 764 + color: '#0335FCFF' + - uid: 783 components: - type: Transform - pos: -27.5,-17.5 + rot: -1.5707963267948966 rad + pos: -28.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 794 components: - type: Transform @@ -77149,29 +76906,37 @@ entities: pos: -15.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 835 + color: '#FF1212FF' + - uid: 838 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-19.5 + pos: -23.5,-10.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 874 components: - type: Transform pos: -3.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 875 components: - type: Transform pos: -3.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 879 components: - type: Transform @@ -77179,7 +76944,7 @@ entities: pos: -7.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 880 components: - type: Transform @@ -77187,7 +76952,7 @@ entities: pos: -6.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 881 components: - type: Transform @@ -77195,7 +76960,7 @@ entities: pos: -5.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 882 components: - type: Transform @@ -77203,7 +76968,7 @@ entities: pos: -4.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 883 components: - type: Transform @@ -77211,7 +76976,7 @@ entities: pos: -4.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 884 components: - type: Transform @@ -77219,7 +76984,7 @@ entities: pos: -8.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 885 components: - type: Transform @@ -77227,7 +76992,7 @@ entities: pos: -8.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 886 components: - type: Transform @@ -77235,7 +77000,7 @@ entities: pos: -9.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 888 components: - type: Transform @@ -77243,7 +77008,7 @@ entities: pos: -11.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 889 components: - type: Transform @@ -77251,14 +77016,14 @@ entities: pos: -12.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 890 components: - type: Transform pos: -9.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 891 components: - type: Transform @@ -77266,7 +77031,7 @@ entities: pos: -4.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 892 components: - type: Transform @@ -77274,7 +77039,7 @@ entities: pos: -5.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 893 components: - type: Transform @@ -77282,7 +77047,7 @@ entities: pos: -6.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 894 components: - type: Transform @@ -77290,7 +77055,7 @@ entities: pos: -7.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 897 components: - type: Transform @@ -77298,7 +77063,7 @@ entities: pos: -10.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 899 components: - type: Transform @@ -77306,7 +77071,7 @@ entities: pos: -11.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 900 components: - type: Transform @@ -77314,7 +77079,7 @@ entities: pos: -12.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 901 components: - type: Transform @@ -77322,7 +77087,7 @@ entities: pos: -13.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 903 components: - type: Transform @@ -77330,42 +77095,42 @@ entities: pos: -14.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 905 components: - type: Transform pos: -9.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 906 components: - type: Transform pos: -9.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 908 components: - type: Transform pos: -3.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 909 components: - type: Transform pos: -3.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 917 components: - type: Transform pos: 30.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 950 components: - type: Transform @@ -77373,7 +77138,7 @@ entities: pos: 42.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 951 components: - type: Transform @@ -77381,7 +77146,7 @@ entities: pos: 44.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 961 components: - type: Transform @@ -77389,7 +77154,7 @@ entities: pos: -13.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 991 components: - type: Transform @@ -77397,7 +77162,7 @@ entities: pos: -16.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 996 components: - type: Transform @@ -77405,7 +77170,7 @@ entities: pos: 14.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1029 components: - type: Transform @@ -77413,7 +77178,7 @@ entities: pos: 5.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1030 components: - type: Transform @@ -77421,7 +77186,7 @@ entities: pos: 6.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1031 components: - type: Transform @@ -77429,7 +77194,7 @@ entities: pos: 7.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1032 components: - type: Transform @@ -77437,7 +77202,7 @@ entities: pos: 8.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1033 components: - type: Transform @@ -77445,7 +77210,7 @@ entities: pos: 9.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1034 components: - type: Transform @@ -77453,7 +77218,7 @@ entities: pos: 10.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1035 components: - type: Transform @@ -77461,7 +77226,7 @@ entities: pos: 11.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1037 components: - type: Transform @@ -77469,7 +77234,7 @@ entities: pos: 13.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1038 components: - type: Transform @@ -77477,7 +77242,7 @@ entities: pos: 14.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1039 components: - type: Transform @@ -77485,7 +77250,7 @@ entities: pos: 15.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1041 components: - type: Transform @@ -77493,7 +77258,7 @@ entities: pos: 5.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1042 components: - type: Transform @@ -77501,7 +77266,7 @@ entities: pos: 6.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1044 components: - type: Transform @@ -77509,7 +77274,7 @@ entities: pos: 8.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1046 components: - type: Transform @@ -77517,7 +77282,7 @@ entities: pos: 10.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1048 components: - type: Transform @@ -77525,7 +77290,7 @@ entities: pos: 12.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1049 components: - type: Transform @@ -77533,7 +77298,7 @@ entities: pos: 13.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1050 components: - type: Transform @@ -77541,7 +77306,7 @@ entities: pos: 14.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1053 components: - type: Transform @@ -77549,7 +77314,7 @@ entities: pos: 17.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1054 components: - type: Transform @@ -77557,7 +77322,7 @@ entities: pos: 17.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1055 components: - type: Transform @@ -77565,7 +77330,7 @@ entities: pos: 15.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1056 components: - type: Transform @@ -77573,7 +77338,7 @@ entities: pos: 17.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1057 components: - type: Transform @@ -77581,7 +77346,7 @@ entities: pos: 17.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1058 components: - type: Transform @@ -77589,7 +77354,7 @@ entities: pos: 15.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1060 components: - type: Transform @@ -77597,7 +77362,7 @@ entities: pos: 17.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1062 components: - type: Transform @@ -77605,7 +77370,7 @@ entities: pos: 15.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1063 components: - type: Transform @@ -77613,7 +77378,7 @@ entities: pos: 15.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1064 components: - type: Transform @@ -77621,7 +77386,7 @@ entities: pos: 17.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1065 components: - type: Transform @@ -77629,7 +77394,7 @@ entities: pos: 17.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1067 components: - type: Transform @@ -77637,7 +77402,7 @@ entities: pos: 15.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1068 components: - type: Transform @@ -77645,7 +77410,7 @@ entities: pos: 17.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1069 components: - type: Transform @@ -77653,7 +77418,7 @@ entities: pos: 17.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1070 components: - type: Transform @@ -77661,7 +77426,7 @@ entities: pos: 15.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1073 components: - type: Transform @@ -77669,7 +77434,7 @@ entities: pos: 17.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1076 components: - type: Transform @@ -77677,7 +77442,7 @@ entities: pos: 17.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1078 components: - type: Transform @@ -77685,7 +77450,7 @@ entities: pos: 15.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1080 components: - type: Transform @@ -77693,7 +77458,7 @@ entities: pos: 17.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1081 components: - type: Transform @@ -77701,7 +77466,7 @@ entities: pos: 17.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1082 components: - type: Transform @@ -77709,7 +77474,7 @@ entities: pos: 15.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1083 components: - type: Transform @@ -77717,7 +77482,7 @@ entities: pos: 15.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1084 components: - type: Transform @@ -77725,7 +77490,7 @@ entities: pos: 17.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1085 components: - type: Transform @@ -77733,7 +77498,7 @@ entities: pos: 17.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1086 components: - type: Transform @@ -77741,7 +77506,7 @@ entities: pos: 15.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1087 components: - type: Transform @@ -77749,7 +77514,7 @@ entities: pos: 15.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1088 components: - type: Transform @@ -77757,7 +77522,7 @@ entities: pos: 17.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1089 components: - type: Transform @@ -77765,7 +77530,7 @@ entities: pos: 17.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1090 components: - type: Transform @@ -77773,7 +77538,7 @@ entities: pos: 15.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1091 components: - type: Transform @@ -77781,14 +77546,14 @@ entities: pos: 15.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1092 components: - type: Transform pos: 17.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1093 components: - type: Transform @@ -77796,7 +77561,7 @@ entities: pos: 15.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1094 components: - type: Transform @@ -77804,14 +77569,14 @@ entities: pos: 17.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1095 components: - type: Transform pos: 15.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1097 components: - type: Transform @@ -77819,7 +77584,7 @@ entities: pos: 15.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1098 components: - type: Transform @@ -77827,7 +77592,7 @@ entities: pos: 17.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1100 components: - type: Transform @@ -77835,7 +77600,7 @@ entities: pos: 17.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1101 components: - type: Transform @@ -77843,7 +77608,7 @@ entities: pos: 15.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1102 components: - type: Transform @@ -77851,7 +77616,7 @@ entities: pos: 17.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1103 components: - type: Transform @@ -77859,7 +77624,7 @@ entities: pos: 15.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1104 components: - type: Transform @@ -77867,7 +77632,7 @@ entities: pos: 17.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1105 components: - type: Transform @@ -77875,7 +77640,7 @@ entities: pos: 15.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1106 components: - type: Transform @@ -77883,7 +77648,7 @@ entities: pos: 17.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1107 components: - type: Transform @@ -77891,7 +77656,7 @@ entities: pos: 15.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1108 components: - type: Transform @@ -77899,7 +77664,7 @@ entities: pos: 17.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1109 components: - type: Transform @@ -77907,7 +77672,7 @@ entities: pos: 15.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1110 components: - type: Transform @@ -77915,7 +77680,7 @@ entities: pos: 17.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1111 components: - type: Transform @@ -77923,7 +77688,7 @@ entities: pos: 15.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1112 components: - type: Transform @@ -77931,7 +77696,7 @@ entities: pos: 17.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1113 components: - type: Transform @@ -77939,7 +77704,7 @@ entities: pos: -15.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1119 components: - type: Transform @@ -77947,7 +77712,7 @@ entities: pos: -14.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1120 components: - type: Transform @@ -77955,7 +77720,7 @@ entities: pos: -14.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1123 components: - type: Transform @@ -77963,7 +77728,7 @@ entities: pos: -14.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1124 components: - type: Transform @@ -77971,7 +77736,7 @@ entities: pos: -14.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1125 components: - type: Transform @@ -77979,14 +77744,14 @@ entities: pos: -16.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1126 components: - type: Transform pos: -16.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1127 components: - type: Transform @@ -77994,7 +77759,7 @@ entities: pos: -14.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1129 components: - type: Transform @@ -78002,7 +77767,7 @@ entities: pos: -16.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1130 components: - type: Transform @@ -78010,7 +77775,7 @@ entities: pos: -16.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1131 components: - type: Transform @@ -78018,7 +77783,7 @@ entities: pos: -14.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1132 components: - type: Transform @@ -78026,7 +77791,7 @@ entities: pos: -14.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1134 components: - type: Transform @@ -78034,7 +77799,7 @@ entities: pos: -16.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1135 components: - type: Transform @@ -78042,7 +77807,7 @@ entities: pos: -16.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1137 components: - type: Transform @@ -78050,7 +77815,7 @@ entities: pos: -14.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1138 components: - type: Transform @@ -78058,7 +77823,7 @@ entities: pos: -14.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1139 components: - type: Transform @@ -78066,7 +77831,7 @@ entities: pos: -16.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1140 components: - type: Transform @@ -78074,7 +77839,7 @@ entities: pos: -16.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1141 components: - type: Transform @@ -78082,7 +77847,7 @@ entities: pos: -14.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1142 components: - type: Transform @@ -78090,7 +77855,7 @@ entities: pos: -14.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1143 components: - type: Transform @@ -78098,7 +77863,7 @@ entities: pos: -16.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1144 components: - type: Transform @@ -78106,7 +77871,7 @@ entities: pos: -16.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1145 components: - type: Transform @@ -78114,7 +77879,7 @@ entities: pos: -14.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1146 components: - type: Transform @@ -78122,7 +77887,7 @@ entities: pos: -14.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1147 components: - type: Transform @@ -78130,7 +77895,7 @@ entities: pos: -16.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1149 components: - type: Transform @@ -78138,7 +77903,7 @@ entities: pos: -14.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1151 components: - type: Transform @@ -78146,7 +77911,7 @@ entities: pos: -16.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1152 components: - type: Transform @@ -78154,7 +77919,7 @@ entities: pos: -16.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1153 components: - type: Transform @@ -78162,7 +77927,7 @@ entities: pos: -14.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1154 components: - type: Transform @@ -78170,7 +77935,7 @@ entities: pos: -14.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1155 components: - type: Transform @@ -78178,7 +77943,7 @@ entities: pos: -16.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1156 components: - type: Transform @@ -78186,7 +77951,7 @@ entities: pos: -16.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1157 components: - type: Transform @@ -78194,7 +77959,7 @@ entities: pos: -14.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1158 components: - type: Transform @@ -78202,7 +77967,7 @@ entities: pos: -14.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1159 components: - type: Transform @@ -78210,7 +77975,7 @@ entities: pos: -16.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1160 components: - type: Transform @@ -78218,7 +77983,7 @@ entities: pos: -16.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1161 components: - type: Transform @@ -78226,15 +77991,7 @@ entities: pos: -14.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,0.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1163 components: - type: Transform @@ -78242,7 +77999,7 @@ entities: pos: -16.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1164 components: - type: Transform @@ -78250,7 +78007,7 @@ entities: pos: -16.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1165 components: - type: Transform @@ -78258,7 +78015,7 @@ entities: pos: -14.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1166 components: - type: Transform @@ -78266,15 +78023,7 @@ entities: pos: -14.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,3.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 1169 components: - type: Transform @@ -78282,7 +78031,7 @@ entities: pos: -14.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1171 components: - type: Transform @@ -78290,7 +78039,7 @@ entities: pos: -16.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1172 components: - type: Transform @@ -78298,7 +78047,7 @@ entities: pos: -16.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1173 components: - type: Transform @@ -78306,7 +78055,7 @@ entities: pos: -14.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1176 components: - type: Transform @@ -78314,28 +78063,28 @@ entities: pos: -17.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1214 components: - type: Transform pos: -14.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1215 components: - type: Transform pos: -16.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1216 components: - type: Transform pos: -14.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1218 components: - type: Transform @@ -78343,14 +78092,14 @@ entities: pos: -13.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1219 components: - type: Transform pos: -16.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1220 components: - type: Transform @@ -78358,7 +78107,7 @@ entities: pos: -12.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1221 components: - type: Transform @@ -78366,7 +78115,7 @@ entities: pos: -12.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1222 components: - type: Transform @@ -78374,7 +78123,7 @@ entities: pos: -11.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1223 components: - type: Transform @@ -78382,7 +78131,7 @@ entities: pos: -11.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1224 components: - type: Transform @@ -78390,7 +78139,7 @@ entities: pos: -10.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1227 components: - type: Transform @@ -78398,7 +78147,7 @@ entities: pos: -9.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1228 components: - type: Transform @@ -78406,7 +78155,7 @@ entities: pos: -8.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1231 components: - type: Transform @@ -78414,15 +78163,7 @@ entities: pos: -15.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 1260 components: - type: Transform @@ -78430,7 +78171,7 @@ entities: pos: 9.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1261 components: - type: Transform @@ -78438,7 +78179,7 @@ entities: pos: 10.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1263 components: - type: Transform @@ -78446,7 +78187,7 @@ entities: pos: 11.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1264 components: - type: Transform @@ -78454,7 +78195,7 @@ entities: pos: 11.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1266 components: - type: Transform @@ -78462,7 +78203,7 @@ entities: pos: 12.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1267 components: - type: Transform @@ -78470,7 +78211,7 @@ entities: pos: 13.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1268 components: - type: Transform @@ -78478,7 +78219,7 @@ entities: pos: 14.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1270 components: - type: Transform @@ -78486,7 +78227,7 @@ entities: pos: 14.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1271 components: - type: Transform @@ -78494,7 +78235,7 @@ entities: pos: 15.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1272 components: - type: Transform @@ -78502,7 +78243,7 @@ entities: pos: 16.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1274 components: - type: Transform @@ -78510,7 +78251,7 @@ entities: pos: 17.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1279 components: - type: Transform @@ -78518,14 +78259,14 @@ entities: pos: -48.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1281 components: - type: Transform pos: -16.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1306 components: - type: Transform @@ -78533,7 +78274,7 @@ entities: pos: -17.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1308 components: - type: Transform @@ -78541,7 +78282,7 @@ entities: pos: -1.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1359 components: - type: Transform @@ -78556,112 +78297,112 @@ entities: pos: 3.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1390 components: - type: Transform pos: 3.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1391 components: - type: Transform pos: 3.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1395 components: - type: Transform pos: 4.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1396 components: - type: Transform pos: 4.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1399 components: - type: Transform pos: 7.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1400 components: - type: Transform pos: 7.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1401 components: - type: Transform pos: 7.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1402 components: - type: Transform pos: 7.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1403 components: - type: Transform pos: 7.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1404 components: - type: Transform pos: 7.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1413 components: - type: Transform pos: -0.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1414 components: - type: Transform pos: -0.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1415 components: - type: Transform pos: 1.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1416 components: - type: Transform pos: 1.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1418 components: - type: Transform pos: 1.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1420 components: - type: Transform @@ -78669,7 +78410,7 @@ entities: pos: -0.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1421 components: - type: Transform @@ -78677,7 +78418,7 @@ entities: pos: -0.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1422 components: - type: Transform @@ -78685,7 +78426,7 @@ entities: pos: -0.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1423 components: - type: Transform @@ -78693,7 +78434,7 @@ entities: pos: -0.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1424 components: - type: Transform @@ -78701,7 +78442,7 @@ entities: pos: -0.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1425 components: - type: Transform @@ -78709,7 +78450,7 @@ entities: pos: 1.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1426 components: - type: Transform @@ -78717,7 +78458,7 @@ entities: pos: 1.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1427 components: - type: Transform @@ -78725,7 +78466,7 @@ entities: pos: 1.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1428 components: - type: Transform @@ -78733,7 +78474,7 @@ entities: pos: 1.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1497 components: - type: Transform @@ -78741,14 +78482,14 @@ entities: pos: -20.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1500 components: - type: Transform pos: -36.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1505 components: - type: Transform @@ -78756,7 +78497,7 @@ entities: pos: -21.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1506 components: - type: Transform @@ -78764,7 +78505,7 @@ entities: pos: -16.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1519 components: - type: Transform @@ -78772,7 +78513,7 @@ entities: pos: -22.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1526 components: - type: Transform @@ -78780,7 +78521,7 @@ entities: pos: -21.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1531 components: - type: Transform @@ -78788,7 +78529,7 @@ entities: pos: -24.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1588 components: - type: Transform @@ -78796,21 +78537,14 @@ entities: pos: -18.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1592 components: - type: Transform pos: -28.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1601 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 1602 components: - type: Transform @@ -78818,7 +78552,7 @@ entities: pos: -16.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1605 components: - type: Transform @@ -78826,7 +78560,7 @@ entities: pos: -25.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1606 components: - type: Transform @@ -78834,7 +78568,7 @@ entities: pos: -27.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1607 components: - type: Transform @@ -78842,7 +78576,7 @@ entities: pos: -26.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1609 components: - type: Transform @@ -78850,7 +78584,7 @@ entities: pos: -23.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1612 components: - type: Transform @@ -78858,7 +78592,7 @@ entities: pos: -26.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1613 components: - type: Transform @@ -78866,7 +78600,7 @@ entities: pos: -27.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1614 components: - type: Transform @@ -78874,15 +78608,7 @@ entities: pos: -28.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-10.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 1629 components: - type: Transform @@ -78890,7 +78616,7 @@ entities: pos: -16.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1630 components: - type: Transform @@ -78898,7 +78624,7 @@ entities: pos: -16.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1641 components: - type: Transform @@ -78906,21 +78632,54 @@ entities: pos: 4.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1657 + color: '#0335FCFF' + - uid: 1663 components: - type: Transform - pos: -25.5,-16.5 + rot: -1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-10.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-19.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' + - uid: 1684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-20.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1692 components: - type: Transform pos: -36.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1694 components: - type: Transform @@ -78928,7 +78687,15 @@ entities: pos: -17.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 1702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-18.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 1705 components: - type: Transform @@ -78936,7 +78703,7 @@ entities: pos: -25.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1712 components: - type: Transform @@ -78944,7 +78711,7 @@ entities: pos: -29.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1713 components: - type: Transform @@ -78952,77 +78719,99 @@ entities: pos: -30.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1723 + color: '#0335FCFF' + - uid: 1718 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-9.5 + pos: -35.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1730 + color: '#0335FCFF' + - uid: 1721 components: - type: Transform - pos: -38.5,-0.5 + rot: -1.5707963267948966 rad + pos: -32.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1733 + color: '#FF1212FF' + - uid: 1724 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1725 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1729 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-19.5 + pos: -32.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1747 + color: '#0335FCFF' + - uid: 1730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-22.5 + pos: -38.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1749 + color: '#FF1212FF' + - uid: 1732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-17.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1734 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-19.5 + pos: -23.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1750 + color: '#0335FCFF' + - uid: 1747 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-19.5 + pos: -33.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1751 + color: '#0335FCFF' + - uid: 1748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-19.5 + rot: 3.141592653589793 rad + pos: -32.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 1752 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-19.5 + pos: -31.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 1753 components: - type: Transform pos: -38.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1754 components: - type: Transform @@ -79030,117 +78819,122 @@ entities: pos: -30.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1755 components: - type: Transform pos: -38.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1757 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-19.5 + pos: -20.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1769 + color: '#0335FCFF' + - uid: 1758 components: - type: Transform - pos: -36.5,-1.5 + pos: -22.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1770 + color: '#0335FCFF' + - uid: 1765 components: - type: Transform - pos: -36.5,3.5 + pos: -22.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1772 + color: '#0335FCFF' + - uid: 1766 components: - type: Transform - pos: -36.5,2.5 + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1773 + color: '#FF1212FF' + - uid: 1767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-19.5 + pos: -22.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1774 + color: '#0335FCFF' + - uid: 1769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,9.5 + pos: -36.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1776 + color: '#0335FCFF' + - uid: 1770 + components: + - type: Transform + pos: -36.5,3.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1772 + components: + - type: Transform + pos: -36.5,2.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1774 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-19.5 + pos: -25.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1777 components: - type: Transform pos: -36.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1778 components: - type: Transform pos: -38.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1779 components: - type: Transform pos: -36.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1782 components: - type: Transform pos: -38.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1783 components: - type: Transform pos: -36.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1784 components: - type: Transform pos: -36.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-19.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 1786 components: - type: Transform @@ -79148,552 +78942,390 @@ entities: pos: -18.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1788 components: - type: Transform pos: -38.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-6.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1797 + color: '#FF1212FF' + - uid: 1790 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-20.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1809 - components: - - type: Transform - pos: -31.5,-9.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1825 - components: - - type: Transform - pos: -38.5,-11.5 + pos: -36.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1826 + color: '#FF1212FF' + - uid: 1791 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,9.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1827 - components: - - type: Transform - pos: -38.5,-7.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1828 - components: - - type: Transform - pos: -38.5,-5.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1829 - components: - - type: Transform - pos: -36.5,-17.5 + pos: -24.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1834 + color: '#0335FCFF' + - uid: 1793 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-20.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1837 - components: - - type: Transform - pos: -36.5,-9.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,9.5 + pos: -37.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1840 + color: '#FF1212FF' + - uid: 1794 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-19.5 + pos: -25.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1841 + color: '#0335FCFF' + - uid: 1796 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,9.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1842 - components: - - type: Transform - pos: -38.5,-10.5 + pos: -26.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1844 + color: '#0335FCFF' + - uid: 1797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,9.5 + rot: 3.141592653589793 rad + pos: -20.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1851 + color: '#0335FCFF' + - uid: 1798 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,7.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-13.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1874 - components: - - type: Transform - pos: -38.5,-18.5 + pos: -35.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1875 + color: '#FF1212FF' + - uid: 1799 components: - type: Transform - pos: -38.5,-17.5 + rot: 3.141592653589793 rad + pos: -18.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1876 + color: '#FF1212FF' + - uid: 1800 components: - type: Transform - pos: -38.5,-16.5 + rot: 3.141592653589793 rad + pos: -20.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1877 + color: '#0335FCFF' + - uid: 1804 components: - type: Transform - pos: -38.5,-15.5 + rot: 3.141592653589793 rad + pos: -30.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1878 + color: '#0335FCFF' + - uid: 1805 components: - type: Transform - pos: -38.5,7.5 + pos: -30.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1879 + color: '#0335FCFF' + - uid: 1811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,9.5 + rot: 3.141592653589793 rad + pos: -30.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1880 + color: '#0335FCFF' + - uid: 1812 components: - type: Transform - pos: -36.5,-5.5 + rot: 1.5707963267948966 rad + pos: -34.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1890 + color: '#0335FCFF' + - uid: 1813 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-0.5 + pos: -30.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1894 + color: '#0335FCFF' + - uid: 1816 components: - type: Transform - pos: -24.5,9.5 + rot: 3.141592653589793 rad + pos: -30.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1895 + color: '#0335FCFF' + - uid: 1819 components: - type: Transform - pos: -38.5,-6.5 + rot: -1.5707963267948966 rad + pos: -14.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1896 + color: '#FF1212FF' + - uid: 1823 components: - type: Transform - pos: -36.5,-8.5 + rot: -1.5707963267948966 rad + pos: -29.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1897 + color: '#0335FCFF' + - uid: 1825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,7.5 + pos: -38.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1898 + color: '#FF1212FF' + - uid: 1826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,7.5 + rot: -1.5707963267948966 rad + pos: -30.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1899 + color: '#FF1212FF' + - uid: 1827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,7.5 + pos: -38.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1900 + color: '#FF1212FF' + - uid: 1828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,7.5 + pos: -38.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1901 + color: '#FF1212FF' + - uid: 1829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-15.5 + pos: -36.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1903 + color: '#0335FCFF' + - uid: 1837 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-15.5 + pos: -36.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1906 + color: '#0335FCFF' + - uid: 1838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-14.5 + pos: -22.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1909 + color: '#0335FCFF' + - uid: 1839 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-13.5 + rot: -1.5707963267948966 rad + pos: -24.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1910 + color: '#FF1212FF' + - uid: 1841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-11.5 + rot: -1.5707963267948966 rad + pos: -34.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1913 + color: '#FF1212FF' + - uid: 1842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-9.5 + pos: -38.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1914 + color: '#FF1212FF' + - uid: 1843 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-10.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 + pos: -30.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1916 + color: '#0335FCFF' + - uid: 1844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-12.5 + rot: -1.5707963267948966 rad + pos: -19.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1917 + color: '#FF1212FF' + - uid: 1851 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-9.5 + pos: -21.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1918 + color: '#0335FCFF' + - uid: 1852 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-6.5 + pos: -22.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1920 + color: '#FF1212FF' + - uid: 1871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-6.5 + rot: 3.141592653589793 rad + pos: -27.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1921 + color: '#0335FCFF' + - uid: 1875 components: - type: Transform - pos: -21.5,-6.5 + pos: -38.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1923 + color: '#FF1212FF' + - uid: 1876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-9.5 + pos: -38.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1925 + color: '#FF1212FF' + - uid: 1877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-6.5 + pos: -38.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1929 + color: '#FF1212FF' + - uid: 1878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-12.5 + pos: -38.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1934 + color: '#FF1212FF' + - uid: 1879 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-5.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1935 - components: - - type: Transform - pos: -21.5,-5.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-2.5 + pos: -35.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1943 + color: '#FF1212FF' + - uid: 1880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-7.5 + pos: -36.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1945 + color: '#0335FCFF' + - uid: 1890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-5.5 + rot: 3.141592653589793 rad + pos: -36.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1946 + color: '#0335FCFF' + - uid: 1894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-5.5 + pos: -24.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1958 + color: '#0335FCFF' + - uid: 1895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-3.5 + pos: -38.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1961 + color: '#FF1212FF' + - uid: 1896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,9.5 + pos: -36.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1965 + color: '#0335FCFF' + - uid: 1897 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-7.5 + pos: -32.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1966 + color: '#0335FCFF' + - uid: 1898 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-15.5 + pos: -35.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1968 + color: '#0335FCFF' + - uid: 1899 components: - type: Transform - pos: -22.5,-14.5 + rot: 1.5707963267948966 rad + pos: -31.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1969 + color: '#0335FCFF' + - uid: 1900 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-16.5 + pos: -34.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1970 + color: '#0335FCFF' + - uid: 1961 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-5.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1974 - components: - - type: Transform - pos: -30.5,-14.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-9.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-12.5 + pos: -21.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1981 + color: '#FF1212FF' + - uid: 1973 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-15.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1983 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1985 - components: - - type: Transform - pos: -31.5,-11.5 + pos: -21.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1990 + color: '#0335FCFF' + - uid: 1978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-4.5 + rot: -1.5707963267948966 rad + pos: -31.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 1991 components: - type: Transform @@ -79701,36 +79333,28 @@ entities: pos: -33.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1992 components: - type: Transform pos: -38.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1995 components: - type: Transform pos: -36.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1997 components: - type: Transform pos: -38.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1998 components: - type: Transform @@ -79738,28 +79362,28 @@ entities: pos: -37.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1999 components: - type: Transform pos: -36.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2000 components: - type: Transform pos: -38.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2001 components: - type: Transform pos: -38.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2006 components: - type: Transform @@ -79767,30 +79391,14 @@ entities: pos: -27.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-14.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 2010 components: - type: Transform pos: -24.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-15.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2013 components: - type: Transform @@ -79798,7 +79406,7 @@ entities: pos: -23.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2016 components: - type: Transform @@ -79806,21 +79414,21 @@ entities: pos: -36.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2020 components: - type: Transform pos: -23.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2021 components: - type: Transform pos: -23.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2023 components: - type: Transform @@ -79828,7 +79436,7 @@ entities: pos: -24.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2028 components: - type: Transform @@ -79836,7 +79444,7 @@ entities: pos: -24.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2029 components: - type: Transform @@ -79844,49 +79452,49 @@ entities: pos: -23.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2031 components: - type: Transform pos: -23.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2032 components: - type: Transform pos: -24.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2033 components: - type: Transform pos: -24.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2107 components: - type: Transform pos: -36.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2108 components: - type: Transform pos: -36.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2109 components: - type: Transform pos: -36.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2110 components: - type: Transform @@ -79894,35 +79502,28 @@ entities: pos: -39.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2111 components: - type: Transform pos: -38.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 2112 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 2122 components: - type: Transform pos: -36.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2123 components: - type: Transform pos: -38.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2124 components: - type: Transform @@ -79930,7 +79531,7 @@ entities: pos: -18.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2125 components: - type: Transform @@ -79938,7 +79539,7 @@ entities: pos: -20.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2126 components: - type: Transform @@ -79946,7 +79547,7 @@ entities: pos: -23.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2128 components: - type: Transform @@ -79954,7 +79555,7 @@ entities: pos: -27.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2129 components: - type: Transform @@ -79962,15 +79563,23 @@ entities: pos: -28.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2131 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-10.5 + pos: -33.5,-20.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 2133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2159 components: - type: Transform @@ -79978,7 +79587,15 @@ entities: pos: 43.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 2160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-17.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2161 components: - type: Transform @@ -79986,56 +79603,70 @@ entities: pos: -22.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 2162 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2183 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 2194 components: - type: Transform pos: 15.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2195 components: - type: Transform pos: 15.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2196 components: - type: Transform pos: 15.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2197 components: - type: Transform pos: 15.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2198 components: - type: Transform pos: 15.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2201 components: - type: Transform pos: 16.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2202 components: - type: Transform pos: 16.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2204 components: - type: Transform @@ -80043,7 +79674,7 @@ entities: pos: 34.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2206 components: - type: Transform @@ -80051,7 +79682,7 @@ entities: pos: 33.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2209 components: - type: Transform @@ -80059,7 +79690,7 @@ entities: pos: 34.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2288 components: - type: Transform @@ -80067,21 +79698,21 @@ entities: pos: -4.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2356 components: - type: Transform pos: 32.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2357 components: - type: Transform pos: 32.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2362 components: - type: Transform @@ -80089,7 +79720,7 @@ entities: pos: 23.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2363 components: - type: Transform @@ -80097,7 +79728,7 @@ entities: pos: 23.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2364 components: - type: Transform @@ -80113,7 +79744,7 @@ entities: pos: 22.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2367 components: - type: Transform @@ -80121,7 +79752,7 @@ entities: pos: 23.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2372 components: - type: Transform @@ -80129,7 +79760,7 @@ entities: pos: 23.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2373 components: - type: Transform @@ -80137,7 +79768,7 @@ entities: pos: 25.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2460 components: - type: Transform @@ -80145,7 +79776,7 @@ entities: pos: 16.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2461 components: - type: Transform @@ -80153,7 +79784,7 @@ entities: pos: 17.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2462 components: - type: Transform @@ -80161,7 +79792,7 @@ entities: pos: 18.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2463 components: - type: Transform @@ -80169,7 +79800,7 @@ entities: pos: 19.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2464 components: - type: Transform @@ -80177,7 +79808,7 @@ entities: pos: 20.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2465 components: - type: Transform @@ -80185,7 +79816,7 @@ entities: pos: 18.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2466 components: - type: Transform @@ -80193,7 +79824,7 @@ entities: pos: 19.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2467 components: - type: Transform @@ -80201,7 +79832,7 @@ entities: pos: 20.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2468 components: - type: Transform @@ -80209,7 +79840,7 @@ entities: pos: 21.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2469 components: - type: Transform @@ -80217,7 +79848,7 @@ entities: pos: 22.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2471 components: - type: Transform @@ -80225,7 +79856,7 @@ entities: pos: 24.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2472 components: - type: Transform @@ -80233,7 +79864,7 @@ entities: pos: 25.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2474 components: - type: Transform @@ -80241,7 +79872,7 @@ entities: pos: 22.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2475 components: - type: Transform @@ -80249,7 +79880,7 @@ entities: pos: 23.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2476 components: - type: Transform @@ -80257,7 +79888,7 @@ entities: pos: 24.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2477 components: - type: Transform @@ -80265,7 +79896,7 @@ entities: pos: 25.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2478 components: - type: Transform @@ -80273,7 +79904,7 @@ entities: pos: 26.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2479 components: - type: Transform @@ -80281,7 +79912,7 @@ entities: pos: 27.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2480 components: - type: Transform @@ -80289,7 +79920,7 @@ entities: pos: 28.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2483 components: - type: Transform @@ -80297,7 +79928,7 @@ entities: pos: 31.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2484 components: - type: Transform @@ -80305,7 +79936,7 @@ entities: pos: 32.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2485 components: - type: Transform @@ -80313,7 +79944,7 @@ entities: pos: 33.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2487 components: - type: Transform @@ -80321,7 +79952,7 @@ entities: pos: 35.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2488 components: - type: Transform @@ -80329,7 +79960,7 @@ entities: pos: 36.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2489 components: - type: Transform @@ -80337,7 +79968,7 @@ entities: pos: 37.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2490 components: - type: Transform @@ -80345,7 +79976,7 @@ entities: pos: 38.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2492 components: - type: Transform @@ -80353,7 +79984,7 @@ entities: pos: 26.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2493 components: - type: Transform @@ -80361,7 +79992,7 @@ entities: pos: 27.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2494 components: - type: Transform @@ -80369,7 +80000,7 @@ entities: pos: 28.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2495 components: - type: Transform @@ -80377,7 +80008,7 @@ entities: pos: 29.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2496 components: - type: Transform @@ -80385,7 +80016,7 @@ entities: pos: 30.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2497 components: - type: Transform @@ -80393,7 +80024,7 @@ entities: pos: 31.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2500 components: - type: Transform @@ -80401,7 +80032,7 @@ entities: pos: 34.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2501 components: - type: Transform @@ -80409,7 +80040,7 @@ entities: pos: 35.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2502 components: - type: Transform @@ -80417,7 +80048,7 @@ entities: pos: 36.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2503 components: - type: Transform @@ -80425,7 +80056,7 @@ entities: pos: 37.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2504 components: - type: Transform @@ -80433,7 +80064,7 @@ entities: pos: 38.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2505 components: - type: Transform @@ -80441,7 +80072,7 @@ entities: pos: 39.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2545 components: - type: Transform @@ -80449,7 +80080,7 @@ entities: pos: 32.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2546 components: - type: Transform @@ -80457,7 +80088,7 @@ entities: pos: 30.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2547 components: - type: Transform @@ -80465,7 +80096,7 @@ entities: pos: 32.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2548 components: - type: Transform @@ -80473,7 +80104,7 @@ entities: pos: 30.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2549 components: - type: Transform @@ -80481,7 +80112,7 @@ entities: pos: 32.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2550 components: - type: Transform @@ -80489,7 +80120,7 @@ entities: pos: 30.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2554 components: - type: Transform @@ -80497,23 +80128,7 @@ entities: pos: 32.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-15.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2613 components: - type: Transform @@ -80521,7 +80136,7 @@ entities: pos: 29.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2638 components: - type: Transform @@ -80529,14 +80144,14 @@ entities: pos: 33.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2639 components: - type: Transform pos: 30.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2669 components: - type: Transform @@ -80544,7 +80159,7 @@ entities: pos: 19.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2670 components: - type: Transform @@ -80552,7 +80167,7 @@ entities: pos: 20.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2692 components: - type: Transform @@ -80560,49 +80175,49 @@ entities: pos: 18.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2695 components: - type: Transform pos: 40.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2696 components: - type: Transform pos: 40.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2697 components: - type: Transform pos: 40.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2698 components: - type: Transform pos: 39.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2699 components: - type: Transform pos: 39.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2700 components: - type: Transform pos: 39.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2701 components: - type: Transform @@ -80610,7 +80225,7 @@ entities: pos: 40.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2702 components: - type: Transform @@ -80618,7 +80233,7 @@ entities: pos: 41.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2703 components: - type: Transform @@ -80626,22 +80241,14 @@ entities: pos: 41.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2707 components: - type: Transform pos: 40.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-0.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 2783 components: - type: Transform @@ -80649,7 +80256,7 @@ entities: pos: 19.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2786 components: - type: Transform @@ -80657,7 +80264,7 @@ entities: pos: 29.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2787 components: - type: Transform @@ -80665,28 +80272,14 @@ entities: pos: 19.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2788 components: - type: Transform pos: 17.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2792 - components: - - type: Transform - pos: -25.5,-2.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2793 - components: - - type: Transform - pos: -21.5,-3.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2794 components: - type: Transform @@ -80694,7 +80287,7 @@ entities: pos: 25.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2796 components: - type: Transform @@ -80702,7 +80295,7 @@ entities: pos: 24.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2797 components: - type: Transform @@ -80710,7 +80303,7 @@ entities: pos: 26.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2798 components: - type: Transform @@ -80718,7 +80311,7 @@ entities: pos: 31.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2800 components: - type: Transform @@ -80726,7 +80319,7 @@ entities: pos: 28.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2801 components: - type: Transform @@ -80734,7 +80327,7 @@ entities: pos: 27.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2803 components: - type: Transform @@ -80742,7 +80335,7 @@ entities: pos: 25.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2804 components: - type: Transform @@ -80750,7 +80343,7 @@ entities: pos: 33.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2805 components: - type: Transform @@ -80758,28 +80351,14 @@ entities: pos: 19.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 2806 - components: - - type: Transform - pos: -25.5,-1.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 2807 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 2808 components: - type: Transform - pos: -27.5,-0.5 + pos: -22.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2810 components: - type: Transform @@ -80787,7 +80366,7 @@ entities: pos: 21.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2811 components: - type: Transform @@ -80795,7 +80374,7 @@ entities: pos: 20.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2814 components: - type: Transform @@ -80803,7 +80382,7 @@ entities: pos: 21.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2815 components: - type: Transform @@ -80811,7 +80390,7 @@ entities: pos: 26.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2816 components: - type: Transform @@ -80819,14 +80398,14 @@ entities: pos: 19.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2820 components: - type: Transform pos: 17.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2842 components: - type: Transform @@ -80834,7 +80413,7 @@ entities: pos: 28.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2843 components: - type: Transform @@ -80842,14 +80421,14 @@ entities: pos: 30.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2844 components: - type: Transform pos: 17.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2849 components: - type: Transform @@ -80857,15 +80436,14 @@ entities: pos: 16.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-3.5 + pos: -22.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 2862 components: - type: Transform @@ -80873,7 +80451,7 @@ entities: pos: 42.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2863 components: - type: Transform @@ -80881,7 +80459,7 @@ entities: pos: 43.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2864 components: - type: Transform @@ -80889,7 +80467,7 @@ entities: pos: 44.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2867 components: - type: Transform @@ -80897,7 +80475,7 @@ entities: pos: 42.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2868 components: - type: Transform @@ -80905,14 +80483,14 @@ entities: pos: 43.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2885 components: - type: Transform pos: 45.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2899 components: - type: Transform @@ -80920,22 +80498,22 @@ entities: pos: 32.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2901 components: - type: Transform pos: 44.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-5.5 + rot: 1.5707963267948966 rad + pos: -23.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2980 components: - type: Transform @@ -80959,7 +80537,7 @@ entities: pos: 46.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2987 components: - type: Transform @@ -80967,7 +80545,7 @@ entities: pos: 45.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2988 components: - type: Transform @@ -80975,14 +80553,14 @@ entities: pos: 45.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2990 components: - type: Transform pos: 45.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2991 components: - type: Transform @@ -80990,7 +80568,7 @@ entities: pos: 45.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2992 components: - type: Transform @@ -80998,7 +80576,7 @@ entities: pos: 45.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2993 components: - type: Transform @@ -81006,7 +80584,7 @@ entities: pos: 45.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2994 components: - type: Transform @@ -81014,7 +80592,7 @@ entities: pos: 45.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2995 components: - type: Transform @@ -81022,7 +80600,7 @@ entities: pos: 45.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2997 components: - type: Transform @@ -81054,7 +80632,7 @@ entities: pos: 22.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3011 components: - type: Transform @@ -81095,46 +80673,54 @@ entities: parent: 60 - type: AtmosPipeColor color: '#D3FC03FF' - - uid: 3113 + - uid: 3070 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-20.5 + pos: -21.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 3148 + color: '#0335FCFF' + - uid: 3072 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-20.5 + pos: -20.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 3149 + color: '#0335FCFF' + - uid: 3113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,0.5 + rot: -1.5707963267948966 rad + pos: 46.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3186 + color: '#FF1212FF' + - uid: 3148 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-3.5 + pos: 45.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 3187 + color: '#FF1212FF' + - uid: 3168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-3.5 + rot: 1.5707963267948966 rad + pos: -28.5,-3.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 3190 components: - type: Transform @@ -81142,7 +80728,7 @@ entities: pos: 43.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3191 components: - type: Transform @@ -81150,30 +80736,22 @@ entities: pos: 44.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3193 components: - type: Transform pos: 45.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-2.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3204 + color: '#0335FCFF' + - uid: 3197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-2.5 + rot: 1.5707963267948966 rad + pos: -40.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3216 components: - type: Transform @@ -81181,15 +80759,7 @@ entities: pos: 45.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 3217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 3219 components: - type: Transform @@ -81197,140 +80767,140 @@ entities: pos: 42.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3561 components: - type: Transform pos: 45.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3562 components: - type: Transform pos: 45.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3563 components: - type: Transform pos: 45.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3564 components: - type: Transform pos: 45.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3565 components: - type: Transform pos: 45.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3566 components: - type: Transform pos: 45.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3568 components: - type: Transform pos: 44.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3569 components: - type: Transform pos: 44.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3570 components: - type: Transform pos: 44.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3571 components: - type: Transform pos: 44.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3572 components: - type: Transform pos: 44.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3574 components: - type: Transform pos: 44.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3575 components: - type: Transform pos: 44.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3576 components: - type: Transform pos: 44.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3577 components: - type: Transform pos: 44.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3578 components: - type: Transform pos: 44.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3579 components: - type: Transform pos: 44.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3580 components: - type: Transform pos: 44.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3581 components: - type: Transform pos: 44.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3618 components: - type: Transform @@ -81338,7 +80908,7 @@ entities: pos: -6.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3619 components: - type: Transform @@ -81346,7 +80916,7 @@ entities: pos: -3.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3620 components: - type: Transform @@ -81354,7 +80924,7 @@ entities: pos: -4.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3711 components: - type: Transform @@ -81362,105 +80932,105 @@ entities: pos: 44.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3914 components: - type: Transform pos: 1.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3916 components: - type: Transform pos: 1.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3917 components: - type: Transform pos: 1.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3919 components: - type: Transform pos: 1.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3921 components: - type: Transform pos: 1.5,-43.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3922 components: - type: Transform pos: 1.5,-44.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3923 components: - type: Transform pos: 1.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3925 components: - type: Transform pos: -0.5,-44.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3926 components: - type: Transform pos: -0.5,-43.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3927 components: - type: Transform pos: -0.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3928 components: - type: Transform pos: -0.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3931 components: - type: Transform pos: -0.5,-38.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3932 components: - type: Transform pos: -0.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3933 components: - type: Transform pos: -0.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3934 components: - type: Transform @@ -81468,7 +81038,7 @@ entities: pos: 0.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3935 components: - type: Transform @@ -81476,7 +81046,7 @@ entities: pos: -0.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3936 components: - type: Transform @@ -81484,7 +81054,7 @@ entities: pos: -1.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3937 components: - type: Transform @@ -81492,7 +81062,7 @@ entities: pos: -2.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3938 components: - type: Transform @@ -81500,7 +81070,7 @@ entities: pos: -3.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3939 components: - type: Transform @@ -81508,7 +81078,7 @@ entities: pos: -2.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3940 components: - type: Transform @@ -81516,7 +81086,7 @@ entities: pos: -3.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3941 components: - type: Transform @@ -81524,7 +81094,7 @@ entities: pos: -1.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3942 components: - type: Transform @@ -81532,7 +81102,7 @@ entities: pos: -4.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3943 components: - type: Transform @@ -81540,7 +81110,7 @@ entities: pos: -4.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3944 components: - type: Transform @@ -81548,7 +81118,7 @@ entities: pos: -5.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3945 components: - type: Transform @@ -81556,7 +81126,7 @@ entities: pos: -5.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3946 components: - type: Transform @@ -81564,7 +81134,7 @@ entities: pos: -6.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3947 components: - type: Transform @@ -81572,7 +81142,7 @@ entities: pos: -6.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3948 components: - type: Transform @@ -81580,7 +81150,7 @@ entities: pos: -7.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3951 components: - type: Transform @@ -81588,7 +81158,7 @@ entities: pos: -8.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3952 components: - type: Transform @@ -81596,7 +81166,7 @@ entities: pos: -9.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3953 components: - type: Transform @@ -81604,7 +81174,7 @@ entities: pos: -9.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3954 components: - type: Transform @@ -81612,7 +81182,7 @@ entities: pos: -10.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3955 components: - type: Transform @@ -81620,7 +81190,7 @@ entities: pos: -10.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3956 components: - type: Transform @@ -81628,7 +81198,7 @@ entities: pos: -11.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3957 components: - type: Transform @@ -81636,7 +81206,7 @@ entities: pos: -11.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3958 components: - type: Transform @@ -81644,7 +81214,7 @@ entities: pos: -12.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3959 components: - type: Transform @@ -81652,28 +81222,28 @@ entities: pos: -12.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3983 components: - type: Transform pos: -0.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3997 components: - type: Transform pos: -42.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4001 components: - type: Transform pos: 48.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4006 components: - type: Transform @@ -81681,7 +81251,7 @@ entities: pos: 14.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4008 components: - type: Transform @@ -81689,15 +81259,15 @@ entities: pos: -5.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4018 + color: '#0335FCFF' + - uid: 4014 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-14.5 + pos: -43.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 4023 components: - type: Transform @@ -81705,7 +81275,7 @@ entities: pos: -34.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4024 components: - type: Transform @@ -81713,7 +81283,7 @@ entities: pos: -35.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4025 components: - type: Transform @@ -81721,7 +81291,7 @@ entities: pos: -31.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4026 components: - type: Transform @@ -81729,7 +81299,7 @@ entities: pos: -32.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4027 components: - type: Transform @@ -81737,7 +81307,7 @@ entities: pos: -33.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4028 components: - type: Transform @@ -81745,7 +81315,7 @@ entities: pos: -34.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4029 components: - type: Transform @@ -81753,7 +81323,7 @@ entities: pos: -35.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4030 components: - type: Transform @@ -81761,7 +81331,7 @@ entities: pos: -36.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4032 components: - type: Transform @@ -81769,7 +81339,15 @@ entities: pos: -37.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 4077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-21.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 4107 components: - type: Transform @@ -81777,14 +81355,14 @@ entities: pos: 35.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4112 components: - type: Transform pos: 33.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4122 components: - type: Transform @@ -81792,7 +81370,7 @@ entities: pos: 30.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4126 components: - type: Transform @@ -81800,7 +81378,7 @@ entities: pos: 31.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4130 components: - type: Transform @@ -81808,7 +81386,7 @@ entities: pos: 34.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4132 components: - type: Transform @@ -81816,7 +81394,7 @@ entities: pos: 34.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4134 components: - type: Transform @@ -81824,7 +81402,7 @@ entities: pos: 34.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4137 components: - type: Transform @@ -81838,14 +81416,14 @@ entities: pos: 34.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4151 components: - type: Transform pos: 33.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4155 components: - type: Transform @@ -81853,7 +81431,7 @@ entities: pos: 43.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4183 components: - type: Transform @@ -81861,7 +81439,7 @@ entities: pos: 33.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4184 components: - type: Transform @@ -81869,7 +81447,7 @@ entities: pos: 31.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4185 components: - type: Transform @@ -81877,7 +81455,7 @@ entities: pos: 30.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4186 components: - type: Transform @@ -81885,22 +81463,39 @@ entities: pos: 33.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4325 + color: '#FF1212FF' + - uid: 4206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-16.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-16.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4208 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-20.5 + pos: -41.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4333 + color: '#0335FCFF' + - uid: 4325 components: - type: Transform - pos: -31.5,-8.5 + rot: 1.5707963267948966 rad + pos: 36.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 4335 components: - type: Transform @@ -81908,7 +81503,7 @@ entities: pos: 34.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4356 components: - type: Transform @@ -81916,15 +81511,7 @@ entities: pos: 35.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-20.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 4484 components: - type: Transform @@ -81932,7 +81519,7 @@ entities: pos: 40.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4485 components: - type: Transform @@ -81940,14 +81527,14 @@ entities: pos: 37.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4486 components: - type: Transform pos: 44.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4488 components: - type: Transform @@ -81955,7 +81542,7 @@ entities: pos: 46.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4489 components: - type: Transform @@ -81963,7 +81550,7 @@ entities: pos: 47.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4490 components: - type: Transform @@ -81971,7 +81558,7 @@ entities: pos: 36.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4497 components: - type: Transform @@ -81979,7 +81566,7 @@ entities: pos: 48.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4507 components: - type: Transform @@ -81987,37 +81574,21 @@ entities: pos: 46.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-5.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 4550 components: - type: Transform pos: -36.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-7.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4629 components: - type: Transform pos: -0.5,-60.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4645 components: - type: Transform @@ -82025,42 +81596,42 @@ entities: pos: 40.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4648 components: - type: Transform pos: -0.5,-59.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4649 components: - type: Transform pos: -0.5,-58.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4650 components: - type: Transform pos: -0.5,-57.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4657 components: - type: Transform pos: 1.5,-56.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4658 components: - type: Transform pos: 1.5,-57.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4666 components: - type: Transform @@ -82068,21 +81639,21 @@ entities: pos: 38.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4725 components: - type: Transform pos: 1.5,-54.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4726 components: - type: Transform pos: 1.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4836 components: - type: Transform @@ -82090,7 +81661,7 @@ entities: pos: 1.5,-47.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4837 components: - type: Transform @@ -82098,7 +81669,7 @@ entities: pos: -0.5,-48.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4838 components: - type: Transform @@ -82106,7 +81677,7 @@ entities: pos: -0.5,-49.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4839 components: - type: Transform @@ -82114,7 +81685,7 @@ entities: pos: 1.5,-49.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4840 components: - type: Transform @@ -82122,7 +81693,7 @@ entities: pos: 1.5,-50.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4841 components: - type: Transform @@ -82130,7 +81701,7 @@ entities: pos: -0.5,-50.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4842 components: - type: Transform @@ -82138,7 +81709,7 @@ entities: pos: -0.5,-51.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4843 components: - type: Transform @@ -82146,7 +81717,7 @@ entities: pos: 1.5,-51.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4844 components: - type: Transform @@ -82154,7 +81725,7 @@ entities: pos: -0.5,-52.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4845 components: - type: Transform @@ -82162,14 +81733,14 @@ entities: pos: 1.5,-52.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4908 components: - type: Transform pos: 1.5,-60.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4909 components: - type: Transform @@ -82177,7 +81748,7 @@ entities: pos: -2.5,-65.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4916 components: - type: Transform @@ -82185,7 +81756,7 @@ entities: pos: 2.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4917 components: - type: Transform @@ -82193,7 +81764,7 @@ entities: pos: 3.5,-64.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4918 components: - type: Transform @@ -82201,7 +81772,7 @@ entities: pos: 2.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4919 components: - type: Transform @@ -82209,7 +81780,7 @@ entities: pos: 3.5,-69.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4920 components: - type: Transform @@ -82217,7 +81788,7 @@ entities: pos: 3.5,-68.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4921 components: - type: Transform @@ -82225,7 +81796,7 @@ entities: pos: -2.5,-67.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4927 components: - type: Transform @@ -82233,14 +81804,14 @@ entities: pos: -3.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4928 components: - type: Transform pos: -0.5,-62.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4930 components: - type: Transform @@ -82248,7 +81819,7 @@ entities: pos: -4.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4931 components: - type: Transform @@ -82256,7 +81827,7 @@ entities: pos: 1.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4932 components: - type: Transform @@ -82264,7 +81835,7 @@ entities: pos: -5.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4933 components: - type: Transform @@ -82272,14 +81843,14 @@ entities: pos: -2.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4934 components: - type: Transform pos: 1.5,-62.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4967 components: - type: Transform @@ -82287,7 +81858,7 @@ entities: pos: -6.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4968 components: - type: Transform @@ -82295,7 +81866,7 @@ entities: pos: -7.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4969 components: - type: Transform @@ -82303,7 +81874,7 @@ entities: pos: -7.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4970 components: - type: Transform @@ -82311,7 +81882,7 @@ entities: pos: -8.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4972 components: - type: Transform @@ -82319,7 +81890,7 @@ entities: pos: -2.5,-68.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4974 components: - type: Transform @@ -82327,7 +81898,7 @@ entities: pos: 2.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4975 components: - type: Transform @@ -82335,14 +81906,14 @@ entities: pos: -8.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4981 components: - type: Transform pos: 1.5,-58.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4982 components: - type: Transform @@ -82350,7 +81921,7 @@ entities: pos: -2.5,-66.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4983 components: - type: Transform @@ -82358,7 +81929,7 @@ entities: pos: -2.5,-69.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4984 components: - type: Transform @@ -82366,14 +81937,14 @@ entities: pos: -1.5,-70.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4986 components: - type: Transform pos: 1.5,-59.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4988 components: - type: Transform @@ -82381,7 +81952,7 @@ entities: pos: -1.5,-63.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4989 components: - type: Transform @@ -82389,14 +81960,14 @@ entities: pos: -2.5,-64.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4991 components: - type: Transform pos: 1.5,-71.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4994 components: - type: Transform @@ -82404,7 +81975,7 @@ entities: pos: 3.5,-67.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4995 components: - type: Transform @@ -82412,14 +81983,14 @@ entities: pos: 3.5,-66.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4998 components: - type: Transform pos: -0.5,-71.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5000 components: - type: Transform @@ -82427,7 +81998,7 @@ entities: pos: 2.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5012 components: - type: Transform @@ -82435,15 +82006,7 @@ entities: pos: 3.5,-65.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5020 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-7.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5055 components: - type: Transform @@ -82451,7 +82014,7 @@ entities: pos: 37.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5098 components: - type: Transform @@ -82459,21 +82022,21 @@ entities: pos: 6.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5115 components: - type: Transform pos: 1.5,-73.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5117 components: - type: Transform pos: 1.5,-74.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5118 components: - type: Transform @@ -82481,7 +82044,7 @@ entities: pos: 4.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5142 components: - type: Transform @@ -82489,7 +82052,7 @@ entities: pos: 3.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5147 components: - type: Transform @@ -82497,7 +82060,7 @@ entities: pos: -9.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5148 components: - type: Transform @@ -82505,14 +82068,22 @@ entities: pos: 4.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5215 components: - type: Transform pos: -0.5,-73.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 5246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 5299 components: - type: Transform @@ -82520,51 +82091,59 @@ entities: pos: -36.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5392 components: - type: Transform pos: 13.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5393 components: - type: Transform pos: 13.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5394 components: - type: Transform pos: 13.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5396 components: - type: Transform pos: 9.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5424 + color: '#0335FCFF' + - uid: 5425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-12.5 + rot: 3.141592653589793 rad + pos: -20.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 5426 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-13.5 + pos: -14.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' + - uid: 5427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,7.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 5441 components: - type: Transform @@ -82572,7 +82151,7 @@ entities: pos: 41.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5443 components: - type: Transform @@ -82580,7 +82159,7 @@ entities: pos: 42.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5444 components: - type: Transform @@ -82588,7 +82167,7 @@ entities: pos: 38.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5447 components: - type: Transform @@ -82596,7 +82175,7 @@ entities: pos: 31.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5448 components: - type: Transform @@ -82604,7 +82183,7 @@ entities: pos: 32.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5449 components: - type: Transform @@ -82612,14 +82191,14 @@ entities: pos: 31.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5450 components: - type: Transform pos: 44.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5451 components: - type: Transform @@ -82627,7 +82206,7 @@ entities: pos: 30.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5452 components: - type: Transform @@ -82635,15 +82214,7 @@ entities: pos: 30.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-21.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5463 components: - type: Transform @@ -82651,7 +82222,7 @@ entities: pos: 38.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5464 components: - type: Transform @@ -82659,7 +82230,7 @@ entities: pos: 44.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5465 components: - type: Transform @@ -82667,7 +82238,7 @@ entities: pos: -22.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5467 components: - type: Transform @@ -82675,7 +82246,7 @@ entities: pos: 44.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5468 components: - type: Transform @@ -82683,21 +82254,21 @@ entities: pos: 41.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5469 components: - type: Transform pos: -38.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5470 components: - type: Transform pos: -38.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5471 components: - type: Transform @@ -82705,7 +82276,7 @@ entities: pos: -17.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5475 components: - type: Transform @@ -82713,7 +82284,7 @@ entities: pos: -16.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5487 components: - type: Transform @@ -82721,7 +82292,7 @@ entities: pos: 42.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5511 components: - type: Transform @@ -82729,7 +82300,7 @@ entities: pos: -13.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5517 components: - type: Transform @@ -82737,7 +82308,7 @@ entities: pos: 43.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5549 components: - type: Transform @@ -82753,7 +82324,7 @@ entities: pos: 45.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5558 components: - type: Transform @@ -82761,7 +82332,22 @@ entities: pos: 44.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 5563 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 5569 components: - type: Transform @@ -82769,7 +82355,7 @@ entities: pos: -44.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5570 components: - type: Transform @@ -82777,7 +82363,7 @@ entities: pos: -42.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5571 components: - type: Transform @@ -82785,7 +82371,7 @@ entities: pos: -42.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5572 components: - type: Transform @@ -82793,7 +82379,7 @@ entities: pos: -44.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5573 components: - type: Transform @@ -82801,7 +82387,7 @@ entities: pos: -44.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5574 components: - type: Transform @@ -82809,7 +82395,7 @@ entities: pos: -44.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5575 components: - type: Transform @@ -82817,7 +82403,7 @@ entities: pos: -42.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5576 components: - type: Transform @@ -82847,7 +82433,7 @@ entities: pos: 41.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5596 components: - type: Transform @@ -82855,7 +82441,7 @@ entities: pos: 45.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5648 components: - type: Transform @@ -82872,6 +82458,21 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 5661 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 5682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-5.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 5685 components: - type: Transform @@ -82879,7 +82480,15 @@ entities: pos: 33.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 5689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-3.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5694 components: - type: Transform @@ -82887,7 +82496,7 @@ entities: pos: 8.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5697 components: - type: Transform @@ -82895,7 +82504,7 @@ entities: pos: 6.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5698 components: - type: Transform @@ -82903,7 +82512,7 @@ entities: pos: 7.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5704 components: - type: Transform @@ -82911,7 +82520,7 @@ entities: pos: -7.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5705 components: - type: Transform @@ -82919,7 +82528,7 @@ entities: pos: -6.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5707 components: - type: Transform @@ -82927,7 +82536,7 @@ entities: pos: -6.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5708 components: - type: Transform @@ -82935,7 +82544,7 @@ entities: pos: -5.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5713 components: - type: Transform @@ -82943,7 +82552,7 @@ entities: pos: -3.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5714 components: - type: Transform @@ -82951,7 +82560,7 @@ entities: pos: -2.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5715 components: - type: Transform @@ -82959,7 +82568,7 @@ entities: pos: -1.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5716 components: - type: Transform @@ -82967,7 +82576,7 @@ entities: pos: 1.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5717 components: - type: Transform @@ -82975,7 +82584,7 @@ entities: pos: 3.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5718 components: - type: Transform @@ -82983,7 +82592,7 @@ entities: pos: 4.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5719 components: - type: Transform @@ -82991,7 +82600,7 @@ entities: pos: 2.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5720 components: - type: Transform @@ -82999,7 +82608,7 @@ entities: pos: -0.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5721 components: - type: Transform @@ -83007,7 +82616,7 @@ entities: pos: -4.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5722 components: - type: Transform @@ -83015,7 +82624,7 @@ entities: pos: -3.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5723 components: - type: Transform @@ -83023,7 +82632,7 @@ entities: pos: -2.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5724 components: - type: Transform @@ -83031,7 +82640,7 @@ entities: pos: -1.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5726 components: - type: Transform @@ -83039,7 +82648,7 @@ entities: pos: 5.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5727 components: - type: Transform @@ -83047,7 +82656,7 @@ entities: pos: 4.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5728 components: - type: Transform @@ -83055,7 +82664,7 @@ entities: pos: 3.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5729 components: - type: Transform @@ -83063,7 +82672,7 @@ entities: pos: 2.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5731 components: - type: Transform @@ -83071,7 +82680,7 @@ entities: pos: 0.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5732 components: - type: Transform @@ -83079,28 +82688,59 @@ entities: pos: 0.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5734 components: - type: Transform pos: -0.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5735 components: - type: Transform pos: 1.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5737 components: - type: Transform pos: 1.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 5743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-3.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-19.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5754 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5762 components: - type: Transform @@ -83108,7 +82748,7 @@ entities: pos: 15.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5763 components: - type: Transform @@ -83116,7 +82756,7 @@ entities: pos: 15.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5764 components: - type: Transform @@ -83124,7 +82764,7 @@ entities: pos: 17.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5818 components: - type: Transform @@ -83132,14 +82772,7 @@ entities: pos: 17.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5825 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5832 components: - type: Transform @@ -83147,21 +82780,28 @@ entities: pos: 34.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5834 components: - type: Transform pos: -38.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 5842 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5846 components: - type: Transform pos: 1.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5852 components: - type: Transform @@ -83169,7 +82809,7 @@ entities: pos: 43.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5875 components: - type: Transform @@ -83182,49 +82822,42 @@ entities: pos: 15.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5893 components: - type: Transform pos: -28.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5894 components: - type: Transform pos: -29.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5895 components: - type: Transform pos: -29.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5896 components: - type: Transform pos: -28.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5904 components: - type: Transform pos: 48.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5910 - components: - - type: Transform - pos: -23.5,-13.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5913 components: - type: Transform @@ -83232,7 +82865,7 @@ entities: pos: 46.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5916 components: - type: Transform @@ -83240,7 +82873,7 @@ entities: pos: 6.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5920 components: - type: Transform @@ -83248,63 +82881,71 @@ entities: pos: 19.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5931 components: - type: Transform pos: -38.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5939 components: - type: Transform pos: -36.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5941 components: - type: Transform pos: -52.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5944 components: - type: Transform pos: -52.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5945 components: - type: Transform pos: -36.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5946 components: - type: Transform pos: -49.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 5947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5948 components: - type: Transform pos: -52.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5949 components: - type: Transform pos: -36.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5957 components: - type: Transform @@ -83312,7 +82953,7 @@ entities: pos: -40.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5958 components: - type: Transform @@ -83320,7 +82961,7 @@ entities: pos: -50.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5959 components: - type: Transform @@ -83328,7 +82969,15 @@ entities: pos: -43.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 5961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-15.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5965 components: - type: Transform @@ -83336,7 +82985,7 @@ entities: pos: -38.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5966 components: - type: Transform @@ -83344,14 +82993,14 @@ entities: pos: -43.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5968 components: - type: Transform pos: 48.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5969 components: - type: Transform @@ -83359,7 +83008,7 @@ entities: pos: -42.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5970 components: - type: Transform @@ -83367,7 +83016,7 @@ entities: pos: -49.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5973 components: - type: Transform @@ -83375,7 +83024,15 @@ entities: pos: -38.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 5974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5975 components: - type: Transform @@ -83383,14 +83040,14 @@ entities: pos: -55.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5976 components: - type: Transform pos: -36.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5977 components: - type: Transform @@ -83398,7 +83055,7 @@ entities: pos: -53.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5978 components: - type: Transform @@ -83406,7 +83063,7 @@ entities: pos: -52.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5979 components: - type: Transform @@ -83414,7 +83071,7 @@ entities: pos: -48.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5981 components: - type: Transform @@ -83422,35 +83079,35 @@ entities: pos: -45.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5982 components: - type: Transform pos: -42.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5984 components: - type: Transform pos: -47.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5985 components: - type: Transform pos: -47.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5986 components: - type: Transform pos: -49.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5989 components: - type: Transform @@ -83458,7 +83115,7 @@ entities: pos: -37.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5992 components: - type: Transform @@ -83466,14 +83123,14 @@ entities: pos: -46.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5993 components: - type: Transform pos: -55.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5994 components: - type: Transform @@ -83481,7 +83138,7 @@ entities: pos: -39.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5995 components: - type: Transform @@ -83489,7 +83146,7 @@ entities: pos: -40.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5996 components: - type: Transform @@ -83497,7 +83154,7 @@ entities: pos: -41.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5997 components: - type: Transform @@ -83505,7 +83162,7 @@ entities: pos: -45.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5998 components: - type: Transform @@ -83513,7 +83170,7 @@ entities: pos: -39.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5999 components: - type: Transform @@ -83521,7 +83178,7 @@ entities: pos: -46.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6000 components: - type: Transform @@ -83529,7 +83186,7 @@ entities: pos: -37.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6001 components: - type: Transform @@ -83537,7 +83194,7 @@ entities: pos: -55.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6003 components: - type: Transform @@ -83545,7 +83202,7 @@ entities: pos: -40.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6004 components: - type: Transform @@ -83553,7 +83210,7 @@ entities: pos: -44.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6006 components: - type: Transform @@ -83561,7 +83218,7 @@ entities: pos: -54.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6007 components: - type: Transform @@ -83569,7 +83226,7 @@ entities: pos: -51.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6009 components: - type: Transform @@ -83577,7 +83234,7 @@ entities: pos: 10.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6010 components: - type: Transform @@ -83585,7 +83242,7 @@ entities: pos: -55.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6011 components: - type: Transform @@ -83593,14 +83250,14 @@ entities: pos: -35.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6016 components: - type: Transform pos: -38.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6017 components: - type: Transform @@ -83608,7 +83265,7 @@ entities: pos: -51.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6019 components: - type: Transform @@ -83616,7 +83273,7 @@ entities: pos: -53.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6021 components: - type: Transform @@ -83624,7 +83281,7 @@ entities: pos: -46.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6022 components: - type: Transform @@ -83632,7 +83289,7 @@ entities: pos: -47.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6023 components: - type: Transform @@ -83640,7 +83297,7 @@ entities: pos: -45.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6025 components: - type: Transform @@ -83648,7 +83305,7 @@ entities: pos: -44.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6027 components: - type: Transform @@ -83656,14 +83313,14 @@ entities: pos: -47.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6029 components: - type: Transform pos: -47.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6030 components: - type: Transform @@ -83671,7 +83328,7 @@ entities: pos: -48.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6031 components: - type: Transform @@ -83679,7 +83336,7 @@ entities: pos: -50.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6033 components: - type: Transform @@ -83687,7 +83344,15 @@ entities: pos: -40.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 6034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-10.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6035 components: - type: Transform @@ -83695,7 +83360,15 @@ entities: pos: -39.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 6039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-15.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6040 components: - type: Transform @@ -83703,7 +83376,15 @@ entities: pos: -44.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 6044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-13.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6045 components: - type: Transform @@ -83711,14 +83392,14 @@ entities: pos: -55.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6048 components: - type: Transform pos: -47.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6057 components: - type: Transform @@ -83726,7 +83407,7 @@ entities: pos: -45.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6059 components: - type: Transform @@ -83734,14 +83415,14 @@ entities: pos: -46.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6060 components: - type: Transform pos: -47.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6063 components: - type: Transform @@ -83749,7 +83430,7 @@ entities: pos: -45.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6064 components: - type: Transform @@ -83757,7 +83438,7 @@ entities: pos: -42.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6095 components: - type: Transform @@ -83765,7 +83446,7 @@ entities: pos: -43.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6096 components: - type: Transform @@ -83773,7 +83454,7 @@ entities: pos: -55.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6106 components: - type: Transform @@ -83781,7 +83462,7 @@ entities: pos: -44.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6107 components: - type: Transform @@ -83789,7 +83470,7 @@ entities: pos: -44.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6108 components: - type: Transform @@ -83797,14 +83478,14 @@ entities: pos: -44.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6110 components: - type: Transform pos: -49.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6111 components: - type: Transform @@ -83812,14 +83493,14 @@ entities: pos: -47.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6113 components: - type: Transform pos: -49.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6114 components: - type: Transform @@ -83827,7 +83508,7 @@ entities: pos: -46.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6115 components: - type: Transform @@ -83835,7 +83516,7 @@ entities: pos: -44.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6116 components: - type: Transform @@ -83843,7 +83524,7 @@ entities: pos: -44.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6122 components: - type: Transform @@ -83851,7 +83532,7 @@ entities: pos: -48.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6124 components: - type: Transform @@ -83859,7 +83540,7 @@ entities: pos: 11.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6134 components: - type: Transform @@ -83867,7 +83548,7 @@ entities: pos: -48.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6178 components: - type: Transform @@ -83875,7 +83556,7 @@ entities: pos: -19.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6180 components: - type: Transform @@ -83883,7 +83564,7 @@ entities: pos: -23.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6197 components: - type: Transform @@ -83891,7 +83572,7 @@ entities: pos: 7.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6198 components: - type: Transform @@ -83899,7 +83580,7 @@ entities: pos: 3.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6199 components: - type: Transform @@ -83907,28 +83588,36 @@ entities: pos: 5.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 6208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-5.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6212 components: - type: Transform pos: -0.5,-54.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6217 components: - type: Transform pos: -0.5,-56.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6218 components: - type: Transform pos: -0.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6267 components: - type: Transform @@ -83936,7 +83625,7 @@ entities: pos: -55.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6269 components: - type: Transform @@ -83944,7 +83633,7 @@ entities: pos: -38.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6279 components: - type: Transform @@ -83952,7 +83641,7 @@ entities: pos: 12.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6281 components: - type: Transform @@ -83960,7 +83649,7 @@ entities: pos: 17.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6283 components: - type: Transform @@ -83968,14 +83657,14 @@ entities: pos: 17.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6284 components: - type: Transform pos: 15.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6285 components: - type: Transform @@ -83983,7 +83672,7 @@ entities: pos: 15.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6287 components: - type: Transform @@ -83991,7 +83680,7 @@ entities: pos: 15.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6289 components: - type: Transform @@ -83999,7 +83688,7 @@ entities: pos: 16.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6291 components: - type: Transform @@ -84007,7 +83696,7 @@ entities: pos: 14.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6292 components: - type: Transform @@ -84015,7 +83704,7 @@ entities: pos: 13.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6293 components: - type: Transform @@ -84023,7 +83712,7 @@ entities: pos: 12.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6294 components: - type: Transform @@ -84031,7 +83720,7 @@ entities: pos: 16.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6295 components: - type: Transform @@ -84039,7 +83728,7 @@ entities: pos: 15.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6296 components: - type: Transform @@ -84047,7 +83736,7 @@ entities: pos: 14.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6297 components: - type: Transform @@ -84055,7 +83744,7 @@ entities: pos: 13.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6298 components: - type: Transform @@ -84063,14 +83752,7 @@ entities: pos: 15.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6309 - components: - - type: Transform - pos: -22.5,-11.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 6358 components: - type: Transform @@ -84078,7 +83760,7 @@ entities: pos: -35.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6371 components: - type: Transform @@ -84086,7 +83768,7 @@ entities: pos: 17.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6379 components: - type: Transform @@ -84094,7 +83776,7 @@ entities: pos: -1.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6391 components: - type: Transform @@ -84102,7 +83784,7 @@ entities: pos: 17.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6399 components: - type: Transform @@ -84110,7 +83792,7 @@ entities: pos: 17.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6410 components: - type: Transform @@ -84118,7 +83800,7 @@ entities: pos: -2.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6457 components: - type: Transform @@ -84126,7 +83808,15 @@ entities: pos: -0.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 6542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-2.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 6596 components: - type: Transform @@ -84142,30 +83832,47 @@ entities: pos: 7.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6760 + color: '#0335FCFF' + - uid: 6651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,7.5 + rot: 3.141592653589793 rad + pos: -31.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6761 + color: '#FF1212FF' + - uid: 6706 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-2.5 + pos: -27.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6763 + color: '#0335FCFF' + - uid: 6710 components: - type: Transform - pos: -21.5,-0.5 + rot: 3.141592653589793 rad + pos: -31.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' + - uid: 6759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-16.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,7.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 6778 components: - type: Transform @@ -84181,14 +83888,21 @@ entities: pos: 2.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 6798 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6799 components: - type: Transform pos: -38.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6800 components: - type: Transform @@ -84196,15 +83910,15 @@ entities: pos: -32.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-19.5 + rot: 3.141592653589793 rad + pos: -31.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6802 components: - type: Transform @@ -84212,14 +83926,7 @@ entities: pos: -29.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6804 - components: - - type: Transform - pos: -30.5,-8.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6809 components: - type: Transform @@ -84227,14 +83934,7 @@ entities: pos: 17.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6824 - components: - - type: Transform - pos: -27.5,-19.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 6833 components: - type: Transform @@ -84242,7 +83942,7 @@ entities: pos: 45.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6837 components: - type: Transform @@ -84250,7 +83950,7 @@ entities: pos: 41.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6838 components: - type: Transform @@ -84258,7 +83958,7 @@ entities: pos: 42.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6839 components: - type: Transform @@ -84266,7 +83966,7 @@ entities: pos: 44.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6840 components: - type: Transform @@ -84274,7 +83974,23 @@ entities: pos: 45.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 6884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-16.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-1.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 6982 components: - type: Transform @@ -84282,7 +83998,7 @@ entities: pos: -41.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7012 components: - type: Transform @@ -84290,7 +84006,7 @@ entities: pos: 15.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7115 components: - type: Transform @@ -84303,20 +84019,13 @@ entities: pos: 15.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7123 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,48.5 parent: 60 - - uid: 7166 - components: - - type: Transform - pos: -22.5,-4.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7200 components: - type: Transform @@ -84324,21 +84033,21 @@ entities: pos: 16.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7211 components: - type: Transform pos: -49.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7214 components: - type: Transform pos: -23.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7215 components: - type: Transform @@ -84346,15 +84055,23 @@ entities: pos: 23.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7284 + color: '#0335FCFF' + - uid: 7220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-20.5 + rot: 3.141592653589793 rad + pos: -25.5,-1.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7335 components: - type: Transform @@ -84391,21 +84108,21 @@ entities: pos: 1.5,-75.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7382 components: - type: Transform pos: -0.5,-74.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7383 components: - type: Transform pos: -0.5,-75.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7458 components: - type: Transform @@ -84413,15 +84130,7 @@ entities: pos: -28.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-20.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7473 components: - type: Transform @@ -84429,7 +84138,7 @@ entities: pos: 5.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7478 components: - type: Transform @@ -84437,30 +84146,47 @@ entities: pos: 6.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7601 components: - type: Transform - pos: -22.5,-7.5 + rot: 3.141592653589793 rad + pos: -14.5,8.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' + - uid: 7612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-9.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,1.5 + rot: -1.5707963267948966 rad + pos: -20.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7649 + color: '#0335FCFF' + - uid: 7657 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-20.5 + pos: -39.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7670 components: - type: Transform @@ -84468,21 +84194,21 @@ entities: pos: 27.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7676 components: - type: Transform pos: -49.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7680 components: - type: Transform pos: -36.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7681 components: - type: Transform @@ -84490,14 +84216,14 @@ entities: pos: -29.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7715 components: - type: Transform pos: 33.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7716 components: - type: Transform @@ -84505,7 +84231,7 @@ entities: pos: 32.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7717 components: - type: Transform @@ -84513,22 +84239,22 @@ entities: pos: 32.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7785 + color: '#FF1212FF' + - uid: 7787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-20.5 + rot: 3.141592653589793 rad + pos: -21.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 7835 components: - type: Transform pos: 4.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7856 components: - type: Transform @@ -84536,13 +84262,28 @@ entities: pos: 45.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7896 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,39.5 parent: 60 + - uid: 7903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,9.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7905 + components: + - type: Transform + pos: -36.5,4.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 7981 components: - type: Transform @@ -84700,7 +84441,7 @@ entities: pos: 25.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8130 components: - type: Transform @@ -84708,7 +84449,7 @@ entities: pos: -1.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8131 components: - type: Transform @@ -84716,7 +84457,7 @@ entities: pos: -2.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8132 components: - type: Transform @@ -84724,7 +84465,7 @@ entities: pos: 0.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8133 components: - type: Transform @@ -84732,7 +84473,7 @@ entities: pos: -0.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8134 components: - type: Transform @@ -84740,7 +84481,7 @@ entities: pos: -1.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8135 components: - type: Transform @@ -84748,27 +84489,35 @@ entities: pos: -2.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8151 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,48.5 parent: 60 + - uid: 8203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-12.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8204 components: - type: Transform pos: -38.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8206 components: - type: Transform pos: -38.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8207 components: - type: Transform @@ -84776,39 +84525,46 @@ entities: pos: -26.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8212 + color: '#0335FCFF' + - uid: 8230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-8.5 + rot: 3.141592653589793 rad + pos: -25.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8223 + color: '#FF1212FF' + - uid: 8242 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-8.5 + pos: -38.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8225 + color: '#0335FCFF' + - uid: 8244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-19.5 + pos: -25.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8228 + color: '#FF1212FF' + - uid: 8246 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-4.5 + pos: -21.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' + - uid: 8253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8257 components: - type: Transform @@ -84816,62 +84572,71 @@ entities: pos: 45.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8261 + color: '#FF1212FF' + - uid: 8258 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-2.5 + pos: -21.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8263 + color: '#FF1212FF' + - uid: 8269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-2.5 + rot: 3.141592653589793 rad + pos: -18.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8264 + color: '#FF1212FF' + - uid: 8270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-2.5 + rot: 1.5707963267948966 rad + pos: -26.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8267 + color: '#FF1212FF' + - uid: 8274 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-1.5 + pos: -31.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8270 + color: '#FF1212FF' + - uid: 8277 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-3.5 + pos: -31.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8274 + color: '#FF1212FF' + - uid: 8292 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-7.5 + pos: -8.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8386 + color: '#0335FCFF' + - uid: 8336 components: - type: Transform - pos: -22.5,-10.5 + rot: 3.141592653589793 rad + pos: -30.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' + - uid: 8350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,3.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8387 components: - type: Transform @@ -84879,125 +84644,94 @@ entities: pos: 23.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 8436 + components: + - type: Transform + pos: -43.5,-17.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-2.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8533 components: - type: Transform pos: 17.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8534 components: - type: Transform pos: 17.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8535 components: - type: Transform pos: 17.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8538 components: - type: Transform pos: 15.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8539 components: - type: Transform pos: 15.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8540 components: - type: Transform pos: 15.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8541 components: - type: Transform pos: 15.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8577 + color: '#0335FCFF' + - uid: 8569 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-16.5 + pos: -39.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8711 + color: '#FF1212FF' + - uid: 8792 components: - type: Transform - pos: -21.5,-1.5 + pos: -16.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8712 + color: '#FF1212FF' + - uid: 8891 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-1.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,0.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8719 - components: - - type: Transform - pos: -18.5,-17.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-7.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-2.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8792 - components: - - type: Transform - pos: -16.5,6.5 + pos: -7.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 8899 components: - type: Transform @@ -85017,112 +84751,105 @@ entities: pos: -55.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8945 + color: '#0335FCFF' + - uid: 8922 components: - type: Transform - pos: 1.5,-19.5 + rot: -1.5707963267948966 rad + pos: -32.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8949 + color: '#FF1212FF' + - uid: 8945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-8.5 + pos: 1.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8963 components: - type: Transform pos: 44.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8964 components: - type: Transform pos: 44.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9003 components: - type: Transform pos: 19.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,0.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9022 components: - type: Transform pos: 44.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9031 + color: '#FF1212FF' + - uid: 9042 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-15.5 + pos: -44.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9033 + color: '#0335FCFF' + - uid: 9045 components: - type: Transform - pos: -18.5,-16.5 + rot: 3.141592653589793 rad + pos: 39.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9043 + color: '#FF1212FF' + - uid: 9111 components: - type: Transform - pos: -18.5,-18.5 + rot: 3.141592653589793 rad + pos: -18.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9045 + color: '#FF1212FF' + - uid: 9149 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-28.5 + pos: -18.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9148 + color: '#FF1212FF' + - uid: 9151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,4.5 + rot: 3.141592653589793 rad + pos: -7.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9158 + color: '#0335FCFF' + - uid: 9153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-2.5 + rot: 1.5707963267948966 rad + pos: -11.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9159 + color: '#FF1212FF' + - uid: 9154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-2.5 + pos: -45.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9358 components: - type: Transform @@ -85143,6 +84870,14 @@ entities: - type: Transform pos: -53.5,15.5 parent: 60 + - uid: 9488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-3.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9609 components: - type: Transform @@ -85150,7 +84885,7 @@ entities: pos: -46.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9610 components: - type: Transform @@ -85158,7 +84893,7 @@ entities: pos: -45.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9635 components: - type: Transform @@ -85166,7 +84901,7 @@ entities: pos: -53.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9636 components: - type: Transform @@ -85174,7 +84909,7 @@ entities: pos: -54.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9639 components: - type: Transform @@ -85182,7 +84917,7 @@ entities: pos: -39.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9640 components: - type: Transform @@ -85190,7 +84925,7 @@ entities: pos: -40.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9642 components: - type: Transform @@ -85198,7 +84933,7 @@ entities: pos: -43.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9649 components: - type: Transform @@ -85206,7 +84941,7 @@ entities: pos: -44.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9650 components: - type: Transform @@ -85214,7 +84949,7 @@ entities: pos: -45.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9653 components: - type: Transform @@ -85222,63 +84957,63 @@ entities: pos: -53.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9654 components: - type: Transform pos: -54.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9655 components: - type: Transform pos: -54.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9657 components: - type: Transform pos: -54.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9658 components: - type: Transform pos: -54.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9659 components: - type: Transform pos: -54.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9660 components: - type: Transform pos: -54.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9661 components: - type: Transform pos: -54.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9662 components: - type: Transform pos: -54.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9663 components: - type: Transform @@ -85308,37 +85043,53 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-4.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10310 components: - type: Transform pos: -58.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10695 + color: '#0335FCFF' + - uid: 10585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,11.5 + rot: 3.141592653589793 rad + pos: -21.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10696 + color: '#FF1212FF' + - uid: 10676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-9.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10695 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,11.5 + pos: -51.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 10828 + color: '#FF1212FF' + - uid: 10696 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,4.5 + pos: -49.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 11132 components: - type: Transform @@ -85346,7 +85097,7 @@ entities: pos: 46.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 11158 components: - type: Transform @@ -85354,7 +85105,23 @@ entities: pos: 43.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 11361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-20.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 11371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11379 components: - type: Transform @@ -85362,7 +85129,7 @@ entities: pos: 14.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 11739 components: - type: Transform @@ -85370,7 +85137,7 @@ entities: pos: 44.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 11757 components: - type: Transform @@ -85378,7 +85145,7 @@ entities: pos: 47.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 11814 components: - type: Transform @@ -85386,7 +85153,7 @@ entities: pos: 45.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 11830 components: - type: Transform @@ -85394,14 +85161,14 @@ entities: pos: 48.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12221 components: - type: Transform pos: 9.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12284 components: - type: Transform @@ -85409,7 +85176,7 @@ entities: pos: 42.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12522 components: - type: Transform @@ -85430,28 +85197,28 @@ entities: pos: 41.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12620 components: - type: Transform pos: 49.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12627 components: - type: Transform pos: 38.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12628 components: - type: Transform pos: 38.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12630 components: - type: Transform @@ -85459,7 +85226,7 @@ entities: pos: 40.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12824 components: - type: Transform @@ -85467,7 +85234,7 @@ entities: pos: -37.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12826 components: - type: Transform @@ -85475,7 +85242,7 @@ entities: pos: -40.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12827 components: - type: Transform @@ -85483,7 +85250,7 @@ entities: pos: -41.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12828 components: - type: Transform @@ -85491,42 +85258,42 @@ entities: pos: -42.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12830 components: - type: Transform pos: -43.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12831 components: - type: Transform pos: -43.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12832 components: - type: Transform pos: -43.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12833 components: - type: Transform pos: -43.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12834 components: - type: Transform pos: -43.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12836 components: - type: Transform @@ -85534,7 +85301,7 @@ entities: pos: -44.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12838 components: - type: Transform @@ -85542,7 +85309,7 @@ entities: pos: -47.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12843 components: - type: Transform @@ -85550,7 +85317,7 @@ entities: pos: -39.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12844 components: - type: Transform @@ -85558,21 +85325,21 @@ entities: pos: -38.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12847 components: - type: Transform pos: -43.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12848 components: - type: Transform pos: -43.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12849 components: - type: Transform @@ -85580,7 +85347,7 @@ entities: pos: -46.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12850 components: - type: Transform @@ -85588,7 +85355,7 @@ entities: pos: -45.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13081 components: - type: Transform @@ -85596,7 +85363,7 @@ entities: pos: 43.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13140 components: - type: Transform @@ -85604,14 +85371,14 @@ entities: pos: 38.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13206 components: - type: Transform pos: 49.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13210 components: - type: Transform @@ -85619,7 +85386,7 @@ entities: pos: 40.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13237 components: - type: Transform @@ -85627,7 +85394,7 @@ entities: pos: 18.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13239 components: - type: Transform @@ -85635,7 +85402,7 @@ entities: pos: 17.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13240 components: - type: Transform @@ -85643,7 +85410,7 @@ entities: pos: 18.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13244 components: - type: Transform @@ -85651,7 +85418,7 @@ entities: pos: 24.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13268 components: - type: Transform @@ -85664,7 +85431,7 @@ entities: pos: 49.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13505 components: - type: Transform @@ -85672,7 +85439,7 @@ entities: pos: 46.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13506 components: - type: Transform @@ -85680,7 +85447,7 @@ entities: pos: 45.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13507 components: - type: Transform @@ -85688,14 +85455,14 @@ entities: pos: 41.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13508 components: - type: Transform pos: 49.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13509 components: - type: Transform @@ -85703,14 +85470,14 @@ entities: pos: 41.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13511 components: - type: Transform pos: 49.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13512 components: - type: Transform @@ -85718,7 +85485,7 @@ entities: pos: 44.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13513 components: - type: Transform @@ -85726,7 +85493,7 @@ entities: pos: 43.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13518 components: - type: Transform @@ -85734,7 +85501,7 @@ entities: pos: 38.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13539 components: - type: Transform @@ -85742,7 +85509,7 @@ entities: pos: 17.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13540 components: - type: Transform @@ -85750,7 +85517,7 @@ entities: pos: 18.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13541 components: - type: Transform @@ -85758,7 +85525,7 @@ entities: pos: 19.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13542 components: - type: Transform @@ -85766,7 +85533,7 @@ entities: pos: 18.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13543 components: - type: Transform @@ -85774,7 +85541,7 @@ entities: pos: 19.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13544 components: - type: Transform @@ -85782,7 +85549,7 @@ entities: pos: 20.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13545 components: - type: Transform @@ -85790,7 +85557,7 @@ entities: pos: 21.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13550 components: - type: Transform @@ -85798,7 +85565,7 @@ entities: pos: -32.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13564 components: - type: Transform @@ -85806,7 +85573,7 @@ entities: pos: 23.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13565 components: - type: Transform @@ -85814,7 +85581,7 @@ entities: pos: 24.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13566 components: - type: Transform @@ -85822,7 +85589,7 @@ entities: pos: 39.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13573 components: - type: Transform @@ -85830,7 +85597,7 @@ entities: pos: 13.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13587 components: - type: Transform @@ -85838,7 +85605,7 @@ entities: pos: 26.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13588 components: - type: Transform @@ -85846,14 +85613,14 @@ entities: pos: 3.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13591 components: - type: Transform pos: 49.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13594 components: - type: Transform @@ -85861,7 +85628,7 @@ entities: pos: 27.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13595 components: - type: Transform @@ -85869,7 +85636,7 @@ entities: pos: 28.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13596 components: - type: Transform @@ -85877,7 +85644,7 @@ entities: pos: 29.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13597 components: - type: Transform @@ -85885,7 +85652,7 @@ entities: pos: 30.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13630 components: - type: Transform @@ -85893,7 +85660,7 @@ entities: pos: 32.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13640 components: - type: Transform @@ -85901,7 +85668,7 @@ entities: pos: 12.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13643 components: - type: Transform @@ -85921,7 +85688,7 @@ entities: pos: 33.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13652 components: - type: Transform @@ -85929,7 +85696,7 @@ entities: pos: 34.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13653 components: - type: Transform @@ -85937,7 +85704,7 @@ entities: pos: 35.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13674 components: - type: Transform @@ -85945,7 +85712,7 @@ entities: pos: -8.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13675 components: - type: Transform @@ -85953,7 +85720,7 @@ entities: pos: -8.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13676 components: - type: Transform @@ -85961,7 +85728,7 @@ entities: pos: -8.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13806 components: - type: Transform @@ -85969,7 +85736,7 @@ entities: pos: 36.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13807 components: - type: Transform @@ -85977,7 +85744,7 @@ entities: pos: 37.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13809 components: - type: Transform @@ -85985,7 +85752,7 @@ entities: pos: 39.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13810 components: - type: Transform @@ -85993,7 +85760,7 @@ entities: pos: 22.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13822 components: - type: Transform @@ -86001,7 +85768,7 @@ entities: pos: 25.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13836 components: - type: Transform @@ -86009,7 +85776,7 @@ entities: pos: 25.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13837 components: - type: Transform @@ -86017,7 +85784,7 @@ entities: pos: 26.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13839 components: - type: Transform @@ -86025,7 +85792,7 @@ entities: pos: -26.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13840 components: - type: Transform @@ -86033,7 +85800,7 @@ entities: pos: -26.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13841 components: - type: Transform @@ -86041,7 +85808,7 @@ entities: pos: -26.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13843 components: - type: Transform @@ -86049,7 +85816,7 @@ entities: pos: 27.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13869 components: - type: Transform @@ -86057,7 +85824,7 @@ entities: pos: -30.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13877 components: - type: Transform @@ -86071,7 +85838,7 @@ entities: pos: 28.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13920 components: - type: Transform @@ -86079,7 +85846,7 @@ entities: pos: 29.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13921 components: - type: Transform @@ -86087,7 +85854,7 @@ entities: pos: 30.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13932 components: - type: Transform @@ -86095,7 +85862,7 @@ entities: pos: -14.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13935 components: - type: Transform @@ -86115,7 +85882,7 @@ entities: pos: 31.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14003 components: - type: Transform @@ -86123,7 +85890,7 @@ entities: pos: -26.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14004 components: - type: Transform @@ -86131,7 +85898,7 @@ entities: pos: -26.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14005 components: - type: Transform @@ -86139,7 +85906,7 @@ entities: pos: -26.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14016 components: - type: Transform @@ -86147,7 +85914,7 @@ entities: pos: 33.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14017 components: - type: Transform @@ -86155,7 +85922,7 @@ entities: pos: 34.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14018 components: - type: Transform @@ -86163,7 +85930,7 @@ entities: pos: 35.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14019 components: - type: Transform @@ -86171,7 +85938,7 @@ entities: pos: 36.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14020 components: - type: Transform @@ -86179,7 +85946,7 @@ entities: pos: 37.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14023 components: - type: Transform @@ -86187,7 +85954,7 @@ entities: pos: 16.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14024 components: - type: Transform @@ -86195,7 +85962,7 @@ entities: pos: 17.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14025 components: - type: Transform @@ -86203,7 +85970,7 @@ entities: pos: 18.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14026 components: - type: Transform @@ -86211,7 +85978,7 @@ entities: pos: 19.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14027 components: - type: Transform @@ -86219,7 +85986,7 @@ entities: pos: 20.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14028 components: - type: Transform @@ -86227,7 +85994,7 @@ entities: pos: 21.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14030 components: - type: Transform @@ -86235,7 +86002,7 @@ entities: pos: 23.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14031 components: - type: Transform @@ -86243,7 +86010,7 @@ entities: pos: 24.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14032 components: - type: Transform @@ -86251,7 +86018,7 @@ entities: pos: 25.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14033 components: - type: Transform @@ -86259,7 +86026,7 @@ entities: pos: 26.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14034 components: - type: Transform @@ -86267,7 +86034,7 @@ entities: pos: 27.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14035 components: - type: Transform @@ -86275,7 +86042,7 @@ entities: pos: 28.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14036 components: - type: Transform @@ -86283,7 +86050,7 @@ entities: pos: 29.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14037 components: - type: Transform @@ -86291,7 +86058,7 @@ entities: pos: 30.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14038 components: - type: Transform @@ -86299,7 +86066,7 @@ entities: pos: 31.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14039 components: - type: Transform @@ -86307,7 +86074,7 @@ entities: pos: 32.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14041 components: - type: Transform @@ -86315,7 +86082,7 @@ entities: pos: 34.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14042 components: - type: Transform @@ -86323,7 +86090,7 @@ entities: pos: 35.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14045 components: - type: Transform @@ -86331,7 +86098,7 @@ entities: pos: 37.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14046 components: - type: Transform @@ -86339,7 +86106,7 @@ entities: pos: 38.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14048 components: - type: Transform @@ -86347,21 +86114,21 @@ entities: pos: 40.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14132 components: - type: Transform pos: -9.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14153 components: - type: Transform pos: -9.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14181 components: - type: Transform @@ -86369,7 +86136,7 @@ entities: pos: -21.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14209 components: - type: Transform @@ -86377,7 +86144,7 @@ entities: pos: -13.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14214 components: - type: Transform @@ -86385,15 +86152,7 @@ entities: pos: -15.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 14229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14232 components: - type: Transform @@ -86401,7 +86160,7 @@ entities: pos: -16.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14233 components: - type: Transform @@ -86409,7 +86168,7 @@ entities: pos: -16.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14234 components: - type: Transform @@ -86417,7 +86176,7 @@ entities: pos: -16.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14235 components: - type: Transform @@ -86425,7 +86184,7 @@ entities: pos: -16.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14236 components: - type: Transform @@ -86433,7 +86192,7 @@ entities: pos: -16.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14238 components: - type: Transform @@ -86441,7 +86200,7 @@ entities: pos: -16.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14239 components: - type: Transform @@ -86449,7 +86208,7 @@ entities: pos: -16.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14240 components: - type: Transform @@ -86457,7 +86216,7 @@ entities: pos: -16.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14242 components: - type: Transform @@ -86465,7 +86224,7 @@ entities: pos: -16.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14243 components: - type: Transform @@ -86473,7 +86232,7 @@ entities: pos: -16.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14244 components: - type: Transform @@ -86481,7 +86240,7 @@ entities: pos: -16.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14245 components: - type: Transform @@ -86489,7 +86248,7 @@ entities: pos: -14.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14246 components: - type: Transform @@ -86497,7 +86256,7 @@ entities: pos: -14.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14247 components: - type: Transform @@ -86505,7 +86264,7 @@ entities: pos: -14.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14248 components: - type: Transform @@ -86513,7 +86272,7 @@ entities: pos: -14.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14249 components: - type: Transform @@ -86521,7 +86280,7 @@ entities: pos: -14.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14250 components: - type: Transform @@ -86529,7 +86288,7 @@ entities: pos: -14.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14252 components: - type: Transform @@ -86537,7 +86296,7 @@ entities: pos: -14.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14253 components: - type: Transform @@ -86545,7 +86304,7 @@ entities: pos: -14.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14254 components: - type: Transform @@ -86553,7 +86312,7 @@ entities: pos: -14.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14255 components: - type: Transform @@ -86561,7 +86320,7 @@ entities: pos: -14.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14256 components: - type: Transform @@ -86569,7 +86328,7 @@ entities: pos: -14.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14257 components: - type: Transform @@ -86577,7 +86336,7 @@ entities: pos: -14.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14258 components: - type: Transform @@ -86585,7 +86344,7 @@ entities: pos: -14.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14261 components: - type: Transform @@ -86593,7 +86352,7 @@ entities: pos: -17.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14262 components: - type: Transform @@ -86601,7 +86360,7 @@ entities: pos: -18.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14263 components: - type: Transform @@ -86609,7 +86368,7 @@ entities: pos: -19.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14264 components: - type: Transform @@ -86617,7 +86376,7 @@ entities: pos: -20.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14265 components: - type: Transform @@ -86625,7 +86384,7 @@ entities: pos: -21.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14266 components: - type: Transform @@ -86633,14 +86392,14 @@ entities: pos: -22.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14267 components: - type: Transform pos: 49.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14268 components: - type: Transform @@ -86648,7 +86407,7 @@ entities: pos: -24.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14269 components: - type: Transform @@ -86656,7 +86415,7 @@ entities: pos: -25.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14271 components: - type: Transform @@ -86664,7 +86423,7 @@ entities: pos: -27.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14272 components: - type: Transform @@ -86672,7 +86431,7 @@ entities: pos: -28.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14273 components: - type: Transform @@ -86680,7 +86439,7 @@ entities: pos: -29.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14275 components: - type: Transform @@ -86688,7 +86447,7 @@ entities: pos: -15.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14276 components: - type: Transform @@ -86696,7 +86455,7 @@ entities: pos: -16.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14277 components: - type: Transform @@ -86704,7 +86463,7 @@ entities: pos: -17.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14278 components: - type: Transform @@ -86712,7 +86471,7 @@ entities: pos: -18.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14281 components: - type: Transform @@ -86720,7 +86479,7 @@ entities: pos: -21.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14282 components: - type: Transform @@ -86728,7 +86487,7 @@ entities: pos: -22.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14283 components: - type: Transform @@ -86736,7 +86495,7 @@ entities: pos: -23.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14284 components: - type: Transform @@ -86744,7 +86503,7 @@ entities: pos: -25.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14290 components: - type: Transform @@ -86758,7 +86517,7 @@ entities: pos: -13.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14292 components: - type: Transform @@ -86766,7 +86525,7 @@ entities: pos: -12.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14294 components: - type: Transform @@ -86774,7 +86533,7 @@ entities: pos: -10.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14296 components: - type: Transform @@ -86782,7 +86541,7 @@ entities: pos: -8.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14298 components: - type: Transform @@ -86790,7 +86549,7 @@ entities: pos: -7.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14299 components: - type: Transform @@ -86798,7 +86557,7 @@ entities: pos: -7.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14300 components: - type: Transform @@ -86806,7 +86565,7 @@ entities: pos: -7.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14301 components: - type: Transform @@ -86814,7 +86573,7 @@ entities: pos: -7.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14304 components: - type: Transform @@ -86822,7 +86581,7 @@ entities: pos: -15.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14305 components: - type: Transform @@ -86830,7 +86589,7 @@ entities: pos: -14.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14306 components: - type: Transform @@ -86838,7 +86597,7 @@ entities: pos: -12.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14307 components: - type: Transform @@ -86846,7 +86605,7 @@ entities: pos: -13.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14309 components: - type: Transform @@ -86854,7 +86613,7 @@ entities: pos: -10.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14310 components: - type: Transform @@ -86862,7 +86621,7 @@ entities: pos: -9.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14314 components: - type: Transform @@ -86870,7 +86629,7 @@ entities: pos: -8.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14315 components: - type: Transform @@ -86878,7 +86637,7 @@ entities: pos: -8.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14316 components: - type: Transform @@ -86886,7 +86645,7 @@ entities: pos: -8.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14317 components: - type: Transform @@ -86894,56 +86653,56 @@ entities: pos: -8.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14319 components: - type: Transform pos: -9.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14320 components: - type: Transform pos: -9.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14321 components: - type: Transform pos: -9.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14322 components: - type: Transform pos: -9.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14323 components: - type: Transform pos: -9.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14324 components: - type: Transform pos: -9.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14455 components: - type: Transform pos: -27.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14456 components: - type: Transform @@ -86951,7 +86710,7 @@ entities: pos: -26.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14457 components: - type: Transform @@ -86959,7 +86718,7 @@ entities: pos: -26.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14458 components: - type: Transform @@ -86967,7 +86726,7 @@ entities: pos: -26.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14459 components: - type: Transform @@ -86975,7 +86734,7 @@ entities: pos: -26.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14460 components: - type: Transform @@ -86983,7 +86742,7 @@ entities: pos: -26.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14461 components: - type: Transform @@ -86991,119 +86750,119 @@ entities: pos: -26.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14462 components: - type: Transform pos: -24.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14463 components: - type: Transform pos: -24.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14464 components: - type: Transform pos: -24.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14465 components: - type: Transform pos: -24.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14466 components: - type: Transform pos: -24.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14467 components: - type: Transform pos: -24.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14469 components: - type: Transform pos: -24.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14470 components: - type: Transform pos: -24.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14471 components: - type: Transform pos: -24.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14472 components: - type: Transform pos: -24.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14473 components: - type: Transform pos: -24.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14474 components: - type: Transform pos: -24.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14475 components: - type: Transform pos: -24.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14476 components: - type: Transform pos: -24.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14489 components: - type: Transform pos: -27.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14495 components: - type: Transform pos: -23.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14643 components: - type: Transform @@ -87111,7 +86870,7 @@ entities: pos: -20.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14644 components: - type: Transform @@ -87119,7 +86878,7 @@ entities: pos: -22.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14662 components: - type: Transform @@ -87132,7 +86891,7 @@ entities: pos: -16.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14669 components: - type: Transform @@ -87140,7 +86899,7 @@ entities: pos: -24.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14671 components: - type: Transform @@ -87148,7 +86907,7 @@ entities: pos: -23.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14672 components: - type: Transform @@ -87156,7 +86915,7 @@ entities: pos: -22.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14686 components: - type: Transform @@ -87197,7 +86956,7 @@ entities: pos: 41.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14742 components: - type: Transform @@ -87205,7 +86964,7 @@ entities: pos: -29.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14743 components: - type: Transform @@ -87213,7 +86972,7 @@ entities: pos: -28.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14744 components: - type: Transform @@ -87221,7 +86980,7 @@ entities: pos: -27.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14747 components: - type: Transform @@ -87229,7 +86988,7 @@ entities: pos: -24.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14748 components: - type: Transform @@ -87237,7 +86996,7 @@ entities: pos: -23.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14754 components: - type: Transform @@ -87245,7 +87004,7 @@ entities: pos: -20.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14755 components: - type: Transform @@ -87253,7 +87012,7 @@ entities: pos: -20.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14757 components: - type: Transform @@ -87261,7 +87020,7 @@ entities: pos: -25.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14758 components: - type: Transform @@ -87269,7 +87028,7 @@ entities: pos: -22.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14759 components: - type: Transform @@ -87277,7 +87036,7 @@ entities: pos: -22.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14760 components: - type: Transform @@ -87285,7 +87044,7 @@ entities: pos: -22.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14761 components: - type: Transform @@ -87293,7 +87052,7 @@ entities: pos: -22.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14762 components: - type: Transform @@ -87301,7 +87060,7 @@ entities: pos: -22.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14764 components: - type: Transform @@ -87309,7 +87068,7 @@ entities: pos: -36.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14765 components: - type: Transform @@ -87317,7 +87076,7 @@ entities: pos: -35.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14767 components: - type: Transform @@ -87325,7 +87084,7 @@ entities: pos: -33.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14768 components: - type: Transform @@ -87333,14 +87092,14 @@ entities: pos: -32.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14769 components: - type: Transform pos: -41.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14771 components: - type: Transform @@ -87348,7 +87107,7 @@ entities: pos: -35.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14773 components: - type: Transform @@ -87356,7 +87115,7 @@ entities: pos: -29.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14777 components: - type: Transform @@ -87364,7 +87123,7 @@ entities: pos: -26.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14778 components: - type: Transform @@ -87372,7 +87131,7 @@ entities: pos: -25.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14781 components: - type: Transform @@ -87386,7 +87145,7 @@ entities: pos: -28.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14786 components: - type: Transform @@ -87394,7 +87153,7 @@ entities: pos: -31.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14790 components: - type: Transform @@ -87402,7 +87161,7 @@ entities: pos: -34.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14794 components: - type: Transform @@ -87434,14 +87193,14 @@ entities: pos: -27.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14871 components: - type: Transform pos: -43.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14878 components: - type: Transform @@ -87449,7 +87208,7 @@ entities: pos: -33.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14879 components: - type: Transform @@ -87457,7 +87216,7 @@ entities: pos: -31.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14883 components: - type: Transform @@ -87489,7 +87248,7 @@ entities: pos: -33.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14897 components: - type: Transform @@ -87531,7 +87290,7 @@ entities: pos: -26.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14934 components: - type: Transform @@ -87539,7 +87298,7 @@ entities: pos: -27.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14935 components: - type: Transform @@ -87547,7 +87306,7 @@ entities: pos: -28.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14936 components: - type: Transform @@ -87555,7 +87314,7 @@ entities: pos: -26.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14938 components: - type: Transform @@ -87563,7 +87322,7 @@ entities: pos: -31.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14940 components: - type: Transform @@ -87589,14 +87348,14 @@ entities: pos: 1.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14987 components: - type: Transform pos: -33.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14991 components: - type: Transform @@ -87800,7 +87559,7 @@ entities: pos: -32.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15118 components: - type: Transform @@ -87886,7 +87645,7 @@ entities: pos: -33.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15146 components: - type: Transform @@ -87906,7 +87665,7 @@ entities: pos: 13.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15172 components: - type: Transform @@ -87931,14 +87690,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-2.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15273 components: - type: Transform @@ -87998,7 +87749,7 @@ entities: pos: -19.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15358 components: - type: Transform @@ -88006,7 +87757,7 @@ entities: pos: -17.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15365 components: - type: Transform @@ -88321,7 +88072,7 @@ entities: pos: -22.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15589 components: - type: Transform @@ -88329,7 +88080,7 @@ entities: pos: -22.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15590 components: - type: Transform @@ -88337,7 +88088,7 @@ entities: pos: -22.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15592 components: - type: Transform @@ -88345,7 +88096,7 @@ entities: pos: -22.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15598 components: - type: Transform @@ -88353,7 +88104,7 @@ entities: pos: -18.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15606 components: - type: Transform @@ -88361,7 +88112,7 @@ entities: pos: -10.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15607 components: - type: Transform @@ -88369,7 +88120,7 @@ entities: pos: -10.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15608 components: - type: Transform @@ -88377,7 +88128,7 @@ entities: pos: -10.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15609 components: - type: Transform @@ -88385,7 +88136,7 @@ entities: pos: -10.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15610 components: - type: Transform @@ -88393,7 +88144,7 @@ entities: pos: -10.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15611 components: - type: Transform @@ -88401,7 +88152,7 @@ entities: pos: -10.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15614 components: - type: Transform @@ -88409,7 +88160,7 @@ entities: pos: -20.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15615 components: - type: Transform @@ -88417,7 +88168,7 @@ entities: pos: -20.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15616 components: - type: Transform @@ -88425,7 +88176,7 @@ entities: pos: -19.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15618 components: - type: Transform @@ -88433,7 +88184,7 @@ entities: pos: -17.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15619 components: - type: Transform @@ -88441,7 +88192,7 @@ entities: pos: -16.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15620 components: - type: Transform @@ -88449,7 +88200,7 @@ entities: pos: -15.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15622 components: - type: Transform @@ -88457,28 +88208,28 @@ entities: pos: -13.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15623 components: - type: Transform pos: -12.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15624 components: - type: Transform pos: -12.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15625 components: - type: Transform pos: -12.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15627 components: - type: Transform @@ -88486,7 +88237,7 @@ entities: pos: -19.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15628 components: - type: Transform @@ -88494,7 +88245,7 @@ entities: pos: -18.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15629 components: - type: Transform @@ -88502,7 +88253,7 @@ entities: pos: -17.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15630 components: - type: Transform @@ -88510,7 +88261,7 @@ entities: pos: -16.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15631 components: - type: Transform @@ -88518,7 +88269,7 @@ entities: pos: -15.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15632 components: - type: Transform @@ -88526,7 +88277,7 @@ entities: pos: -14.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15633 components: - type: Transform @@ -88534,14 +88285,14 @@ entities: pos: -13.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15634 components: - type: Transform pos: -12.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15638 components: - type: Transform @@ -88549,7 +88300,7 @@ entities: pos: -16.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15639 components: - type: Transform @@ -88557,7 +88308,7 @@ entities: pos: -16.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15640 components: - type: Transform @@ -88565,7 +88316,7 @@ entities: pos: -16.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15641 components: - type: Transform @@ -88573,7 +88324,7 @@ entities: pos: -15.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15642 components: - type: Transform @@ -88581,7 +88332,7 @@ entities: pos: -14.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15643 components: - type: Transform @@ -88589,7 +88340,7 @@ entities: pos: -13.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15644 components: - type: Transform @@ -88597,7 +88348,7 @@ entities: pos: -12.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15645 components: - type: Transform @@ -88605,35 +88356,35 @@ entities: pos: -11.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15646 components: - type: Transform pos: -10.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15655 components: - type: Transform pos: -0.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15656 components: - type: Transform pos: -0.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15657 components: - type: Transform pos: -0.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15658 components: - type: Transform @@ -88641,7 +88392,7 @@ entities: pos: 0.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15659 components: - type: Transform @@ -88649,21 +88400,21 @@ entities: pos: -9.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15662 components: - type: Transform pos: 1.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15663 components: - type: Transform pos: 1.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15746 components: - type: Transform @@ -88671,14 +88422,14 @@ entities: pos: 0.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16562 components: - type: Transform pos: -16.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16564 components: - type: Transform @@ -88686,7 +88437,7 @@ entities: pos: -8.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16565 components: - type: Transform @@ -88694,7 +88445,7 @@ entities: pos: -7.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16566 components: - type: Transform @@ -88702,7 +88453,7 @@ entities: pos: -6.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16567 components: - type: Transform @@ -88710,7 +88461,7 @@ entities: pos: -5.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16568 components: - type: Transform @@ -88718,7 +88469,7 @@ entities: pos: -4.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16569 components: - type: Transform @@ -88726,56 +88477,56 @@ entities: pos: -3.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16570 components: - type: Transform pos: -2.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16572 components: - type: Transform pos: -2.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16573 components: - type: Transform pos: -2.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16574 components: - type: Transform pos: -2.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16575 components: - type: Transform pos: -2.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16577 components: - type: Transform pos: -2.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16578 components: - type: Transform pos: -2.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16579 components: - type: Transform @@ -88783,7 +88534,7 @@ entities: pos: -1.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16583 components: - type: Transform @@ -88791,7 +88542,7 @@ entities: pos: -11.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16584 components: - type: Transform @@ -88799,7 +88550,7 @@ entities: pos: -10.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16585 components: - type: Transform @@ -88807,7 +88558,7 @@ entities: pos: -9.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16586 components: - type: Transform @@ -88815,7 +88566,7 @@ entities: pos: -8.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16587 components: - type: Transform @@ -88823,7 +88574,7 @@ entities: pos: -7.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16588 components: - type: Transform @@ -88831,7 +88582,7 @@ entities: pos: -6.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16589 components: - type: Transform @@ -88839,7 +88590,7 @@ entities: pos: -5.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16590 components: - type: Transform @@ -88847,28 +88598,28 @@ entities: pos: -4.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16591 components: - type: Transform pos: -3.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16592 components: - type: Transform pos: -3.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16593 components: - type: Transform pos: -3.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16595 components: - type: Transform @@ -88876,28 +88627,28 @@ entities: pos: -3.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16596 components: - type: Transform pos: -3.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16597 components: - type: Transform pos: -3.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16598 components: - type: Transform pos: -3.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16600 components: - type: Transform @@ -88905,7 +88656,7 @@ entities: pos: -2.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16601 components: - type: Transform @@ -88913,7 +88664,7 @@ entities: pos: -1.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16602 components: - type: Transform @@ -88921,7 +88672,7 @@ entities: pos: -0.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16603 components: - type: Transform @@ -88929,7 +88680,7 @@ entities: pos: 0.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16606 components: - type: Transform @@ -88937,7 +88688,7 @@ entities: pos: -2.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16607 components: - type: Transform @@ -88945,7 +88696,7 @@ entities: pos: -1.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16609 components: - type: Transform @@ -88953,7 +88704,7 @@ entities: pos: -0.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16610 components: - type: Transform @@ -88961,7 +88712,7 @@ entities: pos: 0.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16613 components: - type: Transform @@ -88969,7 +88720,7 @@ entities: pos: -0.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16614 components: - type: Transform @@ -88977,7 +88728,7 @@ entities: pos: -0.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16617 components: - type: Transform @@ -88985,7 +88736,7 @@ entities: pos: 1.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16618 components: - type: Transform @@ -88993,7 +88744,7 @@ entities: pos: 1.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16622 components: - type: Transform @@ -89001,7 +88752,7 @@ entities: pos: -2.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16624 components: - type: Transform @@ -89009,7 +88760,7 @@ entities: pos: -0.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16625 components: - type: Transform @@ -89017,7 +88768,7 @@ entities: pos: 1.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16626 components: - type: Transform @@ -89025,7 +88776,7 @@ entities: pos: 2.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16627 components: - type: Transform @@ -89033,7 +88784,7 @@ entities: pos: 3.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16628 components: - type: Transform @@ -89041,7 +88792,7 @@ entities: pos: 4.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16629 components: - type: Transform @@ -89049,7 +88800,7 @@ entities: pos: 2.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16630 components: - type: Transform @@ -89057,7 +88808,7 @@ entities: pos: 3.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16631 components: - type: Transform @@ -89065,35 +88816,35 @@ entities: pos: 4.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16637 components: - type: Transform pos: -3.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16638 components: - type: Transform pos: -3.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16639 components: - type: Transform pos: -3.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16640 components: - type: Transform pos: -2.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16644 components: - type: Transform @@ -89101,7 +88852,7 @@ entities: pos: 2.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16646 components: - type: Transform @@ -89109,7 +88860,7 @@ entities: pos: 1.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16649 components: - type: Transform @@ -89117,7 +88868,7 @@ entities: pos: 5.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16650 components: - type: Transform @@ -89125,7 +88876,7 @@ entities: pos: 6.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16651 components: - type: Transform @@ -89133,7 +88884,7 @@ entities: pos: 7.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16652 components: - type: Transform @@ -89141,7 +88892,7 @@ entities: pos: 8.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16653 components: - type: Transform @@ -89149,7 +88900,7 @@ entities: pos: 9.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16655 components: - type: Transform @@ -89157,7 +88908,7 @@ entities: pos: 11.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16657 components: - type: Transform @@ -89165,14 +88916,14 @@ entities: pos: 3.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16658 components: - type: Transform pos: 4.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16660 components: - type: Transform @@ -89180,7 +88931,7 @@ entities: pos: 6.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16661 components: - type: Transform @@ -89188,7 +88939,7 @@ entities: pos: 7.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16662 components: - type: Transform @@ -89196,7 +88947,7 @@ entities: pos: 8.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16663 components: - type: Transform @@ -89204,7 +88955,7 @@ entities: pos: 9.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16665 components: - type: Transform @@ -89212,7 +88963,7 @@ entities: pos: 11.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16671 components: - type: Transform @@ -89220,7 +88971,7 @@ entities: pos: 5.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16676 components: - type: Transform @@ -89228,7 +88979,7 @@ entities: pos: 5.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16677 components: - type: Transform @@ -89236,7 +88987,7 @@ entities: pos: 5.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16742 components: - type: Transform @@ -89267,7 +89018,7 @@ entities: pos: -50.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17458 components: - type: Transform @@ -89275,7 +89026,7 @@ entities: pos: -44.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17506 components: - type: Transform @@ -89283,7 +89034,7 @@ entities: pos: 18.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17507 components: - type: Transform @@ -89291,7 +89042,7 @@ entities: pos: 19.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17508 components: - type: Transform @@ -89299,7 +89050,7 @@ entities: pos: 20.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17510 components: - type: Transform @@ -89307,7 +89058,7 @@ entities: pos: 22.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17511 components: - type: Transform @@ -89315,7 +89066,7 @@ entities: pos: 23.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17512 components: - type: Transform @@ -89323,7 +89074,7 @@ entities: pos: 24.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17513 components: - type: Transform @@ -89331,7 +89082,7 @@ entities: pos: 25.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17514 components: - type: Transform @@ -89339,7 +89090,7 @@ entities: pos: 26.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17515 components: - type: Transform @@ -89347,7 +89098,7 @@ entities: pos: 27.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17516 components: - type: Transform @@ -89355,7 +89106,7 @@ entities: pos: 28.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17517 components: - type: Transform @@ -89363,7 +89114,7 @@ entities: pos: 29.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17518 components: - type: Transform @@ -89371,7 +89122,7 @@ entities: pos: 30.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17519 components: - type: Transform @@ -89379,7 +89130,7 @@ entities: pos: 31.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17520 components: - type: Transform @@ -89387,7 +89138,7 @@ entities: pos: 32.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17521 components: - type: Transform @@ -89395,7 +89146,7 @@ entities: pos: 33.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17522 components: - type: Transform @@ -89403,7 +89154,7 @@ entities: pos: 34.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17524 components: - type: Transform @@ -89411,7 +89162,7 @@ entities: pos: 36.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17526 components: - type: Transform @@ -89419,7 +89170,7 @@ entities: pos: 38.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17527 components: - type: Transform @@ -89427,7 +89178,7 @@ entities: pos: 39.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17528 components: - type: Transform @@ -89435,105 +89186,105 @@ entities: pos: 40.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17530 components: - type: Transform pos: 41.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17531 components: - type: Transform pos: 41.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17532 components: - type: Transform pos: 41.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17533 components: - type: Transform pos: 41.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17534 components: - type: Transform pos: 41.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17535 components: - type: Transform pos: 41.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17536 components: - type: Transform pos: 41.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17537 components: - type: Transform pos: 41.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17539 components: - type: Transform pos: 41.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17540 components: - type: Transform pos: 41.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17541 components: - type: Transform pos: 41.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17542 components: - type: Transform pos: 41.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17543 components: - type: Transform pos: 41.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17544 components: - type: Transform pos: 41.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17546 components: - type: Transform @@ -89541,7 +89292,7 @@ entities: pos: 40.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17547 components: - type: Transform @@ -89549,28 +89300,28 @@ entities: pos: 39.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17548 components: - type: Transform pos: 39.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17549 components: - type: Transform pos: 39.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17550 components: - type: Transform pos: 39.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17569 components: - type: Transform @@ -89578,7 +89329,7 @@ entities: pos: -37.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17571 components: - type: Transform @@ -89586,7 +89337,7 @@ entities: pos: -39.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17572 components: - type: Transform @@ -89594,7 +89345,7 @@ entities: pos: -40.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17573 components: - type: Transform @@ -89602,7 +89353,7 @@ entities: pos: -41.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17574 components: - type: Transform @@ -89616,7 +89367,7 @@ entities: pos: -37.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17576 components: - type: Transform @@ -89624,7 +89375,7 @@ entities: pos: -38.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17577 components: - type: Transform @@ -89632,7 +89383,7 @@ entities: pos: -39.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17578 components: - type: Transform @@ -89640,7 +89391,7 @@ entities: pos: -40.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17579 components: - type: Transform @@ -89653,21 +89404,21 @@ entities: pos: -43.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17582 components: - type: Transform pos: -43.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17584 components: - type: Transform pos: -41.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17588 components: - type: Transform @@ -89675,7 +89426,7 @@ entities: pos: -41.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17589 components: - type: Transform @@ -89683,7 +89434,7 @@ entities: pos: -42.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17590 components: - type: Transform @@ -89691,7 +89442,7 @@ entities: pos: -43.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17591 components: - type: Transform @@ -89699,7 +89450,7 @@ entities: pos: -45.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17592 components: - type: Transform @@ -89707,7 +89458,7 @@ entities: pos: -45.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17593 components: - type: Transform @@ -89715,7 +89466,7 @@ entities: pos: -44.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17594 components: - type: Transform @@ -89729,7 +89480,7 @@ entities: pos: -43.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17596 components: - type: Transform @@ -89737,7 +89488,7 @@ entities: pos: -44.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17597 components: - type: Transform @@ -89745,7 +89496,7 @@ entities: pos: -45.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17598 components: - type: Transform @@ -89753,7 +89504,7 @@ entities: pos: -44.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17599 components: - type: Transform @@ -89761,77 +89512,77 @@ entities: pos: -45.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17605 components: - type: Transform pos: -38.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17606 components: - type: Transform pos: -38.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17607 components: - type: Transform pos: -38.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17608 components: - type: Transform pos: -38.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17609 components: - type: Transform pos: -36.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17610 components: - type: Transform pos: -36.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17611 components: - type: Transform pos: -36.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17612 components: - type: Transform pos: -36.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17613 components: - type: Transform pos: -34.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17614 components: - type: Transform pos: -34.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17699 components: - type: Transform @@ -89839,84 +89590,84 @@ entities: pos: 23.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17711 components: - type: Transform pos: 39.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17746 components: - type: Transform pos: 39.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17747 components: - type: Transform pos: 39.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17748 components: - type: Transform pos: 39.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17842 components: - type: Transform pos: 39.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17846 components: - type: Transform pos: 39.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17847 components: - type: Transform pos: 39.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17848 components: - type: Transform pos: 39.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17849 components: - type: Transform pos: 39.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17850 components: - type: Transform pos: 39.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17862 components: - type: Transform pos: 39.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17866 components: - type: Transform @@ -89924,7 +89675,7 @@ entities: pos: 23.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17869 components: - type: Transform @@ -89932,7 +89683,7 @@ entities: pos: 23.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17880 components: - type: Transform @@ -89940,7 +89691,7 @@ entities: pos: 40.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17881 components: - type: Transform @@ -89948,7 +89699,7 @@ entities: pos: 41.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17882 components: - type: Transform @@ -89956,7 +89707,7 @@ entities: pos: 42.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17885 components: - type: Transform @@ -89964,7 +89715,7 @@ entities: pos: 43.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17886 components: - type: Transform @@ -89972,7 +89723,7 @@ entities: pos: 44.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17888 components: - type: Transform @@ -89980,7 +89731,7 @@ entities: pos: 46.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17889 components: - type: Transform @@ -89988,7 +89739,7 @@ entities: pos: 47.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17890 components: - type: Transform @@ -89996,7 +89747,7 @@ entities: pos: 48.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18097 components: - type: Transform @@ -90004,7 +89755,7 @@ entities: pos: 50.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18101 components: - type: Transform @@ -90012,7 +89763,7 @@ entities: pos: 51.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18102 components: - type: Transform @@ -90020,7 +89771,7 @@ entities: pos: 42.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18216 components: - type: Transform @@ -90028,7 +89779,7 @@ entities: pos: -2.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18218 components: - type: Transform @@ -90036,84 +89787,84 @@ entities: pos: 1.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18219 components: - type: Transform pos: 1.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18220 components: - type: Transform pos: 1.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18221 components: - type: Transform pos: 1.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18222 components: - type: Transform pos: 1.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18224 components: - type: Transform pos: 1.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18225 components: - type: Transform pos: 1.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18226 components: - type: Transform pos: 1.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18227 components: - type: Transform pos: 1.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18228 components: - type: Transform pos: 1.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18229 components: - type: Transform pos: 1.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18230 components: - type: Transform pos: -0.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18232 components: - type: Transform @@ -90121,35 +89872,35 @@ entities: pos: -0.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18233 components: - type: Transform pos: -0.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18234 components: - type: Transform pos: -0.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18235 components: - type: Transform pos: -0.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18236 components: - type: Transform pos: -0.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18237 components: - type: Transform @@ -90157,28 +89908,28 @@ entities: pos: 0.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18238 components: - type: Transform pos: -0.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18240 components: - type: Transform pos: -0.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18241 components: - type: Transform pos: -0.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18244 components: - type: Transform @@ -90186,7 +89937,7 @@ entities: pos: -1.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18245 components: - type: Transform @@ -90194,7 +89945,7 @@ entities: pos: 0.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18246 components: - type: Transform @@ -90202,7 +89953,7 @@ entities: pos: -0.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18247 components: - type: Transform @@ -90210,7 +89961,7 @@ entities: pos: -1.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18248 components: - type: Transform @@ -90218,28 +89969,28 @@ entities: pos: -2.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18251 components: - type: Transform pos: -2.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18252 components: - type: Transform pos: -2.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18253 components: - type: Transform pos: -2.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18262 components: - type: Transform @@ -90247,28 +89998,28 @@ entities: pos: -6.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18263 components: - type: Transform pos: -3.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18264 components: - type: Transform pos: -3.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18265 components: - type: Transform pos: -3.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18268 components: - type: Transform @@ -90276,7 +90027,7 @@ entities: pos: -5.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18269 components: - type: Transform @@ -90284,7 +90035,7 @@ entities: pos: -6.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18274 components: - type: Transform @@ -90292,7 +90043,7 @@ entities: pos: -2.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18275 components: - type: Transform @@ -90300,7 +90051,7 @@ entities: pos: -2.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18278 components: - type: Transform @@ -90308,7 +90059,7 @@ entities: pos: -4.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18279 components: - type: Transform @@ -90316,7 +90067,7 @@ entities: pos: -4.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18280 components: - type: Transform @@ -90324,7 +90075,7 @@ entities: pos: -3.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18417 components: - type: Transform @@ -90332,7 +90083,7 @@ entities: pos: 2.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18418 components: - type: Transform @@ -90340,7 +90091,7 @@ entities: pos: 3.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18419 components: - type: Transform @@ -90348,7 +90099,7 @@ entities: pos: 4.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18420 components: - type: Transform @@ -90356,7 +90107,7 @@ entities: pos: 1.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18421 components: - type: Transform @@ -90364,7 +90115,7 @@ entities: pos: 2.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18422 components: - type: Transform @@ -90372,7 +90123,7 @@ entities: pos: 3.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18431 components: - type: Transform @@ -90380,7 +90131,7 @@ entities: pos: -3.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18432 components: - type: Transform @@ -90388,7 +90139,7 @@ entities: pos: -3.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18433 components: - type: Transform @@ -90396,7 +90147,15 @@ entities: pos: -3.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 18464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-19.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 18502 components: - type: Transform @@ -90404,7 +90163,7 @@ entities: pos: -5.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18533 components: - type: Transform @@ -90412,7 +90171,7 @@ entities: pos: 1.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18535 components: - type: Transform @@ -90420,7 +90179,7 @@ entities: pos: 3.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18536 components: - type: Transform @@ -90428,7 +90187,7 @@ entities: pos: 4.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18537 components: - type: Transform @@ -90436,7 +90195,7 @@ entities: pos: 4.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18538 components: - type: Transform @@ -90444,7 +90203,7 @@ entities: pos: 4.5,-2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18543 components: - type: Transform @@ -90452,7 +90211,7 @@ entities: pos: 45.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18545 components: - type: Transform @@ -90460,7 +90219,7 @@ entities: pos: 46.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18551 components: - type: Transform @@ -90468,7 +90227,7 @@ entities: pos: 47.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18585 components: - type: Transform @@ -90476,7 +90235,7 @@ entities: pos: 49.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18648 components: - type: Transform @@ -90484,7 +90243,7 @@ entities: pos: 50.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18650 components: - type: Transform @@ -90492,7 +90251,7 @@ entities: pos: 45.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18651 components: - type: Transform @@ -90500,7 +90259,7 @@ entities: pos: 45.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18654 components: - type: Transform @@ -90508,7 +90267,7 @@ entities: pos: 43.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18655 components: - type: Transform @@ -90516,7 +90275,7 @@ entities: pos: 43.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18656 components: - type: Transform @@ -90524,21 +90283,21 @@ entities: pos: 43.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18660 components: - type: Transform pos: 52.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18661 components: - type: Transform pos: 52.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18665 components: - type: Transform @@ -90546,7 +90305,7 @@ entities: pos: 51.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18666 components: - type: Transform @@ -90554,7 +90313,7 @@ entities: pos: 50.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18667 components: - type: Transform @@ -90562,7 +90321,7 @@ entities: pos: 49.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18670 components: - type: Transform @@ -90570,7 +90329,7 @@ entities: pos: 51.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18672 components: - type: Transform @@ -90578,7 +90337,7 @@ entities: pos: 51.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18673 components: - type: Transform @@ -90586,7 +90345,7 @@ entities: pos: 51.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18674 components: - type: Transform @@ -90594,7 +90353,7 @@ entities: pos: 51.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18675 components: - type: Transform @@ -90602,7 +90361,7 @@ entities: pos: 51.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18680 components: - type: Transform @@ -90610,7 +90369,7 @@ entities: pos: 50.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18684 components: - type: Transform @@ -90618,7 +90377,7 @@ entities: pos: 49.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18688 components: - type: Transform @@ -90626,7 +90385,7 @@ entities: pos: 52.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18689 components: - type: Transform @@ -90634,7 +90393,7 @@ entities: pos: 52.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18690 components: - type: Transform @@ -90642,7 +90401,7 @@ entities: pos: 39.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18692 components: - type: Transform @@ -90650,7 +90409,7 @@ entities: pos: 39.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18711 components: - type: Transform @@ -90658,7 +90417,7 @@ entities: pos: 39.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18714 components: - type: Transform @@ -90666,35 +90425,35 @@ entities: pos: 38.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18715 components: - type: Transform pos: 37.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18716 components: - type: Transform pos: 37.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18718 components: - type: Transform pos: 37.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18872 components: - type: Transform pos: 48.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18892 components: - type: Transform @@ -90707,21 +90466,21 @@ entities: pos: 47.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18912 components: - type: Transform pos: 47.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18913 components: - type: Transform pos: 47.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18928 components: - type: Transform @@ -90757,7 +90516,7 @@ entities: pos: 16.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 19172 components: - type: Transform @@ -90765,7 +90524,7 @@ entities: pos: 17.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 19173 components: - type: Transform @@ -90773,7 +90532,7 @@ entities: pos: 18.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 19174 components: - type: Transform @@ -90781,7 +90540,7 @@ entities: pos: 19.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 19175 components: - type: Transform @@ -90789,7 +90548,7 @@ entities: pos: 20.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 19176 components: - type: Transform @@ -90797,7 +90556,7 @@ entities: pos: 18.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 19177 components: - type: Transform @@ -90805,7 +90564,7 @@ entities: pos: 19.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 19178 components: - type: Transform @@ -90813,7 +90572,31 @@ entities: pos: 20.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 19786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-16.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 19794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-20.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 19879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-16.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21289 components: - type: Transform @@ -90821,7 +90604,7 @@ entities: pos: -56.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21301 components: - type: Transform @@ -90829,7 +90612,7 @@ entities: pos: -57.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21302 components: - type: Transform @@ -90837,7 +90620,7 @@ entities: pos: -58.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21304 components: - type: Transform @@ -90845,7 +90628,7 @@ entities: pos: -58.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21305 components: - type: Transform @@ -90853,7 +90636,7 @@ entities: pos: -59.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21306 components: - type: Transform @@ -90861,7 +90644,7 @@ entities: pos: -60.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21307 components: - type: Transform @@ -90869,7 +90652,7 @@ entities: pos: -61.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21308 components: - type: Transform @@ -90877,7 +90660,7 @@ entities: pos: -62.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21309 components: - type: Transform @@ -90885,7 +90668,7 @@ entities: pos: -63.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21310 components: - type: Transform @@ -90893,7 +90676,7 @@ entities: pos: -64.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21311 components: - type: Transform @@ -90901,7 +90684,7 @@ entities: pos: -65.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21312 components: - type: Transform @@ -90909,7 +90692,7 @@ entities: pos: -66.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21313 components: - type: Transform @@ -90917,7 +90700,7 @@ entities: pos: -67.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21314 components: - type: Transform @@ -90925,7 +90708,7 @@ entities: pos: -68.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21315 components: - type: Transform @@ -90933,7 +90716,7 @@ entities: pos: -69.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21316 components: - type: Transform @@ -90941,7 +90724,7 @@ entities: pos: -70.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21317 components: - type: Transform @@ -90949,7 +90732,7 @@ entities: pos: -71.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21319 components: - type: Transform @@ -90957,7 +90740,7 @@ entities: pos: -73.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21320 components: - type: Transform @@ -90965,7 +90748,7 @@ entities: pos: -74.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21321 components: - type: Transform @@ -90973,7 +90756,7 @@ entities: pos: -75.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21322 components: - type: Transform @@ -90981,7 +90764,7 @@ entities: pos: -76.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21323 components: - type: Transform @@ -90989,7 +90772,7 @@ entities: pos: -77.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21324 components: - type: Transform @@ -90997,7 +90780,7 @@ entities: pos: -78.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21329 components: - type: Transform @@ -91020,6 +90803,14 @@ entities: parent: 60 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 21410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-11.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21412 components: - type: Transform @@ -91042,7 +90833,7 @@ entities: pos: -7.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21659 components: - type: Transform @@ -91050,7 +90841,7 @@ entities: pos: -23.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21660 components: - type: Transform @@ -91058,7 +90849,7 @@ entities: pos: -24.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21661 components: - type: Transform @@ -91066,7 +90857,7 @@ entities: pos: -25.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21662 components: - type: Transform @@ -91074,7 +90865,7 @@ entities: pos: -26.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21663 components: - type: Transform @@ -91082,7 +90873,7 @@ entities: pos: -27.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21664 components: - type: Transform @@ -91090,7 +90881,7 @@ entities: pos: -28.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 22790 components: - type: Transform @@ -91098,7 +90889,7 @@ entities: pos: -79.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22791 components: - type: Transform @@ -91106,7 +90897,7 @@ entities: pos: -80.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22792 components: - type: Transform @@ -91114,7 +90905,7 @@ entities: pos: -81.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22793 components: - type: Transform @@ -91122,7 +90913,7 @@ entities: pos: -82.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22794 components: - type: Transform @@ -91130,7 +90921,7 @@ entities: pos: -83.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22795 components: - type: Transform @@ -91138,7 +90929,7 @@ entities: pos: -84.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22796 components: - type: Transform @@ -91146,7 +90937,7 @@ entities: pos: -85.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22797 components: - type: Transform @@ -91154,7 +90945,7 @@ entities: pos: -86.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22798 components: - type: Transform @@ -91162,7 +90953,7 @@ entities: pos: -87.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22799 components: - type: Transform @@ -91170,7 +90961,7 @@ entities: pos: -88.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22800 components: - type: Transform @@ -91178,7 +90969,7 @@ entities: pos: -89.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22801 components: - type: Transform @@ -91186,7 +90977,7 @@ entities: pos: -90.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22802 components: - type: Transform @@ -91194,7 +90985,7 @@ entities: pos: -91.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22803 components: - type: Transform @@ -91202,7 +90993,7 @@ entities: pos: -92.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22804 components: - type: Transform @@ -91210,7 +91001,7 @@ entities: pos: -93.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22805 components: - type: Transform @@ -91218,7 +91009,7 @@ entities: pos: -94.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22806 components: - type: Transform @@ -91226,7 +91017,7 @@ entities: pos: -95.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22807 components: - type: Transform @@ -91234,7 +91025,7 @@ entities: pos: -96.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22808 components: - type: Transform @@ -91242,7 +91033,7 @@ entities: pos: -97.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22809 components: - type: Transform @@ -91250,7 +91041,7 @@ entities: pos: -98.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22811 components: - type: Transform @@ -91258,7 +91049,7 @@ entities: pos: -100.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22812 components: - type: Transform @@ -91266,7 +91057,7 @@ entities: pos: -101.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22813 components: - type: Transform @@ -91274,7 +91065,7 @@ entities: pos: -102.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22815 components: - type: Transform @@ -91282,7 +91073,7 @@ entities: pos: -104.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22816 components: - type: Transform @@ -91290,7 +91081,7 @@ entities: pos: -105.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22817 components: - type: Transform @@ -91298,7 +91089,7 @@ entities: pos: -106.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22818 components: - type: Transform @@ -91306,7 +91097,7 @@ entities: pos: -107.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22819 components: - type: Transform @@ -91314,7 +91105,7 @@ entities: pos: -108.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22820 components: - type: Transform @@ -91322,7 +91113,7 @@ entities: pos: -109.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22821 components: - type: Transform @@ -91330,7 +91121,7 @@ entities: pos: -110.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22824 components: - type: Transform @@ -91338,7 +91129,7 @@ entities: pos: -113.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22825 components: - type: Transform @@ -91346,7 +91137,7 @@ entities: pos: -114.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22826 components: - type: Transform @@ -91354,7 +91145,7 @@ entities: pos: -115.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22827 components: - type: Transform @@ -91362,7 +91153,7 @@ entities: pos: -116.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22830 components: - type: Transform @@ -91370,7 +91161,7 @@ entities: pos: -111.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22831 components: - type: Transform @@ -91378,7 +91169,7 @@ entities: pos: -111.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22832 components: - type: Transform @@ -91386,7 +91177,7 @@ entities: pos: -111.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22833 components: - type: Transform @@ -91394,7 +91185,7 @@ entities: pos: -111.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22834 components: - type: Transform @@ -91402,7 +91193,7 @@ entities: pos: -111.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22835 components: - type: Transform @@ -91410,7 +91201,7 @@ entities: pos: -111.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22836 components: - type: Transform @@ -91418,7 +91209,7 @@ entities: pos: -111.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22837 components: - type: Transform @@ -91426,7 +91217,7 @@ entities: pos: -111.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22838 components: - type: Transform @@ -91434,7 +91225,7 @@ entities: pos: -111.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22840 components: - type: Transform @@ -91442,7 +91233,7 @@ entities: pos: -111.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22841 components: - type: Transform @@ -91450,7 +91241,7 @@ entities: pos: -111.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22842 components: - type: Transform @@ -91458,7 +91249,7 @@ entities: pos: -111.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22843 components: - type: Transform @@ -91466,7 +91257,7 @@ entities: pos: -111.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22844 components: - type: Transform @@ -91474,7 +91265,7 @@ entities: pos: -111.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22845 components: - type: Transform @@ -91482,7 +91273,7 @@ entities: pos: -111.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22848 components: - type: Transform @@ -91490,7 +91281,7 @@ entities: pos: -99.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22849 components: - type: Transform @@ -91498,7 +91289,7 @@ entities: pos: -99.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22850 components: - type: Transform @@ -91506,7 +91297,7 @@ entities: pos: -99.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22851 components: - type: Transform @@ -91514,7 +91305,7 @@ entities: pos: -100.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22852 components: - type: Transform @@ -91522,91 +91313,91 @@ entities: pos: -101.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22853 components: - type: Transform pos: -102.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22854 components: - type: Transform pos: -102.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22855 components: - type: Transform pos: -102.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22856 components: - type: Transform pos: -102.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22857 components: - type: Transform pos: -102.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22858 components: - type: Transform pos: -102.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22859 components: - type: Transform pos: -102.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22860 components: - type: Transform pos: -102.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22861 components: - type: Transform pos: -102.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22862 components: - type: Transform pos: -102.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22863 components: - type: Transform pos: -102.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22864 components: - type: Transform pos: -102.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22865 components: - type: Transform @@ -91614,7 +91405,7 @@ entities: pos: -103.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22866 components: - type: Transform @@ -91622,7 +91413,7 @@ entities: pos: -104.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22867 components: - type: Transform @@ -91630,7 +91421,7 @@ entities: pos: -105.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22868 components: - type: Transform @@ -91638,7 +91429,7 @@ entities: pos: -106.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22869 components: - type: Transform @@ -91646,7 +91437,7 @@ entities: pos: -107.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22870 components: - type: Transform @@ -91654,7 +91445,7 @@ entities: pos: -108.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22871 components: - type: Transform @@ -91662,7 +91453,7 @@ entities: pos: -109.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22900 components: - type: Transform @@ -91670,35 +91461,35 @@ entities: pos: -112.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22901 components: - type: Transform pos: -113.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22902 components: - type: Transform pos: -113.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22903 components: - type: Transform pos: -113.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22904 components: - type: Transform pos: -113.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22905 components: - type: Transform @@ -91706,7 +91497,7 @@ entities: pos: -112.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22919 components: - type: Transform @@ -92776,22 +92567,22 @@ entities: rot: -1.5707963267948966 rad pos: -54.5,51.5 parent: 60 - - uid: 23924 + - uid: 23647 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-7.5 + pos: -30.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23925 + color: '#0335FCFF' + - uid: 23652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-7.5 + rot: 3.141592653589793 rad + pos: -30.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 23977 components: - type: Transform @@ -92799,7 +92590,7 @@ entities: pos: 15.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24128 components: - type: Transform @@ -92807,7 +92598,7 @@ entities: pos: -6.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24130 components: - type: Transform @@ -92815,7 +92606,7 @@ entities: pos: -7.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24131 components: - type: Transform @@ -92823,7 +92614,7 @@ entities: pos: -8.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24132 components: - type: Transform @@ -92831,7 +92622,7 @@ entities: pos: -7.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24135 components: - type: Transform @@ -92839,7 +92630,7 @@ entities: pos: -6.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24357 components: - type: Transform @@ -92847,7 +92638,7 @@ entities: pos: 46.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24750 components: - type: Transform @@ -92855,7 +92646,7 @@ entities: pos: 54.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24827 components: - type: Transform @@ -92863,7 +92654,7 @@ entities: pos: 53.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24828 components: - type: Transform @@ -92871,7 +92662,7 @@ entities: pos: 52.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24829 components: - type: Transform @@ -92879,7 +92670,7 @@ entities: pos: 51.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24830 components: - type: Transform @@ -92887,7 +92678,7 @@ entities: pos: 50.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24831 components: - type: Transform @@ -92895,7 +92686,7 @@ entities: pos: 49.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24832 components: - type: Transform @@ -92903,7 +92694,7 @@ entities: pos: 48.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24833 components: - type: Transform @@ -92911,7 +92702,7 @@ entities: pos: 47.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24835 components: - type: Transform @@ -92919,7 +92710,7 @@ entities: pos: 44.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24836 components: - type: Transform @@ -92927,7 +92718,7 @@ entities: pos: 43.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24837 components: - type: Transform @@ -92935,7 +92726,7 @@ entities: pos: 42.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24838 components: - type: Transform @@ -92943,7 +92734,7 @@ entities: pos: 46.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24839 components: - type: Transform @@ -92951,7 +92742,7 @@ entities: pos: 42.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24840 components: - type: Transform @@ -92959,7 +92750,7 @@ entities: pos: 44.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24841 components: - type: Transform @@ -92967,7 +92758,7 @@ entities: pos: 45.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24842 components: - type: Transform @@ -92975,7 +92766,7 @@ entities: pos: 46.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24843 components: - type: Transform @@ -92983,7 +92774,7 @@ entities: pos: 47.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24844 components: - type: Transform @@ -92991,7 +92782,7 @@ entities: pos: 48.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24846 components: - type: Transform @@ -92999,7 +92790,7 @@ entities: pos: 49.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24847 components: - type: Transform @@ -93007,7 +92798,7 @@ entities: pos: 50.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24848 components: - type: Transform @@ -93015,7 +92806,7 @@ entities: pos: 51.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24849 components: - type: Transform @@ -93023,7 +92814,7 @@ entities: pos: 52.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24850 components: - type: Transform @@ -93031,7 +92822,7 @@ entities: pos: 55.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24851 components: - type: Transform @@ -93039,7 +92830,7 @@ entities: pos: 55.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24852 components: - type: Transform @@ -93047,7 +92838,7 @@ entities: pos: 55.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24853 components: - type: Transform @@ -93055,7 +92846,7 @@ entities: pos: 55.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24854 components: - type: Transform @@ -93063,7 +92854,7 @@ entities: pos: 55.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24855 components: - type: Transform @@ -93071,7 +92862,7 @@ entities: pos: 55.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24856 components: - type: Transform @@ -93079,7 +92870,7 @@ entities: pos: 55.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24857 components: - type: Transform @@ -93087,7 +92878,7 @@ entities: pos: 55.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24858 components: - type: Transform @@ -93095,7 +92886,7 @@ entities: pos: 55.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24859 components: - type: Transform @@ -93103,7 +92894,7 @@ entities: pos: 55.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24860 components: - type: Transform @@ -93111,7 +92902,7 @@ entities: pos: 55.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24861 components: - type: Transform @@ -93119,7 +92910,7 @@ entities: pos: 55.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24862 components: - type: Transform @@ -93127,7 +92918,7 @@ entities: pos: 55.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24863 components: - type: Transform @@ -93135,7 +92926,7 @@ entities: pos: 55.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24864 components: - type: Transform @@ -93143,7 +92934,7 @@ entities: pos: 55.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24865 components: - type: Transform @@ -93151,7 +92942,7 @@ entities: pos: 55.5,41.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24866 components: - type: Transform @@ -93159,7 +92950,7 @@ entities: pos: 55.5,38.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24867 components: - type: Transform @@ -93167,7 +92958,7 @@ entities: pos: 55.5,43.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24868 components: - type: Transform @@ -93175,7 +92966,7 @@ entities: pos: 55.5,44.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24869 components: - type: Transform @@ -93183,7 +92974,7 @@ entities: pos: 55.5,45.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24870 components: - type: Transform @@ -93191,7 +92982,7 @@ entities: pos: 55.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24872 components: - type: Transform @@ -93199,7 +92990,7 @@ entities: pos: 53.5,44.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24873 components: - type: Transform @@ -93207,7 +92998,7 @@ entities: pos: 53.5,43.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24874 components: - type: Transform @@ -93215,7 +93006,7 @@ entities: pos: 53.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24875 components: - type: Transform @@ -93223,7 +93014,7 @@ entities: pos: 53.5,41.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24876 components: - type: Transform @@ -93231,7 +93022,7 @@ entities: pos: 53.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24877 components: - type: Transform @@ -93239,7 +93030,7 @@ entities: pos: 53.5,38.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24879 components: - type: Transform @@ -93247,7 +93038,7 @@ entities: pos: 53.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24880 components: - type: Transform @@ -93255,7 +93046,7 @@ entities: pos: 53.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24881 components: - type: Transform @@ -93263,7 +93054,7 @@ entities: pos: 53.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24882 components: - type: Transform @@ -93271,7 +93062,7 @@ entities: pos: 53.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24883 components: - type: Transform @@ -93279,7 +93070,7 @@ entities: pos: 53.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24884 components: - type: Transform @@ -93287,7 +93078,7 @@ entities: pos: 53.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24885 components: - type: Transform @@ -93295,7 +93086,7 @@ entities: pos: 53.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24886 components: - type: Transform @@ -93303,7 +93094,7 @@ entities: pos: 53.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24887 components: - type: Transform @@ -93311,7 +93102,7 @@ entities: pos: 53.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24888 components: - type: Transform @@ -93319,7 +93110,7 @@ entities: pos: 53.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24889 components: - type: Transform @@ -93327,7 +93118,7 @@ entities: pos: 53.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24890 components: - type: Transform @@ -93335,7 +93126,7 @@ entities: pos: 53.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24892 components: - type: Transform @@ -93343,7 +93134,7 @@ entities: pos: 33.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24893 components: - type: Transform @@ -93351,7 +93142,7 @@ entities: pos: 33.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24894 components: - type: Transform @@ -93359,7 +93150,7 @@ entities: pos: 33.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24895 components: - type: Transform @@ -93367,7 +93158,7 @@ entities: pos: 33.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24896 components: - type: Transform @@ -93375,7 +93166,7 @@ entities: pos: 33.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24897 components: - type: Transform @@ -93383,7 +93174,7 @@ entities: pos: 33.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24898 components: - type: Transform @@ -93391,7 +93182,7 @@ entities: pos: 33.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24899 components: - type: Transform @@ -93399,7 +93190,7 @@ entities: pos: 33.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24900 components: - type: Transform @@ -93407,7 +93198,7 @@ entities: pos: 33.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24901 components: - type: Transform @@ -93415,7 +93206,7 @@ entities: pos: 33.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24903 components: - type: Transform @@ -93423,7 +93214,7 @@ entities: pos: 33.5,38.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24904 components: - type: Transform @@ -93431,7 +93222,7 @@ entities: pos: 33.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24905 components: - type: Transform @@ -93439,7 +93230,7 @@ entities: pos: 33.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24906 components: - type: Transform @@ -93447,7 +93238,7 @@ entities: pos: 33.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24907 components: - type: Transform @@ -93455,7 +93246,7 @@ entities: pos: 33.5,41.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24908 components: - type: Transform @@ -93463,7 +93254,7 @@ entities: pos: 33.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24909 components: - type: Transform @@ -93471,7 +93262,7 @@ entities: pos: 33.5,43.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24910 components: - type: Transform @@ -93479,7 +93270,7 @@ entities: pos: 33.5,44.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24911 components: - type: Transform @@ -93487,7 +93278,7 @@ entities: pos: 35.5,44.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24912 components: - type: Transform @@ -93495,7 +93286,7 @@ entities: pos: 35.5,43.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24913 components: - type: Transform @@ -93503,7 +93294,7 @@ entities: pos: 35.5,42.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24914 components: - type: Transform @@ -93511,7 +93302,7 @@ entities: pos: 35.5,41.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24915 components: - type: Transform @@ -93519,7 +93310,7 @@ entities: pos: 35.5,40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24917 components: - type: Transform @@ -93527,7 +93318,7 @@ entities: pos: 35.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24918 components: - type: Transform @@ -93535,7 +93326,7 @@ entities: pos: 35.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24919 components: - type: Transform @@ -93543,7 +93334,7 @@ entities: pos: 35.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24920 components: - type: Transform @@ -93551,7 +93342,7 @@ entities: pos: 35.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24921 components: - type: Transform @@ -93559,7 +93350,7 @@ entities: pos: 35.5,38.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24922 components: - type: Transform @@ -93567,7 +93358,7 @@ entities: pos: 35.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24923 components: - type: Transform @@ -93575,7 +93366,7 @@ entities: pos: 35.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24924 components: - type: Transform @@ -93583,7 +93374,7 @@ entities: pos: 35.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24925 components: - type: Transform @@ -93591,7 +93382,7 @@ entities: pos: 35.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24926 components: - type: Transform @@ -93599,7 +93390,7 @@ entities: pos: 35.5,33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24927 components: - type: Transform @@ -93607,7 +93398,7 @@ entities: pos: 35.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24928 components: - type: Transform @@ -93615,7 +93406,7 @@ entities: pos: 35.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24929 components: - type: Transform @@ -93623,7 +93414,7 @@ entities: pos: 35.5,26.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24930 components: - type: Transform @@ -93631,7 +93422,7 @@ entities: pos: 35.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24931 components: - type: Transform @@ -93639,7 +93430,7 @@ entities: pos: 35.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 25169 components: - type: Transform @@ -93647,7 +93438,7 @@ entities: pos: 35.5,45.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 25170 components: - type: Transform @@ -93655,14 +93446,14 @@ entities: pos: 35.5,46.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 25171 components: - type: Transform pos: 55.5,46.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 25187 components: - type: Transform @@ -93670,7 +93461,7 @@ entities: pos: 53.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 25188 components: - type: Transform @@ -93678,7 +93469,7 @@ entities: pos: 53.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - proto: GasPipeTJunction entities: - uid: 46 @@ -93688,7 +93479,7 @@ entities: pos: -33.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 220 components: - type: Transform @@ -93696,7 +93487,7 @@ entities: pos: 23.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 306 components: - type: Transform @@ -93704,7 +93495,7 @@ entities: pos: 21.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 409 components: - type: Transform @@ -93712,7 +93503,7 @@ entities: pos: 1.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 417 components: - type: Transform @@ -93720,7 +93511,7 @@ entities: pos: -0.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 429 components: - type: Transform @@ -93728,7 +93519,7 @@ entities: pos: 45.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 474 components: - type: Transform @@ -93736,7 +93527,7 @@ entities: pos: 1.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 479 components: - type: Transform @@ -93744,7 +93535,7 @@ entities: pos: -0.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 499 components: - type: Transform @@ -93752,51 +93543,51 @@ entities: pos: -14.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 508 components: - type: Transform pos: 3.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 511 components: - type: Transform pos: -3.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 617 + color: '#0335FCFF' + - uid: 795 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-22.5 + rot: 1.5707963267948966 rad + pos: -38.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 795 + color: '#FF1212FF' + - uid: 840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-4.5 + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 877 components: - type: Transform pos: -4.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 878 components: - type: Transform pos: -8.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 887 components: - type: Transform @@ -93804,14 +93595,14 @@ entities: pos: -10.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 896 components: - type: Transform pos: -9.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 953 components: - type: Transform @@ -93819,7 +93610,7 @@ entities: pos: -36.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 960 components: - type: Transform @@ -93827,21 +93618,21 @@ entities: pos: -9.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1036 components: - type: Transform pos: 11.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1043 components: - type: Transform pos: 7.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1045 components: - type: Transform @@ -93849,7 +93640,7 @@ entities: pos: 15.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1047 components: - type: Transform @@ -93857,14 +93648,14 @@ entities: pos: 12.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1051 components: - type: Transform pos: 16.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1052 components: - type: Transform @@ -93872,7 +93663,7 @@ entities: pos: 17.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1059 components: - type: Transform @@ -93880,7 +93671,7 @@ entities: pos: 17.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1061 components: - type: Transform @@ -93888,7 +93679,7 @@ entities: pos: 15.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1066 components: - type: Transform @@ -93896,7 +93687,7 @@ entities: pos: 9.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1077 components: - type: Transform @@ -93904,7 +93695,7 @@ entities: pos: 17.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1079 components: - type: Transform @@ -93912,7 +93703,7 @@ entities: pos: 15.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1096 components: - type: Transform @@ -93920,7 +93711,7 @@ entities: pos: 15.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1114 components: - type: Transform @@ -93928,7 +93719,7 @@ entities: pos: -14.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1115 components: - type: Transform @@ -93936,22 +93727,14 @@ entities: pos: -16.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1116 components: - type: Transform pos: -24.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-19.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1128 components: - type: Transform @@ -93959,7 +93742,7 @@ entities: pos: -16.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1148 components: - type: Transform @@ -93967,7 +93750,7 @@ entities: pos: -14.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1150 components: - type: Transform @@ -93975,37 +93758,14 @@ entities: pos: -16.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1217 - components: - - type: Transform - pos: -14.5,9.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,7.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 1226 components: - type: Transform pos: -10.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1229 components: - type: Transform @@ -94013,21 +93773,21 @@ entities: pos: -8.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1259 components: - type: Transform pos: 13.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1262 components: - type: Transform pos: 10.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1265 components: - type: Transform @@ -94035,14 +93795,14 @@ entities: pos: 12.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1269 components: - type: Transform pos: 9.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1273 components: - type: Transform @@ -94050,7 +93810,7 @@ entities: pos: 15.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1275 components: - type: Transform @@ -94058,7 +93818,7 @@ entities: pos: 15.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1276 components: - type: Transform @@ -94066,7 +93826,7 @@ entities: pos: 17.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1410 components: - type: Transform @@ -94074,7 +93834,7 @@ entities: pos: 3.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1417 components: - type: Transform @@ -94082,7 +93842,7 @@ entities: pos: -0.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1419 components: - type: Transform @@ -94090,7 +93850,7 @@ entities: pos: 1.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1498 components: - type: Transform @@ -94098,67 +93858,52 @@ entities: pos: -19.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1510 - components: - - type: Transform - pos: -20.5,-22.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1529 + color: '#FF1212FF' + - uid: 1579 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-5.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-18.5 + pos: -18.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1608 components: - type: Transform pos: -29.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1610 components: - type: Transform pos: -23.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1658 + color: '#0335FCFF' + - uid: 1665 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,-13.5 + pos: -21.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1668 + color: '#FF1212FF' + - uid: 1708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-16.5 + rot: -1.5707963267948966 rad + pos: -34.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 1714 components: - type: Transform pos: -28.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1715 components: - type: Transform @@ -94166,130 +93911,93 @@ entities: pos: -30.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1756 - components: - - type: Transform - pos: -22.5,9.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1768 - components: - - type: Transform - pos: -25.5,-14.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,7.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1781 + color: '#FF1212FF' + - uid: 1719 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-19.5 + pos: -22.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1813 + color: '#0335FCFF' + - uid: 1727 components: - type: Transform - pos: -26.5,-2.5 + rot: -1.5707963267948966 rad + pos: -32.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1822 + color: '#0335FCFF' + - uid: 1756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-10.5 + pos: -22.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1845 + color: '#FF1212FF' + - uid: 1775 components: - type: Transform - pos: -27.5,-15.5 + rot: 3.141592653589793 rad + pos: -20.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1848 + color: '#0335FCFF' + - uid: 1781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-6.5 + rot: 3.141592653589793 rad + pos: -25.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1927 + color: '#FF1212FF' + - uid: 1785 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-12.5 + pos: -28.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1928 + color: '#0335FCFF' + - uid: 1814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-9.5 + rot: 3.141592653589793 rad + pos: -33.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1933 + color: '#FF1212FF' + - uid: 1820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-5.5 + pos: -15.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1947 + color: '#FF1212FF' + - uid: 1830 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-12.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1960 - components: - - type: Transform - pos: -26.5,-14.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1972 + color: '#0335FCFF' + - uid: 1834 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-10.5 + rot: -1.5707963267948966 rad + pos: -30.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1982 + color: '#0335FCFF' + - uid: 1848 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-13.5 + rot: -1.5707963267948966 rad + pos: -36.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1994 components: - type: Transform @@ -94297,15 +94005,15 @@ entities: pos: -36.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2090 + color: '#0335FCFF' + - uid: 2105 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-15.5 + rot: 1.5707963267948966 rad + pos: -30.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2127 components: - type: Transform @@ -94313,7 +94021,15 @@ entities: pos: -26.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 2182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-15.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 2276 components: - type: Transform @@ -94321,7 +94037,7 @@ entities: pos: 32.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2358 components: - type: Transform @@ -94329,7 +94045,7 @@ entities: pos: 32.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2359 components: - type: Transform @@ -94337,21 +94053,21 @@ entities: pos: 30.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2377 components: - type: Transform pos: 24.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2380 components: - type: Transform pos: 25.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2473 components: - type: Transform @@ -94359,21 +94075,21 @@ entities: pos: 23.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2481 components: - type: Transform pos: 30.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2482 components: - type: Transform pos: 32.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2486 components: - type: Transform @@ -94381,7 +94097,7 @@ entities: pos: 34.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2498 components: - type: Transform @@ -94389,7 +94105,7 @@ entities: pos: 29.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2499 components: - type: Transform @@ -94397,7 +94113,7 @@ entities: pos: 33.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2537 components: - type: Transform @@ -94405,14 +94121,22 @@ entities: pos: 32.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 2578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 2693 components: - type: Transform pos: 40.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2694 components: - type: Transform @@ -94420,7 +94144,7 @@ entities: pos: 40.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2799 components: - type: Transform @@ -94428,7 +94152,7 @@ entities: pos: 19.5,-33.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2802 components: - type: Transform @@ -94436,7 +94160,7 @@ entities: pos: 17.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2812 components: - type: Transform @@ -94444,7 +94168,7 @@ entities: pos: 17.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2869 components: - type: Transform @@ -94452,7 +94176,7 @@ entities: pos: 44.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2881 components: - type: Transform @@ -94460,7 +94184,7 @@ entities: pos: 35.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2902 components: - type: Transform @@ -94468,7 +94192,7 @@ entities: pos: 44.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2981 components: - type: Transform @@ -94484,7 +94208,7 @@ entities: pos: 45.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2989 components: - type: Transform @@ -94492,7 +94216,7 @@ entities: pos: 44.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3001 components: - type: Transform @@ -94508,7 +94232,7 @@ entities: pos: 44.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3121 components: - type: Transform @@ -94523,7 +94247,7 @@ entities: pos: 47.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3189 components: - type: Transform @@ -94531,15 +94255,7 @@ entities: pos: 33.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-2.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3205 components: - type: Transform @@ -94547,7 +94263,7 @@ entities: pos: 45.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3209 components: - type: Transform @@ -94570,15 +94286,7 @@ entities: pos: 45.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-4.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#0335FCFF' - uid: 3367 components: - type: Transform @@ -94586,7 +94294,7 @@ entities: pos: -3.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3573 components: - type: Transform @@ -94594,7 +94302,7 @@ entities: pos: 45.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3915 components: - type: Transform @@ -94602,7 +94310,7 @@ entities: pos: 1.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3918 components: - type: Transform @@ -94610,7 +94318,7 @@ entities: pos: -0.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3920 components: - type: Transform @@ -94618,7 +94326,7 @@ entities: pos: -0.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3924 components: - type: Transform @@ -94626,7 +94334,7 @@ entities: pos: 1.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3929 components: - type: Transform @@ -94634,7 +94342,7 @@ entities: pos: 1.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3930 components: - type: Transform @@ -94642,7 +94350,7 @@ entities: pos: 1.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3950 components: - type: Transform @@ -94650,7 +94358,7 @@ entities: pos: -8.5,-42.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3984 components: - type: Transform @@ -94658,7 +94366,7 @@ entities: pos: -0.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3998 components: - type: Transform @@ -94666,7 +94374,7 @@ entities: pos: -54.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4110 components: - type: Transform @@ -94674,7 +94382,7 @@ entities: pos: 34.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4117 components: - type: Transform @@ -94682,7 +94390,7 @@ entities: pos: 45.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4123 components: - type: Transform @@ -94690,7 +94398,7 @@ entities: pos: 33.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4146 components: - type: Transform @@ -94698,7 +94406,7 @@ entities: pos: 33.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4154 components: - type: Transform @@ -94706,14 +94414,22 @@ entities: pos: 34.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 4220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-11.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4336 components: - type: Transform pos: 39.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4354 components: - type: Transform @@ -94721,7 +94437,7 @@ entities: pos: 39.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4483 components: - type: Transform @@ -94729,14 +94445,14 @@ entities: pos: 34.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4541 components: - type: Transform pos: -4.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4630 components: - type: Transform @@ -94744,7 +94460,7 @@ entities: pos: -0.5,-61.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4834 components: - type: Transform @@ -94752,7 +94468,7 @@ entities: pos: -0.5,-47.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4835 components: - type: Transform @@ -94760,7 +94476,7 @@ entities: pos: 1.5,-48.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4915 components: - type: Transform @@ -94768,7 +94484,7 @@ entities: pos: 1.5,-72.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4965 components: - type: Transform @@ -94776,7 +94492,7 @@ entities: pos: 1.5,-61.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4990 components: - type: Transform @@ -94784,15 +94500,15 @@ entities: pos: -0.5,-72.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5473 + color: '#FF1212FF' + - uid: 5472 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,7.5 + pos: -27.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5476 components: - type: Transform @@ -94800,7 +94516,7 @@ entities: pos: -38.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5532 components: - type: Transform @@ -94808,7 +94524,15 @@ entities: pos: 17.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 5562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,0.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 5583 components: - type: Transform @@ -94822,7 +94546,7 @@ entities: pos: -0.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5730 components: - type: Transform @@ -94830,7 +94554,7 @@ entities: pos: 1.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5733 components: - type: Transform @@ -94838,7 +94562,7 @@ entities: pos: -0.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5736 components: - type: Transform @@ -94846,7 +94570,7 @@ entities: pos: 1.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5746 components: - type: Transform @@ -94854,14 +94578,7 @@ entities: pos: -9.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5758 - components: - - type: Transform - pos: -14.5,7.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5765 components: - type: Transform @@ -94869,14 +94586,14 @@ entities: pos: 16.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5817 components: - type: Transform pos: 18.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5829 components: - type: Transform @@ -94884,7 +94601,7 @@ entities: pos: 34.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5847 components: - type: Transform @@ -94892,7 +94609,7 @@ entities: pos: 1.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5865 components: - type: Transform @@ -94900,21 +94617,21 @@ entities: pos: -36.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5890 components: - type: Transform pos: 12.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5891 components: - type: Transform pos: -36.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5892 components: - type: Transform @@ -94922,7 +94639,7 @@ entities: pos: -28.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5921 components: - type: Transform @@ -94930,7 +94647,7 @@ entities: pos: 30.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5922 components: - type: Transform @@ -94938,29 +94655,29 @@ entities: pos: 32.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5942 components: - type: Transform pos: -37.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5947 + color: '#0335FCFF' + - uid: 5953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,4.5 + pos: -37.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5953 + color: '#0335FCFF' + - uid: 5971 components: - type: Transform - pos: -37.5,-12.5 + rot: -1.5707963267948966 rad + pos: -30.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6005 components: - type: Transform @@ -94968,7 +94685,7 @@ entities: pos: -41.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6008 components: - type: Transform @@ -94976,7 +94693,7 @@ entities: pos: -38.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6012 components: - type: Transform @@ -94984,14 +94701,14 @@ entities: pos: -36.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6020 components: - type: Transform pos: -49.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6024 components: - type: Transform @@ -94999,7 +94716,7 @@ entities: pos: -44.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6026 components: - type: Transform @@ -95007,14 +94724,14 @@ entities: pos: -42.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6037 components: - type: Transform pos: -42.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6109 components: - type: Transform @@ -95022,7 +94739,7 @@ entities: pos: -49.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6120 components: - type: Transform @@ -95030,14 +94747,14 @@ entities: pos: -49.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6214 components: - type: Transform pos: 0.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6278 components: - type: Transform @@ -95045,7 +94762,7 @@ entities: pos: 15.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6280 components: - type: Transform @@ -95053,7 +94770,7 @@ entities: pos: 15.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6282 components: - type: Transform @@ -95061,42 +94778,43 @@ entities: pos: 15.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6365 + color: '#0335FCFF' + - uid: 6333 components: - type: Transform - pos: -31.5,-7.5 + rot: 3.141592653589793 rad + pos: -18.5,-24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 6380 components: - type: Transform pos: -41.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6426 components: - type: Transform pos: 0.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6660 components: - type: Transform pos: -42.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6662 components: - type: Transform pos: -42.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6810 components: - type: Transform @@ -95104,15 +94822,31 @@ entities: pos: 17.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6825 + color: '#FF1212FF' + - uid: 7285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-18.5 + rot: 1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' + - uid: 7603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7682 components: - type: Transform @@ -95120,7 +94854,7 @@ entities: pos: -38.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7683 components: - type: Transform @@ -95128,7 +94862,23 @@ entities: pos: -38.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 7902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-7.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 8079 components: - type: Transform @@ -95151,109 +94901,108 @@ entities: pos: -36.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8224 components: - type: Transform pos: -31.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8226 + color: '#FF1212FF' + - uid: 8228 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-20.5 + pos: -21.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8227 + color: '#FF1212FF' + - uid: 8241 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-19.5 + rot: -1.5707963267948966 rad + pos: -36.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8233 + color: '#0335FCFF' + - uid: 8245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-8.5 + pos: -24.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8241 + color: '#FF1212FF' + - uid: 8248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,8.5 + rot: 1.5707963267948966 rad + pos: -20.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8537 + color: '#0335FCFF' + - uid: 8260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,19.5 + rot: 3.141592653589793 rad + pos: -37.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8548 + color: '#0335FCFF' + - uid: 8353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,24.5 + rot: -1.5707963267948966 rad + pos: -44.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8580 + color: '#0335FCFF' + - uid: 8537 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-15.5 + pos: 15.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8715 + color: '#0335FCFF' + - uid: 8548 components: - type: Transform - pos: -27.5,-7.5 + rot: 1.5707963267948966 rad + pos: 15.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8722 + color: '#0335FCFF' + - uid: 8570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-6.5 + rot: 3.141592653589793 rad + pos: -45.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8735 + color: '#0335FCFF' + - uid: 8884 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-6.5 + pos: 23.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8790 + color: '#FF1212FF' + - uid: 8941 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-5.5 + pos: -42.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8884 + color: '#FF1212FF' + - uid: 9148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-23.5 + rot: 3.141592653589793 rad + pos: -19.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9233 components: - type: Transform @@ -95261,7 +95010,7 @@ entities: pos: 17.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9455 components: - type: Transform @@ -95269,21 +95018,21 @@ entities: pos: -55.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9458 components: - type: Transform pos: -52.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9637 components: - type: Transform pos: -55.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 11153 components: - type: Transform @@ -95291,14 +95040,14 @@ entities: pos: 41.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 11722 components: - type: Transform pos: 42.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 11734 components: - type: Transform @@ -95306,7 +95055,7 @@ entities: pos: 15.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 11761 components: - type: Transform @@ -95314,7 +95063,7 @@ entities: pos: 17.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12196 components: - type: Transform @@ -95338,7 +95087,7 @@ entities: pos: 39.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12626 components: - type: Transform @@ -95346,7 +95095,7 @@ entities: pos: 38.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12744 components: - type: Transform @@ -95354,28 +95103,28 @@ entities: pos: 49.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13113 components: - type: Transform pos: 48.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13245 components: - type: Transform pos: 23.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13443 components: - type: Transform pos: -21.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13447 components: - type: Transform @@ -95383,7 +95132,7 @@ entities: pos: -21.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13448 components: - type: Transform @@ -95391,14 +95140,14 @@ entities: pos: -21.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13504 components: - type: Transform pos: 47.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13534 components: - type: Transform @@ -95406,14 +95155,14 @@ entities: pos: 43.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13546 components: - type: Transform pos: 21.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13612 components: - type: Transform @@ -95421,7 +95170,7 @@ entities: pos: 31.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13673 components: - type: Transform @@ -95429,7 +95178,7 @@ entities: pos: -8.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13808 components: - type: Transform @@ -95437,56 +95186,56 @@ entities: pos: 38.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13914 components: - type: Transform pos: 49.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14015 components: - type: Transform pos: 32.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14021 components: - type: Transform pos: 38.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14022 components: - type: Transform pos: 17.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14029 components: - type: Transform pos: 36.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14044 components: - type: Transform pos: 22.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14047 components: - type: Transform pos: 39.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14237 components: - type: Transform @@ -95494,7 +95243,7 @@ entities: pos: -16.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14251 components: - type: Transform @@ -95502,7 +95251,7 @@ entities: pos: -16.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14259 components: - type: Transform @@ -95510,21 +95259,21 @@ entities: pos: -16.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14270 components: - type: Transform pos: -26.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14274 components: - type: Transform pos: -36.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14280 components: - type: Transform @@ -95532,7 +95281,7 @@ entities: pos: -22.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14293 components: - type: Transform @@ -95540,14 +95289,14 @@ entities: pos: -11.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14295 components: - type: Transform pos: -9.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14308 components: - type: Transform @@ -95555,7 +95304,7 @@ entities: pos: -11.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14313 components: - type: Transform @@ -95563,7 +95312,7 @@ entities: pos: -8.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14468 components: - type: Transform @@ -95571,7 +95320,7 @@ entities: pos: -23.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14478 components: - type: Transform @@ -95579,7 +95328,7 @@ entities: pos: -24.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14490 components: - type: Transform @@ -95587,7 +95336,7 @@ entities: pos: -26.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14491 components: - type: Transform @@ -95595,7 +95344,7 @@ entities: pos: -27.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14492 components: - type: Transform @@ -95603,7 +95352,7 @@ entities: pos: -24.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14496 components: - type: Transform @@ -95611,7 +95360,7 @@ entities: pos: -23.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14735 components: - type: Transform @@ -95619,7 +95368,7 @@ entities: pos: -22.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14736 components: - type: Transform @@ -95632,7 +95381,7 @@ entities: pos: -29.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14746 components: - type: Transform @@ -95640,7 +95389,7 @@ entities: pos: -25.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14750 components: - type: Transform @@ -95648,7 +95397,7 @@ entities: pos: -22.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14751 components: - type: Transform @@ -95656,7 +95405,7 @@ entities: pos: -16.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14753 components: - type: Transform @@ -95664,7 +95413,7 @@ entities: pos: -20.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14763 components: - type: Transform @@ -95672,28 +95421,28 @@ entities: pos: -20.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14800 components: - type: Transform pos: -34.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14827 components: - type: Transform pos: -20.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14866 components: - type: Transform pos: -24.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14880 components: - type: Transform @@ -95723,7 +95472,7 @@ entities: pos: -16.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15138 components: - type: Transform @@ -95739,7 +95488,7 @@ entities: pos: -32.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15164 components: - type: Transform @@ -95873,14 +95622,14 @@ entities: pos: -11.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15605 components: - type: Transform pos: -21.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15617 components: - type: Transform @@ -95888,7 +95637,7 @@ entities: pos: -18.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15621 components: - type: Transform @@ -95896,7 +95645,7 @@ entities: pos: -14.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15626 components: - type: Transform @@ -95904,7 +95653,7 @@ entities: pos: -10.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15635 components: - type: Transform @@ -95912,7 +95661,7 @@ entities: pos: -12.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15637 components: - type: Transform @@ -95920,7 +95669,7 @@ entities: pos: -10.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15647 components: - type: Transform @@ -95928,7 +95677,7 @@ entities: pos: -12.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15661 components: - type: Transform @@ -95936,7 +95685,7 @@ entities: pos: -0.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15664 components: - type: Transform @@ -95944,14 +95693,14 @@ entities: pos: -3.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16563 components: - type: Transform pos: -2.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16571 components: - type: Transform @@ -95959,7 +95708,7 @@ entities: pos: -2.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16576 components: - type: Transform @@ -95967,14 +95716,14 @@ entities: pos: -3.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16580 components: - type: Transform pos: -0.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16581 components: - type: Transform @@ -95982,14 +95731,14 @@ entities: pos: -2.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16582 components: - type: Transform pos: -3.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16594 components: - type: Transform @@ -95997,7 +95746,7 @@ entities: pos: -3.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16599 components: - type: Transform @@ -96005,7 +95754,7 @@ entities: pos: -2.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16608 components: - type: Transform @@ -96013,7 +95762,7 @@ entities: pos: -0.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16612 components: - type: Transform @@ -96021,7 +95770,7 @@ entities: pos: -1.5,27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16632 components: - type: Transform @@ -96029,28 +95778,28 @@ entities: pos: 1.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16645 components: - type: Transform pos: 1.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16647 components: - type: Transform pos: 5.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16648 components: - type: Transform pos: 4.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16654 components: - type: Transform @@ -96058,14 +95807,14 @@ entities: pos: 10.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16656 components: - type: Transform pos: 2.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16659 components: - type: Transform @@ -96073,7 +95822,7 @@ entities: pos: 3.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16664 components: - type: Transform @@ -96081,7 +95830,7 @@ entities: pos: 10.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16971 components: - type: Transform @@ -96097,7 +95846,7 @@ entities: pos: 37.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17525 components: - type: Transform @@ -96105,14 +95854,14 @@ entities: pos: 21.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17529 components: - type: Transform pos: 41.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17538 components: - type: Transform @@ -96120,28 +95869,28 @@ entities: pos: 39.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17570 components: - type: Transform pos: -38.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17580 components: - type: Transform pos: -43.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17583 components: - type: Transform pos: -30.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17585 components: - type: Transform @@ -96149,7 +95898,7 @@ entities: pos: -31.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17629 components: - type: Transform @@ -96157,7 +95906,7 @@ entities: pos: 22.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17841 components: - type: Transform @@ -96165,7 +95914,7 @@ entities: pos: 41.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18067 components: - type: Transform @@ -96179,7 +95928,7 @@ entities: pos: -0.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18223 components: - type: Transform @@ -96187,28 +95936,28 @@ entities: pos: -0.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18242 components: - type: Transform pos: 1.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18243 components: - type: Transform pos: -0.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18255 components: - type: Transform pos: -3.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18256 components: - type: Transform @@ -96216,7 +95965,7 @@ entities: pos: -3.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18424 components: - type: Transform @@ -96224,7 +95973,7 @@ entities: pos: -0.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18440 components: - type: Transform @@ -96232,7 +95981,15 @@ entities: pos: 44.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 18504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 18531 components: - type: Transform @@ -96240,7 +95997,7 @@ entities: pos: 2.5,0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18649 components: - type: Transform @@ -96248,7 +96005,7 @@ entities: pos: 51.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18659 components: - type: Transform @@ -96256,21 +96013,21 @@ entities: pos: 52.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18662 components: - type: Transform pos: 52.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18669 components: - type: Transform pos: 51.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18717 components: - type: Transform @@ -96278,7 +96035,7 @@ entities: pos: 37.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21168 components: - type: Transform @@ -96286,7 +96043,7 @@ entities: pos: -16.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21318 components: - type: Transform @@ -96294,7 +96051,15 @@ entities: pos: -72.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 21408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-7.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21416 components: - type: Transform @@ -96334,7 +96099,7 @@ entities: pos: -29.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 22810 components: - type: Transform @@ -96342,28 +96107,28 @@ entities: pos: -99.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22814 components: - type: Transform pos: -103.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22823 components: - type: Transform pos: -112.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22828 components: - type: Transform pos: -117.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22839 components: - type: Transform @@ -96371,7 +96136,7 @@ entities: pos: -111.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22847 components: - type: Transform @@ -96379,7 +96144,7 @@ entities: pos: -99.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22883 components: - type: Transform @@ -96387,7 +96152,7 @@ entities: pos: -118.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22892 components: - type: Transform @@ -96395,7 +96160,7 @@ entities: pos: -111.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22930 components: - type: Transform @@ -96488,7 +96253,7 @@ entities: pos: -6.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24658 components: - type: Transform @@ -96496,7 +96261,7 @@ entities: pos: -1.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24748 components: - type: Transform @@ -96504,7 +96269,7 @@ entities: pos: 55.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24749 components: - type: Transform @@ -96512,14 +96277,14 @@ entities: pos: 53.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24845 components: - type: Transform pos: 43.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24871 components: - type: Transform @@ -96527,7 +96292,7 @@ entities: pos: 55.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24916 components: - type: Transform @@ -96535,7 +96300,7 @@ entities: pos: 35.5,39.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 25168 components: - type: Transform @@ -96543,7 +96308,7 @@ entities: pos: 33.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 25172 components: - type: Transform @@ -96551,7 +96316,7 @@ entities: pos: 53.5,37.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 25182 components: - type: Transform @@ -96559,7 +96324,7 @@ entities: pos: 45.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - proto: GasPort entities: - uid: 111 @@ -96636,14 +96401,14 @@ entities: pos: -16.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14721 components: - type: Transform pos: -15.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15005 components: - type: Transform @@ -96692,7 +96457,7 @@ entities: pos: -8.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21667 components: - type: Transform @@ -96700,7 +96465,7 @@ entities: pos: -30.5,34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21668 components: - type: Transform @@ -96708,7 +96473,7 @@ entities: pos: -30.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21673 components: - type: Transform @@ -96775,7 +96540,7 @@ entities: pos: 48.5,-22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8074 components: - type: Transform @@ -96826,7 +96591,7 @@ entities: pos: -33.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14774 components: - type: Transform @@ -96898,7 +96663,7 @@ entities: pos: -34.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15143 components: - type: Transform @@ -96906,7 +96671,7 @@ entities: pos: -34.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15281 components: - type: Transform @@ -96938,21 +96703,21 @@ entities: pos: -20.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22884 components: - type: Transform pos: -119.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22885 components: - type: Transform pos: -118.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 23049 components: - type: Transform @@ -97143,7 +96908,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14837 components: - type: Transform @@ -97186,7 +96951,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15345 components: - type: Transform @@ -97248,21 +97013,32 @@ entities: pos: -9.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 114 components: - type: Transform pos: 49.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-20.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 8483 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 127 components: - type: Transform pos: 20.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 179 components: - type: Transform @@ -97270,7 +97046,7 @@ entities: pos: 20.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 275 components: - type: Transform @@ -97278,7 +97054,7 @@ entities: pos: 21.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 426 components: - type: Transform @@ -97286,7 +97062,7 @@ entities: pos: 0.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 482 components: - type: Transform @@ -97294,23 +97070,41 @@ entities: pos: 0.5,-25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 792 + color: '#0335FCFF' + - uid: 777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-20.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 148 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 778 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-5.5 + pos: -33.5,-18.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 231 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 856 + color: '#0335FCFF' + - uid: 792 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-16.5 + pos: -15.5,-5.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 1960 + - 4709 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 910 components: - type: Transform @@ -97318,15 +97112,18 @@ entities: pos: -3.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 928 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-23.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 57 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 946 components: - type: Transform @@ -97334,15 +97131,18 @@ entities: pos: -48.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1133 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-13.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 4709 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1385 components: - type: Transform @@ -97358,7 +97158,7 @@ entities: pos: 5.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1429 components: - type: Transform @@ -97366,7 +97166,7 @@ entities: pos: 0.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1455 components: - type: Transform @@ -97374,103 +97174,115 @@ entities: pos: 11.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1511 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-23.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 57 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1651 + color: '#0335FCFF' + - uid: 1660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-7.5 + pos: -37.5,-20.5 parent: 60 - type: DeviceNetwork deviceLists: - - 249 + - 21507 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1652 + color: '#0335FCFF' + - uid: 1682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-10.5 + pos: -44.5,-18.5 parent: 60 - type: DeviceNetwork deviceLists: - - 249 + - 8516 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1665 + color: '#0335FCFF' + - uid: 1731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-13.5 + rot: -1.5707963267948966 rad + pos: -19.5,-5.5 parent: 60 - - type: DeviceNetwork - deviceLists: - - 249 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1669 + color: '#0335FCFF' + - uid: 1780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-7.5 + pos: -20.5,8.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-13.5 parent: 60 - type: DeviceNetwork deviceLists: - - 249 + - 21612 + - 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1682 + color: '#0335FCFF' + - uid: 1845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-10.5 + rot: -1.5707963267948966 rad + pos: -27.5,-10.5 parent: 60 - type: DeviceNetwork deviceLists: - - 249 + - 5933 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1780 + color: '#0335FCFF' + - uid: 1966 components: - type: Transform - pos: -20.5,8.5 + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 148 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1787 + color: '#0335FCFF' + - uid: 1971 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-13.5 + rot: 1.5707963267948966 rad + pos: -32.5,-14.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 231 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1838 + color: '#0335FCFF' + - uid: 1983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-13.5 + pos: -28.5,-4.5 parent: 60 - type: DeviceNetwork deviceLists: - - 249 + - 178 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 1996 components: - type: Transform pos: -33.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2027 components: - type: Transform @@ -97478,7 +97290,7 @@ entities: pos: -22.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2208 components: - type: Transform @@ -97486,7 +97298,7 @@ entities: pos: 34.5,-36.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2215 components: - type: Transform @@ -97494,7 +97306,7 @@ entities: pos: 34.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2370 components: - type: Transform @@ -97502,7 +97314,7 @@ entities: pos: 24.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2371 components: - type: Transform @@ -97510,7 +97322,7 @@ entities: pos: 25.5,-26.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2560 components: - type: Transform @@ -97518,7 +97330,7 @@ entities: pos: 31.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2706 components: - type: Transform @@ -97526,18 +97338,7 @@ entities: pos: 18.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-2.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 8791 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2826 components: - type: Transform @@ -97545,18 +97346,7 @@ entities: pos: 44.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,4.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 8669 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 2984 components: - type: Transform @@ -97564,7 +97354,7 @@ entities: pos: 47.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3002 components: - type: Transform @@ -97580,16 +97370,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#D3FC03FF' - - uid: 3197 - components: - - type: Transform - pos: -27.5,0.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 8271 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3567 components: - type: Transform @@ -97597,7 +97377,7 @@ entities: pos: 45.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3692 components: - type: Transform @@ -97605,21 +97385,21 @@ entities: pos: 16.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3964 components: - type: Transform pos: -13.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3965 components: - type: Transform pos: -8.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 3986 components: - type: Transform @@ -97627,7 +97407,7 @@ entities: pos: 0.5,-40.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4537 components: - type: Transform @@ -97635,7 +97415,7 @@ entities: pos: -2.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 4953 components: - type: Transform @@ -97643,25 +97423,25 @@ entities: pos: 0.5,-48.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5412 + color: '#0335FCFF' + - uid: 5364 components: - type: Transform - pos: 12.5,8.5 + rot: -1.5707963267948966 rad + pos: -26.5,-16.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 3204 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5425 + color: '#0335FCFF' + - uid: 5412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,1.5 + pos: 12.5,8.5 parent: 60 - - type: DeviceNetwork - deviceLists: - - 8260 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5439 components: - type: Transform @@ -97669,7 +97449,7 @@ entities: pos: 43.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5445 components: - type: Transform @@ -97677,22 +97457,14 @@ entities: pos: 29.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5446 components: - type: Transform pos: 33.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5472 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,8.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5518 components: - type: Transform @@ -97700,14 +97472,14 @@ entities: pos: 39.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5585 components: - type: Transform pos: -44.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5739 components: - type: Transform @@ -97715,7 +97487,7 @@ entities: pos: 2.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5822 components: - type: Transform @@ -97723,7 +97495,7 @@ entities: pos: 17.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5824 components: - type: Transform @@ -97731,7 +97503,7 @@ entities: pos: 34.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5843 components: - type: Transform @@ -97739,7 +97511,7 @@ entities: pos: 0.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5929 components: - type: Transform @@ -97747,7 +97519,7 @@ entities: pos: -28.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5938 components: - type: Transform @@ -97755,7 +97527,7 @@ entities: pos: -52.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5951 components: - type: Transform @@ -97763,15 +97535,19 @@ entities: pos: -41.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5952 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-6.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21612 + - 12 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5954 components: - type: Transform @@ -97779,7 +97555,7 @@ entities: pos: 10.5,-16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5955 components: - type: Transform @@ -97787,7 +97563,7 @@ entities: pos: 12.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5956 components: - type: Transform @@ -97795,7 +97571,7 @@ entities: pos: 11.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5980 components: - type: Transform @@ -97803,14 +97579,14 @@ entities: pos: -43.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5987 components: - type: Transform pos: -43.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 5990 components: - type: Transform @@ -97818,7 +97594,7 @@ entities: pos: -34.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6002 components: - type: Transform @@ -97826,29 +97602,21 @@ entities: pos: -29.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6032 components: - type: Transform pos: -52.5,4.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6087 - components: - - type: Transform - pos: -19.5,-19.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6093 + color: '#0335FCFF' + - uid: 6203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-21.5 + pos: -22.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6300 components: - type: Transform @@ -97856,18 +97624,7 @@ entities: pos: 11.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-9.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 249 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6417 components: - type: Transform @@ -97875,7 +97632,7 @@ entities: pos: 2.5,-61.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6418 components: - type: Transform @@ -97883,29 +97640,7 @@ entities: pos: 2.5,-72.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-19.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 2103 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-16.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 249 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6770 components: - type: Transform @@ -97913,7 +97648,7 @@ entities: pos: 9.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6789 components: - type: Transform @@ -97921,7 +97656,7 @@ entities: pos: -42.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 6835 components: - type: Transform @@ -97929,7 +97664,7 @@ entities: pos: 40.5,-13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7387 components: - type: Transform @@ -97937,7 +97672,7 @@ entities: pos: 1.5,-76.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7476 components: - type: Transform @@ -97948,7 +97683,7 @@ entities: deviceLists: - 24769 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7484 components: - type: Transform @@ -97956,7 +97691,7 @@ entities: pos: 0.5,-56.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 7485 components: - type: Transform @@ -97964,7 +97699,15 @@ entities: pos: -9.5,-55.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 7916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-9.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 8087 components: - type: Transform @@ -97996,34 +97739,27 @@ entities: pos: -3.5,-46.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8259 + color: '#0335FCFF' + - uid: 8267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-15.5 + rot: 1.5707963267948966 rad + pos: -33.5,-5.5 parent: 60 - - type: DeviceNetwork - deviceLists: - - 8265 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8388 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,8.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21612 + - 12 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-3.5 - parent: 60 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8619 components: - type: Transform @@ -98031,7 +97767,7 @@ entities: pos: 16.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 8962 components: - type: Transform @@ -98039,7 +97775,7 @@ entities: pos: 32.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9016 components: - type: Transform @@ -98047,7 +97783,7 @@ entities: pos: 47.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9046 components: - type: Transform @@ -98055,7 +97791,7 @@ entities: pos: 40.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9063 components: - type: Transform @@ -98063,7 +97799,29 @@ entities: pos: 29.5,-20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 9150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-20.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 8516 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 105 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 9471 components: - type: Transform @@ -98074,7 +97832,7 @@ entities: deviceLists: - 7065 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9472 components: - type: Transform @@ -98085,7 +97843,7 @@ entities: deviceLists: - 11464 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9607 components: - type: Transform @@ -98093,7 +97851,7 @@ entities: pos: -42.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9651 components: - type: Transform @@ -98104,7 +97862,7 @@ entities: deviceLists: - 11464 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 9678 components: - type: Transform @@ -98112,18 +97870,22 @@ entities: pos: -37.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11978 + color: '#0335FCFF' + - uid: 10586 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-3.5 + pos: -27.5,-0.5 parent: 60 - - type: DeviceNetwork - deviceLists: - - 8714 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 10678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 12589 components: - type: Transform @@ -98131,7 +97893,7 @@ entities: pos: 16.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12592 components: - type: Transform @@ -98139,7 +97901,7 @@ entities: pos: 16.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12623 components: - type: Transform @@ -98147,7 +97909,7 @@ entities: pos: 43.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12624 components: - type: Transform @@ -98155,7 +97917,7 @@ entities: pos: 41.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12839 components: - type: Transform @@ -98163,21 +97925,21 @@ entities: pos: -48.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 12868 components: - type: Transform pos: 40.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13074 components: - type: Transform pos: 38.5,10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13241 components: - type: Transform @@ -98185,7 +97947,7 @@ entities: pos: 19.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13242 components: - type: Transform @@ -98193,14 +97955,14 @@ entities: pos: 16.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13536 components: - type: Transform pos: 16.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13548 components: - type: Transform @@ -98208,7 +97970,7 @@ entities: pos: 21.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 13589 components: - type: Transform @@ -98216,21 +97978,28 @@ entities: pos: 4.5,-37.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 13800 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 60 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 14302 components: - type: Transform pos: -7.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14303 components: - type: Transform pos: -11.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14325 components: - type: Transform @@ -98238,7 +98007,7 @@ entities: pos: -8.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14501 components: - type: Transform @@ -98246,14 +98015,14 @@ entities: pos: -23.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14502 components: - type: Transform pos: -23.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14642 components: - type: Transform @@ -98261,7 +98030,7 @@ entities: pos: -19.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14752 components: - type: Transform @@ -98269,7 +98038,7 @@ entities: pos: -21.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 14770 components: - type: Transform @@ -98279,21 +98048,21 @@ entities: deviceLists: - 23956 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15651 components: - type: Transform pos: -18.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 15652 components: - type: Transform pos: -14.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16559 components: - type: Transform @@ -98301,7 +98070,7 @@ entities: pos: -29.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16604 components: - type: Transform @@ -98309,14 +98078,14 @@ entities: pos: -11.5,30.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16619 components: - type: Transform pos: -0.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16620 components: - type: Transform @@ -98324,7 +98093,7 @@ entities: pos: 0.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16635 components: - type: Transform @@ -98335,7 +98104,7 @@ entities: deviceLists: - 15745 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16643 components: - type: Transform @@ -98343,7 +98112,7 @@ entities: pos: -2.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16666 components: - type: Transform @@ -98351,14 +98120,14 @@ entities: pos: 12.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16669 components: - type: Transform pos: 10.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16670 components: - type: Transform @@ -98366,7 +98135,7 @@ entities: pos: -2.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16682 components: - type: Transform @@ -98374,7 +98143,7 @@ entities: pos: 5.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16683 components: - type: Transform @@ -98382,14 +98151,14 @@ entities: pos: 2.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16684 components: - type: Transform pos: -32.5,32.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 16718 components: - type: Transform @@ -98399,7 +98168,7 @@ entities: deviceLists: - 21710 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17601 components: - type: Transform @@ -98407,7 +98176,7 @@ entities: pos: -46.5,25.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17602 components: - type: Transform @@ -98415,7 +98184,7 @@ entities: pos: -46.5,21.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17624 components: - type: Transform @@ -98423,7 +98192,7 @@ entities: pos: -36.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17625 components: - type: Transform @@ -98431,7 +98200,7 @@ entities: pos: -38.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17627 components: - type: Transform @@ -98439,7 +98208,7 @@ entities: pos: -15.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 17628 components: - type: Transform @@ -98447,7 +98216,7 @@ entities: pos: -30.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18139 components: - type: Transform @@ -98455,7 +98224,7 @@ entities: pos: -2.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18270 components: - type: Transform @@ -98463,7 +98232,7 @@ entities: pos: -7.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18426 components: - type: Transform @@ -98471,7 +98240,7 @@ entities: pos: 0.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18427 components: - type: Transform @@ -98479,7 +98248,7 @@ entities: pos: 5.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18429 components: - type: Transform @@ -98487,7 +98256,7 @@ entities: pos: 0.5,-11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18539 components: - type: Transform @@ -98495,7 +98264,7 @@ entities: pos: 0.5,1.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18540 components: - type: Transform @@ -98503,7 +98272,7 @@ entities: pos: 4.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18560 components: - type: Transform @@ -98516,7 +98285,7 @@ entities: pos: 45.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18653 components: - type: Transform @@ -98524,7 +98293,7 @@ entities: pos: 45.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18663 components: - type: Transform @@ -98532,7 +98301,7 @@ entities: pos: 53.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18664 components: - type: Transform @@ -98540,7 +98309,7 @@ entities: pos: 53.5,9.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18668 components: - type: Transform @@ -98548,7 +98317,7 @@ entities: pos: 48.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18906 components: - type: Transform @@ -98559,7 +98328,7 @@ entities: deviceLists: - 24792 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 18937 components: - type: Transform @@ -98575,7 +98344,7 @@ entities: pos: 36.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 19054 components: - type: Transform @@ -98583,7 +98352,7 @@ entities: pos: 32.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 19056 components: - type: Transform @@ -98594,7 +98363,7 @@ entities: deviceLists: - 25155 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 19057 components: - type: Transform @@ -98605,7 +98374,7 @@ entities: deviceLists: - 25155 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 19179 components: - type: Transform @@ -98613,7 +98382,7 @@ entities: pos: 21.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 19403 components: - type: Transform @@ -98621,21 +98390,32 @@ entities: pos: 40.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 21327 components: - type: Transform pos: -72.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' + - uid: 21407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,0.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 1960 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 22876 components: - type: Transform pos: -110.5,36.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22878 components: - type: Transform @@ -98643,7 +98423,7 @@ entities: pos: -110.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22879 components: - type: Transform @@ -98651,7 +98431,7 @@ entities: pos: -103.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22881 components: - type: Transform @@ -98659,7 +98439,7 @@ entities: pos: -98.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22882 components: - type: Transform @@ -98667,7 +98447,7 @@ entities: pos: -112.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22886 components: - type: Transform @@ -98675,7 +98455,7 @@ entities: pos: -117.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22891 components: - type: Transform @@ -98683,7 +98463,7 @@ entities: pos: -112.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22893 components: - type: Transform @@ -98691,7 +98471,7 @@ entities: pos: -112.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 22894 components: - type: Transform @@ -98699,7 +98479,7 @@ entities: pos: -110.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 23505 components: - type: Transform @@ -98715,7 +98495,7 @@ entities: pos: -5.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24136 components: - type: Transform @@ -98723,7 +98503,7 @@ entities: pos: -9.5,-15.5 parent: 60 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 24834 components: - type: Transform @@ -98734,7 +98514,7 @@ entities: deviceLists: - 25157 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 25173 components: - type: Transform @@ -98745,7 +98525,7 @@ entities: deviceLists: - 25162 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 25174 components: - type: Transform @@ -98756,7 +98536,7 @@ entities: deviceLists: - 25162 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 25179 components: - type: Transform @@ -98767,7 +98547,7 @@ entities: deviceLists: - 25163 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 25180 components: - type: Transform @@ -98778,7 +98558,7 @@ entities: deviceLists: - 25163 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - uid: 25185 components: - type: Transform @@ -98789,7 +98569,7 @@ entities: deviceLists: - 25157 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0335FCFF' - proto: GasVentScrubber entities: - uid: 61 @@ -98799,7 +98579,17 @@ entities: pos: 35.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 157 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 231 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 223 components: - type: Transform @@ -98807,7 +98597,7 @@ entities: pos: 26.5,-12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 263 components: - type: Transform @@ -98815,7 +98605,7 @@ entities: pos: 22.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 337 components: - type: Transform @@ -98823,7 +98613,7 @@ entities: pos: 47.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 428 components: - type: Transform @@ -98831,7 +98621,7 @@ entities: pos: 0.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 473 components: - type: Transform @@ -98839,14 +98629,17 @@ entities: pos: 0.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 516 components: - type: Transform pos: -19.5,-23.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 57 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 629 components: - type: Transform @@ -98854,7 +98647,7 @@ entities: pos: 19.5,-35.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 719 components: - type: Transform @@ -98862,15 +98655,41 @@ entities: pos: -22.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-19.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 231 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 788 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-6.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 1960 + - 4709 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-10.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 5933 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 871 components: - type: Transform @@ -98878,14 +98697,17 @@ entities: pos: 41.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 904 components: - type: Transform pos: -10.5,-23.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 57 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 912 components: - type: Transform @@ -98893,7 +98715,7 @@ entities: pos: -8.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 913 components: - type: Transform @@ -98901,15 +98723,18 @@ entities: pos: -4.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1136 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-14.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 4709 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1246 components: - type: Transform @@ -98917,7 +98742,7 @@ entities: pos: 37.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1397 components: - type: Transform @@ -98925,7 +98750,7 @@ entities: pos: 4.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1398 components: - type: Transform @@ -98933,7 +98758,7 @@ entities: pos: 3.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1430 components: - type: Transform @@ -98941,77 +98766,93 @@ entities: pos: 0.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 1456 components: - type: Transform pos: 12.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1564 + color: '#FF1212FF' + - uid: 1581 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-12.5 + pos: -37.5,-19.5 parent: 60 - type: DeviceNetwork deviceLists: - - 249 + - 21507 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1771 + color: '#FF1212FF' + - uid: 1659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-18.5 + parent: 60 + - type: DeviceNetwork + deviceLists: + - 148 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1739 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-14.5 + pos: -19.5,-7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1846 + color: '#0335FCFF' + - uid: 1750 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-9.5 + pos: -19.5,-11.5 parent: 60 - - type: DeviceNetwork - deviceLists: - - 249 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1850 + color: '#FF1212FF' + - uid: 1768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-11.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1771 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-6.5 + pos: -37.5,-14.5 parent: 60 - type: DeviceNetwork deviceLists: - - 249 + - 21612 + - 12 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1893 + color: '#FF1212FF' + - uid: 1974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-9.5 + pos: -19.5,-14.5 parent: 60 - type: DeviceNetwork deviceLists: - - 249 + - 148 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1902 + color: '#FF1212FF' + - uid: 2009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-6.5 + rot: 3.141592653589793 rad + pos: -24.5,-4.5 parent: 60 - type: DeviceNetwork deviceLists: - - 249 + - 178 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2026 components: - type: Transform @@ -99019,7 +98860,7 @@ entities: pos: -22.5,-29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2205 components: - type: Transform @@ -99027,7 +98868,7 @@ entities: pos: 29.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2360 components: - type: Transform @@ -99035,36 +98876,40 @@ entities: pos: 23.5,-34.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2374 components: - type: Transform pos: 23.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2563 components: - type: Transform pos: 29.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2704 components: - type: Transform pos: 39.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2772 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-4.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21612 + - 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2821 components: - type: Transform @@ -99072,7 +98917,7 @@ entities: pos: 44.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 2983 components: - type: Transform @@ -99104,7 +98949,7 @@ entities: pos: 44.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3693 components: - type: Transform @@ -99112,7 +98957,7 @@ entities: pos: 16.5,-18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3962 components: - type: Transform @@ -99120,14 +98965,14 @@ entities: pos: -7.5,-41.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3963 components: - type: Transform pos: -13.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 3985 components: - type: Transform @@ -99135,14 +98980,22 @@ entities: pos: 0.5,-39.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' + - uid: 4218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-7.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4502 components: - type: Transform pos: 39.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4944 components: - type: Transform @@ -99150,7 +99003,7 @@ entities: pos: 0.5,-47.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 4971 components: - type: Transform @@ -99158,7 +99011,7 @@ entities: pos: 0.5,-54.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5404 components: - type: Transform @@ -99166,7 +99019,7 @@ entities: pos: 43.5,-8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5411 components: - type: Transform @@ -99174,32 +99027,32 @@ entities: pos: 10.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5440 components: - type: Transform pos: 34.5,-14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5454 + color: '#FF1212FF' + - uid: 5581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-12.5 + pos: -42.5,8.5 parent: 60 - - type: DeviceNetwork - deviceLists: - - 249 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5581 + color: '#FF1212FF' + - uid: 5688 components: - type: Transform - pos: -42.5,8.5 + rot: 1.5707963267948966 rad + pos: -26.5,-18.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 3204 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5738 components: - type: Transform @@ -99207,7 +99060,7 @@ entities: pos: -1.5,11.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5745 components: - type: Transform @@ -99215,7 +99068,7 @@ entities: pos: -10.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5766 components: - type: Transform @@ -99223,7 +99076,7 @@ entities: pos: 16.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5820 components: - type: Transform @@ -99231,7 +99084,7 @@ entities: pos: 18.5,-28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5823 components: - type: Transform @@ -99239,7 +99092,7 @@ entities: pos: 29.5,-32.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5831 components: - type: Transform @@ -99247,7 +99100,7 @@ entities: pos: 43.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5930 components: - type: Transform @@ -99255,22 +99108,14 @@ entities: pos: -29.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-20.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 5962 components: - type: Transform pos: -30.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6015 components: - type: Transform @@ -99278,15 +99123,19 @@ entities: pos: -34.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6018 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,6.5 parent: 60 + - type: DeviceNetwork + deviceLists: + - 21612 + - 12 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6028 components: - type: Transform @@ -99294,7 +99143,7 @@ entities: pos: -41.5,2.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6058 components: - type: Transform @@ -99302,15 +99151,7 @@ entities: pos: -43.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-20.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6290 components: - type: Transform @@ -99318,7 +99159,7 @@ entities: pos: 16.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6299 components: - type: Transform @@ -99326,18 +99167,7 @@ entities: pos: 11.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-9.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 249 - - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6474 components: - type: Transform @@ -99345,7 +99175,7 @@ entities: pos: -1.5,-72.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 6475 components: - type: Transform @@ -99353,18 +99183,18 @@ entities: pos: -1.5,-61.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 6762 + color: '#FF1212FF' + - uid: 7099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 + rot: 1.5707963267948966 rad + pos: -49.5,-16.5 parent: 60 - type: DeviceNetwork deviceLists: - - 8260 + - 8483 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7177 components: - type: Transform @@ -99372,7 +99202,7 @@ entities: pos: -27.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7343 components: - type: Transform @@ -99380,7 +99210,7 @@ entities: pos: -42.5,22.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7368 components: - type: Transform @@ -99388,7 +99218,7 @@ entities: pos: -0.5,-76.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7463 components: - type: Transform @@ -99396,7 +99226,7 @@ entities: pos: -10.5,-53.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7488 components: - type: Transform @@ -99407,7 +99237,7 @@ entities: deviceLists: - 24769 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 7686 components: - type: Transform @@ -99415,18 +99245,22 @@ entities: pos: -31.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7790 + color: '#FF1212FF' + - uid: 7811 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-15.5 + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7901 + components: + - type: Transform + pos: -25.5,-0.5 parent: 60 - - type: DeviceNetwork - deviceLists: - - 249 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8137 components: - type: Transform @@ -99434,36 +99268,29 @@ entities: pos: -3.5,-45.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8230 + color: '#FF1212FF' + - uid: 8416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-19.5 + rot: -1.5707963267948966 rad + pos: -10.5,2.5 parent: 60 - type: DeviceNetwork deviceLists: - - 2103 + - 105 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8269 + color: '#FF1212FF' + - uid: 8439 components: - type: Transform - pos: -18.5,-15.5 + rot: 3.141592653589793 rad + pos: -42.5,-20.5 parent: 60 - type: DeviceNetwork deviceLists: - - 8265 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-19.5 - parent: 60 + - 8516 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8620 components: - type: Transform @@ -99471,28 +99298,18 @@ entities: pos: 16.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 8718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,0.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 8669 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8898 + color: '#FF1212FF' + - uid: 8942 components: - type: Transform - pos: -25.5,0.5 + rot: -1.5707963267948966 rad + pos: -42.5,-18.5 parent: 60 - type: DeviceNetwork deviceLists: - - 8271 + - 8516 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 8960 components: - type: Transform @@ -99500,25 +99317,14 @@ entities: pos: -48.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9017 components: - type: Transform pos: -47.5,3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9034 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-4.5 - parent: 60 - - type: DeviceNetwork - deviceLists: - - 8791 - - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9061 components: - type: Transform @@ -99526,7 +99332,7 @@ entities: pos: 29.5,-17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9062 components: - type: Transform @@ -99534,25 +99340,18 @@ entities: pos: 29.5,-19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' - - uid: 9154 - components: - - type: Transform - pos: -26.5,-4.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 9156 + color: '#FF1212FF' + - uid: 9155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-3.5 + rot: 3.141592653589793 rad + pos: -15.5,2.5 parent: 60 - type: DeviceNetwork deviceLists: - - 8714 + - 1960 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9160 components: - type: Transform @@ -99560,7 +99359,7 @@ entities: pos: 22.5,-23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9428 components: - type: Transform @@ -99570,14 +99369,14 @@ entities: deviceLists: - 11464 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9608 components: - type: Transform pos: -41.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9631 components: - type: Transform @@ -99588,7 +99387,7 @@ entities: deviceLists: - 11464 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9641 components: - type: Transform @@ -99596,7 +99395,7 @@ entities: pos: -41.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9674 components: - type: Transform @@ -99607,14 +99406,14 @@ entities: deviceLists: - 7065 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 9677 components: - type: Transform pos: -38.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12001 components: - type: Transform @@ -99622,7 +99421,7 @@ entities: pos: 16.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12591 components: - type: Transform @@ -99630,7 +99429,7 @@ entities: pos: 16.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12594 components: - type: Transform @@ -99645,7 +99444,7 @@ entities: pos: 38.5,-31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12632 components: - type: Transform @@ -99653,14 +99452,14 @@ entities: pos: 41.5,-30.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12633 components: - type: Transform pos: 38.5,-27.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 12897 components: - type: Transform @@ -99668,7 +99467,7 @@ entities: pos: 13.5,5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13073 components: - type: Transform @@ -99676,7 +99475,7 @@ entities: pos: 40.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13075 components: - type: Transform @@ -99684,7 +99483,7 @@ entities: pos: 38.5,6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13238 components: - type: Transform @@ -99692,7 +99491,7 @@ entities: pos: 19.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13444 components: - type: Transform @@ -99705,35 +99504,27 @@ entities: pos: 36.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13563 components: - type: Transform pos: 22.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 13754 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-13.5 parent: 60 - - uid: 13971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,8.5 - parent: 60 - - type: AtmosPipeColor - color: '#990000FF' - uid: 14312 components: - type: Transform pos: -11.5,16.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14318 components: - type: Transform @@ -99741,14 +99532,14 @@ entities: pos: -9.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 14503 components: - type: Transform pos: -27.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15648 components: - type: Transform @@ -99756,7 +99547,7 @@ entities: pos: -21.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15649 components: - type: Transform @@ -99764,7 +99555,7 @@ entities: pos: -16.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 15650 components: - type: Transform @@ -99772,14 +99563,14 @@ entities: pos: -11.5,35.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16560 components: - type: Transform pos: -25.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16605 components: - type: Transform @@ -99787,21 +99578,21 @@ entities: pos: -11.5,29.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16615 components: - type: Transform pos: 1.5,31.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16621 components: - type: Transform pos: -1.5,28.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16633 components: - type: Transform @@ -99812,7 +99603,7 @@ entities: deviceLists: - 21710 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16634 components: - type: Transform @@ -99823,7 +99614,7 @@ entities: deviceLists: - 15745 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16642 components: - type: Transform @@ -99831,7 +99622,7 @@ entities: pos: -2.5,15.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16667 components: - type: Transform @@ -99839,21 +99630,21 @@ entities: pos: 12.5,17.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16668 components: - type: Transform pos: 10.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16672 components: - type: Transform pos: 3.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16673 components: - type: Transform @@ -99861,7 +99652,7 @@ entities: pos: -3.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16675 components: - type: Transform @@ -99869,7 +99660,7 @@ entities: pos: 0.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 16681 components: - type: Transform @@ -99877,7 +99668,7 @@ entities: pos: 4.5,14.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17603 components: - type: Transform @@ -99885,7 +99676,7 @@ entities: pos: -46.5,23.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17604 components: - type: Transform @@ -99893,7 +99684,7 @@ entities: pos: -46.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17621 components: - type: Transform @@ -99901,7 +99692,7 @@ entities: pos: -34.5,20.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17626 components: - type: Transform @@ -99913,7 +99704,7 @@ entities: pos: -31.5,24.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 17632 components: - type: Transform @@ -99921,7 +99712,7 @@ entities: pos: -15.5,19.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18257 components: - type: Transform @@ -99929,7 +99720,7 @@ entities: pos: -4.5,-5.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18258 components: - type: Transform @@ -99937,7 +99728,7 @@ entities: pos: -7.5,-4.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18260 components: - type: Transform @@ -99945,7 +99736,7 @@ entities: pos: 0.5,-0.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18425 components: - type: Transform @@ -99953,7 +99744,7 @@ entities: pos: 0.5,-3.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18428 components: - type: Transform @@ -99961,7 +99752,7 @@ entities: pos: 4.5,-6.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18430 components: - type: Transform @@ -99969,7 +99760,7 @@ entities: pos: 0.5,-10.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18434 components: - type: Transform @@ -99977,21 +99768,21 @@ entities: pos: -2.5,-9.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18657 components: - type: Transform pos: 43.5,12.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18658 components: - type: Transform pos: 44.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18685 components: - type: Transform @@ -99999,7 +99790,7 @@ entities: pos: 48.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18686 components: - type: Transform @@ -100007,7 +99798,7 @@ entities: pos: 53.5,13.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18687 components: - type: Transform @@ -100015,7 +99806,7 @@ entities: pos: 53.5,7.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18884 components: - type: Transform @@ -100026,7 +99817,7 @@ entities: deviceLists: - 24792 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18915 components: - type: Transform @@ -100034,7 +99825,7 @@ entities: pos: 48.5,-1.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 18938 components: - type: Transform @@ -100049,7 +99840,7 @@ entities: pos: 31.5,8.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 19058 components: - type: Transform @@ -100059,7 +99850,7 @@ entities: deviceLists: - 25155 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 19059 components: - type: Transform @@ -100069,7 +99860,7 @@ entities: deviceLists: - 25155 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 19180 components: - type: Transform @@ -100077,13 +99868,21 @@ entities: pos: 21.5,18.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 21328 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,18.5 parent: 60 + - uid: 21411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 60 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 22906 components: - type: Transform @@ -100171,7 +99970,7 @@ entities: deviceLists: - 23956 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 24358 components: - type: Transform @@ -100179,7 +99978,7 @@ entities: pos: 47.5,-21.5 parent: 60 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 25175 components: - type: Transform @@ -100190,7 +99989,7 @@ entities: deviceLists: - 25162 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 25176 components: - type: Transform @@ -100201,7 +100000,7 @@ entities: deviceLists: - 25162 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 25177 components: - type: Transform @@ -100212,7 +100011,7 @@ entities: deviceLists: - 25163 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 25178 components: - type: Transform @@ -100223,7 +100022,7 @@ entities: deviceLists: - 25163 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 25183 components: - type: Transform @@ -100233,7 +100032,7 @@ entities: deviceLists: - 25157 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - uid: 25186 components: - type: Transform @@ -100244,7 +100043,7 @@ entities: deviceLists: - 25157 - type: AtmosPipeColor - color: '#990000FF' + color: '#FF1212FF' - proto: GasVolumePump entities: - uid: 14850 @@ -100307,6 +100106,12 @@ entities: - type: Transform pos: -60.5,-9.5 parent: 60 + - uid: 11368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,2.5 + parent: 60 - uid: 19105 components: - type: Transform @@ -100371,17 +100176,16 @@ entities: radius: 175.75 - proto: Grille entities: - - uid: 17 + - uid: 8 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-6.5 + pos: -24.5,-7.5 parent: 60 - - uid: 24 + - uid: 17 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-12.5 + pos: 54.5,-6.5 parent: 60 - uid: 34 components: @@ -100393,41 +100197,20 @@ entities: - type: Transform pos: -55.5,-24.5 parent: 60 - - uid: 67 - components: - - type: Transform - pos: -21.5,-16.5 - parent: 60 - uid: 71 components: - type: Transform pos: 50.5,55.5 parent: 60 - - uid: 79 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-15.5 - parent: 60 - uid: 103 components: - type: Transform pos: 50.5,19.5 parent: 60 - - uid: 113 - components: - - type: Transform - pos: -18.5,-17.5 - parent: 60 - - uid: 132 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 60 - - uid: 155 + - uid: 137 components: - type: Transform - pos: -20.5,-17.5 + pos: -24.5,-8.5 parent: 60 - uid: 200 components: @@ -100446,31 +100229,30 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-8.5 parent: 60 - - uid: 232 + - uid: 235 components: - type: Transform - pos: -23.5,-17.5 + pos: -23.5,-12.5 parent: 60 - - uid: 233 + - uid: 244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-10.5 + pos: -32.5,-17.5 parent: 60 - - uid: 238 + - uid: 258 components: - type: Transform - pos: -20.5,-13.5 + pos: -25.5,-7.5 parent: 60 - - uid: 245 + - uid: 270 components: - type: Transform - pos: -20.5,-10.5 + pos: -29.5,-16.5 parent: 60 - uid: 284 components: - type: Transform - pos: -28.5,-8.5 + pos: -17.5,-9.5 parent: 60 - uid: 369 components: @@ -100610,36 +100392,35 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-18.5 parent: 60 - - uid: 667 + - uid: 808 components: - type: Transform - pos: -33.5,-21.5 + pos: -1.5,8.5 parent: 60 - - uid: 721 + - uid: 816 components: - type: Transform - pos: -35.5,-10.5 + pos: -2.5,8.5 parent: 60 - - uid: 808 + - uid: 836 components: - type: Transform - pos: -1.5,8.5 + pos: -17.5,-7.5 parent: 60 - - uid: 816 + - uid: 837 components: - type: Transform - pos: -2.5,8.5 + pos: -17.5,-16.5 parent: 60 - - uid: 837 + - uid: 842 components: - type: Transform - pos: -26.5,-17.5 + pos: -20.5,-10.5 parent: 60 - - uid: 844 + - uid: 843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 + pos: -20.5,-6.5 parent: 60 - uid: 895 components: @@ -100659,7 +100440,12 @@ entities: - uid: 963 components: - type: Transform - pos: -20.5,-7.5 + pos: -35.5,-10.5 + parent: 60 + - uid: 979 + components: + - type: Transform + pos: -32.5,-10.5 parent: 60 - uid: 1072 components: @@ -100676,6 +100462,21 @@ entities: - type: Transform pos: -67.5,0.5 parent: 60 + - uid: 1122 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 60 + - uid: 1162 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 60 + - uid: 1174 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 60 - uid: 1184 components: - type: Transform @@ -100686,6 +100487,16 @@ entities: - type: Transform pos: 38.5,57.5 parent: 60 + - uid: 1201 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 60 + - uid: 1209 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 60 - uid: 1233 components: - type: Transform @@ -100756,76 +100567,80 @@ entities: - type: Transform pos: 6.5,-26.5 parent: 60 - - uid: 1384 + - uid: 1431 components: - type: Transform - pos: -17.5,-13.5 + pos: 9.5,-17.5 parent: 60 - - uid: 1386 + - uid: 1432 components: - type: Transform - pos: -17.5,-12.5 + pos: 9.5,-15.5 parent: 60 - - uid: 1431 + - uid: 1477 components: - type: Transform - pos: 9.5,-17.5 + pos: -23.5,-16.5 parent: 60 - - uid: 1432 + - uid: 1480 components: - type: Transform - pos: 9.5,-15.5 + pos: -23.5,-14.5 parent: 60 - - uid: 1459 + - uid: 1528 components: - type: Transform - pos: -29.5,-8.5 + pos: -32.5,-6.5 parent: 60 - - uid: 1464 + - uid: 1529 components: - type: Transform - pos: -29.5,-10.5 + pos: -35.5,-9.5 parent: 60 - - uid: 1465 + - uid: 1532 components: - type: Transform - pos: -24.5,-11.5 + pos: -35.5,-5.5 parent: 60 - - uid: 1473 + - uid: 1536 components: - type: Transform - pos: -28.5,-11.5 + pos: -29.5,-11.5 parent: 60 - - uid: 1474 + - uid: 1537 components: - type: Transform - pos: -24.5,-7.5 + pos: -35.5,-6.5 parent: 60 - - uid: 1477 + - uid: 1540 components: - type: Transform - pos: -23.5,-10.5 + pos: -29.5,-9.5 parent: 60 - - uid: 1483 + - uid: 1541 components: - type: Transform - pos: -23.5,-8.5 + pos: -17.5,-11.5 parent: 60 - - uid: 1484 + - uid: 1542 components: - type: Transform - pos: -24.5,-8.5 + pos: -35.5,-7.5 parent: 60 - - uid: 1491 + - uid: 1545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-12.5 + pos: -17.5,-10.5 parent: 60 - - uid: 1650 + - uid: 1562 components: - type: Transform - pos: -31.5,-2.5 + pos: -24.5,-9.5 + parent: 60 + - uid: 1571 + components: + - type: Transform + pos: -29.5,-14.5 parent: 60 - uid: 1683 components: @@ -100872,55 +100687,50 @@ entities: - type: Transform pos: 73.5,-32.5 parent: 60 - - uid: 1790 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 60 - - uid: 1804 + - uid: 1911 components: - type: Transform - pos: -17.5,-9.5 + pos: 30.5,31.5 parent: 60 - - uid: 1811 + - uid: 1927 components: - type: Transform - pos: -25.5,-1.5 + pos: -17.5,-19.5 parent: 60 - - uid: 1812 + - uid: 1928 components: - type: Transform - pos: -20.5,-2.5 + pos: -33.5,-21.5 parent: 60 - - uid: 1911 + - uid: 1929 components: - type: Transform - pos: 30.5,31.5 + pos: -34.5,-21.5 parent: 60 - - uid: 1984 + - uid: 1930 components: - type: Transform - pos: 68.5,-32.5 + pos: -35.5,-20.5 parent: 60 - - uid: 1987 + - uid: 1931 components: - type: Transform - pos: -31.5,-4.5 + pos: -17.5,-18.5 parent: 60 - - uid: 1989 + - uid: 1932 components: - type: Transform - pos: -32.5,-7.5 + pos: -19.5,-21.5 parent: 60 - - uid: 2012 + - uid: 1933 components: - type: Transform - pos: -32.5,-10.5 + pos: -32.5,-21.5 parent: 60 - - uid: 2015 + - uid: 1984 components: - type: Transform - pos: -22.5,-1.5 + pos: 68.5,-32.5 parent: 60 - uid: 2030 components: @@ -100932,21 +100742,6 @@ entities: - type: Transform pos: -56.5,17.5 parent: 60 - - uid: 2099 - components: - - type: Transform - pos: -18.5,0.5 - parent: 60 - - uid: 2100 - components: - - type: Transform - pos: -25.5,-21.5 - parent: 60 - - uid: 2113 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 60 - uid: 2135 components: - type: Transform @@ -101015,11 +100810,6 @@ entities: - type: Transform pos: 21.5,-25.5 parent: 60 - - uid: 2579 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 60 - uid: 2588 components: - type: Transform @@ -101110,6 +100900,11 @@ entities: - type: Transform pos: 60.5,-35.5 parent: 60 + - uid: 2861 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 60 - uid: 2877 components: - type: Transform @@ -101372,11 +101167,6 @@ entities: - type: Transform pos: 57.5,-12.5 parent: 60 - - uid: 3742 - components: - - type: Transform - pos: -18.5,1.5 - parent: 60 - uid: 3770 components: - type: Transform @@ -101554,6 +101344,11 @@ entities: - type: Transform pos: -36.5,-25.5 parent: 60 + - uid: 4078 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 60 - uid: 4089 components: - type: Transform @@ -101923,6 +101718,11 @@ entities: - type: Transform pos: -3.5,-73.5 parent: 60 + - uid: 5235 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 60 - uid: 5245 components: - type: Transform @@ -101938,11 +101738,6 @@ entities: - type: Transform pos: 25.5,-78.5 parent: 60 - - uid: 5432 - components: - - type: Transform - pos: -17.5,-10.5 - parent: 60 - uid: 5484 components: - type: Transform @@ -102046,6 +101841,11 @@ entities: - type: Transform pos: -66.5,4.5 parent: 60 + - uid: 5799 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 60 - uid: 5816 components: - type: Transform @@ -102076,16 +101876,10 @@ entities: - type: Transform pos: 54.5,-33.5 parent: 60 - - uid: 6043 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 60 - - uid: 6149 + - uid: 6147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 + pos: -18.5,-0.5 parent: 60 - uid: 6151 components: @@ -102287,16 +102081,6 @@ entities: - type: Transform pos: 30.5,-59.5 parent: 60 - - uid: 6651 - components: - - type: Transform - pos: -20.5,-4.5 - parent: 60 - - uid: 6683 - components: - - type: Transform - pos: -35.5,-6.5 - parent: 60 - uid: 6688 components: - type: Transform @@ -102323,15 +102107,20 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-43.5 parent: 60 + - uid: 6803 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 60 - uid: 6812 components: - type: Transform pos: 17.5,29.5 parent: 60 - - uid: 6820 + - uid: 6824 components: - type: Transform - pos: -17.5,-7.5 + pos: -23.5,-11.5 parent: 60 - uid: 6831 components: @@ -102353,11 +102142,6 @@ entities: - type: Transform pos: 3.5,-74.5 parent: 60 - - uid: 6983 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 60 - uid: 7067 components: - type: Transform @@ -102393,12 +102177,6 @@ entities: - type: Transform pos: 30.5,52.5 parent: 60 - - uid: 7231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-10.5 - parent: 60 - uid: 7256 components: - type: Transform @@ -102645,17 +102423,6 @@ entities: - type: Transform pos: -66.5,-19.5 parent: 60 - - uid: 7650 - components: - - type: Transform - pos: -21.5,-19.5 - parent: 60 - - uid: 7657 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 60 - uid: 7669 components: - type: Transform @@ -102886,6 +102653,21 @@ entities: - type: Transform pos: -46.5,-4.5 parent: 60 + - uid: 8251 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 60 + - uid: 8337 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 60 + - uid: 8339 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 60 - uid: 8367 components: - type: Transform @@ -102911,10 +102693,15 @@ entities: - type: Transform pos: -81.5,-26.5 parent: 60 - - uid: 8528 + - uid: 8437 components: - type: Transform - pos: -17.5,-6.5 + pos: -17.5,-20.5 + parent: 60 + - uid: 8442 + components: + - type: Transform + pos: -35.5,-18.5 parent: 60 - uid: 8561 components: @@ -102961,11 +102748,6 @@ entities: - type: Transform pos: -87.5,-26.5 parent: 60 - - uid: 8602 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 60 - uid: 8663 components: - type: Transform @@ -103001,11 +102783,6 @@ entities: - type: Transform pos: -88.5,-26.5 parent: 60 - - uid: 8694 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 60 - uid: 8740 components: - type: Transform @@ -103061,11 +102838,6 @@ entities: - type: Transform pos: 50.5,-18.5 parent: 60 - - uid: 9052 - components: - - type: Transform - pos: -29.5,-17.5 - parent: 60 - uid: 9281 components: - type: Transform @@ -103261,6 +103033,11 @@ entities: - type: Transform pos: 24.5,3.5 parent: 60 + - uid: 10621 + components: + - type: Transform + pos: -18.5,0.5 + parent: 60 - uid: 10702 components: - type: Transform @@ -103271,11 +103048,26 @@ entities: - type: Transform pos: 42.5,-20.5 parent: 60 + - uid: 11127 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 60 - uid: 11150 components: - type: Transform pos: -25.5,27.5 parent: 60 + - uid: 11282 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 60 + - uid: 11336 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 60 - uid: 11341 components: - type: Transform @@ -104474,6 +104266,11 @@ entities: - type: Transform pos: -51.5,15.5 parent: 60 + - uid: 15900 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 60 - uid: 15993 components: - type: Transform @@ -105142,6 +104939,11 @@ entities: - type: Transform pos: 28.5,1.5 parent: 60 + - uid: 17961 + components: + - type: Transform + pos: -25.5,-25.5 + parent: 60 - uid: 17991 components: - type: Transform @@ -106687,6 +106489,11 @@ entities: - type: Transform pos: 37.5,51.5 parent: 60 + - uid: 21200 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 60 - uid: 21218 components: - type: Transform @@ -107034,6 +106841,11 @@ entities: - type: Transform pos: -15.5,-80.5 parent: 60 + - uid: 21736 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 60 - uid: 21761 components: - type: Transform @@ -108087,6 +107899,11 @@ entities: - type: Transform pos: 57.5,49.5 parent: 60 + - uid: 23825 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 60 - uid: 23856 components: - type: Transform @@ -109415,31 +109232,38 @@ entities: parent: 60 - proto: GunSafeDisabler entities: - - uid: 1732 + - uid: 1558 components: - type: Transform - pos: -25.5,-8.5 + pos: -28.5,-12.5 + parent: 60 +- proto: GunSafeLaserCarbine + entities: + - uid: 1861 + components: + - type: Transform + pos: -24.5,-0.5 parent: 60 - proto: GunSafeRifleLecter entities: - - uid: 2183 + - uid: 10682 components: - type: Transform - pos: -28.5,1.5 + pos: -28.5,0.5 parent: 60 - proto: GunSafeShotgunKammerer entities: - - uid: 1821 + - uid: 1749 components: - type: Transform - pos: -28.5,0.5 + pos: -28.5,-0.5 parent: 60 - proto: GunSafeSubMachineGunDrozd entities: - - uid: 14212 + - uid: 7649 components: - type: Transform - pos: -28.5,-0.5 + pos: -28.5,-1.5 parent: 60 - proto: HandheldGPSBasic entities: @@ -109679,13 +109503,6 @@ entities: - type: Transform pos: 5.5,-29.5 parent: 60 -- proto: HolopadCommandHos - entities: - - uid: 24033 - components: - - type: Transform - pos: -20.5,1.5 - parent: 60 - proto: HolopadCommandQm entities: - uid: 24063 @@ -109882,12 +109699,19 @@ entities: - type: Transform pos: -32.5,13.5 parent: 60 +- proto: HolopadSecurityArmory + entities: + - uid: 23653 + components: + - type: Transform + pos: -26.5,0.5 + parent: 60 - proto: HolopadSecurityBrig entities: - - uid: 24037 + - uid: 13584 components: - type: Transform - pos: -26.5,-14.5 + pos: -26.5,-5.5 parent: 60 - proto: HolopadSecurityCourtroom entities: @@ -109905,17 +109729,17 @@ entities: parent: 60 - proto: HolopadSecurityFront entities: - - uid: 24036 + - uid: 17958 components: - type: Transform - pos: -19.5,-15.5 + pos: -25.5,-19.5 parent: 60 - proto: HolopadSecurityInterrogation entities: - - uid: 24038 + - uid: 13966 components: - type: Transform - pos: -32.5,-3.5 + pos: -32.5,-1.5 parent: 60 - proto: HolopadSecurityLawyer entities: @@ -109933,10 +109757,10 @@ entities: parent: 60 - proto: HolopadSecurityWarden entities: - - uid: 24034 + - uid: 13971 components: - type: Transform - pos: -26.5,-9.5 + pos: -26.5,-10.5 parent: 60 - proto: HolopadServiceBar entities: @@ -110217,6 +110041,13 @@ entities: - type: Transform pos: -63.49233,41.553234 parent: 60 +- proto: InflatableWallStack5 + entities: + - uid: 8575 + components: + - type: Transform + pos: -48.473454,11.5625925 + parent: 60 - proto: IngotGold entities: - uid: 18455 @@ -110258,11 +110089,11 @@ entities: rot: -1.5707963267948966 rad pos: -110.5,25.5 parent: 60 - - uid: 5313 + - uid: 8431 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-7.5 + pos: -3.5,-6.5 parent: 60 - uid: 13568 components: @@ -110270,12 +110101,6 @@ entities: rot: 3.141592653589793 rad pos: -111.5,24.5 parent: 60 - - uid: 14055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 60 - uid: 24324 components: - type: Transform @@ -110295,12 +110120,6 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,18.5 parent: 60 - - uid: 23836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 60 - uid: 23837 components: - type: Transform @@ -110321,11 +110140,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,16.5 parent: 60 - - uid: 15845 - components: - - type: Transform - pos: -34.5,-21.5 - parent: 60 - uid: 23831 components: - type: Transform @@ -110435,29 +110249,12 @@ entities: parent: 60 - proto: IntercomSecurity entities: - - uid: 11129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,3.5 - parent: 60 - uid: 13118 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-27.5 parent: 60 - - uid: 13296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-6.5 - parent: 60 - - uid: 23830 - components: - - type: Transform - pos: -17.5,-17.5 - parent: 60 - proto: IntercomService entities: - uid: 2754 @@ -110525,11 +110322,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-2.5 parent: 60 - - uid: 24335 - components: - - type: Transform - pos: -17.5,-18.5 - parent: 60 - uid: 24337 components: - type: Transform @@ -110579,15 +110371,15 @@ entities: parent: 60 - proto: KitchenMicrowave entities: - - uid: 367 + - uid: 356 components: - type: Transform - pos: -12.5,-13.5 + pos: -25.5,-14.5 parent: 60 - - uid: 1530 + - uid: 367 components: - type: Transform - pos: -34.5,2.5 + pos: -12.5,-13.5 parent: 60 - uid: 2048 components: @@ -110646,6 +110438,11 @@ entities: - type: Transform pos: 37.5,-31.5 parent: 60 + - uid: 23861 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 60 - uid: 24085 components: - type: Transform @@ -110665,11 +110462,6 @@ entities: - type: Transform pos: -11.4531975,-27.495203 parent: 60 - - uid: 2042 - components: - - type: Transform - pos: -22.39201,0.9298079 - parent: 60 - uid: 2145 components: - type: Transform @@ -110692,6 +110484,11 @@ entities: parent: 60 - type: Physics canCollide: True + - uid: 7033 + components: + - type: Transform + pos: -22.385181,-0.05140546 + parent: 60 - uid: 7638 components: - type: Transform @@ -110752,16 +110549,6 @@ entities: - type: Transform pos: 25.565468,-15.324441 parent: 60 - - uid: 4234 - components: - - type: Transform - pos: -46.455166,-17.122845 - parent: 60 - - uid: 4235 - components: - - type: Transform - pos: -41.508133,-17.091595 - parent: 60 - uid: 4717 components: - type: Transform @@ -110819,10 +110606,10 @@ entities: parent: 60 - proto: LampInterrogator entities: - - uid: 1700 + - uid: 9051 components: - type: Transform - pos: -34.433372,-3.1512034 + pos: -32.48209,0.70187116 parent: 60 - proto: Lantern entities: @@ -110946,6 +110733,8 @@ entities: linkedPorts: 25409: - Pressed: Toggle + 6207: + - Pressed: Toggle - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 15401 @@ -111198,75 +110987,26 @@ entities: parent: 60 - proto: LockerEvidence entities: - - uid: 1725 + - uid: 1534 components: - type: Transform - pos: -29.5,-12.5 + pos: -23.5,-8.5 parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 5936 + - uid: 1564 components: - type: Transform - pos: -23.5,-11.5 + pos: -23.5,-7.5 parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6136 + - uid: 1568 components: - type: Transform - pos: -29.5,-11.5 + pos: -29.5,-8.5 + parent: 60 + - uid: 1569 + components: + - type: Transform + pos: -29.5,-7.5 parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13610 components: - type: Transform @@ -111313,29 +111053,6 @@ entities: - 0 - 0 - 0 - - uid: 24157 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerFreezer entities: - uid: 2623 @@ -111418,42 +111135,13 @@ entities: showEnts: False occludes: True ent: null -- proto: LockerHeadOfSecurityFilledHardsuit +- proto: LockerHeadOfSecurityFilled entities: - - uid: 5933 + - uid: 5456 components: - type: Transform - pos: -19.5,2.5 + pos: -20.5,1.5 parent: 60 - - 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 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17672 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerMedicalFilled entities: - uid: 2900 @@ -111581,94 +111269,35 @@ entities: parent: 60 - proto: LockerSecurityFilled entities: - - uid: 191 - components: - - type: Transform - pos: -34.5,-17.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 1640 + - uid: 357 components: - type: Transform - pos: -34.5,-16.5 + pos: -24.5,-17.5 parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 1870 + - uid: 364 components: - type: Transform - pos: -30.5,2.5 + pos: -24.5,-18.5 parent: 60 - - uid: 3072 + - uid: 491 components: - type: Transform - pos: -18.5,-15.5 + pos: -24.5,-16.5 parent: 60 - - uid: 5661 + - uid: 541 components: - type: Transform - pos: -31.5,2.5 + pos: -28.5,-16.5 parent: 60 - - uid: 7041 + - uid: 552 components: - type: Transform - pos: -34.5,-18.5 + pos: -28.5,-17.5 parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10368 + - uid: 562 components: - type: Transform - pos: -34.5,-19.5 + pos: -28.5,-18.5 parent: 60 - proto: LockerSyndicatePersonal entities: @@ -111719,10 +111348,10 @@ entities: parent: 60 - proto: LockerWardenFilledHardsuit entities: - - uid: 6546 + - uid: 1560 components: - type: Transform - pos: -25.5,-7.5 + pos: -28.5,-11.5 parent: 60 - proto: LockerWeldingSuppliesFilled entities: @@ -111906,27 +111535,32 @@ entities: parent: 60 - proto: MagazineLightRifle entities: - - uid: 11282 + - uid: 1863 components: - type: Transform - pos: -24.328882,2.6569912 + pos: -24.619633,1.6028056 parent: 60 - - uid: 13667 + - uid: 5840 + components: + - type: Transform + pos: -24.260258,1.5715555 + parent: 60 + - uid: 6972 components: - type: Transform - pos: -24.563257,2.6569912 + pos: -24.416508,1.5715555 parent: 60 - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 13800 + - uid: 1902 components: - type: Transform - pos: -21.437603,0.8355694 + pos: -21.416431,-0.15709138 parent: 60 - - uid: 16678 + - uid: 8002 components: - type: Transform - pos: -21.437603,0.8355694 + pos: -21.416431,-0.15709138 parent: 60 - proto: MaintenanceFluffSpawner entities: @@ -111960,6 +111594,11 @@ entities: - type: Transform pos: -64.5,2.5 parent: 60 + - uid: 8448 + components: + - type: Transform + pos: -20.5,5.5 + parent: 60 - uid: 8999 components: - type: Transform @@ -111985,11 +111624,6 @@ entities: - type: Transform pos: -36.5,20.5 parent: 60 - - uid: 18605 - components: - - type: Transform - pos: -20.5,5.5 - parent: 60 - uid: 20076 components: - type: Transform @@ -112167,16 +111801,6 @@ entities: - type: Transform pos: 30.5,-16.5 parent: 60 - - uid: 796 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 60 - - uid: 4746 - components: - - type: Transform - pos: -18.5,-2.5 - parent: 60 - uid: 8750 components: - type: Transform @@ -112249,11 +111873,6 @@ entities: parent: 60 - proto: MedkitFilled entities: - - uid: 3493 - components: - - type: Transform - pos: -19.525343,-2.3159127 - parent: 60 - uid: 5914 components: - type: Transform @@ -112264,6 +111883,11 @@ entities: - type: Transform pos: 29.57766,-48.642044 parent: 60 + - uid: 8710 + components: + - type: Transform + pos: -20.43703,-13.469859 + parent: 60 - uid: 12332 components: - type: Transform @@ -112291,10 +111915,10 @@ entities: - type: Transform pos: 24.473473,-44.545494 parent: 60 - - uid: 9681 + - uid: 11551 components: - type: Transform - pos: -19.322544,-2.322325 + pos: -20.327656,-13.344859 parent: 60 - uid: 21361 components: @@ -112452,12 +112076,6 @@ entities: - 0 - 0 - 0 - - uid: 315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-5.5 - parent: 60 - uid: 319 components: - type: Transform @@ -113201,15 +112819,70 @@ entities: parent: 60 - proto: Paper entities: + - uid: 307 + components: + - type: Transform + pos: -34.514378,-11.291034 + parent: 60 - uid: 934 components: - type: Transform pos: -10.55104,-28.480585 parent: 60 - - uid: 4516 + - uid: 1908 + components: + - type: Transform + pos: -34.514378,-11.291034 + parent: 60 + - uid: 1913 + components: + - type: Transform + pos: -34.514378,-11.291034 + parent: 60 + - uid: 2098 + components: + - type: Transform + pos: -34.514378,-7.2774615 + parent: 60 + - uid: 5368 + components: + - type: Transform + pos: -18.493418,-11.280288 + parent: 60 + - uid: 5424 + components: + - type: Transform + pos: -18.493418,-11.280288 + parent: 60 + - uid: 6648 + components: + - type: Transform + pos: -18.483002,-7.265358 + parent: 60 + - uid: 6683 + components: + - type: Transform + pos: -34.514378,-7.2774615 + parent: 60 + - uid: 6819 + components: + - type: Transform + pos: -18.493418,-11.280288 + parent: 60 + - uid: 7166 + components: + - type: Transform + pos: -18.483002,-7.265358 + parent: 60 + - uid: 8264 + components: + - type: Transform + pos: -34.514378,-7.2774615 + parent: 60 + - uid: 8278 components: - type: Transform - pos: -33.489323,-3.402731 + pos: -18.483002,-7.265358 parent: 60 - uid: 8760 components: @@ -113493,13 +113166,6 @@ entities: - type: Transform pos: 4.5,-31.5 parent: 60 -- proto: PaperBin20 - entities: - - uid: 23942 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 60 - proto: PaperBin5 entities: - uid: 4255 @@ -113507,11 +113173,26 @@ entities: - type: Transform pos: -48.5,-19.5 parent: 60 + - uid: 8443 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 60 + - uid: 8444 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 60 - uid: 9478 components: - type: Transform pos: -44.5,-7.5 parent: 60 + - uid: 11372 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 60 - uid: 16451 components: - type: Transform @@ -113673,21 +113354,36 @@ entities: parent: 60 - proto: Pen entities: - - uid: 307 + - uid: 935 components: - type: Transform - pos: -33.739323,-3.465231 + pos: -10.316665,-28.324335 parent: 60 - - uid: 935 + - uid: 1856 components: - type: Transform - pos: -10.316665,-28.324335 + pos: -34.5,-7.5 + parent: 60 + - uid: 1903 + components: + - type: Transform + pos: -34.5,-11.5 parent: 60 - uid: 4668 components: - type: Transform pos: 6.7427726,-42.739647 parent: 60 + - uid: 5428 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 60 + - uid: 6041 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 60 - uid: 9088 components: - type: Transform @@ -113718,6 +113414,16 @@ entities: - type: Transform pos: -35.320312,19.746838 parent: 60 + - uid: 18215 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 60 + - uid: 18462 + components: + - type: Transform + pos: -31.435102,-20.467825 + parent: 60 - uid: 23152 components: - type: Transform @@ -113772,7 +113478,7 @@ entities: - uid: 21040 components: - type: Transform - pos: -3.519828,-6.376233 + pos: -3.2859347,-6.2203565 parent: 60 - proto: PianoInstrument entities: @@ -114069,10 +113775,10 @@ entities: parent: 60 - proto: PortableFlasher entities: - - uid: 5842 + - uid: 10680 components: - type: Transform - pos: -26.5,0.5 + pos: -26.5,-0.5 parent: 60 - proto: PortableGeneratorJrPacman entities: @@ -114081,11 +113787,6 @@ entities: - type: Transform pos: 40.5,-48.5 parent: 60 - - uid: 4004 - components: - - type: Transform - pos: -31.5,4.50001 - parent: 60 - uid: 5402 components: - type: Transform @@ -114116,6 +113817,11 @@ entities: - type: Transform pos: 24.5,19.5 parent: 60 + - uid: 21392 + components: + - type: Transform + pos: -32.5,3.5 + parent: 60 - uid: 21677 components: - type: Transform @@ -114252,13 +113958,6 @@ entities: - type: Transform pos: -107.5,12.5 parent: 60 -- proto: PosterContrabandBountyHunters - entities: - - uid: 13582 - components: - - type: Transform - pos: -29.5,1.5 - parent: 60 - proto: PosterContrabandC20r entities: - uid: 9128 @@ -114443,10 +114142,10 @@ entities: parent: 60 - proto: PosterContrabandRevolver entities: - - uid: 13585 + - uid: 4754 components: - type: Transform - pos: -24.5,3.5 + pos: -24.5,2.5 parent: 60 - proto: PosterContrabandRIPBadger entities: @@ -114521,15 +114220,15 @@ entities: parent: 60 - proto: PosterContrabandUnreadableAnnouncement entities: - - uid: 1548 + - uid: 5663 components: - type: Transform - pos: -33.512638,-14.264637 + pos: 35.5,-9.5 parent: 60 - - uid: 5663 + - uid: 8419 components: - type: Transform - pos: 35.5,-9.5 + pos: -33.49567,-12.27123 parent: 60 - proto: PosterContrabandVoteWeh entities: @@ -114538,13 +114237,6 @@ entities: - type: Transform pos: 56.5,-9.5 parent: 60 -- proto: PosterContrabandWaffleCorp - entities: - - uid: 17467 - components: - - type: Transform - pos: -23.5,2.5 - parent: 60 - proto: PosterContrabandWehWatches entities: - uid: 154 @@ -114559,11 +114251,6 @@ entities: - type: Transform pos: 8.5,-35.5 parent: 60 - - uid: 9111 - components: - - type: Transform - pos: -23.5,1.5 - parent: 60 - proto: PosterLegit50thAnniversaryVintageReprint entities: - uid: 9565 @@ -114652,10 +114339,10 @@ entities: parent: 60 - proto: PosterLegitEnlist entities: - - uid: 1697 + - uid: 8452 components: - type: Transform - pos: -29.5,-0.5 + pos: -23.5,-17.5 parent: 60 - proto: PosterLegitFoamForceAd entities: @@ -114726,10 +114413,10 @@ entities: parent: 60 - proto: PosterLegitIonRifle entities: - - uid: 13583 + - uid: 8453 components: - type: Transform - pos: -28.5,3.5 + pos: -28.5,2.5 parent: 60 - proto: PosterLegitJustAWeekAway entities: @@ -114886,15 +114573,15 @@ entities: parent: 60 - proto: PosterLegitReportCrimes entities: - - uid: 1635 + - uid: 4697 components: - type: Transform - pos: -29.5,-21.5 + pos: -2.5,-43.5 parent: 60 - - uid: 4697 + - uid: 8420 components: - type: Transform - pos: -2.5,-43.5 + pos: -22.5,-21.5 parent: 60 - uid: 16151 components: @@ -115015,15 +114702,10 @@ entities: - type: Transform pos: 14.5,-18.5 parent: 60 - - uid: 13584 - components: - - type: Transform - pos: -21.5,3.5 - parent: 60 - - uid: 24184 + - uid: 8506 components: - type: Transform - pos: -33.5,-1.5 + pos: -33.5,1.5 parent: 60 - proto: PosterLegitTheOwl entities: @@ -115095,6 +114777,11 @@ entities: - type: Transform pos: -1.5,-2.5 parent: 60 + - uid: 8434 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 60 - uid: 9006 components: - type: Transform @@ -115105,11 +114792,6 @@ entities: - type: Transform pos: 10.5,16.5 parent: 60 - - uid: 11336 - components: - - type: Transform - pos: -23.5,-21.5 - parent: 60 - uid: 11337 components: - type: Transform @@ -115211,20 +114893,20 @@ entities: parent: 60 - proto: PottedPlant22 entities: - - uid: 3843 + - uid: 8476 components: - type: Transform - pos: -6.5,-44.5 + pos: -6.5129194,-44.833622 parent: 60 - - uid: 17295 + - uid: 18487 components: - type: Transform - pos: -0.5,-2.5 + pos: 1.5,-7.5 parent: 60 - - uid: 17330 + - uid: 23896 components: - type: Transform - pos: -0.5,-7.5 + pos: 1.5,-2.5 parent: 60 - proto: PottedPlant24 entities: @@ -115263,11 +114945,6 @@ entities: - type: Transform pos: -1.5,21.5 parent: 60 - - uid: 24102 - components: - - type: Transform - pos: -30.486118,-20.71535 - parent: 60 - proto: PottedPlant4 entities: - uid: 15519 @@ -115345,24 +115022,6 @@ entities: parent: 60 - proto: PottedPlantRandom entities: - - uid: 1238 - components: - - type: Transform - pos: -17.5,2.5 - parent: 60 - - uid: 1638 - components: - - type: Transform - pos: -26.5,-18.5 - parent: 60 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 1938 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 60 - uid: 2774 components: - type: Transform @@ -115448,11 +115107,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 9549 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 60 - uid: 11530 components: - type: Transform @@ -115565,6 +115219,11 @@ entities: - type: Transform pos: -109.5,2.5 parent: 60 + - uid: 23892 + components: + - type: Transform + pos: -17.5,0.5 + parent: 60 - uid: 24018 components: - type: Transform @@ -115606,11 +115265,10 @@ entities: - type: Transform pos: 36.5,-13.5 parent: 60 - - uid: 1620 + - uid: 1650 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,3.5 + pos: -28.5,-20.5 parent: 60 - uid: 4698 components: @@ -115713,6 +115371,11 @@ entities: parent: 60 - type: Physics canCollide: False + - uid: 21154 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 60 - uid: 23114 components: - type: Transform @@ -115732,6 +115395,29 @@ entities: parent: 60 - proto: PoweredDimSmallLight entities: + - uid: 8504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-16.5 + parent: 60 + - uid: 8601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 60 + - uid: 11366 + components: + - type: Transform + pos: -21.5,5.5 + parent: 60 + - uid: 11945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,2.5 + parent: 60 - uid: 18490 components: - type: Transform @@ -115830,11 +115516,6 @@ entities: rot: -1.5707963267948966 rad pos: -61.5,29.5 parent: 60 - - uid: 19620 - components: - - type: Transform - pos: -22.5,5.5 - parent: 60 - uid: 19621 components: - type: Transform @@ -115989,14 +115670,12 @@ entities: parent: 60 - proto: Poweredlight entities: - - uid: 96 + - uid: 6 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-7.5 + pos: -14.5,-17.5 parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 126 components: - type: Transform @@ -116047,22 +115726,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-15.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1295 components: - type: Transform @@ -116078,52 +115741,11 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1536 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1537 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1663 - components: - - type: Transform - pos: -24.5,2.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1831 - components: - - type: Transform - pos: -28.5,2.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1881 - components: - - type: Transform - pos: -19.5,-15.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,0.5 - parent: 60 - - uid: 1978 + - uid: 1584 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-20.5 + rot: -1.5707963267948966 rad + pos: -18.5,-15.5 parent: 60 - uid: 2106 components: @@ -116131,14 +115753,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,15.5 parent: 60 - - uid: 2115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-5.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2117 components: - type: Transform @@ -116147,30 +115761,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-5.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-14.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-14.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2141 components: - type: Transform @@ -116307,6 +115897,11 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 60 + - uid: 3224 + components: + - type: Transform + pos: -28.5,1.5 + parent: 60 - uid: 3691 components: - type: Transform @@ -116322,6 +115917,17 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 4234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-17.5 + parent: 60 + - uid: 4281 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 60 - uid: 4358 components: - type: Transform @@ -116431,12 +116037,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,1.5 - parent: 60 - uid: 5826 components: - type: Transform @@ -116490,13 +116090,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5925 - components: - - type: Transform - pos: -7.5,-26.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5928 components: - type: Transform @@ -116555,14 +116148,17 @@ entities: - type: Transform pos: 9.5,-19.5 parent: 60 - - uid: 6714 + - uid: 6708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-26.5 + rot: 3.141592653589793 rad + pos: -33.5,-20.5 + parent: 60 + - uid: 6797 + components: + - type: Transform + pos: -29.5,-3.5 parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 6915 components: - type: Transform @@ -116588,6 +116184,12 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 7232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-12.5 + parent: 60 - uid: 7632 components: - type: Transform @@ -116608,6 +116210,12 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,-13.5 parent: 60 + - uid: 7906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-19.5 + parent: 60 - uid: 8041 components: - type: Transform @@ -116629,6 +116237,11 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8352 + components: + - type: Transform + pos: -24.5,1.5 + parent: 60 - uid: 8390 components: - type: Transform @@ -116640,14 +116253,6 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,14.5 parent: 60 - - uid: 8401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8404 components: - type: Transform @@ -116660,32 +116265,48 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,19.5 parent: 60 - - uid: 9163 + - uid: 8525 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,14.5 + pos: -36.5,-16.5 parent: 60 - - uid: 9165 + - uid: 8526 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-38.5 + pos: -38.5,-8.5 parent: 60 - - uid: 9176 + - uid: 8571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 60 + - uid: 8572 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-19.5 + pos: -28.5,-17.5 parent: 60 - - uid: 9223 + - uid: 8576 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-7.5 + pos: -16.5,4.5 + parent: 60 + - uid: 9163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,14.5 + parent: 60 + - uid: 9165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-38.5 parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 9427 components: - type: Transform @@ -116714,12 +116335,6 @@ entities: rot: 3.141592653589793 rad pos: -56.5,11.5 parent: 60 - - uid: 9679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,1.5 - parent: 60 - uid: 10202 components: - type: Transform @@ -116756,14 +116371,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-15.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10672 components: - type: Transform @@ -116771,14 +116378,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10674 components: - type: Transform @@ -116786,61 +116385,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10676 - components: - - type: Transform - pos: -17.5,-22.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-21.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,2.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,6.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10687 components: - type: Transform @@ -116999,12 +116543,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-16.5 - parent: 60 - uid: 11726 components: - type: Transform @@ -117060,12 +116598,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 13478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-16.5 - parent: 60 - uid: 13480 components: - type: Transform @@ -117104,14 +116636,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 13972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,5.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 14228 components: - type: Transform @@ -117503,14 +117027,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 17987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 18095 components: - type: Transform @@ -117682,13 +117198,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,5.5 parent: 60 - - uid: 19879 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 20985 components: - type: Transform @@ -117721,11 +117230,22 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 21504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 60 - uid: 21703 components: - type: Transform pos: -46.5,-15.5 parent: 60 + - uid: 21764 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 60 - uid: 23116 components: - type: Transform @@ -117935,16 +117455,11 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,46.5 parent: 60 - - uid: 23923 - components: - - type: Transform - pos: -24.5,-2.5 - parent: 60 - - uid: 23941 + - uid: 23836 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-20.5 + rot: -1.5707963267948966 rad + pos: -14.5,-8.5 parent: 60 - uid: 24109 components: @@ -117991,6 +117506,18 @@ entities: - type: Transform pos: 34.5,51.5 parent: 60 +- proto: PoweredlightExterior + entities: + - uid: 8581 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 60 + - uid: 8582 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 60 - proto: PoweredlightLED entities: - uid: 3166 @@ -118029,20 +117556,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5294 - components: - - type: Transform - pos: -31.5,-26.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5810 - components: - - type: Transform - pos: -39.5,-26.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 23131 components: - type: Transform @@ -118171,52 +117684,22 @@ entities: parent: 60 - proto: PoweredSmallLight entities: - - uid: 109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-17.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-19.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 180 + - uid: 313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-16.5 + pos: -20.5,-9.5 parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 234 + - uid: 314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-18.5 + pos: -20.5,-5.5 parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 769 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-20.5 parent: 60 - - uid: 937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-27.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1211 components: - type: Transform @@ -118232,56 +117715,11 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1534 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-10.5 - parent: 60 - - uid: 2091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-3.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2094 - components: - - type: Transform - pos: -19.5,-12.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2095 - components: - - type: Transform - pos: -19.5,-9.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2096 - components: - - type: Transform - pos: -33.5,-6.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2097 - components: - - type: Transform - pos: -33.5,-9.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2182 + - uid: 1657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-35.5 + pos: -32.5,-5.5 parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2819 components: - type: Transform @@ -118310,13 +117748,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4014 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4293 components: - type: Transform @@ -118352,13 +117783,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4554 - components: - - type: Transform - pos: -33.5,-12.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4572 components: - type: Transform @@ -118389,14 +117813,11 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7014 + - uid: 7139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-28.5 + pos: -32.5,-9.5 parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7186 components: - type: Transform @@ -118435,13 +117856,36 @@ entities: - type: Transform pos: -46.5,21.5 parent: 60 - - uid: 8403 + - uid: 8484 components: - type: Transform - pos: -13.5,-50.5 + rot: -1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 60 + - uid: 8503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-5.5 + parent: 60 + - uid: 8518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-28.5 + parent: 60 + - uid: 8519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 60 + - uid: 8598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-26.5 parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8765 components: - type: Transform @@ -118623,20 +118067,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 17466 - components: - - type: Transform - pos: -34.5,21.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17469 - components: - - type: Transform - pos: -46.5,25.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 17470 components: - type: Transform @@ -118644,13 +118074,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 17471 - components: - - type: Transform - pos: -54.5,21.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 17734 components: - type: Transform @@ -118674,6 +118097,11 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 + - uid: 17960 + components: + - type: Transform + pos: -32.5,0.5 + parent: 60 - uid: 18629 components: - type: Transform @@ -118688,14 +118116,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 18822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-28.5 - parent: 60 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 18853 components: - type: Transform @@ -118711,17 +118131,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 18997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-3.5 - parent: 60 - - uid: 19130 - components: - - type: Transform - pos: -6.5,-44.5 - parent: 60 - uid: 19194 components: - type: Transform @@ -118809,11 +118218,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 21067 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 60 - uid: 21246 components: - type: Transform @@ -118913,11 +118317,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 - - uid: 23943 - components: - - type: Transform - pos: -31.5,5.5 - parent: 60 - uid: 24138 components: - type: Transform @@ -118969,6 +118368,97 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 +- proto: PoweredWarmSmallLight + entities: + - uid: 1728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 60 + - uid: 7031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 60 + - uid: 8523 + components: + - type: Transform + pos: -46.5,25.5 + parent: 60 + - uid: 8590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 60 + - uid: 8595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-19.5 + parent: 60 + - uid: 8596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 60 + - uid: 8597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-16.5 + parent: 60 + - uid: 8654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-35.5 + parent: 60 + - uid: 8655 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 60 + - uid: 8662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-29.5 + parent: 60 + - uid: 8664 + components: + - type: Transform + pos: -13.5,-50.5 + parent: 60 + - uid: 8665 + components: + - type: Transform + pos: -34.5,21.5 + parent: 60 + - uid: 8667 + components: + - type: Transform + pos: -54.5,21.5 + parent: 60 + - uid: 8668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-27.5 + parent: 60 + - uid: 8671 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 60 + - uid: 8946 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 60 - proto: Protolathe entities: - uid: 7081 @@ -118990,11 +118480,6 @@ entities: - type: Transform pos: 29.5,-10.5 parent: 60 - - uid: 1293 - components: - - type: Transform - pos: -28.5,2.5 - parent: 60 - uid: 1372 components: - type: Transform @@ -119010,10 +118495,10 @@ entities: - type: Transform pos: -31.5,-30.5 parent: 60 - - uid: 1819 + - uid: 1907 components: - type: Transform - pos: -24.5,1.5 + pos: -22.5,-20.5 parent: 60 - uid: 2174 components: @@ -119050,6 +118535,11 @@ entities: - type: Transform pos: 44.5,-42.5 parent: 60 + - uid: 3843 + components: + - type: Transform + pos: -20.5,5.5 + parent: 60 - uid: 3970 components: - type: Transform @@ -119115,6 +118605,11 @@ entities: - type: Transform pos: -55.5,-16.5 parent: 60 + - uid: 5430 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 60 - uid: 5777 components: - type: Transform @@ -119125,6 +118620,11 @@ entities: - type: Transform pos: -67.5,11.5 parent: 60 + - uid: 6206 + components: + - type: Transform + pos: -24.5,0.5 + parent: 60 - uid: 6240 components: - type: Transform @@ -119155,6 +118655,11 @@ entities: - type: Transform pos: -0.5,15.5 parent: 60 + - uid: 6734 + components: + - type: Transform + pos: -28.5,1.5 + parent: 60 - uid: 7035 components: - type: Transform @@ -119165,6 +118670,11 @@ entities: - type: Transform pos: 13.5,-15.5 parent: 60 + - uid: 7650 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 60 - uid: 7703 components: - type: Transform @@ -119275,11 +118785,6 @@ entities: - type: Transform pos: 6.5,-48.5 parent: 60 - - uid: 18604 - components: - - type: Transform - pos: -20.5,5.5 - parent: 60 - uid: 19043 components: - type: Transform @@ -119340,6 +118845,11 @@ entities: - type: Transform pos: 28.5,-7.5 parent: 60 + - uid: 21162 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 60 - uid: 21610 components: - type: Transform @@ -119510,12 +119020,6 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,35.5 parent: 60 - - uid: 10585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-6.5 - parent: 60 - uid: 16130 components: - type: Transform @@ -119666,18 +119170,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,57.5 parent: 60 - - uid: 24374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-5.5 - parent: 60 - - uid: 24375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-4.5 - parent: 60 - proto: RailingCorner entities: - uid: 24199 @@ -120058,11 +119550,6 @@ entities: - type: Transform pos: -60.5,14.5 parent: 60 - - uid: 18092 - components: - - type: Transform - pos: -35.5,0.5 - parent: 60 - uid: 18093 components: - type: Transform @@ -120131,47 +119618,11 @@ entities: parent: 60 - proto: RandomSpawner entities: - - uid: 258 - components: - - type: Transform - pos: -16.5,21.5 - parent: 60 - - uid: 295 - components: - - type: Transform - pos: -35.5,25.5 - parent: 60 - - uid: 323 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 60 - - uid: 352 - components: - - type: Transform - pos: -22.5,9.5 - parent: 60 - - uid: 584 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 60 - - uid: 707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-20.5 - parent: 60 - uid: 817 components: - type: Transform pos: 47.5,0.5 parent: 60 - - uid: 2162 - components: - - type: Transform - pos: -27.5,-22.5 - parent: 60 - uid: 2163 components: - type: Transform @@ -120207,11 +119658,6 @@ entities: - type: Transform pos: 8.5,-41.5 parent: 60 - - uid: 3590 - components: - - type: Transform - pos: 23.5,-24.5 - parent: 60 - uid: 3621 components: - type: Transform @@ -120282,16 +119728,6 @@ entities: - type: Transform pos: -7.5,-54.5 parent: 60 - - uid: 5246 - components: - - type: Transform - pos: 34.5,-22.5 - parent: 60 - - uid: 5247 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 60 - uid: 5329 components: - type: Transform @@ -120307,11 +119743,6 @@ entities: - type: Transform pos: -41.5,-28.5 parent: 60 - - uid: 5688 - components: - - type: Transform - pos: -35.5,-24.5 - parent: 60 - uid: 6237 components: - type: Transform @@ -120322,11 +119753,6 @@ entities: - type: Transform pos: 9.5,12.5 parent: 60 - - uid: 6333 - components: - - type: Transform - pos: 13.5,14.5 - parent: 60 - uid: 6443 components: - type: Transform @@ -120363,11 +119789,6 @@ entities: - type: Transform pos: -58.5,-13.5 parent: 60 - - uid: 8744 - components: - - type: Transform - pos: 15.5,20.5 - parent: 60 - uid: 10809 components: - type: Transform @@ -120378,11 +119799,6 @@ entities: - type: Transform pos: -4.5,-30.5 parent: 60 - - uid: 13139 - components: - - type: Transform - pos: 29.5,8.5 - parent: 60 - uid: 18720 components: - type: Transform @@ -120408,11 +119824,6 @@ entities: - type: Transform pos: -43.5,-13.5 parent: 60 - - uid: 19514 - components: - - type: Transform - pos: 24.5,23.5 - parent: 60 - uid: 19722 components: - type: Transform @@ -120428,11 +119839,6 @@ entities: - type: Transform pos: 37.5,20.5 parent: 60 - - uid: 19887 - components: - - type: Transform - pos: 15.5,-24.5 - parent: 60 - uid: 19922 components: - type: Transform @@ -120443,56 +119849,6 @@ entities: - type: Transform pos: 31.5,0.5 parent: 60 - - uid: 21407 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 60 - - uid: 21408 - components: - - type: Transform - pos: -6.5,10.5 - parent: 60 - - uid: 21409 - components: - - type: Transform - pos: -43.5,19.5 - parent: 60 - - uid: 21410 - components: - - type: Transform - pos: -36.5,0.5 - parent: 60 - - uid: 21411 - components: - - type: Transform - pos: -38.5,-21.5 - parent: 60 - - uid: 23644 - components: - - type: Transform - pos: -28.5,23.5 - parent: 60 - - uid: 23645 - components: - - type: Transform - pos: -20.5,25.5 - parent: 60 - - uid: 23646 - components: - - type: Transform - pos: -14.5,12.5 - parent: 60 - - uid: 23647 - components: - - type: Transform - pos: -14.5,1.5 - parent: 60 - - uid: 23648 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 60 - uid: 23651 components: - type: Transform @@ -120503,11 +119859,6 @@ entities: - type: Transform pos: -0.5,-36.5 parent: 60 - - uid: 23656 - components: - - type: Transform - pos: 17.5,0.5 - parent: 60 - proto: RandomVending entities: - uid: 10380 @@ -120663,15 +120014,15 @@ entities: parent: 60 - proto: ReinforcedPlasmaWindow entities: - - uid: 2004 + - uid: 1574 components: - type: Transform - pos: -27.5,-1.5 + pos: -27.5,-2.5 parent: 60 - - uid: 2009 + - uid: 1575 components: - type: Transform - pos: -25.5,-1.5 + pos: -25.5,-2.5 parent: 60 - uid: 6985 components: @@ -120924,99 +120275,51 @@ entities: parent: 60 - proto: ReinforcedWindow entities: - - uid: 8 - components: - - type: Transform - pos: -26.5,-17.5 - parent: 60 - - uid: 10 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 60 - - uid: 22 + - uid: 13 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-10.5 + pos: -23.5,-12.5 parent: 60 - uid: 25 components: - type: Transform - pos: -32.5,-7.5 - parent: 60 - - uid: 57 - components: - - type: Transform - pos: -21.5,-16.5 - parent: 60 - - uid: 76 - components: - - type: Transform - pos: -23.5,-8.5 - parent: 60 - - uid: 97 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 60 - - uid: 105 - components: - - type: Transform - pos: -17.5,-12.5 - parent: 60 - - uid: 115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 - parent: 60 - - uid: 124 - components: - - type: Transform - pos: -23.5,-10.5 + pos: -32.5,-21.5 parent: 60 - uid: 130 components: - type: Transform - pos: -32.5,-10.5 - parent: 60 - - uid: 149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 + pos: -34.5,-17.5 parent: 60 - - uid: 156 + - uid: 143 components: - type: Transform - pos: -28.5,-11.5 + pos: -33.5,-21.5 parent: 60 - - uid: 157 + - uid: 209 components: - type: Transform - pos: -29.5,-17.5 + rot: 1.5707963267948966 rad + pos: 7.5,-18.5 parent: 60 - - uid: 182 + - uid: 236 components: - type: Transform - pos: -17.5,-13.5 + pos: -29.5,-12.5 parent: 60 - - uid: 209 + - uid: 239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-18.5 + pos: -35.5,-18.5 parent: 60 - - uid: 210 + - uid: 240 components: - type: Transform - pos: -24.5,-11.5 + pos: -19.5,-21.5 parent: 60 - - uid: 231 + - uid: 249 components: - type: Transform - pos: -20.5,-10.5 + pos: -29.5,-11.5 parent: 60 - uid: 256 components: @@ -121028,32 +120331,21 @@ entities: - type: Transform pos: 57.5,-6.5 parent: 60 - - uid: 269 + - uid: 267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-12.5 + pos: -17.5,-20.5 parent: 60 - - uid: 313 + - uid: 295 components: - type: Transform - pos: -29.5,-10.5 + pos: -17.5,-7.5 parent: 60 - uid: 320 components: - type: Transform pos: 57.5,-7.5 parent: 60 - - uid: 356 - components: - - type: Transform - pos: -20.5,-13.5 - parent: 60 - - uid: 357 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 60 - uid: 385 components: - type: Transform @@ -121124,11 +120416,6 @@ entities: - type: Transform pos: 20.5,1.5 parent: 60 - - uid: 493 - components: - - type: Transform - pos: -24.5,-8.5 - parent: 60 - uid: 501 components: - type: Transform @@ -121164,11 +120451,6 @@ entities: - type: Transform pos: -13.5,-5.5 parent: 60 - - uid: 562 - components: - - type: Transform - pos: -17.5,-10.5 - parent: 60 - uid: 563 components: - type: Transform @@ -121245,6 +120527,11 @@ entities: - type: Transform pos: -12.5,-0.5 parent: 60 + - uid: 796 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 60 - uid: 797 components: - type: Transform @@ -121255,15 +120542,25 @@ entities: - type: Transform pos: -17.5,11.5 parent: 60 - - uid: 840 + - uid: 844 components: - type: Transform - pos: -20.5,-7.5 + pos: -17.5,-6.5 parent: 60 - - uid: 845 + - uid: 986 components: - type: Transform - pos: -29.5,-8.5 + pos: -28.5,-7.5 + parent: 60 + - uid: 1022 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 60 + - uid: 1168 + components: + - type: Transform + pos: -26.5,-7.5 parent: 60 - uid: 1192 components: @@ -121280,6 +120577,11 @@ entities: - type: Transform pos: -8.5,-32.5 parent: 60 + - uid: 1217 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 60 - uid: 1337 components: - type: Transform @@ -121305,82 +120607,90 @@ entities: - type: Transform pos: 2.5,-36.5 parent: 60 + - uid: 1462 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 60 + - uid: 1464 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 60 - uid: 1469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-12.5 + pos: -29.5,-14.5 parent: 60 - - uid: 1476 + - uid: 1478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-10.5 + pos: -23.5,-16.5 parent: 60 - - uid: 1587 + - uid: 1488 components: - type: Transform - pos: -35.5,-13.5 + pos: -24.5,-7.5 parent: 60 - - uid: 1676 + - uid: 1527 components: - type: Transform - pos: -23.5,-25.5 + pos: -17.5,-10.5 parent: 60 - - uid: 1684 + - uid: 1547 components: - type: Transform - pos: -27.5,-21.5 + pos: -28.5,-8.5 parent: 60 - - uid: 1706 + - uid: 1553 components: - type: Transform - pos: -33.5,-21.5 + pos: -25.5,-7.5 parent: 60 - - uid: 1744 + - uid: 1676 components: - type: Transform - pos: -17.5,-6.5 + pos: -23.5,-25.5 parent: 60 - - uid: 1745 + - uid: 1723 components: - type: Transform - pos: -17.5,-7.5 + pos: -25.5,-25.5 parent: 60 - - uid: 1765 + - uid: 1846 components: - type: Transform - pos: -35.5,-9.5 + pos: -22.5,-2.5 parent: 60 - - uid: 1805 + - uid: 1857 components: - type: Transform - pos: -17.5,-9.5 + pos: -24.5,-8.5 parent: 60 - - uid: 1830 + - uid: 1918 components: - type: Transform - pos: -22.5,-1.5 + pos: -23.5,-11.5 parent: 60 - - uid: 1853 + - uid: 1925 components: - type: Transform - pos: -35.5,-7.5 + pos: -35.5,-5.5 parent: 60 - - uid: 1854 + - uid: 1926 components: - type: Transform - pos: -35.5,-6.5 + pos: -35.5,-11.5 parent: 60 - - uid: 1856 + - uid: 1934 components: - type: Transform - pos: -35.5,-10.5 + pos: -17.5,-19.5 parent: 60 - - uid: 1859 + - uid: 2004 components: - type: Transform - pos: -35.5,-12.5 + pos: -17.5,-14.5 parent: 60 - uid: 2057 components: @@ -121654,21 +120964,11 @@ entities: - type: Transform pos: 57.5,-11.5 parent: 60 - - uid: 3722 - components: - - type: Transform - pos: -18.5,0.5 - parent: 60 - uid: 3739 components: - type: Transform pos: 54.5,19.5 parent: 60 - - uid: 3773 - components: - - type: Transform - pos: -25.5,-21.5 - parent: 60 - uid: 3796 components: - type: Transform @@ -121793,11 +121093,6 @@ entities: - type: Transform pos: 29.5,-56.5 parent: 60 - - uid: 4080 - components: - - type: Transform - pos: -21.5,-19.5 - parent: 60 - uid: 4084 components: - type: Transform @@ -121814,6 +121109,11 @@ entities: - type: Transform pos: 39.5,-21.5 parent: 60 + - uid: 4200 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 60 - uid: 4301 components: - type: Transform @@ -121976,6 +121276,12 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-53.5 parent: 60 + - uid: 5020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 60 - uid: 5035 components: - type: Transform @@ -122168,11 +121474,6 @@ entities: - type: Transform pos: 13.5,6.5 parent: 60 - - uid: 5368 - components: - - type: Transform - pos: 14.5,4.5 - parent: 60 - uid: 5371 components: - type: Transform @@ -122288,11 +121589,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,14.5 parent: 60 - - uid: 5754 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 60 - uid: 5793 components: - type: Transform @@ -122496,11 +121792,10 @@ entities: - type: Transform pos: 45.5,-25.5 parent: 60 - - uid: 7048 + - uid: 7043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-15.5 + pos: -18.5,-0.5 parent: 60 - uid: 7068 components: @@ -122881,11 +122176,6 @@ entities: - type: Transform pos: 48.5,-48.5 parent: 60 - - uid: 7812 - components: - - type: Transform - pos: -18.5,1.5 - parent: 60 - uid: 7816 components: - type: Transform @@ -122899,18 +122189,12 @@ entities: - uid: 7900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 60 - - uid: 7902 - components: - - type: Transform - pos: -20.5,-17.5 + pos: -18.5,-1.5 parent: 60 - - uid: 7903 + - uid: 7909 components: - type: Transform - pos: -18.5,-17.5 + pos: -20.5,-6.5 parent: 60 - uid: 8039 components: @@ -122922,6 +122206,11 @@ entities: - type: Transform pos: 30.5,-25.5 parent: 60 + - uid: 8261 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 60 - uid: 8268 components: - type: Transform @@ -122942,6 +122231,27 @@ entities: - type: Transform pos: 52.5,18.5 parent: 60 + - uid: 8445 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 60 + - uid: 8479 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 60 + - uid: 8520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 60 + - uid: 8577 + components: + - type: Transform + pos: -18.5,0.5 + parent: 60 - uid: 8780 components: - type: Transform @@ -122987,6 +122297,11 @@ entities: - type: Transform pos: 23.5,-3.5 parent: 60 + - uid: 8947 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 60 - uid: 8953 components: - type: Transform @@ -122997,10 +122312,10 @@ entities: - type: Transform pos: -66.5,-19.5 parent: 60 - - uid: 9011 + - uid: 9034 components: - type: Transform - pos: -24.5,-7.5 + pos: -32.5,-10.5 parent: 60 - uid: 9041 components: @@ -123136,6 +122451,46 @@ entities: - type: Transform pos: 22.5,3.5 parent: 60 + - uid: 10685 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 60 + - uid: 10686 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 60 + - uid: 10828 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 60 + - uid: 11097 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 60 + - uid: 11098 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 60 + - uid: 11128 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 60 + - uid: 11129 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 60 + - uid: 11338 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 60 - uid: 11438 components: - type: Transform @@ -124694,11 +124049,6 @@ entities: - type: Transform pos: -9.5,-4.5 parent: 60 - - uid: 18215 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 60 - uid: 18413 components: - type: Transform @@ -124739,6 +124089,17 @@ entities: - type: Transform pos: 39.5,-15.5 parent: 60 + - uid: 18822 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 60 + - uid: 18857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-9.5 + parent: 60 - uid: 18901 components: - type: Transform @@ -125300,11 +124661,6 @@ entities: - type: Transform pos: 57.5,32.5 parent: 60 - - uid: 24084 - components: - - type: Transform - pos: -20.5,-4.5 - parent: 60 - uid: 24087 components: - type: Transform @@ -125367,84 +124723,6 @@ entities: - Pressed: Toggle 920: - Pressed: Toggle - - uid: 4898 - components: - - type: MetaData - name: Cell 5 Shutters - - type: Transform - pos: -27.257097,-7.6439037 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 6733: - - Pressed: Toggle - 6206: - - Pressed: Toggle - - uid: 10621 - components: - - type: MetaData - name: Cell 4 Shutters - - type: Transform - pos: -27.504074,-7.661018 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 7045: - - Pressed: Toggle - 6796: - - Pressed: Toggle - - uid: 10622 - components: - - type: MetaData - name: Medical Cell Shutters - - type: Transform - pos: -27.778229,-7.254768 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 188: - - Pressed: Toggle - 148: - - Pressed: Toggle - - uid: 11098 - components: - - type: MetaData - name: Cell 1 Shutters - - type: Transform - pos: -27.516373,-7.2643003 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 6467: - - Pressed: Toggle - 7032: - - Pressed: Toggle - - uid: 11555 - components: - - type: MetaData - name: Cell 2 Shutters - - type: Transform - pos: -27.266254,-7.242599 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 552: - - Pressed: Toggle - 8002: - - Pressed: Toggle - - uid: 19870 - components: - - type: MetaData - name: Cell 3 Shutters - - type: Transform - pos: -27.761703,-7.6384225 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 6746: - - Pressed: Toggle - 6203: - - Pressed: Toggle - uid: 23871 components: - type: MetaData @@ -125474,18 +124752,6 @@ entities: - type: Transform pos: -40.494568,11.691846 parent: 60 -- proto: RiotShield - entities: - - uid: 1883 - components: - - type: Transform - pos: -24.660069,1.386905 - parent: 60 - - uid: 1887 - components: - - type: Transform - pos: -24.660069,1.386905 - parent: 60 - proto: RobocopCircuitBoard entities: - uid: 24823 @@ -125507,11 +124773,6 @@ entities: - type: Transform pos: 41.440662,-10.344523 parent: 60 - - uid: 2017 - components: - - type: Transform - pos: -19.510386,-4.290659 - parent: 60 - proto: RubberStampMime entities: - uid: 7243 @@ -125570,6 +124831,21 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-14.5 parent: 60 + - uid: 8291 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 60 + - uid: 9043 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 60 + - uid: 9048 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 60 - uid: 15599 components: - type: Transform @@ -125605,16 +124881,6 @@ entities: - type: Transform pos: 56.5,28.5 parent: 60 - - uid: 23851 - components: - - type: Transform - pos: -30.5,-17.5 - parent: 60 - - uid: 23852 - components: - - type: Transform - pos: -17.5,-14.5 - parent: 60 - uid: 23853 components: - type: Transform @@ -125650,11 +124916,6 @@ entities: - type: Transform pos: -32.5,6.5 parent: 60 - - uid: 23861 - components: - - type: Transform - pos: -35.5,-3.5 - parent: 60 - uid: 23862 components: - type: Transform @@ -125675,11 +124936,6 @@ entities: - type: Transform pos: -11.5,-21.5 parent: 60 - - uid: 24434 - components: - - type: Transform - pos: -26.5,-21.5 - parent: 60 - uid: 24436 components: - type: Transform @@ -125770,16 +125026,11 @@ entities: parent: 60 - proto: SecurityTechFab entities: - - uid: 1907 + - uid: 5836 components: - type: Transform - pos: -26.5,2.5 + pos: -26.5,1.5 parent: 60 - - type: MaterialStorage - materialWhiteList: - - Glass - - Plastic - - Steel - proto: SeedExtractor entities: - uid: 5380 @@ -125991,11 +125242,6 @@ entities: - type: Transform pos: -53.48943,7.209055 parent: 60 - - uid: 16456 - components: - - type: Transform - pos: -24.476772,1.5819757 - parent: 60 - proto: SheetSteel entities: - uid: 2314 @@ -126009,6 +125255,11 @@ entities: - type: Transform pos: 50.57873,-36.45204 parent: 60 + - uid: 6149 + components: + - type: Transform + pos: -24.474873,0.5569985 + parent: 60 - uid: 6590 components: - type: Transform @@ -126029,12 +125280,6 @@ entities: - type: Transform pos: -53.494404,7.5158625 parent: 60 - - uid: 10586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.486025,1.614541 - parent: 60 - uid: 11799 components: - type: Transform @@ -126111,6 +125356,13 @@ entities: parent: 60 - proto: ShuttersNormal entities: + - uid: 186 + components: + - type: Transform + pos: -55.5,0.5 + parent: 60 + - type: DeviceLinkSink + invokeCounter: 2 - uid: 914 components: - type: Transform @@ -126149,30 +125401,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-32.5 parent: 60 - - uid: 148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-6.5 - parent: 60 - - uid: 188 - components: - - type: Transform - pos: -17.5,-7.5 - parent: 60 - - uid: 552 - components: - - type: Transform - pos: -17.5,-13.5 - parent: 60 - - uid: 1022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,1.5 - parent: 60 - - type: DeviceLinkSink - invokeCounter: 2 - uid: 1454 components: - type: Transform @@ -126184,16 +125412,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-26.5 parent: 60 - - uid: 1932 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 60 - - uid: 1942 - components: - - type: Transform - pos: -21.5,-19.5 - parent: 60 - uid: 2250 components: - type: Transform @@ -126221,13 +125439,6 @@ entities: - type: Transform pos: 38.5,-15.5 parent: 60 - - uid: 3737 - components: - - type: Transform - pos: -18.5,0.5 - parent: 60 - - type: DeviceLinkSink - invokeCounter: 2 - uid: 3844 components: - type: Transform @@ -126296,21 +125507,10 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,-6.5 parent: 60 - - uid: 6203 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 60 - - uid: 6206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-12.5 - parent: 60 - - uid: 6467 + - uid: 6207 components: - type: Transform - pos: -17.5,-10.5 + pos: -25.5,-25.5 parent: 60 - uid: 6522 components: @@ -126330,17 +125530,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 60 - - uid: 6733 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 60 - - uid: 6746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-6.5 - parent: 60 - uid: 6772 components: - type: Transform @@ -126365,23 +125554,6 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-34.5 parent: 60 - - uid: 6796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-9.5 - parent: 60 - - uid: 7032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-9.5 - parent: 60 - - uid: 7045 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 60 - uid: 7131 components: - type: Transform @@ -126399,17 +125571,6 @@ entities: - type: Transform pos: 39.5,-15.5 parent: 60 - - uid: 7685 - components: - - type: Transform - pos: -25.5,-21.5 - parent: 60 - - uid: 8002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-12.5 - parent: 60 - uid: 8381 components: - type: Transform @@ -126420,15 +125581,10 @@ entities: - type: Transform pos: -12.5,-52.5 parent: 60 - - uid: 8716 - components: - - type: Transform - pos: -21.5,-20.5 - parent: 60 - - uid: 8892 + - uid: 8678 components: - type: Transform - pos: -21.5,-18.5 + pos: -13.5,-19.5 parent: 60 - uid: 9167 components: @@ -126509,11 +125665,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-3.5 parent: 60 - - uid: 19155 - components: - - type: Transform - pos: -33.5,-21.5 - parent: 60 - uid: 21085 components: - type: Transform @@ -126854,15 +126005,6 @@ entities: linkedPorts: 7728: - Pressed: Toggle - - uid: 12596 - components: - - type: Transform - pos: -54.5,0.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 12598: - - Pressed: Toggle - uid: 14913 components: - type: Transform @@ -126911,19 +126053,6 @@ entities: - Pressed: Toggle 16973: - Pressed: Toggle - - uid: 18438 - components: - - type: Transform - pos: -8.5,-2.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 18519: - - Pressed: Toggle - 18518: - - Pressed: Toggle - 18517: - - Pressed: Toggle - proto: SignalButtonDirectional entities: - uid: 1240 @@ -126955,37 +126084,6 @@ entities: - Pressed: Toggle 4355: - Pressed: Toggle - - uid: 1931 - components: - - type: MetaData - name: Lobby Shutdown - - type: Transform - pos: -20.5,-14.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 8892: - - Pressed: Toggle - 1942: - - Pressed: Toggle - 8716: - - Pressed: Toggle - 7685: - - Pressed: Toggle - 1932: - - Pressed: Toggle - - uid: 1941 - components: - - type: MetaData - name: Privacy Shutter Button - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-18.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 19155: - - Pressed: Toggle - uid: 2287 components: - type: Transform @@ -127077,20 +126175,6 @@ entities: - Pressed: Toggle 16541: - Pressed: Toggle - - uid: 4522 - components: - - type: MetaData - name: Privacy Shutter Button - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-1.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 3737: - - Pressed: Toggle - 1022: - - Pressed: Toggle - uid: 9571 components: - type: Transform @@ -127189,44 +126273,6 @@ entities: - Pressed: Toggle 17379: - Pressed: Toggle - - uid: 13624 - components: - - type: Transform - pos: -52.5,28.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 11628: - - Pressed: Toggle - 13618: - - Pressed: Toggle - 11629: - - Pressed: Toggle - 11583: - - Pressed: Toggle - 13616: - - Pressed: Toggle - 12021: - - Pressed: Toggle - - uid: 13662 - components: - - type: Transform - pos: -48.5,28.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 11629: - - Pressed: Toggle - 13618: - - Pressed: Toggle - 11628: - - Pressed: Toggle - 11583: - - Pressed: Toggle - 13616: - - Pressed: Toggle - 12021: - - Pressed: Toggle - uid: 13899 components: - type: MetaData @@ -127292,22 +126338,6 @@ entities: linkedPorts: 13901: - Pressed: Toggle - - uid: 14726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-1.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 21763: - - Pressed: Toggle - 21764: - - Pressed: Toggle - 21765: - - Pressed: Toggle - 21766: - - Pressed: Toggle - uid: 14910 components: - type: Transform @@ -127359,21 +126389,6 @@ entities: - Pressed: Toggle 16542: - Pressed: Toggle - - uid: 19170 - components: - - type: Transform - pos: -3.5,2.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 21770: - - Pressed: Toggle - 21769: - - Pressed: Toggle - 21768: - - Pressed: Toggle - 21767: - - Pressed: Toggle - uid: 20425 components: - type: MetaData @@ -127450,18 +126465,6 @@ entities: linkedPorts: 24333: - Pressed: Toggle - - uid: 24336 - components: - - type: MetaData - name: Janitorial Service Button - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-14.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 24335: - - Pressed: Toggle - uid: 24347 components: - type: MetaData @@ -127474,18 +126477,6 @@ entities: linkedPorts: 11167: - Pressed: Toggle - - uid: 24351 - components: - - type: MetaData - name: Janitorial Service Light - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 24350: - - Pressed: Toggle - uid: 24365 components: - type: MetaData @@ -127540,6 +126531,157 @@ entities: - Pressed: Toggle - proto: SignalSwitchDirectional entities: + - uid: 1580 + components: + - type: MetaData + name: Cell 2 Blast Door Switch + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.502918,-9.625589 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 1638: + - On: Open + - Off: Close + 1639: + - Off: Close + - On: Open + 1640: + - On: Open + - Off: Close + - uid: 1583 + components: + - type: MetaData + name: Cell 4 Blast Door Switch + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.502918,-9.625589 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 1293: + - On: Open + - Off: Close + 1238: + - Off: Close + - On: Open + 1257: + - On: Open + - Off: Close + - uid: 1624 + components: + - type: MetaData + name: Cell 3 Blast Door Switch + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.502918,-9.222812 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 1354: + - On: Open + - Off: Close + 1384: + - On: Open + - Off: Close + 1652: + - On: Open + - Off: Close + - uid: 1699 + components: + - type: MetaData + name: Cell 1 Blast Door Switch + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.502918,-9.222812 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 1653: + - On: Open + - Off: Close + 1655: + - On: Open + - Off: Close + 1656: + - On: Open + - Off: Close + - uid: 2103 + components: + - type: MetaData + name: Interior Door Open/Close + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.496037,-18.715696 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 1919: + - On: Open + - Off: Close + - uid: 4506 + components: + - type: MetaData + name: Inner Windoor Switch + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 5825: + - On: Open + - Off: Close + - uid: 5758 + components: + - type: MetaData + name: Inner Windoor Switch + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 1530: + - On: Open + - Off: Close + - uid: 5835 + components: + - type: MetaData + name: Inner Windoor Switch + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 4201: + - On: Open + - Off: Close + - uid: 6307 + components: + - type: MetaData + name: Inner Windoor Switch + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 1485: + - On: Open + - Off: Close + - uid: 7563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,1.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 186: + - Status: Toggle - uid: 8127 components: - type: MetaData @@ -127553,6 +126695,241 @@ entities: 24352: - On: On - Off: Off + - uid: 8221 + components: + - type: MetaData + name: Window Blast Doors + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-2.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 1681: + - On: Open + - Off: Close + 10622: + - On: Open + - Off: Close + 5432: + - On: Open + - Off: Close + - uid: 8349 + components: + - type: MetaData + name: Exterior Door Open/Close + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.502981,-20.229586 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 8297: + - On: Open + - Off: Close + - uid: 8433 + components: + - type: MetaData + name: Exterior Window Blast Doors Open/Close + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 188: + - On: Open + - Off: Close + 187: + - On: Open + - Off: Close + 9680: + - On: Open + - Off: Close + 4564: + - On: Open + - Off: Close + 4563: + - On: Open + - Off: Close + 4552: + - On: Open + - Off: Close + 4542: + - On: Open + - Off: Close + 4505: + - On: Open + - Off: Close + 4457: + - On: Open + - Off: Close + 13978: + - On: Open + - Off: Close + 8721: + - On: Open + - Off: Close + 4565: + - On: Open + - Off: Close + 207: + - On: Open + - Off: Close + 208: + - On: Open + - Off: Close + 9679: + - On: Open + - Off: Close + - uid: 8670 + components: + - type: MetaData + name: Exterior Door Open/Close + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.498095,-20.215696 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 242: + - On: Open + - Off: Close + 8454: + - On: Open + - Off: Close + - uid: 8677 + components: + - type: MetaData + name: Bathroom Privacy Shutter + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 8678: + - On: Open + - Off: Close + - uid: 8908 + components: + - type: MetaData + name: Interior Door Open/Close + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.498095,-18.722641 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 243: + - On: Open + - Off: Close + 245: + - On: Open + - Off: Close + - uid: 9309 + components: + - type: Transform + pos: -54.5,0.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 186: + - Status: Toggle + - uid: 9397 + components: + - type: MetaData + name: Window Switch + - type: Transform + pos: -8.5,-2.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 18519: + - On: Open + - Off: Close + 18518: + - On: Open + - Off: Close + 18517: + - On: Open + - Off: Close + - uid: 9549 + components: + - type: MetaData + name: Shutter Switch + - type: Transform + pos: -48.5,28.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 11628: + - On: Open + - Off: Close + 11629: + - On: Open + - Off: Close + 13618: + - On: Open + - Off: Close + 11583: + - On: Open + - Off: Close + 13616: + - On: Open + - Off: Close + 12021: + - On: Open + - Off: Close + - uid: 9550 + components: + - type: MetaData + name: Shutter Switch + - type: Transform + pos: -52.5,28.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 11628: + - On: Open + - Off: Close + 13618: + - On: Open + - Off: Close + 11629: + - On: Open + - Off: Close + 11583: + - On: Open + - Off: Close + 13616: + - On: Open + - Off: Close + 12021: + - On: Open + - Off: Close + - uid: 17957 + components: + - type: MetaData + name: Bridge Entrance Blast Doors Open/Close + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 60 + - type: DeviceLinkSource + linkedPorts: + 190: + - On: Open + - Off: Close + 189: + - On: Open + - Off: Close + 191: + - On: Open + - Off: Close + 206: + - On: Open + - Off: Close - uid: 18802 components: - type: MetaData @@ -127606,6 +126983,14 @@ entities: 397: - On: Reverse - Off: Forward + - uid: 18859 + components: + - type: MetaData + name: Janitor Light Switch + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 60 - uid: 19837 components: - type: MetaData @@ -127649,21 +127034,6 @@ entities: 21755: - On: Open - Off: Close - - uid: 24818 - components: - - type: MetaData - name: light switch - - type: Transform - pos: 21.5,-14.5 - parent: 60 - - type: DeviceLinkSource - linkedPorts: - 1209: - - On: On - - Off: Off - 1210: - - On: On - - Off: Off - proto: SignAnomaly entities: - uid: 9496 @@ -127685,10 +127055,10 @@ entities: parent: 60 - proto: SignArmory entities: - - uid: 1814 + - uid: 7684 components: - type: Transform - pos: -28.5,-1.5 + pos: -28.5,-2.5 parent: 60 - proto: SignAtmos entities: @@ -128529,6 +127899,11 @@ entities: - type: Transform pos: -58.5,10.5 parent: 60 + - uid: 13975 + components: + - type: Transform + pos: -31.5,1.5 + parent: 60 - uid: 16067 components: - type: Transform @@ -128726,11 +128101,6 @@ entities: - type: Transform pos: 2.5,-25.5 parent: 60 - - uid: 4299 - components: - - type: Transform - pos: -39.5,-17.5 - parent: 60 - proto: SignHydro1 entities: - uid: 3840 @@ -128740,10 +128110,10 @@ entities: parent: 60 - proto: SignInterrogation entities: - - uid: 1639 + - uid: 8957 components: - type: Transform - pos: -31.5,-5.5 + pos: -32.5,-2.5 parent: 60 - proto: SignJanitor entities: @@ -128767,13 +128137,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-25.5 parent: 60 -- proto: SignLaserMed - entities: - - uid: 14624 - components: - - type: Transform - pos: -29.5,2.5 - parent: 60 - proto: SignLawyer entities: - uid: 18024 @@ -128873,11 +128236,6 @@ entities: parent: 60 - proto: SignPrison entities: - - uid: 1699 - components: - - type: Transform - pos: -27.5,-6.5 - parent: 60 - uid: 13670 components: - type: Transform @@ -128942,30 +128300,25 @@ entities: - type: Transform pos: -56.5,25.5 parent: 60 - - uid: 24156 +- proto: SignRedFour + entities: + - uid: 1642 components: - type: Transform - pos: -33.5,-11.5 + pos: -20.5,-10.5 parent: 60 -- proto: SignRedFour - entities: - uid: 13856 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,21.5 parent: 60 - - uid: 24155 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 60 - proto: SignRedOne entities: - - uid: 24152 + - uid: 1817 components: - type: Transform - pos: -19.5,-8.5 + pos: -32.5,-6.5 parent: 60 - proto: SignRedSix entities: @@ -128976,27 +128329,27 @@ entities: parent: 60 - proto: SignRedThree entities: - - uid: 7514 + - uid: 1773 components: - type: Transform - pos: -44.5,25.5 + pos: -20.5,-6.5 parent: 60 - - uid: 24154 + - uid: 7514 components: - type: Transform - pos: -33.5,-5.5 + pos: -44.5,25.5 parent: 60 - proto: SignRedTwo entities: - - uid: 8156 + - uid: 1634 components: - type: Transform - pos: -34.5,22.5 + pos: -32.5,-10.5 parent: 60 - - uid: 24153 + - uid: 8156 components: - type: Transform - pos: -19.5,-11.5 + pos: -34.5,22.5 parent: 60 - proto: SignRestroom entities: @@ -129047,11 +128400,6 @@ entities: - type: Transform pos: -40.5,-1.5 parent: 60 - - uid: 11945 - components: - - type: Transform - pos: -22.5,-17.5 - parent: 60 - uid: 14664 components: - type: Transform @@ -129109,10 +128457,10 @@ entities: parent: 60 - proto: SignSecureMedRed entities: - - uid: 6117 + - uid: 3505 components: - type: Transform - pos: -26.5,3.5 + pos: -26.5,2.5 parent: 60 - uid: 8174 components: @@ -129143,19 +128491,14 @@ entities: - type: Transform pos: -2.5,-2.5 parent: 7536 - - uid: 9149 - components: - - type: Transform - pos: -21.5,-14.5 - parent: 60 - - uid: 9150 +- proto: SignSecurity + entities: + - uid: 835 components: - type: Transform - pos: -31.5,-14.5 + pos: -35.5,-17.5 parent: 60 -- proto: SignSecurity - entities: - - uid: 16164 + - uid: 8527 components: - type: Transform pos: -17.5,-21.5 @@ -131848,10 +131191,10 @@ entities: parent: 60 - proto: SpawnMobMcGriff entities: - - uid: 4710 + - uid: 2806 components: - type: Transform - pos: -27.5,-9.5 + pos: -25.5,-11.5 parent: 60 - proto: SpawnMobMonkeyPunpun entities: @@ -131908,7 +131251,7 @@ entities: parent: 60 - proto: SpawnMobShiva entities: - - uid: 19794 + - uid: 1989 components: - type: Transform pos: -20.5,0.5 @@ -132079,10 +131422,10 @@ entities: parent: 60 - proto: SpawnPointHeadOfSecurity entities: - - uid: 1731 + - uid: 2095 components: - type: Transform - pos: -20.5,1.5 + pos: -21.5,0.5 parent: 60 - proto: SpawnPointJanitor entities: @@ -132340,47 +131683,57 @@ entities: parent: 60 - proto: SpawnPointSecurityCadet entities: - - uid: 21069 + - uid: 1981 components: - type: Transform - pos: -31.5,1.5 + pos: -30.5,-19.5 parent: 60 - - uid: 21162 + - uid: 1990 components: - type: Transform - pos: -32.5,2.5 + pos: -25.5,-20.5 parent: 60 - - uid: 21200 + - uid: 2007 components: - type: Transform - pos: -32.5,4.5 + pos: -27.5,-20.5 parent: 60 - - uid: 21217 + - uid: 2008 components: - type: Transform - pos: -30.5,1.5 + pos: -22.5,-19.5 parent: 60 - proto: SpawnPointSecurityOfficer entities: - - uid: 137 + - uid: 1987 components: - type: Transform - pos: -33.5,-17.5 + pos: -27.5,-18.5 parent: 60 - - uid: 270 + - uid: 2011 components: - type: Transform - pos: -33.5,-18.5 + pos: -27.5,-17.5 parent: 60 - - uid: 7904 + - uid: 2012 components: - type: Transform - pos: -33.5,-19.5 + pos: -25.5,-18.5 parent: 60 - - uid: 7905 + - uid: 2015 components: - type: Transform - pos: -33.5,-16.5 + pos: -27.5,-16.5 + parent: 60 + - uid: 3773 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 60 + - uid: 8449 + components: + - type: Transform + pos: -25.5,-17.5 parent: 60 - proto: SpawnPointServiceWorker entities: @@ -132440,10 +131793,10 @@ entities: parent: 60 - proto: SpawnPointWarden entities: - - uid: 1461 + - uid: 1980 components: - type: Transform - pos: -26.5,-9.5 + pos: -26.5,-11.5 parent: 60 - proto: SpawnVendingMachineRestockFoodDrink entities: @@ -132498,11 +131851,6 @@ entities: - type: Transform pos: -6.7018414,-28.567108 parent: 60 - - uid: 6034 - components: - - type: Transform - pos: -33.1201,-0.48510244 - parent: 60 - proto: StairDark entities: - uid: 2908 @@ -132519,6 +131867,11 @@ entities: parent: 60 - proto: Stairs entities: + - uid: 11340 + components: + - type: Transform + pos: 15.5,5.5 + parent: 60 - uid: 23769 components: - type: Transform @@ -132529,11 +131882,6 @@ entities: - type: Transform pos: 16.5,5.5 parent: 60 - - uid: 23839 - components: - - type: Transform - pos: 15.5,5.5 - parent: 60 - uid: 24057 components: - type: Transform @@ -132552,6 +131900,14 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-7.5 parent: 60 +- proto: StairStageDark + entities: + - uid: 8949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,4.5 + parent: 60 - proto: StairStageWood entities: - uid: 5021 @@ -132609,10 +131965,10 @@ entities: - type: Transform pos: 12.5,-21.5 parent: 60 - - uid: 18695 + - uid: 10829 components: - type: Transform - pos: -32.5,-21.5 + pos: -29.5,-21.5 parent: 60 - uid: 18699 components: @@ -132634,11 +131990,6 @@ entities: - type: Transform pos: -39.5,26.5 parent: 60 - - uid: 23717 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 60 - uid: 23729 components: - type: Transform @@ -132671,18 +132022,6 @@ entities: - type: Transform pos: 10.5,5.5 parent: 60 - - uid: 2714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 60 - - uid: 3168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-7.5 - parent: 60 - uid: 24012 components: - type: Transform @@ -132726,23 +132065,51 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-16.5 parent: 60 - - uid: 1696 + - uid: 341 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,1.5 + pos: -27.5,-5.5 parent: 60 - - uid: 1823 + - uid: 352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.531624,-14.186428 + pos: -25.5,-5.5 parent: 60 - - uid: 1852 + - uid: 363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.484749,-14.202053 + rot: 1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 60 + - uid: 492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 60 + - uid: 707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-18.5 + parent: 60 + - uid: 1633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 60 + - uid: 1868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-17.5 + parent: 60 + - uid: 1869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-17.5 parent: 60 - uid: 3165 components: @@ -132761,12 +132128,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,-35.5 parent: 60 - - uid: 4542 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,1.5 - parent: 60 - uid: 4803 components: - type: Transform @@ -132778,10 +132139,16 @@ entities: - type: Transform pos: -44.5,-6.5 parent: 60 - - uid: 9682 + - uid: 9015 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 60 + - uid: 11384 components: - type: Transform - pos: -29.51366,-6.3277454 + rot: 3.141592653589793 rad + pos: -34.5,-16.5 parent: 60 - uid: 14541 components: @@ -132828,26 +132195,32 @@ entities: - type: Transform pos: 1.482888,34.64684 parent: 60 - - uid: 24150 + - uid: 25283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-20.5 + rot: 3.141592653589793 rad + pos: 52.5,49.5 parent: 60 - - uid: 24151 +- proto: StoolBar + entities: + - uid: 1921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-20.5 + rot: 3.141592653589793 rad + pos: 21.5,-27.5 parent: 60 - - uid: 25283 + - uid: 1922 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,49.5 + pos: 20.5,-27.5 + parent: 60 + - uid: 1923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-27.5 parent: 60 -- proto: StoolBar - entities: - uid: 2224 components: - type: Transform @@ -133032,10 +132405,10 @@ entities: parent: 60 - proto: Stunbaton entities: - - uid: 1653 + - uid: 5429 components: - type: Transform - pos: -34.412434,3.3669972 + pos: -28.512793,-20.483536 parent: 60 - proto: SubstationBasic entities: @@ -133107,12 +132480,12 @@ entities: - type: Transform pos: -5.5,-1.5 parent: 7536 - - uid: 8696 + - uid: 8342 components: - type: MetaData - name: Security Sub North + name: Security Substation - type: Transform - pos: -30.5,4.5 + pos: -34.5,2.5 parent: 60 - uid: 8940 components: @@ -133300,10 +132673,20 @@ entities: parent: 7536 - proto: SuitStorageSec entities: - - uid: 21214 + - uid: 1740 components: - type: Transform - pos: -27.5,2.5 + pos: -27.5,1.5 + parent: 60 + - uid: 1904 + components: + - type: Transform + pos: -25.5,1.5 + parent: 60 + - uid: 1906 + components: + - type: Transform + pos: -24.5,-1.5 parent: 60 - proto: SurveillanceCameraCommand entities: @@ -134148,6 +133531,38 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Smoking Area + - uid: 8424 + components: + - type: Transform + pos: -27.5,7.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North Security Hall + - uid: 8676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-22.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South Security Hall + - uid: 13967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,4.5 + parent: 60 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Ext Grav Gen - uid: 17468 components: - type: Transform @@ -134312,17 +133727,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Theatre Backroom - - uid: 24290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-20.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Court Main Hall - uid: 24293 components: - type: Transform @@ -134464,28 +133868,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Toolroom - - uid: 24321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,4.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Grav Gen - - uid: 24322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-22.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Detective Office - uid: 24711 components: - type: Transform @@ -134782,17 +134164,6 @@ entities: - SurveillanceCameraMedical nameSet: True id: Morgue - - uid: 23825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-4.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: BrigMed - uid: 24280 components: - type: Transform @@ -134934,10 +134305,10 @@ entities: parent: 60 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 18781 + - uid: 5848 components: - type: Transform - pos: -22.5,2.5 + pos: -22.5,1.5 parent: 60 - proto: SurveillanceCameraRouterService entities: @@ -135062,28 +134433,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Sci RND Hall - - uid: 24265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,1.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Sci Hall - - uid: 24266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,9.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Robotics Hall - uid: 24267 components: - type: Transform @@ -135130,17 +134479,6 @@ entities: id: RD Room - proto: SurveillanceCameraSecurity entities: - - uid: 1904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Entrance - uid: 4274 components: - type: Transform @@ -135152,147 +134490,146 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Lawyer Office - - uid: 7811 + - uid: 6705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-0.5 + pos: -21.5,-20.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: HoS Office - - uid: 8380 + id: Security East Entrance + - uid: 6779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,2.5 + rot: 3.141592653589793 rad + pos: -31.5,-18.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Security Break Room - - uid: 9507 + id: Security West Entrance + - uid: 8428 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-15.5 + pos: -33.5,-5.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Courthouse - - uid: 13658 + id: Cell 1 + - uid: 8717 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-13.5 + pos: -19.5,-9.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Perma Brig - - uid: 21042 + id: Cell 4 + - uid: 8956 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-22.5 + pos: -33.5,-9.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Perma Entrance - - uid: 21043 + id: Cell 2 + - uid: 9011 components: - type: Transform - pos: -25.5,-5.5 + pos: -20.5,-1.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Sec North - - uid: 21044 + id: HoS Office + - uid: 9507 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,2.5 + pos: -44.5,-15.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Armory - - uid: 21046 + id: Courthouse + - uid: 11339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-11.5 + pos: -25.5,-12.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Sec Exterior West - - uid: 21047 + id: Warden's Office + - uid: 11663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-11.5 + rot: 3.141592653589793 rad + pos: -19.5,-5.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Sec Exterior East - - uid: 21048 + id: Cell 3 + - uid: 13098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 + rot: 3.141592653589793 rad + pos: -26.5,1.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Sec East - - uid: 21049 + id: Armory + - uid: 13658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-10.5 + rot: 3.141592653589793 rad + pos: -11.5,-13.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Sec West - - uid: 21050 + id: Perma Brig + - uid: 14229 components: - type: Transform - pos: -25.5,-20.5 + rot: 3.141592653589793 rad + pos: -34.5,0.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Sec Entrance - - uid: 21154 + id: Interrogation + - uid: 21042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-2.5 + rot: 3.141592653589793 rad + pos: -7.5,-22.5 parent: 60 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Interrogation + id: Perma Entrance - uid: 21180 components: - type: Transform @@ -135304,27 +134641,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Detective Office - - uid: 24287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-18.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security Locker Room - - uid: 24288 - components: - - type: Transform - pos: -24.5,-16.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Security South - uid: 24294 components: - type: Transform @@ -135335,72 +134651,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Perma Brig Locker Room - - uid: 24314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-7.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Warden's Office - - uid: 24315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-9.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 1 - - uid: 24316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-12.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 2 - - uid: 24317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-6.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 3 - - uid: 24318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-9.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 4 - - uid: 24319 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-12.5 - parent: 60 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Cell 5 - proto: SurveillanceCameraService entities: - uid: 21079 @@ -135675,8 +134925,25 @@ entities: parent: 60 - type: Tag tags: [] +- proto: SyringeInaprovaline + entities: + - uid: 14618 + components: + - type: Transform + pos: -19.265156,-13.438609 + parent: 60 - proto: Table entities: + - uid: 10 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 60 + - uid: 20 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 60 - uid: 78 components: - type: Transform @@ -135692,6 +134959,16 @@ entities: - type: Transform pos: -12.5,-14.5 parent: 60 + - uid: 233 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 60 + - uid: 246 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 60 - uid: 328 components: - type: Transform @@ -135707,6 +134984,11 @@ entities: - type: Transform pos: 0.5,17.5 parent: 60 + - uid: 721 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 60 - uid: 730 components: - type: Transform @@ -135717,6 +134999,11 @@ entities: - type: Transform pos: -5.5,-28.5 parent: 60 + - uid: 764 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 60 - uid: 825 components: - type: Transform @@ -135732,30 +135019,60 @@ entities: - type: Transform pos: -66.5,6.5 parent: 60 - - uid: 1478 + - uid: 1549 components: - type: Transform - pos: -32.5,-15.5 + pos: -26.5,-6.5 parent: 60 - - uid: 1644 + - uid: 1550 components: - type: Transform - pos: -34.5,-3.5 + pos: -27.5,-6.5 parent: 60 - - uid: 1646 + - uid: 1572 components: - type: Transform - pos: -33.5,-3.5 + pos: -25.5,-6.5 + parent: 60 + - uid: 1635 + components: + - type: Transform + pos: -26.5,-20.5 parent: 60 - uid: 1678 components: - type: Transform pos: 9.5,-51.5 parent: 60 - - uid: 1908 + - uid: 1822 components: - type: Transform - pos: -25.5,-13.5 + pos: -32.5,-11.5 + parent: 60 + - uid: 1833 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 60 + - uid: 1914 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 60 + - uid: 1917 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 60 + - uid: 1920 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 60 + - uid: 1924 + components: + - type: Transform + pos: 20.5,-26.5 parent: 60 - uid: 2076 components: @@ -135889,12 +135206,6 @@ entities: - type: Transform pos: 3.5,-38.5 parent: 60 - - uid: 4754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-2.5 - parent: 60 - uid: 4818 components: - type: Transform @@ -135930,11 +135241,6 @@ entities: - type: Transform pos: 0.5,15.5 parent: 60 - - uid: 5756 - components: - - type: Transform - pos: -19.5,-17.5 - parent: 60 - uid: 5771 components: - type: Transform @@ -135955,16 +135261,6 @@ entities: - type: Transform pos: 17.5,-45.5 parent: 60 - - uid: 5935 - components: - - type: Transform - pos: -27.5,-13.5 - parent: 60 - - uid: 5983 - components: - - type: Transform - pos: -26.5,-13.5 - parent: 60 - uid: 6313 components: - type: Transform @@ -136068,11 +135364,6 @@ entities: - type: Transform pos: 43.5,0.5 parent: 60 - - uid: 7787 - components: - - type: Transform - pos: -32.5,3.5 - parent: 60 - uid: 7788 components: - type: Transform @@ -136093,11 +135384,47 @@ entities: - type: Transform pos: -58.5,-17.5 parent: 60 + - uid: 8438 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 60 + - uid: 8466 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 60 + - uid: 8607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-2.5 + parent: 60 + - uid: 8712 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 60 + - uid: 8713 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 60 + - uid: 8720 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 60 - uid: 8756 components: - type: Transform pos: -64.5,0.5 parent: 60 + - uid: 8898 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 60 - uid: 8909 components: - type: Transform @@ -136123,6 +135450,11 @@ entities: - type: Transform pos: -44.5,-10.5 parent: 60 + - uid: 9159 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 60 - uid: 9171 components: - type: Transform @@ -136200,6 +135532,11 @@ entities: rot: 3.141592653589793 rad pos: -18.5,32.5 parent: 60 + - uid: 10369 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 60 - uid: 10620 components: - type: Transform @@ -136305,6 +135642,11 @@ entities: - type: Transform pos: 24.5,-0.5 parent: 60 + - uid: 13296 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 60 - uid: 13498 components: - type: Transform @@ -136315,12 +135657,6 @@ entities: - type: Transform pos: -12.5,-13.5 parent: 60 - - uid: 13623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-16.5 - parent: 60 - uid: 13649 components: - type: Transform @@ -136343,6 +135679,11 @@ entities: - type: Transform pos: -7.5,-11.5 parent: 60 + - uid: 13767 + components: + - type: Transform + pos: -32.5,0.5 + parent: 60 - uid: 13874 components: - type: Transform @@ -136448,6 +135789,11 @@ entities: - type: Transform pos: -38.5,19.5 parent: 60 + - uid: 17474 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 60 - uid: 17656 components: - type: Transform @@ -136691,6 +136037,22 @@ entities: - type: Transform pos: 47.5,12.5 parent: 60 + - uid: 23645 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 60 + - uid: 23648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-2.5 + parent: 60 + - uid: 23656 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 60 - uid: 23665 components: - type: Transform @@ -136716,11 +136078,6 @@ entities: - type: Transform pos: -41.5,-6.5 parent: 60 - - uid: 24101 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 60 - uid: 24231 components: - type: Transform @@ -136841,6 +136198,34 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,21.5 parent: 60 +- proto: TableFancyBlue + entities: + - uid: 5757 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 60 +- proto: TableFancyGreen + entities: + - uid: 1840 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 60 +- proto: TableFancyOrange + entities: + - uid: 8682 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 60 +- proto: TableFancyPurple + entities: + - uid: 2579 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 60 - proto: TableGlass entities: - uid: 123 @@ -137019,30 +136404,20 @@ entities: - type: Transform pos: -65.5,9.5 parent: 60 - - uid: 1175 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 60 - uid: 1339 components: - type: Transform pos: 7.5,-26.5 parent: 60 - - uid: 1472 - components: - - type: Transform - pos: -23.5,-9.5 - parent: 60 - - uid: 1666 + - uid: 1647 components: - type: Transform - pos: -34.5,2.5 + pos: -24.5,-14.5 parent: 60 - - uid: 1793 + - uid: 1870 components: - type: Transform - pos: -24.5,2.5 + pos: -25.5,-14.5 parent: 60 - uid: 2212 components: @@ -137154,21 +136529,16 @@ entities: - type: Transform pos: 15.5,-33.5 parent: 60 - - uid: 5972 + - uid: 5983 components: - type: Transform - pos: -34.5,3.5 + pos: -24.5,1.5 parent: 60 - uid: 6158 components: - type: Transform pos: -113.5,8.5 parent: 60 - - uid: 6541 - components: - - type: Transform - pos: -29.5,-9.5 - parent: 60 - uid: 6544 components: - type: Transform @@ -137252,21 +136622,6 @@ entities: - type: Transform pos: -67.5,9.5 parent: 60 - - uid: 8667 - components: - - type: Transform - pos: -34.5,-0.5 - parent: 60 - - uid: 9015 - components: - - type: Transform - pos: -25.5,-11.5 - parent: 60 - - uid: 9089 - components: - - type: Transform - pos: -27.5,-11.5 - parent: 60 - uid: 9132 components: - type: Transform @@ -137292,11 +136647,6 @@ entities: - type: Transform pos: 13.5,-3.5 parent: 7536 - - uid: 9152 - components: - - type: Transform - pos: -34.5,1.5 - parent: 60 - uid: 9164 components: - type: Transform @@ -137317,16 +136667,6 @@ entities: - type: Transform pos: -40.5,5.5 parent: 60 - - uid: 10369 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 60 - - uid: 11127 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 60 - uid: 12349 components: - type: Transform @@ -137413,16 +136753,6 @@ entities: - type: Transform pos: 36.5,17.5 parent: 60 - - uid: 18767 - components: - - type: Transform - pos: -24.5,-0.5 - parent: 60 - - uid: 18771 - components: - - type: Transform - pos: -24.5,0.5 - parent: 60 - uid: 18824 components: - type: Transform @@ -137567,15 +136897,20 @@ entities: - type: Transform pos: 25.5,-15.5 parent: 60 - - uid: 1871 + - uid: 1733 components: - type: Transform - pos: -21.5,0.5 + pos: -20.5,-0.5 parent: 60 - - uid: 1956 + - uid: 1745 components: - type: Transform - pos: -22.5,0.5 + pos: -21.5,-0.5 + parent: 60 + - uid: 1847 + components: + - type: Transform + pos: -22.5,-0.5 parent: 60 - uid: 2022 components: @@ -138280,11 +137615,6 @@ entities: - type: Transform pos: 31.5,-16.5 parent: 60 - - uid: 1503 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 60 - uid: 3223 components: - type: Transform @@ -138325,6 +137655,11 @@ entities: - type: Transform pos: -55.5,-12.5 parent: 60 + - uid: 8749 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 60 - uid: 9492 components: - type: Transform @@ -138365,11 +137700,6 @@ entities: - type: Transform pos: -19.5,20.5 parent: 60 - - uid: 14631 - components: - - type: Transform - pos: -31.5,-4.5 - parent: 60 - uid: 16411 components: - type: Transform @@ -139059,6 +138389,11 @@ entities: - type: Transform pos: -4.5,-44.5 parent: 60 + - uid: 1552 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 60 - uid: 3408 components: - type: Transform @@ -139074,11 +138409,6 @@ entities: - type: Transform pos: 29.5,-22.5 parent: 60 - - uid: 6039 - components: - - type: Transform - pos: -24.5,-13.5 - parent: 60 - uid: 6321 components: - type: Transform @@ -139128,11 +138458,6 @@ entities: parent: 60 - proto: VendingMachineCoffee entities: - - uid: 1549 - components: - - type: Transform - pos: -28.5,-18.5 - parent: 60 - uid: 6139 components: - type: Transform @@ -139163,6 +138488,11 @@ entities: - type: Transform pos: 3.5,21.5 parent: 60 + - uid: 17295 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 60 - uid: 24356 components: - type: Transform @@ -139203,13 +138533,6 @@ entities: - type: Transform pos: 21.5,-40.5 parent: 60 -- proto: VendingMachineDonut - entities: - - uid: 1766 - components: - - type: Transform - pos: -29.5,-18.5 - parent: 60 - proto: VendingMachineEngiDrobe entities: - uid: 7637 @@ -139294,10 +138617,10 @@ entities: parent: 60 - proto: VendingMachineRestockDonut entities: - - uid: 5660 + - uid: 11369 components: - type: Transform - pos: -21.517738,5.3513722 + pos: -22.478699,3.461222 parent: 60 - proto: VendingMachineRoboDrobe entities: @@ -139329,22 +138652,17 @@ entities: parent: 60 - proto: VendingMachineSec entities: - - uid: 1634 - components: - - type: Transform - pos: -34.5,-15.5 - parent: 60 - - uid: 9683 + - uid: 634 components: - type: Transform - pos: -31.5,-0.5 + pos: -28.5,-14.5 parent: 60 - proto: VendingMachineSecDrobe entities: - - uid: 1482 + - uid: 635 components: - type: Transform - pos: -34.5,-20.5 + pos: -27.5,-14.5 parent: 60 - proto: VendingMachineSeeds entities: @@ -139460,6 +138778,12 @@ entities: parent: 60 - proto: WallmountTelescreen entities: + - uid: 1910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-19.5 + parent: 60 - uid: 2611 components: - type: Transform @@ -139475,29 +138799,12 @@ entities: - type: Transform pos: -25.5,-28.5 parent: 60 - - uid: 5743 - components: - - type: Transform - pos: -18.5,-14.5 - parent: 60 - uid: 7582 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,19.5 parent: 60 - - uid: 13158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-11.5 - parent: 60 - - uid: 13718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-11.5 - parent: 60 - proto: WallmountTelevision entities: - uid: 8148 @@ -139926,32 +139233,11 @@ entities: parent: 7536 - proto: WallReinforced entities: - - uid: 6 - components: - - type: Transform - pos: -32.5,-5.5 - parent: 60 - uid: 11 components: - type: Transform pos: 56.5,-4.5 parent: 60 - - uid: 12 - components: - - type: Transform - pos: -24.5,-6.5 - parent: 60 - - uid: 13 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-5.5 - parent: 60 - - uid: 20 - components: - - type: Transform - pos: -20.5,-8.5 - parent: 60 - uid: 38 components: - type: Transform @@ -139967,138 +139253,45 @@ entities: - type: Transform pos: -62.5,-17.5 parent: 60 - - uid: 62 - components: - - type: Transform - pos: 46.5,19.5 - parent: 60 - - uid: 90 - components: - - type: Transform - pos: 8.5,-44.5 - parent: 60 - - uid: 91 - components: - - type: Transform - pos: -29.5,15.5 - parent: 60 - - uid: 116 + - uid: 51 components: - type: Transform - pos: -32.5,-11.5 + pos: -29.5,-17.5 parent: 60 - - uid: 119 + - uid: 62 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-4.5 + pos: 46.5,19.5 parent: 60 - - uid: 122 + - uid: 67 components: - type: Transform - pos: -32.5,-8.5 + pos: -35.5,-15.5 parent: 60 - - uid: 143 + - uid: 77 components: - type: Transform - pos: -27.5,-6.5 + pos: -35.5,2.5 parent: 60 - - uid: 150 + - uid: 90 components: - type: Transform - pos: -33.5,-5.5 + pos: 8.5,-44.5 parent: 60 - - uid: 152 + - uid: 91 components: - type: Transform - pos: -31.5,-18.5 + pos: -29.5,15.5 parent: 60 - uid: 165 components: - type: Transform pos: 57.5,-8.5 parent: 60 - - uid: 184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-16.5 - parent: 60 - - uid: 186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-14.5 - parent: 60 - - uid: 187 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-15.5 - parent: 60 - - uid: 189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-17.5 - parent: 60 - - uid: 190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-11.5 - parent: 60 - - uid: 206 - components: - - type: Transform - pos: -35.5,-21.5 - parent: 60 - - uid: 207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,2.5 - parent: 60 - - uid: 208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,3.5 - parent: 60 - - uid: 213 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 60 - uid: 237 components: - type: Transform - pos: -28.5,-6.5 - parent: 60 - - uid: 239 - components: - - type: Transform - pos: -34.5,-5.5 - parent: 60 - - uid: 242 - components: - - type: Transform - pos: -18.5,-14.5 - parent: 60 - - uid: 246 - components: - - type: Transform - pos: -33.5,-14.5 - parent: 60 - - uid: 267 - components: - - type: Transform - pos: -34.5,-14.5 - parent: 60 - - uid: 278 - components: - - type: Transform - pos: -21.5,-14.5 + pos: -34.5,-4.5 parent: 60 - uid: 290 components: @@ -140110,38 +139303,11 @@ entities: - type: Transform pos: 57.5,-4.5 parent: 60 - - uid: 309 - components: - - type: Transform - pos: -32.5,-14.5 - parent: 60 - - uid: 314 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 60 - uid: 324 components: - type: Transform pos: 51.5,-7.5 parent: 60 - - uid: 336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-1.5 - parent: 60 - - uid: 341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-0.5 - parent: 60 - - uid: 342 - components: - - type: Transform - pos: -19.5,-14.5 - parent: 60 - uid: 343 components: - type: Transform @@ -140152,12 +139318,6 @@ entities: - type: Transform pos: 35.5,-4.5 parent: 60 - - uid: 364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-2.5 - parent: 60 - uid: 366 components: - type: Transform @@ -140243,11 +139403,6 @@ entities: - type: Transform pos: 3.5,-4.5 parent: 60 - - uid: 492 - components: - - type: Transform - pos: -24.5,-21.5 - parent: 60 - uid: 498 components: - type: Transform @@ -140627,10 +139782,15 @@ entities: - type: Transform pos: -21.5,-27.5 parent: 60 - - uid: 784 + - uid: 774 components: - type: Transform - pos: -20.5,-5.5 + pos: -23.5,1.5 + parent: 60 + - uid: 776 + components: + - type: Transform + pos: -23.5,2.5 parent: 60 - uid: 809 components: @@ -140643,26 +139803,41 @@ entities: - type: Transform pos: -67.5,-2.5 parent: 60 - - uid: 838 + - uid: 845 components: - type: Transform - pos: -22.5,-21.5 + pos: -29.5,-2.5 parent: 60 - - uid: 839 + - uid: 856 components: - type: Transform - pos: -20.5,-11.5 + pos: -29.5,-1.5 parent: 60 - uid: 866 components: - type: Transform pos: 8.5,-26.5 parent: 60 + - uid: 937 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 60 + - uid: 1175 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 60 - uid: 1207 components: - type: Transform pos: 2.5,-26.5 parent: 60 + - uid: 1210 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 60 - uid: 1232 components: - type: Transform @@ -140802,6 +139977,11 @@ entities: - type: Transform pos: 3.5,-26.5 parent: 60 + - uid: 1386 + components: + - type: Transform + pos: -26.5,2.5 + parent: 60 - uid: 1387 components: - type: Transform @@ -140837,235 +140017,210 @@ entities: - type: Transform pos: 11.5,-15.5 parent: 60 - - uid: 1470 - components: - - type: Transform - pos: 7.5,-43.5 - parent: 60 - - uid: 1475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 60 - - uid: 1495 - components: - - type: Transform - pos: -21.5,-25.5 - parent: 60 - - uid: 1496 - components: - - type: Transform - pos: -22.5,-25.5 - parent: 60 - - uid: 1512 + - uid: 1448 components: - type: Transform - pos: -3.5,8.5 + pos: -27.5,2.5 parent: 60 - - uid: 1513 + - uid: 1459 components: - type: Transform - pos: 4.5,8.5 + pos: -28.5,2.5 parent: 60 - - uid: 1515 + - uid: 1461 components: - type: Transform - pos: -4.5,12.5 + pos: -29.5,2.5 parent: 60 - - uid: 1516 + - uid: 1465 components: - type: Transform - pos: 5.5,12.5 + pos: -24.5,2.5 parent: 60 - - uid: 1517 + - uid: 1466 components: - type: Transform - pos: 8.5,11.5 + pos: -25.5,2.5 parent: 60 - - uid: 1528 + - uid: 1467 components: - type: Transform - pos: -22.5,-17.5 + pos: -26.5,3.5 parent: 60 - - uid: 1535 + - uid: 1468 components: - type: Transform - pos: -29.5,-0.5 + pos: -27.5,3.5 parent: 60 - - uid: 1547 + - uid: 1470 components: - type: Transform - pos: -27.5,3.5 + pos: 7.5,-43.5 parent: 60 - - uid: 1550 + - uid: 1472 components: - type: Transform - pos: -24.5,-1.5 + pos: -23.5,3.5 parent: 60 - - uid: 1562 + - uid: 1473 components: - type: Transform - pos: -25.5,-25.5 + pos: -29.5,0.5 parent: 60 - - uid: 1563 + - uid: 1474 components: - type: Transform - pos: -26.5,-25.5 + pos: -29.5,1.5 parent: 60 - - uid: 1594 + - uid: 1475 components: - type: Transform - pos: -29.5,1.5 + pos: -29.5,-0.5 parent: 60 - - uid: 1596 + - uid: 1476 components: - type: Transform - pos: -29.5,0.5 + pos: -29.5,3.5 parent: 60 - - uid: 1604 + - uid: 1481 components: - type: Transform - pos: -30.5,-25.5 + pos: -24.5,3.5 parent: 60 - - uid: 1625 + - uid: 1482 components: - type: Transform - pos: -30.5,3.5 + pos: -28.5,3.5 parent: 60 - - uid: 1645 + - uid: 1484 components: - type: Transform - pos: -26.5,3.5 + pos: -27.5,-13.5 parent: 60 - - uid: 1648 + - uid: 1486 components: - type: Transform - pos: -29.5,3.5 + pos: -18.5,-8.5 parent: 60 - - uid: 1655 + - uid: 1492 components: - type: Transform - pos: -18.5,-0.5 + pos: -25.5,-13.5 parent: 60 - - uid: 1660 + - uid: 1495 components: - type: Transform - pos: -24.5,3.5 + pos: -21.5,-25.5 parent: 60 - - uid: 1664 + - uid: 1496 components: - type: Transform - pos: -31.5,3.5 + pos: -22.5,-25.5 parent: 60 - - uid: 1667 + - uid: 1502 components: - type: Transform - pos: -27.5,-25.5 + pos: -23.5,-0.5 parent: 60 - - uid: 1680 + - uid: 1503 components: - type: Transform - pos: -21.5,-28.5 + pos: -23.5,-2.5 parent: 60 - - uid: 1681 + - uid: 1504 components: - type: Transform - pos: -21.5,3.5 + pos: -23.5,-1.5 parent: 60 - - uid: 1724 + - uid: 1510 components: - type: Transform - pos: -23.5,-0.5 + pos: -23.5,0.5 parent: 60 - - uid: 1727 + - uid: 1512 components: - type: Transform - pos: -20.5,3.5 + pos: -3.5,8.5 parent: 60 - - uid: 1735 + - uid: 1513 components: - type: Transform - pos: -19.5,3.5 + pos: 4.5,8.5 parent: 60 - - uid: 1737 + - uid: 1515 components: - type: Transform - pos: -23.5,3.5 + pos: -4.5,12.5 parent: 60 - - uid: 1748 + - uid: 1516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-21.5 + pos: 5.5,12.5 parent: 60 - - uid: 1758 + - uid: 1517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-21.5 + pos: 8.5,11.5 parent: 60 - - uid: 1794 + - uid: 1535 components: - type: Transform - pos: -28.5,4.5 + pos: -24.5,-13.5 parent: 60 - - uid: 1798 + - uid: 1551 components: - type: Transform - pos: -23.5,4.5 + pos: -25.5,3.5 parent: 60 - - uid: 1799 + - uid: 1556 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,1.5 + pos: -23.5,-13.5 parent: 60 - - uid: 1800 + - uid: 1557 components: - type: Transform - pos: -18.5,3.5 + pos: -23.5,-17.5 parent: 60 - - uid: 1824 + - uid: 1563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-5.5 + pos: -26.5,-25.5 parent: 60 - - uid: 1833 + - uid: 1576 components: - type: Transform - pos: -20.5,-1.5 + pos: -24.5,-2.5 parent: 60 - - uid: 1863 + - uid: 1577 components: - type: Transform - pos: -23.5,2.5 + pos: -28.5,-2.5 parent: 60 - - uid: 1864 + - uid: 1604 components: - type: Transform - pos: -28.5,3.5 + pos: -30.5,-25.5 parent: 60 - - uid: 1869 + - uid: 1667 components: - type: Transform - pos: -22.5,3.5 + pos: -27.5,-25.5 parent: 60 - - uid: 1951 + - uid: 1680 components: - type: Transform - pos: -27.5,4.5 + pos: -21.5,-28.5 parent: 60 - - uid: 1953 + - uid: 1809 components: - type: Transform - pos: -23.5,0.5 + pos: -20.5,-2.5 parent: 60 - - uid: 1955 + - uid: 1866 components: - type: Transform - pos: -25.5,4.5 + pos: -19.5,2.5 parent: 60 - uid: 2014 components: @@ -141092,20 +140247,10 @@ entities: - type: Transform pos: -30.5,-26.5 parent: 60 - - uid: 2087 - components: - - type: Transform - pos: -23.5,-1.5 - parent: 60 - - uid: 2088 - components: - - type: Transform - pos: -29.5,-1.5 - parent: 60 - uid: 2104 components: - type: Transform - pos: -19.5,-1.5 + pos: -33.5,-12.5 parent: 60 - uid: 2134 components: @@ -142453,6 +141598,11 @@ entities: - type: Transform pos: -33.5,-25.5 parent: 60 + - uid: 4043 + components: + - type: Transform + pos: -33.5,1.5 + parent: 60 - uid: 4050 components: - type: Transform @@ -142508,6 +141658,11 @@ entities: - type: Transform pos: 37.5,-13.5 parent: 60 + - uid: 4147 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 60 - uid: 4153 components: - type: Transform @@ -142528,6 +141683,26 @@ entities: - type: Transform pos: -9.5,-21.5 parent: 60 + - uid: 4202 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 60 + - uid: 4203 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 60 + - uid: 4209 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 60 + - uid: 4216 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 60 - uid: 4238 components: - type: Transform @@ -142699,35 +141874,30 @@ entities: - type: Transform pos: 31.5,-14.5 parent: 60 - - uid: 4523 - components: - - type: Transform - pos: 23.5,-45.5 - parent: 60 - - uid: 4524 + - uid: 4519 components: - type: Transform - pos: 23.5,-44.5 + pos: -29.5,-13.5 parent: 60 - - uid: 4539 + - uid: 4522 components: - type: Transform - pos: -29.5,16.5 + pos: -28.5,-13.5 parent: 60 - - uid: 4552 + - uid: 4523 components: - type: Transform - pos: -29.5,2.5 + pos: 23.5,-45.5 parent: 60 - - uid: 4553 + - uid: 4524 components: - type: Transform - pos: -25.5,3.5 + pos: 23.5,-44.5 parent: 60 - - uid: 4555 + - uid: 4539 components: - type: Transform - pos: -28.5,-1.5 + pos: -29.5,16.5 parent: 60 - uid: 4558 components: @@ -142744,16 +141914,6 @@ entities: - type: Transform pos: -32.5,16.5 parent: 60 - - uid: 4568 - components: - - type: Transform - pos: -24.5,4.5 - parent: 60 - - uid: 4580 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 60 - uid: 4584 components: - type: Transform @@ -142805,11 +141965,6 @@ entities: - type: Transform pos: -60.5,-25.5 parent: 60 - - uid: 4709 - components: - - type: Transform - pos: -17.5,-4.5 - parent: 60 - uid: 4712 components: - type: Transform @@ -143033,15 +142188,15 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-62.5 parent: 60 - - uid: 5201 + - uid: 5213 components: - type: Transform - pos: -26.5,-21.5 + pos: 3.5,-78.5 parent: 60 - - uid: 5213 + - uid: 5219 components: - type: Transform - pos: 3.5,-78.5 + pos: -22.5,2.5 parent: 60 - uid: 5222 components: @@ -143053,6 +142208,11 @@ entities: - type: Transform pos: 56.5,3.5 parent: 60 + - uid: 5234 + components: + - type: Transform + pos: -17.5,1.5 + parent: 60 - uid: 5248 components: - type: Transform @@ -143250,6 +142410,11 @@ entities: - type: Transform pos: -12.5,-1.5 parent: 60 + - uid: 5454 + components: + - type: Transform + pos: -19.5,1.5 + parent: 60 - uid: 5483 components: - type: Transform @@ -143468,11 +142633,6 @@ entities: - type: Transform pos: -44.5,28.5 parent: 60 - - uid: 5753 - components: - - type: Transform - pos: -29.5,-21.5 - parent: 60 - uid: 5767 components: - type: Transform @@ -143505,28 +142665,10 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,16.5 parent: 60 - - uid: 5836 - components: - - type: Transform - pos: -26.5,4.5 - parent: 60 - - uid: 5840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-21.5 - parent: 60 - - uid: 5848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-8.5 - parent: 60 - - uid: 5849 + - uid: 5800 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-3.5 + pos: -34.5,-8.5 parent: 60 - uid: 5864 components: @@ -143581,6 +142723,11 @@ entities: - type: Transform pos: 14.5,27.5 parent: 60 + - uid: 6094 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 60 - uid: 6160 components: - type: Transform @@ -143620,18 +142767,6 @@ entities: - type: Transform pos: -49.5,51.5 parent: 60 - - uid: 6207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-14.5 - parent: 60 - - uid: 6208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-15.5 - parent: 60 - uid: 6209 components: - type: Transform @@ -143905,6 +143040,12 @@ entities: - type: Transform pos: 9.5,31.5 parent: 60 + - uid: 6582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 60 - uid: 6608 components: - type: Transform @@ -143941,23 +143082,26 @@ entities: - type: Transform pos: -40.5,-29.5 parent: 60 - - uid: 6797 + - uid: 6762 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-16.5 + pos: -18.5,1.5 parent: 60 - - uid: 6798 + - uid: 6804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-17.5 + pos: -35.5,-8.5 parent: 60 - uid: 6806 components: - type: Transform pos: 26.5,3.5 parent: 60 + - uid: 6820 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 60 - uid: 6826 components: - type: Transform @@ -144018,17 +143162,6 @@ entities: - type: Transform pos: -1.5,-74.5 parent: 60 - - uid: 6993 - components: - - type: Transform - pos: -18.5,2.5 - parent: 60 - - uid: 7006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-11.5 - parent: 60 - uid: 7021 components: - type: Transform @@ -144064,12 +143197,6 @@ entities: - type: Transform pos: -40.5,15.5 parent: 60 - - uid: 7043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-8.5 - parent: 60 - uid: 7046 components: - type: Transform @@ -144314,32 +143441,11 @@ entities: - type: Transform pos: 47.5,26.5 parent: 60 - - uid: 7603 - components: - - type: Transform - pos: -24.5,-17.5 - parent: 60 - - uid: 7604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,0.5 - parent: 60 - uid: 7642 components: - type: Transform pos: -62.5,-16.5 parent: 60 - - uid: 7656 - components: - - type: Transform - pos: -30.5,-21.5 - parent: 60 - - uid: 7684 - components: - - type: Transform - pos: -23.5,1.5 - parent: 60 - uid: 7722 components: - type: Transform @@ -144376,11 +143482,6 @@ entities: - type: Transform pos: -17.5,-38.5 parent: 60 - - uid: 7747 - components: - - type: Transform - pos: -18.5,-1.5 - parent: 60 - uid: 7757 components: - type: Transform @@ -144535,23 +143636,10 @@ entities: - type: Transform pos: 49.5,-48.5 parent: 60 - - uid: 7916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-1.5 - parent: 60 - - uid: 7917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-2.5 - parent: 60 - - uid: 7920 + - uid: 7813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-5.5 + pos: -20.5,2.5 parent: 60 - uid: 7989 components: @@ -144658,11 +143746,6 @@ entities: - type: Transform pos: -9.5,-78.5 parent: 60 - - uid: 8213 - components: - - type: Transform - pos: -21.5,-17.5 - parent: 60 - uid: 8216 components: - type: Transform @@ -144673,15 +143756,15 @@ entities: - type: Transform pos: -56.5,-4.5 parent: 60 - - uid: 8235 + - uid: 8231 components: - type: Transform - pos: 9.5,30.5 + pos: -18.5,-2.5 parent: 60 - - uid: 8243 + - uid: 8235 components: - type: Transform - pos: -31.5,-20.5 + pos: 9.5,30.5 parent: 60 - uid: 8254 components: @@ -144693,17 +143776,33 @@ entities: - type: Transform pos: -7.5,-21.5 parent: 60 + - uid: 8346 + components: + - type: Transform + pos: -34.5,1.5 + parent: 60 - uid: 8359 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-2.5 parent: 60 + - uid: 8380 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 60 - uid: 8432 components: - type: Transform pos: -58.5,-1.5 parent: 60 + - uid: 8440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 60 - uid: 8459 components: - type: Transform @@ -144714,6 +143813,23 @@ entities: - type: Transform pos: -51.5,10.5 parent: 60 + - uid: 8477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 60 + - uid: 8480 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 60 + - uid: 8481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-3.5 + parent: 60 - uid: 8490 components: - type: Transform @@ -144735,40 +143851,36 @@ entities: - type: Transform pos: -58.5,-3.5 parent: 60 - - uid: 8524 + - uid: 8528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-19.5 + pos: -17.5,-8.5 parent: 60 - - uid: 8525 + - uid: 8573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-20.5 + pos: -34.5,4.5 parent: 60 - - uid: 8526 + - uid: 8602 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-17.5 + pos: -25.5,-21.5 parent: 60 - - uid: 8527 + - uid: 8656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-17.5 + pos: -31.5,4.5 parent: 60 - - uid: 8607 + - uid: 8661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-18.5 + pos: 20.5,4.5 parent: 60 - - uid: 8661 + - uid: 8716 components: - type: Transform - pos: 20.5,4.5 + pos: -35.5,3.5 parent: 60 - uid: 8751 components: @@ -144780,26 +143892,20 @@ entities: - type: Transform pos: 28.5,-13.5 parent: 60 - - uid: 8777 - components: - - type: Transform - pos: 62.5,-25.5 - parent: 60 - - uid: 8883 + - uid: 8771 components: - type: Transform - pos: -28.5,-17.5 + pos: -32.5,-8.5 parent: 60 - - uid: 8920 + - uid: 8777 components: - type: Transform - pos: -23.5,-21.5 + pos: 62.5,-25.5 parent: 60 - - uid: 8922 + - uid: 8892 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-21.5 + pos: -19.5,-12.5 parent: 60 - uid: 8936 components: @@ -144817,11 +143923,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,13.5 parent: 60 - - uid: 8956 - components: - - type: Transform - pos: -28.5,-21.5 - parent: 60 - uid: 8977 components: - type: Transform @@ -144850,11 +143951,6 @@ entities: - type: Transform pos: -43.5,15.5 parent: 60 - - uid: 9051 - components: - - type: Transform - pos: -29.5,4.5 - parent: 60 - uid: 9057 components: - type: Transform @@ -144880,6 +143976,21 @@ entities: - type: Transform pos: -39.5,-8.5 parent: 60 + - uid: 9147 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 60 + - uid: 9152 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 60 + - uid: 9156 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 60 - uid: 9183 components: - type: Transform @@ -145167,6 +144278,11 @@ entities: - type: Transform pos: -60.5,5.5 parent: 60 + - uid: 10681 + components: + - type: Transform + pos: -21.5,2.5 + parent: 60 - uid: 10849 components: - type: Transform @@ -145194,6 +144310,17 @@ entities: - type: Transform pos: 52.5,19.5 parent: 60 + - uid: 11362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-17.5 + parent: 60 + - uid: 11382 + components: + - type: Transform + pos: -32.5,1.5 + parent: 60 - uid: 11471 components: - type: Transform @@ -146063,26 +145190,6 @@ entities: - type: Transform pos: -11.5,23.5 parent: 60 - - uid: 14224 - components: - - type: Transform - pos: -33.5,6.5 - parent: 60 - - uid: 14225 - components: - - type: Transform - pos: -29.5,6.5 - parent: 60 - - uid: 14226 - components: - - type: Transform - pos: -32.5,6.5 - parent: 60 - - uid: 14227 - components: - - type: Transform - pos: -35.5,6.5 - parent: 60 - uid: 14285 components: - type: Transform @@ -146123,11 +145230,21 @@ entities: - type: Transform pos: -17.5,15.5 parent: 60 + - uid: 14454 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 60 - uid: 14477 components: - type: Transform pos: -28.5,27.5 parent: 60 + - uid: 14625 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 60 - uid: 14627 components: - type: Transform @@ -146815,6 +145932,11 @@ entities: - type: Transform pos: -16.5,50.5 parent: 60 + - uid: 15403 + components: + - type: Transform + pos: -31.5,1.5 + parent: 60 - uid: 15417 components: - type: Transform @@ -146917,6 +146039,21 @@ entities: - type: Transform pos: 3.5,22.5 parent: 60 + - uid: 15845 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 60 + - uid: 15899 + components: + - type: Transform + pos: -35.5,-17.5 + parent: 60 + - uid: 15901 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 60 - uid: 16010 components: - type: Transform @@ -146995,7 +146132,8 @@ entities: - uid: 16110 components: - type: Transform - pos: -30.5,6.5 + rot: 1.5707963267948966 rad + pos: -31.5,3.5 parent: 60 - uid: 16115 components: @@ -147037,6 +146175,11 @@ entities: - type: Transform pos: -8.5,30.5 parent: 60 + - uid: 16145 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 60 - uid: 16155 components: - type: Transform @@ -147583,6 +146726,16 @@ entities: - type: Transform pos: -54.5,18.5 parent: 60 + - uid: 17471 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 60 + - uid: 17473 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 60 - uid: 17475 components: - type: Transform @@ -147633,6 +146786,11 @@ entities: - type: Transform pos: 31.5,33.5 parent: 60 + - uid: 17672 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 60 - uid: 17676 components: - type: Transform @@ -147792,6 +146950,18 @@ entities: - type: Transform pos: 10.5,-4.5 parent: 60 + - uid: 17952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-21.5 + parent: 60 + - uid: 17954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 60 - uid: 17977 components: - type: Transform @@ -148203,20 +147373,10 @@ entities: - type: Transform pos: 5.5,-10.5 parent: 60 - - uid: 18504 - components: - - type: Transform - pos: -31.5,6.5 - parent: 60 - - uid: 18509 - components: - - type: Transform - pos: -35.5,5.5 - parent: 60 - - uid: 18510 + - uid: 18521 components: - type: Transform - pos: -34.5,6.5 + pos: -35.5,1.5 parent: 60 - uid: 18552 components: @@ -148228,16 +147388,59 @@ entities: - type: Transform pos: 32.5,26.5 parent: 60 + - uid: 18642 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 60 - uid: 18677 components: - type: Transform pos: 18.5,-2.5 parent: 60 + - uid: 18693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-21.5 + parent: 60 + - uid: 18695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-21.5 + parent: 60 + - uid: 18767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 60 + - uid: 18771 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 60 + - uid: 18790 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 60 + - uid: 18791 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 60 - uid: 18804 components: - type: Transform pos: -24.5,58.5 parent: 60 + - uid: 18826 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 60 - uid: 18829 components: - type: Transform @@ -148248,6 +147451,11 @@ entities: - type: Transform pos: -12.5,0.5 parent: 60 + - uid: 18858 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 60 - uid: 18862 components: - type: Transform @@ -148289,6 +147497,17 @@ entities: - type: Transform pos: 22.5,26.5 parent: 60 + - uid: 18968 + components: + - type: Transform + pos: -35.5,0.5 + parent: 60 + - uid: 18997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 60 - uid: 19003 components: - type: Transform @@ -148334,6 +147553,11 @@ entities: - type: Transform pos: 52.5,16.5 parent: 60 + - uid: 19450 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 60 - uid: 19740 components: - type: Transform @@ -148448,6 +147672,11 @@ entities: rot: 3.141592653589793 rad pos: 25.5,6.5 parent: 60 + - uid: 19870 + components: + - type: Transform + pos: -32.5,4.5 + parent: 60 - uid: 19881 components: - type: Transform @@ -148458,6 +147687,18 @@ entities: - type: Transform pos: 12.5,-78.5 parent: 60 + - uid: 19887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 60 + - uid: 20003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 60 - uid: 20078 components: - type: Transform @@ -148503,11 +147744,22 @@ entities: - type: Transform pos: -27.5,59.5 parent: 60 + - uid: 21011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-21.5 + parent: 60 - uid: 21041 components: - type: Transform pos: -6.5,-78.5 parent: 60 + - uid: 21048 + components: + - type: Transform + pos: -35.5,4.5 + parent: 60 - uid: 21077 components: - type: Transform @@ -148653,6 +147905,11 @@ entities: - type: Transform pos: -13.5,-78.5 parent: 60 + - uid: 21381 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 60 - uid: 21425 components: - type: Transform @@ -148664,6 +147921,11 @@ entities: - type: Transform pos: -69.5,15.5 parent: 60 + - uid: 21722 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 60 - uid: 21797 components: - type: Transform @@ -149778,21 +149040,6 @@ entities: - type: Transform pos: 32.5,21.5 parent: 60 - - uid: 235 - components: - - type: Transform - pos: -33.5,-11.5 - parent: 60 - - uid: 236 - components: - - type: Transform - pos: -18.5,-8.5 - parent: 60 - - uid: 240 - components: - - type: Transform - pos: -34.5,-11.5 - parent: 60 - uid: 247 components: - type: Transform @@ -149808,11 +149055,6 @@ entities: - type: Transform pos: 56.5,-9.5 parent: 60 - - uid: 255 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 60 - uid: 259 components: - type: Transform @@ -149828,15 +149070,15 @@ entities: - type: Transform pos: -22.5,6.5 parent: 60 - - uid: 282 + - uid: 268 components: - type: Transform - pos: 38.5,-37.5 + pos: -17.5,4.5 parent: 60 - - uid: 291 + - uid: 282 components: - type: Transform - pos: -19.5,-8.5 + pos: 38.5,-37.5 parent: 60 - uid: 317 components: @@ -150129,16 +149371,6 @@ entities: - type: Transform pos: 31.5,-10.5 parent: 60 - - uid: 841 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 60 - - uid: 842 - components: - - type: Transform - pos: -18.5,-11.5 - parent: 60 - uid: 847 components: - type: Transform @@ -150302,16 +149534,6 @@ entities: - type: Transform pos: -16.5,-27.5 parent: 60 - - uid: 1492 - components: - - type: Transform - pos: -19.5,-11.5 - parent: 60 - - uid: 1545 - components: - - type: Transform - pos: -32.5,-1.5 - parent: 60 - uid: 1593 components: - type: Transform @@ -150327,11 +149549,6 @@ entities: - type: Transform pos: 7.5,-33.5 parent: 60 - - uid: 1740 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 60 - uid: 1795 components: - type: Transform @@ -150342,11 +149559,6 @@ entities: - type: Transform pos: 3.5,-33.5 parent: 60 - - uid: 2005 - components: - - type: Transform - pos: -31.5,-1.5 - parent: 60 - uid: 2037 components: - type: Transform @@ -151898,11 +151110,6 @@ entities: - type: Transform pos: -61.5,-7.5 parent: 60 - - uid: 5757 - components: - - type: Transform - pos: -17.5,-21.5 - parent: 60 - uid: 5783 components: - type: Transform @@ -151918,11 +151125,6 @@ entities: - type: Transform pos: 42.5,-19.5 parent: 60 - - uid: 5837 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 60 - uid: 5874 components: - type: Transform @@ -152168,11 +151370,6 @@ entities: - type: Transform pos: 31.5,-36.5 parent: 60 - - uid: 7220 - components: - - type: Transform - pos: -17.5,3.5 - parent: 60 - uid: 7274 components: - type: Transform @@ -152487,6 +151684,16 @@ entities: - type: Transform pos: 29.5,-18.5 parent: 60 + - uid: 8774 + components: + - type: Transform + pos: -25.5,5.5 + parent: 60 + - uid: 8896 + components: + - type: Transform + pos: -17.5,2.5 + parent: 60 - uid: 8965 components: - type: Transform @@ -153950,6 +153157,41 @@ entities: - type: Transform pos: 33.5,1.5 parent: 60 + - uid: 21016 + components: + - type: Transform + pos: -33.5,6.5 + parent: 60 + - uid: 21030 + components: + - type: Transform + pos: -29.5,6.5 + parent: 60 + - uid: 21043 + components: + - type: Transform + pos: -32.5,6.5 + parent: 60 + - uid: 21044 + components: + - type: Transform + pos: -35.5,6.5 + parent: 60 + - uid: 21046 + components: + - type: Transform + pos: -30.5,6.5 + parent: 60 + - uid: 21047 + components: + - type: Transform + pos: -31.5,6.5 + parent: 60 + - uid: 21049 + components: + - type: Transform + pos: -34.5,6.5 + parent: 60 - uid: 21060 components: - type: Transform @@ -154554,34 +153796,6 @@ entities: - type: Transform pos: 32.5,-3.5 parent: 60 -- proto: WallWeaponCapacitorRecharger - entities: - - uid: 1481 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 60 - - type: Physics - canCollide: False - - uid: 7225 - components: - - type: Transform - pos: -23.5,-1.5 - parent: 60 - - type: Physics - canCollide: False - - uid: 12685 - components: - - type: Transform - pos: -28.5,-17.5 - parent: 60 - - type: Physics - canCollide: False - - uid: 18642 - components: - - type: Transform - pos: -31.5,-1.5 - parent: 60 - proto: WardrobeBlackFilled entities: - uid: 3368 @@ -154659,144 +153873,26 @@ entities: - 0 - proto: WardrobePrisonFilled entities: - - uid: 1643 - components: - - type: Transform - pos: -19.5,-13.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 1647 - components: - - type: Transform - pos: -34.5,-7.5 - parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 1702 + - uid: 291 components: - type: Transform - pos: -19.5,-10.5 + pos: -34.5,-5.5 parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 2008 + - uid: 8240 components: - type: Transform - pos: -34.5,-10.5 + pos: -18.5,-9.5 parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 2092 + - uid: 8473 components: - type: Transform - pos: -19.5,-7.5 + pos: -34.5,-9.5 parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 8896 + - uid: 8681 components: - type: Transform - pos: -34.5,-13.5 + pos: -18.5,-5.5 parent: 60 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.6495836 - - 6.2055764 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeSalvageFilled entities: - uid: 13247 @@ -154915,6 +154011,11 @@ entities: parent: 60 - proto: WaterCooler entities: + - uid: 278 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 60 - uid: 1382 components: - type: Transform @@ -154945,11 +154046,6 @@ entities: - type: Transform pos: 55.5,-10.5 parent: 60 - - uid: 11536 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 60 - uid: 12272 components: - type: Transform @@ -154965,11 +154061,6 @@ entities: - type: Transform pos: -36.5,21.5 parent: 60 - - uid: 18827 - components: - - type: Transform - pos: -34.5,0.5 - parent: 60 - proto: WaterTankFull entities: - uid: 2329 @@ -154997,11 +154088,6 @@ entities: - type: Transform pos: -42.5,-26.5 parent: 60 - - uid: 5364 - components: - - type: Transform - pos: 13.5,4.5 - parent: 60 - uid: 6452 components: - type: Transform @@ -155017,6 +154103,11 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 60 + - uid: 21511 + components: + - type: Transform + pos: 12.5,5.5 + parent: 60 - proto: WaterTankHighCapacity entities: - uid: 1195 @@ -155043,22 +154134,20 @@ entities: parent: 60 - proto: WeaponCapacitorRecharger entities: - - uid: 1734 + - uid: 720 components: - type: Transform - pos: -34.5,3.5 + pos: -25.5,-9.5 parent: 60 - - uid: 1944 + - uid: 1570 components: - type: Transform - pos: -27.5,-13.5 + pos: -27.5,-6.5 parent: 60 - - type: Physics - canCollide: False - - uid: 2132 + - uid: 8468 components: - type: Transform - pos: -32.5,-15.5 + pos: -31.5,-18.5 parent: 60 - uid: 9536 components: @@ -155077,58 +154166,41 @@ entities: parent: 60 - type: Physics canCollide: False - - uid: 18998 + - uid: 19155 components: - type: Transform - pos: -18.5,-16.5 + pos: -21.5,-18.5 parent: 60 -- proto: WeaponLaserCarbine +- proto: WeaponDisabler entities: - - uid: 16447 - components: - - type: Transform - pos: -24.492538,-0.024230868 - parent: 60 - - uid: 17473 - components: - - type: Transform - pos: -24.492538,-0.21173087 - parent: 60 - - uid: 17474 - components: - - type: Transform - pos: -24.492538,0.21014413 - parent: 60 - - uid: 18008 + - uid: 7014 components: - type: Transform - pos: -24.508163,0.66326916 + pos: -24.520348,-20.458258 parent: 60 - - uid: 18693 + - uid: 7045 components: - type: Transform - pos: -24.508163,0.41326913 + pos: -24.442223,-20.567633 parent: 60 - - uid: 18766 + - uid: 7048 components: - type: Transform - pos: -24.492538,-0.47735587 + pos: -24.614098,-20.348883 parent: 60 - proto: WeaponRifleAk entities: - - uid: 24110 + - uid: 6136 components: - - type: MetaData - name: Old War AKMS - type: Transform - pos: -24.45179,2.5628066 + pos: -24.5,1.5 parent: 60 - proto: WeaponSubMachineGunWt550 entities: - - uid: 21074 + - uid: 8243 components: - type: Transform - pos: -21.459091,0.5840763 + pos: -21.478931,-0.37953046 parent: 60 - proto: WeaponTurretSyndicateBroken entities: @@ -155224,6 +154296,11 @@ entities: - type: Transform pos: 56.5,-40.5 parent: 60 + - uid: 4004 + components: + - type: Transform + pos: -34.5,3.5 + parent: 60 - uid: 6242 components: - type: Transform @@ -155294,13 +154371,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-27.5 parent: 60 - - uid: 4077 - components: - - type: MetaData - name: Security Desk - - type: Transform - pos: -19.5,-17.5 - parent: 60 - uid: 6821 components: - type: Transform @@ -155335,6 +154405,12 @@ entities: rot: 3.141592653589793 rad pos: 34.5,15.5 parent: 60 + - uid: 19886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 60 - uid: 19910 components: - type: Transform @@ -155433,12 +154509,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-41.5 parent: 60 - - uid: 4191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-20.5 - parent: 60 - uid: 6181 components: - type: Transform @@ -155476,26 +154546,30 @@ entities: parent: 60 - proto: WindoorSecureArmoryLocked entities: - - uid: 1466 + - uid: 1625 components: - type: MetaData - name: Warden Desk + name: Riot Gear - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-9.5 + pos: -24.5,-12.5 parent: 60 - - uid: 12188 + - uid: 4898 components: - - type: MetaData - name: Warden Desk - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-9.5 + pos: -24.5,1.5 parent: 60 - - uid: 24115 + - uid: 8413 components: - type: Transform - pos: -24.5,2.5 + rot: -1.5707963267948966 rad + pos: -23.5,-10.5 + parent: 60 + - uid: 15897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-10.5 parent: 60 - proto: WindoorSecureAtmosphericsLocked entities: @@ -155512,11 +154586,62 @@ entities: parent: 60 - proto: WindoorSecureBrigLocked entities: + - uid: 234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-10.5 + parent: 60 + - uid: 2584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 60 + - uid: 2602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-7.5 + parent: 60 - uid: 4198 components: - type: Transform pos: -43.5,-18.5 parent: 60 + - uid: 6709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 60 + - uid: 8514 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 60 + - uid: 8748 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 60 + - uid: 8920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-10.5 + parent: 60 + - uid: 9176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-11.5 + parent: 60 + - uid: 17466 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 60 - proto: WindoorSecureCargoLocked entities: - uid: 13104 @@ -155669,20 +154794,22 @@ entities: parent: 60 - proto: WindoorSecureEngineeringLocked entities: - - uid: 541 + - uid: 13804 components: - type: Transform - pos: 4.5,12.5 + pos: -3.5,17.5 parent: 60 - - uid: 13660 + - uid: 21766 components: - type: Transform + rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 60 - - uid: 13804 + - uid: 21767 components: - type: Transform - pos: -3.5,17.5 + rot: 3.141592653589793 rad + pos: 4.5,12.5 parent: 60 - proto: WindoorSecureHeadOfPersonnelLocked entities: @@ -155775,61 +154902,67 @@ entities: parent: 60 - proto: WindoorSecureSecurityLocked entities: - - uid: 72 + - uid: 1483 components: - type: MetaData - name: Cell 2 + name: Cell 1 - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 + rot: -1.5707963267948966 rad + pos: -32.5,-5.5 parent: 60 - - uid: 151 + - uid: 1485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-11.5 + parent: 60 + - uid: 1487 components: - type: MetaData - name: Cell 1 + name: Cell 4 - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-9.5 parent: 60 - - uid: 230 + - uid: 1530 components: - - type: MetaData - name: Cell 3 - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-6.5 + rot: 1.5707963267948966 rad + pos: -20.5,-11.5 parent: 60 - - uid: 243 + - uid: 1548 components: - type: MetaData - name: Cell 5 + name: Cell 3 - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-12.5 + rot: 1.5707963267948966 rad + pos: -20.5,-5.5 parent: 60 - - uid: 268 + - uid: 1555 components: - type: MetaData - name: Cell 4 + name: Cell 2 - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-9.5 parent: 60 - - uid: 843 + - uid: 1821 components: - - type: MetaData - name: Medical Cell - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-6.5 + pos: -21.5,-19.5 parent: 60 - - uid: 4078 + - uid: 2100 components: - - type: MetaData - name: Security Desk - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-17.5 + rot: -1.5707963267948966 rad + pos: -31.5,-19.5 + parent: 60 + - uid: 4201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-7.5 parent: 60 - uid: 4298 components: @@ -155837,20 +154970,17 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-15.5 parent: 60 - - uid: 12684 + - uid: 5825 components: - - type: MetaData - name: Security Substation - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,5.5 + pos: -32.5,-7.5 parent: 60 - - uid: 24149 + - uid: 12596 components: - - type: MetaData - name: Brig Medbay - type: Transform - pos: -18.5,-5.5 + rot: -1.5707963267948966 rad + pos: -31.5,2.5 parent: 60 - proto: Window entities: @@ -155864,6 +154994,11 @@ entities: - type: Transform pos: -60.5,-8.5 parent: 60 + - uid: 2132 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 60 - uid: 2386 components: - type: Transform @@ -156104,6 +155239,11 @@ entities: - type: Transform pos: -56.5,37.5 parent: 60 + - uid: 23717 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 60 - proto: WindowDirectional entities: - uid: 3146 @@ -156164,12 +155304,6 @@ entities: parent: 60 - proto: WindowFrostedDirectional entities: - - uid: 1986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,4.5 - parent: 60 - uid: 2394 components: - type: Transform @@ -156355,11 +155489,29 @@ entities: parent: 60 - proto: WindowReinforcedDirectional entities: + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 60 + - uid: 493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 60 - uid: 521 components: - type: Transform pos: 10.5,-9.5 parent: 60 + - uid: 630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 60 - uid: 1345 components: - type: Transform @@ -156380,16 +155532,35 @@ entities: - type: Transform pos: 7.5,-24.5 parent: 60 - - uid: 1615 + - uid: 1561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-12.5 + parent: 60 + - uid: 1646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-20.5 + parent: 60 + - uid: 1651 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,2.5 + pos: -23.5,-20.5 parent: 60 - - uid: 2093 + - uid: 1864 components: - type: Transform - pos: -19.5,-5.5 + rot: 1.5707963267948966 rad + pos: -25.5,1.5 + parent: 60 + - uid: 1916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-20.5 parent: 60 - uid: 2417 components: @@ -156454,18 +155625,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-42.5 parent: 60 - - uid: 4043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-21.5 - parent: 60 - - uid: 4190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-19.5 - parent: 60 - uid: 4192 components: - type: Transform @@ -156831,6 +155990,12 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-10.5 parent: 60 + - uid: 8296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-18.5 + parent: 60 - uid: 8385 components: - type: Transform @@ -156843,6 +156008,12 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-10.5 parent: 60 + - uid: 8457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 60 - uid: 8493 components: - type: Transform @@ -156854,6 +156025,12 @@ entities: - type: Transform pos: -9.5,-10.5 parent: 60 + - uid: 8509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-2.5 + parent: 60 - uid: 8565 components: - type: Transform @@ -156866,6 +156043,12 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-16.5 parent: 60 + - uid: 9089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 60 - uid: 10850 components: - type: Transform @@ -157077,6 +156260,12 @@ entities: rot: 3.141592653589793 rad pos: 0.5,22.5 parent: 60 + - uid: 16450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-2.5 + parent: 60 - uid: 16616 components: - type: Transform @@ -159915,12 +159104,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-16.5 parent: 60 - - uid: 24112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,2.5 - parent: 60 - uid: 24512 components: - type: Transform @@ -160134,6 +159317,11 @@ entities: - type: Transform pos: 48.5,-39.5 parent: 60 + - uid: 6746 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 60 - uid: 13851 components: - type: MetaData @@ -160153,12 +159341,74 @@ entities: - type: Transform pos: 18.5,-17.5 parent: 60 +- proto: WoodenBench + entities: + - uid: 1936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-19.5 + parent: 60 + - uid: 1937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-21.5 + parent: 60 + - uid: 1939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-19.5 + parent: 60 + - uid: 1940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-19.5 + parent: 60 + - uid: 1941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-21.5 + parent: 60 + - uid: 1943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-21.5 + parent: 60 + - uid: 1944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-19.5 + parent: 60 + - uid: 1945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-19.5 + parent: 60 + - uid: 1946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-19.5 + parent: 60 + - uid: 8680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-21.5 + parent: 60 - proto: Wrench entities: - - uid: 1556 + - uid: 1968 components: - type: Transform - pos: -27.517454,-11.308732 + pos: -27.476547,-12.50911 parent: 60 - uid: 9120 components: From ee7f98a1a74946265d3c37a31502d82b26c52766 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Wed, 22 Jan 2025 20:20:08 +0100 Subject: [PATCH 070/103] remove tropico from devmap (#34585) --- Resources/Maps/Test/dev_map.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index e535f9e0114..9d495f7495b 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -6701,13 +6701,6 @@ entities: - type: Transform pos: 3.5,8.5 parent: 179 -- proto: SpawnMobCrabAtmos - entities: - - uid: 729 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 179 - proto: SpawnMobHuman entities: - uid: 138 From 741514968d1f969b5ae98fd5a56f384bc66be2d6 Mon Sep 17 00:00:00 2001 From: Myra Date: Thu, 23 Jan 2025 00:39:13 +0100 Subject: [PATCH 071/103] Update wizden config to disallow multiple connections to multiple wizden servers (#34584) --- Resources/ConfigPresets/WizardsDen/wizardsDen.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 3083adcbead..8925d528592 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -43,6 +43,7 @@ see_own_notes = true deadmin_on_join = true new_player_threshold = 600 alert.min_players_sharing_connection = 2 +allow_multi_server_play = false [atmos] max_explosion_range = 5 From 85da2351c811f794709e89b9b3947b095f353d03 Mon Sep 17 00:00:00 2001 From: pathetic meowmeow Date: Wed, 22 Jan 2025 18:54:03 -0500 Subject: [PATCH 072/103] Give the chef access to cloth boxes (#34403) * Give the chef access to fiber bags * Update Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Prototypes/Catalog/Fills/Crates/food.yml | 2 ++ .../Catalog/Fills/Lockers/service.yml | 2 ++ .../Random/Food_Drinks/food_ingredients.yml | 1 + .../Consumable/Food/Containers/box.yml | 22 ++++++++++++++++++ .../Food/ingredients.rsi/cloth-box.png | Bin 0 -> 491 bytes .../Consumable/Food/ingredients.rsi/meta.json | 5 +++- 6 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Objects/Consumable/Food/ingredients.rsi/cloth-box.png diff --git a/Resources/Prototypes/Catalog/Fills/Crates/food.yml b/Resources/Prototypes/Catalog/Fills/Crates/food.yml index cbce467cf71..5e1834316fe 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/food.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/food.yml @@ -49,6 +49,8 @@ amount: 3 - id: ReagentContainerRice amount: 3 + - id: FoodBoxCloth + amount: 1 - id: DrinkMilkCarton amount: 4 - id: DrinkSoyMilkCarton diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml index 6d0577a16eb..2d564e0eb0d 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml @@ -41,6 +41,8 @@ - id: SprayBottleWater - id: ReagentContainerFlour amount: 2 + - id: FoodBoxCloth + amount: 1 - id: ReagentContainerSugar - id: FoodCondimentPacketSalt amount: 3 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_ingredients.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_ingredients.yml index 846e058c9e8..0373b183887 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_ingredients.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_ingredients.yml @@ -41,6 +41,7 @@ - !type:GroupSelector children: - id: ReagentContainerFlour + - id: FoodBoxCloth - id: ReagentContainerCornmeal - id: ReagentContainerRice - id: ReagentContainerSugar diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index f613cddaafd..236cf6f27f5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -769,3 +769,25 @@ - id: GoldenBikeHorn prob: 0.1 orGroup: GiftPool + +- type: entity + parent: BoxCardboard + id: FoodBoxCloth + name: box of FlutterSoft-brand cloth + description: Fiber is the most important moth meal of the day! Don't skip it or use bottom-of-the-locker junk, buy high-quality FlutterSoft-brand cloth instead. + components: + - type: Sprite + sprite: Objects/Consumable/Food/ingredients.rsi + state: cloth-box + - type: Storage + grid: + - 0,0,1,1 + maxItemSize: Normal + whitelist: + tags: + - ClothMade + - type: Item + size: Normal + - type: StorageFill + contents: + - id: MaterialCloth10 diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/cloth-box.png b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/cloth-box.png new file mode 100644 index 0000000000000000000000000000000000000000..6bdb547078ffadd9f46f132998b81f81b59257d8 GIT binary patch literal 491 zcmVPx$rAb6VR9J=WmA^|uQ545NMUav$f>#F-BIpssTcRn#AuJFYYHSI?e?f2w9<&5) z&5=aV+R)e(5d>{6Q4q+} literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json index dd802fb59fd..2e8d13abd4c 100644 --- a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and baystation and modified by potato1234x at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and https://github.com/Baystation12/Baystation12/commit/a6067826de7fd8f698793f6d84e6c2f1f9b1f188. Tofu and tofu-slice were created by Discord user rosysyntax#6514. Chevrelog and chevredisk created by Github user deathride58, tortilladough tortillaflat and tortillaslice added by Phunny, butter-slice and croissant-raw taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955, cotton made by mlexf (discord 1143460554963427380). Croissant-raw-cotton, cotton-dough-slice and cotton-dough-rope by JuneSzalkowska", + "copyright": "Taken from tgstation and baystation and modified by potato1234x at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and https://github.com/Baystation12/Baystation12/commit/a6067826de7fd8f698793f6d84e6c2f1f9b1f188. Tofu and tofu-slice were created by Discord user rosysyntax#6514. Chevrelog and chevredisk created by Github user deathride58, tortilladough tortillaflat and tortillaslice added by Phunny, butter-slice and croissant-raw taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955, cotton made by mlexf (discord 1143460554963427380). Croissant-raw-cotton, cotton-dough-slice and cotton-dough-rope by JuneSzalkowska, cloth-box by Janet Blackquill 2024", "size": { "x": 32, "y": 32 @@ -132,6 +132,9 @@ }, { "name": "croissant-raw-cotton" + }, + { + "name": "cloth-box" } ] } From b4fa49af558ae6aa7afb68e55393d5b69e74243e Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 22 Jan 2025 23:55:12 +0000 Subject: [PATCH 073/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d1cbbc880c2..1cce64143c0 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,22 +1,4 @@ Entries: -- author: IProduceWidgets - changes: - - message: Visitors now can have the correct Id cards and PDA! - type: Fix - - message: ghost roles should now attempt to tell you what your antag status is - in a popup when you join the raffle. - type: Tweak - - message: ERT chaplains should now be able to use bibles. - type: Fix - - message: Many new unknown shuttle events to make them more unique. - type: Add - - message: Syndicate escape pods will once again appear. - type: Fix - - message: Unknown Shuttle events will be much rarer. - type: Tweak - id: 7339 - time: '2024-09-10T06:40:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/28098 - author: ScarKy0 changes: - message: Renamed Circuit Boards to be Law Boards instead. @@ -3904,3 +3886,11 @@ id: 7838 time: '2025-01-21T16:08:21.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34232 +- author: sowelipililimute + changes: + - message: Chefs now have access to cloth boxes in their locker, kitchen supplies + crate, etc. for moths + type: Add + id: 7839 + time: '2025-01-22T23:54:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34403 From cb5e79809e055a04f9028affc308fa456c32d6c8 Mon Sep 17 00:00:00 2001 From: Emisse <99158783+Emisse@users.noreply.github.com> Date: Wed, 22 Jan 2025 23:02:49 -0700 Subject: [PATCH 074/103] lecter visual update (#34589) --- .../Weapons/Guns/Rifles/lecter.rsi/base.png | Bin 465 -> 583 bytes .../Guns/Rifles/lecter.rsi/bolt-open.png | Bin 459 -> 587 bytes .../Rifles/lecter.rsi/equipped-BACKPACK.png | Bin 1045 -> 1246 bytes .../lecter.rsi/equipped-SUITSTORAGE.png | Bin 1045 -> 1280 bytes .../Weapons/Guns/Rifles/lecter.rsi/icon.png | Bin 488 -> 645 bytes .../Guns/Rifles/lecter.rsi/inhand-left.png | Bin 391 -> 880 bytes .../Guns/Rifles/lecter.rsi/inhand-right.png | Bin 398 -> 883 bytes .../Weapons/Guns/Rifles/lecter.rsi/mag-0.png | Bin 196 -> 181 bytes .../Weapons/Guns/Rifles/lecter.rsi/meta.json | 2 +- .../Rifles/lecter.rsi/wielded-inhand-left.png | Bin 832 -> 922 bytes .../lecter.rsi/wielded-inhand-right.png | Bin 822 -> 905 bytes 11 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/base.png index e30d896202d3f6b8464d3674ee77f473f05c4f5e..c2c3b87a546468b8a637f33dd5b253de78cf952c 100644 GIT binary patch delta 569 zcmV-90>=H(1IGlA8Gi-<0047(dh`GQ00DDSM?wIu&K&6g00IF?L_t(oh3%BVOB7KU zz<*EX5H=zO9VBME2)o`Yty`pcT0BHTwVB7x)u|xpAfD5(6L<0E z77-iadRPbt)0HK99cJJ3=FP6Nc5QyAH{W~T`+eWMHv?5L7IhhUqDM9k+$i|M2S@)14rAkQmF_4E0f8{O7G>4 z$#eH?rr-Vy#neXn<|m=AS4b%lLilf>Z)B3fvzv^*`~VOd_ns-BI#>KYd*Q^*P4x9< z5f%`fsV>&fS$`h`6yD7;I{pHHnQOw$mRUYYyo(+uK)}` zd`0Q?Q}mcQ2Dmcx09vsp%K){|e5nR2_y1n6X5%0<{~V}Rs{{q;=tbb|a&&Bi_rrhg zzX*WyWigcVeekZiO+>u3wgtdmeIMwdSS*U*4k)pb4u9Wy?2pR}V!G@PrzWn;sauzr zUtVVe$Y!(T^LddeK@{oCO|{#S9GG z!XV7ZFl&wkP%uBhC&U#SOD1`PPVG5sxB@r`I!ky zN=iUwK%l9nA}uYQmXBLcmo4y` zXr$7!aaNQV*Vicimu}fSe8LPjgqE8uz5dx@A*ZG5ISD~?SGn_f`~eclbBjZSw8N&Z zdbP_=L{09z4%_R#GrsYRs(!iEa;7hN*JUnob8$;ft8BS*;UCk3HO!fcmm`u_>?x~N zl)rXi;){a<8+T4zxpz&%mwy%3ucqzd`RhCBcg@*L2hL6Z&2sbnE{nK7=jQ8wV#xTw VW91)NvjFHT22WQ%mvv4FO#s44t#$wa diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/bolt-open.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/bolt-open.png index 0781d7099bbddbfd1c0cf7c36cfa51b95a872006..d112220ff54fa7bd2b767795800b1371c1ccdc7e 100644 GIT binary patch delta 573 zcmV-D0>b^v1Iq-E8Gi-<0047(dh`GQ00DDSM?wIu&K&6g00IR`L_t(oh3%9vXcJKw z$A7QfAoWU7a42$d>5y(}tD9Qs6dZ~LZLA$TtCNc0AWjMe*Bp-0R_Ri(OFlIQ;gb@A{=ouO#|L7XSFFpZ;>h2SH)Z~gkC(p!gZlbR@ zLs&rYPIY7bJ%8&pK>ovXhDV+P@a)n7)6=hldq1x}roZo$Vf8z7wFhLg{$aKNyy^x3 zgHtalzJ7?_Gi!hg19zd>d$0iX-#)xq-Jn>7_jeADSEIfg(mw$zl?p)s9X$lz7W)S_ zct8B>-m?HW-`|Ban|c5Z-FSX!4S?<14$wuRP!PcxP=ChCbnw=Fzb?&*$&z1A+_)?! zM$a*`u*?dO$z;goaw3&VMGv93MWcS2`K7g{A$B6JT{pqjMsP6_7IgTR%Y}<|)o9M=7khat6=IW6yuYL>Z zT1}=Kwl-R$`W^iV5CL|;zB*gI-hS1?<8@d#U00000 LNkvXXu0mjfYL^g^ literal 459 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jPK-BC>eK@{oCO|{#S9GG z!XV7ZFl&wkP%tOJC&U#SOD1`PPVG5sxB@r`I!ky zN=iUwK%l9nA}uYQmXfo4B}mczC#>p`o_6wgd=>1JzhsS^`N~Sy>5j(T7Lx zMF8znDGBlmW?=g9`#%u;{`dd?9}wgJKV~omAy_zm|L1sjbYUe>{RvMO$B>FSZzrA> zYBJz)ZB}E|HeH|_B`Es$f4xa=x&&kCQ$PRBFYnBD4{o@xTCJ`#ZHC}Mf#86r9;`yk zB7AkZTdUT#XRkDMYwu*p=_sBh^hGNu+v(gyZnq!jv*^~O>v)8($TE-PWKj? zy{t$xj3`gZb7q}lQF^!Xii$+cZLi*zo?~Y|ah$yHkLkf0=1j%Q5y>ldep@)9Kl_E} zmkf^^r%qgn3p1#yKjpV;={|@0$){`grDY~OKV94OCOuY0zwY^Y@k)kHL++bDTH-*_ O#o+1c=d#Wzp$P!x4y_OX diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/equipped-BACKPACK.png index 7e73d94ffa2ce457cba48ff86dd213181f594da7..31598a8d1d3a2642d3a347da7f26aa179183dd15 100644 GIT binary patch delta 1214 zcmV;v1VQ_i2;K>hFn2JOKNN};eM1#ggmcUhJ#Dp zXHb?;_a3#3F~UfOg4ubpGdvO=q)2$sQ|BDk2N4-g*wb0u*dmO7YJ84l$j%8JBcM5i zc5)XwhSTf)1Aja=xI!d6NT%VEB;osSu2C?aLZ7yc*yU*yzx@oc%hNz;0M^iLgDc}% zRaMe;9nYTDQK{BEog>T$sGK}wT?@ujxckmBQa`-<-wzvgRD_unIuiqpzAtT zS64lsAc@Et>n45LHX2Vhk^g8Hsk{Fe7da>Eo&+b8Nq+(WP1CTnwB*m~Fp?nvi2VHk z&(D62<)6O7d&3jP6YpY$vRwt*VHyv>cjKw}om4q_2D6i4%lO4B;jWtO$^ojXlBQ|U zGz|+23oXWbwoEn|FU2lW;p<6!F#R*osN<9VO}yCM!D8+PE#_`G>i-p|IueNl>ADU8 zzKnSQ2Y-wY4WF}&AKZR`m2Cic*j3Yx3}{}1y`JqY4l%y*WD{uAF(y|40L#CvO4jP& zP*+z&fV-1D@x2m^r?B7n#VcV9z5Ol#VC-yyx_uyy98js&B;TI=9!!4(0BANof9V81 z%-)o8xtwG=!PMup{jOJmc9@f3Fgs7C_+E%cqkkCq^@|qcQ&YDsL;w2okDmK*onUsJ z7-N)9r+XR#>2#VDMIl8|THfic_kS1gB%B#z6bgj^0Fg)pb8~ZD_oFBZt*xzD_nU@G z(y`l>A4E|US00m_Ph21n2m}IwKp+qZ1n_7(>?Qkmg}rWz9sMKZ*7mkrc>W7;s*%e9 z`G1+K#2BMSqj4+>CE7WnSz~_YDwj^~ynvZy4aQSI`2x3CH?a%%`uksE=V9Jan~sJ+ zX!x9?#{I<13pmxt6#+l4zqG#hY1@uE@PkAmK>+Z)Nn5k#PH;s)p-{k>TtVaU3T7wU zCn3GA5IGE0RY{g*0Kn{I7>&m(7?Ud~6n_d__j5U*R;x)H)w*>ajYba`s;a8*#wU|W z3IqZGfZg3)>-t8uj#`Z`Ny0q`yxDJ5Uu5o8Q7V;M8aG4mjZ<&&HrF#|h8i%^^QBTr z%G|5AXyt*+0pp`XbbaD{TOk0T>$-1s0?irf{pooCxIS?n5`VHR z`<5yn8E7=?jewxx-I1|oxq*Z^_J^_K)}BW5dhDg8gtQM4!<+Hejs<~Dxry6 zw)KKu(`ls%X6Gq1am$fDM|u9@{TTp2?9^+=auZeD*dhRkeLQ7c;3%5n9s=eY*4WKo zx)SFHrZ)HASVuBc+}N@Xms@v@7B`KY)hXQ7;?3tgRoF*?r#cy9wuQ&Xf&Yt6fj}S- c2n0vZzo5w@V5bvz^8f$<07*qoM6N<$g6R29ZvX%Q delta 1011 zcmVpI zs!2paRCr$Pn!jt?KorL>9h0GU$?Oyz9+Vshq!0Z>zpzA?Ci{- z7eq5ZySTV`R)15fSn2U3Cb+!iogvzJBx8aL72HPN$~R>DX(D)_%Wl&uO|LcW<@Z?d5zvH;cu>+~409*846J z_KbT0M@ZO%kMZC=3&er((Pe4IyVLRU@v%JsgF}sn%zqAWjqmk(r5G=e@MO&2-rm~b zKvZCOi1Cog0gQRVp5yxZ`i}=ncou=QO_BqQ2ONTyECf4%Y|nV-D7)u{qoX5hJmcQQ zoh1r^2gniqs5E$~Vf^!M;=YVYRM0V5bY&U>Mb7ncU^H)dFdPo;86+Wc&YFaS9Dw0v z8;@}k@_!^dnflx)kfD%8Tjp8dIou?O_&gs_^1t-H`+-9eB-;-LgRPsJo8Zjvvi9Dj zXZH8^?KQoHNPCkJoG8YV?P*)0AaC1Hhy$WaOTAvtEEMBcGd=CWI*cz2oUrPMJgmDt zMNt$*Q4~c{6h#T(U-%>q)#$Y(Mx%#^hjyhW&wmnE(Vz{DX!UhO(3&9Cn9Iw{=&pL8 zO)5sdcsYQg+?x$ zqGCjya(jC_x_c~}`5F&FE32|f8@JMnkT0J{rB;okLQP?GGMU%{N$4uHcLY%IpcWtZ z0DnS|^T$t*^?)*v3N=uqMHAZ47*e73asX3`BpA0s1F}7)%xbYzsKG7Iy9JcBO@lNf zl^$?s0SQ6IU|BmvB-&ur;jT6``#8ZX0w_gMe*j{KTy#%M_iGrz3=moY( zd+d#1KmsnAE$qz*V>0?eaK7?|;*0fNh3!QU#$aHYK@?huZ>-fiXkn2>s0%_%O31cS zbcAwO5aH*Gc;}^mlIN03+T!zpBk7Sm_x=9v_uO-r->-l`Ab$`D1cFv5ib9MrI%*xf zFvf_8PwoKEhh$ksSsnpKQ^zt0L}YCkO;K4MK`0dB(%Lovj4>+9Bk)EOjV+x!Rza|z zX(@7vywL=T_h(U-N6>ZFGR6p_De|Us)XsP?Fhs$?P)~z%&@t?1-kZ)*aea$0@loS- zG}U(Mw#=%f|jOu(KL+=!@#qrHB>gMu8esYW(HJFpSAXRqY2!7V+o0GU;OWb^;+Zg zmuyQtU5ky!e!j_k&z4D>c`0&<3SUg&otYnidJP}=H}Kc)4i+*u zXd!dM(SPw@aH=B~i;-a%0MM5?4`82pU+BDLerWpvmbU@mVMjwdGGJeWdwsRHIKX`U z$p%obVO*{N0G57Uk*w9hp{|am0QW&$x^?zO6WD8h;c5WGufGWZ7(W-IPEUxV08}=s zQs2(}zcAww0KjfOfB6*NP2ZFzRh3p(SFP`x#wE!e={=dxilPtz`2Bv^#dnI^rUe3lKp+qZ z1b+g7;D67Fd%W8FJ3zNjh>m^{QdRXxE5kgG#ZEPH1t33rjTmE8uh+XTIlI7Nfv{`L z&tBuw$z2yPtE}E=0w`bP7V9SM(!KWfXV`g|cQmG>Dc}p8cQklEG3x?OHF9OZcWZxJ z?+5g4M+fK!u~>`%;JHnkU2`kAGN4c>V1Hb$p#FFn*{Q>ekiG5@IS5VDNS0*)Kz1sC z`r~Dc%M}y~1+MRN1)y53O6!|7>+f(lyw9knX?-^zkH^X5@c;mJcXzG*>zg%Ht9(Tg z?rXrS{zmsj>fR0sZ^3u_coif^1u~+z2$iTxITFS6Jx{fw8^zHZ#GHDvfQ^)xtVQ1>&6V;AaGBC#Pn?` zfB6*djIA~8_jo-0>kt9(>}lg#bWp(WjIHgf9lDBd@>bh^!Cup9rSYb7pI zs!2paRCr$Pn!jt?KorL>9h0GU$?Oyz9+Vshq!0Z>zpzA?Ci{- z7eq5ZySTV`R)15fSn2U3Cb+!iogvzJBx8aL72HPN$~R>DX(D)_%Wl&uO|LcW<@Z?d5zvH;cu>+~409*846J z_KbT0M@ZO%kMZC=3&er((Pe4IyVLRU@v%JsgF}sn%zqAWjqmk(r5G=e@MO&2-rm~b zKvZCOi1Cog0gQRVp5yxZ`i}=ncou=QO_BqQ2ONTyECf4%Y|nV-D7)u{qoX5hJmcQQ zoh1r^2gniqs5E$~Vf^!M;=YVYRM0V5bY&U>Mb7ncU^H)dFdPo;86+Wc&YFaS9Dw0v z8;@}k@_!^dnflx)kfD%8Tjp8dIou?O_&gs_^1t-H`+-9eB-;-LgRPsJo8Zjvvi9Dj zXZH8^?KQoHNPCkJoG8YV?P*)0AaC1Hhy$WaOTAvtEEMBcGd=CWI*cz2oUrPMJgmDt zMNt$*Q4~c{6h#T(U-%>q)#$Y(Mx%#^hjyhW&wmnE(Vz{DX!UhO(3&9Cn9Iw{=&pL8 zO)5sdcsYQg+?x$ zqGCjya(jC_x_c~}`5F&FE32|f8@JMnkT0J{rB;okLQP?GGMU%{N$4uHcLY%IpcWtZ z0DnS|^T$t*^?)*v3N=uqMHAZ47*e73asX3`BpA0s1F}7)%xbYzsKG7Iy9JcBO@lNf zl^$?s0SQ6IU|BmvB-&ur;jT6``#8ZX0w_gMeMg$T}pfjjrTbI-YV?tegl00I7Yh#fPIC)FRT zs z8G+hY>%He70P@{K7pK&J-dn~eJUhPxz^Cdrpo?5CCx4tBu!U{Wp>tQPI6osM^Hw-< zW<*V#?c@I30*ioYnxs-G5sgOuOIRz@sPAQVeyJ%4PoBTs@^3M`#7=%IfOI-7(&;o( zN;e;n)n|-NeH3F;R$2&w5CWzAUJaeNow(KgD2@7>(~*=?0YoAZho1-)8901|OvcUE zg}p}Fc5thU+aq0gvEt)NDb=AqYey^-8A_#+bI;qo5Y|ywI|D#laT}k%SkqZ~{R-1G zohjLZ`s3s~F)%tZ;1p_QKuW2?;V=jG?dJVz*)@T`1}UY|I}Z>bK!AT9zX0EL@aJsx REII%H002ovPDHLkV1l!AC=&nx literal 488 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jPK-BC>eK@{oCO|{#S9GG z!XV7ZFl&wkP_Q(>C&U#SOD1`PPVG5sxB@r`I!ky zN=iUwK%l9nA}uYQmXFwur}$axW;$;MGH$MjviJep;vO%UXCfVCImm}5iE=o`=}Gnu+;FH zrF(YL(X7R0p`p3n!u{!D&861QcD-*1`hED}50fS4J9bTz6O8Pg`BeCm({JI1&3q{> zImx{XzwUe~{Zqi%c@eww5iz%I--H;q^6&3ozc_E@$qVtH7VX`4OoutgXWi+eAF~vy tuP@BDw`hBD^rKt-lGpoQ*WW8(p7EV8@wwK@GeA!=c)I$ztaD0e0suW)z2E=< diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/inhand-left.png index 27972c97f500054d5e88d1af644ff92921307c44..a3344cc76ce37828c1a8fe04752aca91fdfde6c6 100644 GIT binary patch delta 869 zcmV-r1DgDY1Mmir7=H)`00020X>r~F0004VQb$4nuFf3k0009jNklShB9o8aFN7_#!J5XXTcTe|Veju^@+EomzK`Gc<$v%#06`E0K@bE%5ClQo ze6nRGNfP4~F2F00MYhbW-{CRm*stEa1uqf!3jhGwG7HIybv$bf=eb&mSf{*1;4VNo zS%6jiyf{Qqw!dL0!s^pHZVB^G0$*l8;G&Psm9xRg!H(d07G%o|2Rnju`1P|GlzLNG zjo%Y+up=DzK7Wnf<2l!P12{2z9hkiiHo6OFRP$HGxD~;6f1{eWhSf?0KYyI_P8V}4 zIEJmzaI%0G`CnLn*&Pf__*bVr->BxX(OrPq>$rPvMz{wSMUer3vGf?gK!o3SmvH_; zbuBlNS+>MR}$H9}yGMS0bW-=K>-#s5Get69uk2k(;E>0v#V&QNY0IV95}x7$h8Q!{YW4rD}!F3UpU2`&~tR#I_EwEHdoHB8lis7g3Fj8SwTov z5Kb1x@A1%0<}Sd@z5qAaj1!wHXCobCb!&~OTYqbw-^F(cWXsI#b+CZ~8r3}30sh5b z8Ye98fDL;;(JfqOKryHTfaMV3<`o*kxp;uH0Etu@#h~up7vPeRtc(<24CB$jx_qt=gfRL=rXK9;YoG1o$41EJbSIR7K+XI|Ee5KwL)U7q9Y+v~TG)?my zS6-4NrU7HdiOb6@kxByq48xcyZ{PdyfAa;np;Rid!^1;p!G~kUiQ+uM8cgu(AmF-O?F)mYqsZ;j1@#N_nkT+_%gJ(7&f&u!)5%v{WnOO6tz$`k_B>tb z38T!fYR;^no24_hPBQq?+vT_8Nyw2Ez7i1`-Ax8NIv>wA-o<*szg2JhfP}&*$DoA_PxftC)j*+@Dk_XvO)V7>ceSbn%>co*vTf`2O&tlMMSM_)ox|heU zu$}L3N6x3YOWV|T7O2mZxL5HZ=~|Akl3deIzdQFk*!9n)ef4;)^XTB|kmTuQ3^qW< zxxZ!I#Rr@-9(oz5JYp=5mYDQ!swlt227{Cv^O!z1+)DSD@%Mnh54*NK49^1PKi{$0 RxfB=z44$rjF6*2UngG)ppH~0? diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/inhand-right.png index d50518634cd8513233d28d2a70a3a2a477c5b980..84701f541a6042986d755fed77eb6fa890cc4bd4 100644 GIT binary patch delta 872 zcmV-u1DE`c1M>!u7=H)`00020X>r~F0004VQb$4nuFf3k0009mNkln9i3IE zAR>aTD-1fyycC2|bg+%R9hziKli4;+oW1s<>~`ow z764Egc?tlK!U_C-G=ln(=4ilxWvfNJwm6KBXTMM?gnx_?q905c9}VHf)MGrK9)P-) zgA`667*$aRM5_trJAiX809eGU=?u$evut8&_O>;+W_&b+iK$s+vstF5GfZ0?My;4b z;HrvXR5f)Pm$kpm1b{}p2F)gf_ST>%ie)SVfQ5wxQ7)GO z0JT~T=YQwteIc|PIOjr=BmltJ*cf(pcB~p>vDlsbwdXbWMJGWJ1VIo4K@bE%5ClOG zJu)4h{J(!DHfI$)q@(uuba+ynJ)HCU+MUy!Rq&XB_CxeGbY#x%e(N3av3cr;c%Z`- z0Kie4(Q`A4^CL;3x3}v@8rEknJfFUE19Y^F6@Q^^tOx*R&&@2XO&FnT9I^^t)3pK3 zJwu>j!fJl7qcDOiT7nv0ud=QU06H+iLxNG&64XczmA#zaodE`N^}sC1Fu}8zl|xn` zIaG$%t$No6$g(VqUVL(>jMhGUFDrp_ZWFJjGi-N1&q{?;EH5v6w#r-^V2CdjPO-b6 zw_$}53?XjjRul!Hy*0+uM8c0Jnuw9CqI}e|J`+w!o`i{rG#$R&w9s0Y4XF;9_o5mg4FRU-hYvdoK z)pzz4^2m7He;hNpG@317U}oXkrgC*RY>F(jh(?WK)e4GJQy4}-r* zS(%xbh>Ki#5o~U<#oXkJ(Q?mBZfBlHH3~88AK6)5fZ$(KO2jdVUq3yk8YRh9U-OkN zUFK7|bL%vQ0y*nB#fkHE85pLOYTt8FDXjmU`QpX%HFAu0O3#G5I%?iAu^zSVyj8fy Q8fZ6zr>mdKI;Vst09&~}xBvhE delta 180 zcmdnWc!Y6+L_G^L0|P^2NcwRg#aJBV?!#sMSf<2gt(}LxK#9wtOY@y}Px&R7pfZRCt{2noVdEK@`XTD^eOu8ZRl7 zbnQjT#2zYjTY6};MG%Uj5Tr?K&OutSc zgH**!Je6QA9x@)1T{pX%{m4f@==(unc4ue)Z(iQa9Nq&6f`1?gf*=TjAkH9yX>V_s zJDP1LVLsnc(;MbiHl453!5HH|r6BU@r1`>1PI5~@$A$YYBI|)xTPSNg&{JGG47Uv%DBvO3@h($^4v^R4vMj6#bS*YCctW1k~Z(>Llek9tj7bPm|s+7dYD z5Cj3iscczaGB&{hU`fhgEPbu4FCQPR``#aVzM(i_Nq@@VPTYEo+78Y+IyyRFb_P`J zkeyHwqZ`6#ua>@J2fL<*$S}ru_QF-=dA$8A#_tW|@1Hz^Q?E|U0Si$Sc{Cd3q9{7M zDjhO@yPqdx6MVS8t06kNL(mSQDDsh!5q$alQP(GLlX|hZx-Gn1_)yO&Yey7CJ~TMM zeLi19|9|}x&6!?2K@bE%5ClOG1VIo4K@h}g#Zjh3o3+u=sMNSwokES8wi6?Ac2`M< z?<54ZxW^xGUQl6E*W(Wu>efTkvOYjdp~VZ2KY)Ez&46s2_I*7gLaXcX2T*A77HblA z66GKFhPmBbq-6xix%Hl&9-T3Aoxn`rAyVtJWqiH9qPRw5Ufz9`i zb>p-(3T9YFfHt>2-n==ItzkPvY|4064Dgj_Bs0L3beB`Jdk8<()ZFj>~?IK-kYl?x(T48aBs*CCZE$@+7$>@*?oZxQJ3z324a zAA{cqAP9mW2!bF8f_R3k6*V%(Bmn5Tj@#SY(x>Nnh2uRmjDIm%HmBT1#+cmM*}-@` z#?{qTZohuNFWc=l0Kjn^IF9pZl3<#qv@EM|VR9Qd=Q6J?2!dSE_4V~c5{~xwBmjK= z@>Mx8VN6Js*fgAT>AG%i{LAzU(=;UjxIe$+@L(4wXBTr%{z||wj3{O_8o_m43i>-D03Qh((`j`sItECwfM7fLG`BDx)EU*AOiv}Ob1?>C*Ep3cS3CBU*Q06=R) z!*DnPfVrpd`|y1~5yv^l`T6VMOyY68;lv}Oa_Tbs4+f~6z69eK3BCyOr2r=T-;2dE&r9l5==nb}sh<*H&|->gmU zrYlWyWkk0l-@kji^3{LTJnN4q2!bF8f*=TjAP9mW2!eR3RQms(F(!*V0!3x?I`sQ} zxhhTN!hc9u3Jbjep|Gy&QrC5~+ilEdGr4Sk0Anoj9{~5|H_!7TUqW3?-xKx;!o zST$NkEiX$q?N3P8B*PN>hmW61^-Fhv5JGa!0c3jy2CokQ{PPI-zK_F$-7s9q6Oe~# znlfASO+wT2yhL2DXGEp^GD;ILnM@)tK$d6V@_+I&>dQF?=e)8fAP>v3lr(MIPQ(p| zBW3N{M?ljw07;KPRZl=w-7L*`|0>$bmtfvtK@da}jJvWXcT?4&E9=HJv#6rIPFigZX>+01?0C0cf##i5U-L+M&ep+*xW{k>+ oZX@Tvm?X%XKoA5$5X3V01IEwN%>^*oWB>pF07*qoM6N<$f&%`6cmMzZ diff --git a/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Rifles/lecter.rsi/wielded-inhand-right.png index fd58fca837bd971fa8d12541b549e2925ad50069..91a8545de1c8be02f431aef96fef9c9bf9df630b 100644 GIT binary patch delta 883 zcmV-(1C0E(28jodBYyw^b5ch_0Itp)=>Px&LrFwIRCt{2nonpGK@`Tn1QE2XIkg~R z5mf5NOC_$wgRzmGiXxJOStRF0Dkyp>6pEDMp~tFt=-IYukbq(l#9~@cHBD(f*iaPO z2I(OeL+BrR$avW9cAIRH*=&+l`hKTmIy>LIH*Y7<_W=Y!5Pt+g5ClOG#}Jq8C;SSt zHGd&$U&E~BZrTs4=bwl$ahuuzLW5*LH9z z5&-}xZ`V+0X@4!dmvA`D0AO-*vT8v3+@+}5F)EJwPQ#jlG48h?UB>K7# z9G-!9YmueX>5}KIE1&{5@4f^8JWpnUf@%LXbzH#0dm$nvR^$OICD2hx~RVIpJ z!*6Ok-0Ey+@sVEk;C3h1zTCVE$47cg7F_xH13f)GIBH3FHTDJLQ{Nk3c3!WS1#etG za#he&ynkNr@eQ6J2!bF8f*=TjAP9mW2;zUk`Tx!}{-*2Ng}VZ*3=gv(9%JZo2GPhlj?+P3`xW`f-VKoUT5-yos4r+2sW=ug$J-)|1ESXa|r*EDVV5o{%( z*rkyhd*m|vcyyn@yU+93$o>W3Hv0XwqLutQfPIfZTU#63zW2JUW-gcGz6kjZ67%t@ z<7{_E>woKOC%=v}Q%{kH7Q9)v5t{b!D^2kU_}VWT>(|qp;P__{Xr52N+=;H2rlU(x z|5^Oq1b@Kt$}gkTGntGF6)bv(!eN*sL{U86<_v-$2!bFS@ed0*YJSnTF);uD002ov JPDHLkV1i(uuz&yn delta 800 zcmV+*1K<3K2et-~BYy(@NkljFTkyIFrZ)_=S2!HdlE!voQ|xm{>4GpGM@JrRT|2(bY42g6rm6zRP0`|y1~w(h!J z<=ASq7F~CUJXZTsOl>oZWm)j@86OCF`@WX>xK;DzA*YzpOiBDmwcG72sR^jdcS)p*)al8waNTaK#y%^g>JeB)Jx8UKgD6h1#+H02N8KbycrGp5B0Y+Wo;0wtsB{Kx)l-86ruQCi8j*qP+q^5X5Zr zJ_0K3MVeW3Q)K`EWxZV@@5Wp82}HH!zOyRLRC|Eud0X-`yH+R^@a=0kS4&G8?c&Zh zfMJ;EO}4N8&y^wo0000 Date: Thu, 23 Jan 2025 06:03:56 +0000 Subject: [PATCH 075/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1cce64143c0..65bd89413c6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: ScarKy0 - changes: - - message: Renamed Circuit Boards to be Law Boards instead. - type: Tweak - id: 7340 - time: '2024-09-10T10:27:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31914 - author: ScarKy0 changes: - message: Arrival Screens now show time again. @@ -3894,3 +3887,10 @@ id: 7839 time: '2025-01-22T23:54:03.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34403 +- author: Emisse + changes: + - message: Lecter sprites have been updated. + type: Tweak + id: 7840 + time: '2025-01-23T06:02:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34589 From 4eba0be6e7d74072639aabc6d1d60d7b86bb0a2e Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 23 Jan 2025 08:10:54 +0100 Subject: [PATCH 076/103] fix locale (#2944) --- .../Locale/ru-RU/connection-messages.ftl | 1 - .../ru-RU/discord/watchlist-connections.ftl | 18 +- .../ghost/roles/ghost-role-component.ftl | 2 - Resources/Locale/ru-RU/guidebook/guides.ftl | 114 ++++---- Resources/Locale/ru-RU/holopad/holopad.ftl | 7 + Resources/Locale/ru-RU/lobby/lobby-gui.ftl | 2 +- .../meta/consumable/drink/alcohol.ftl | 256 +++++++++++++----- .../reagents/meta/consumable/drink/drinks.ftl | 64 +++++ .../reagents/meta/consumable/drink/soda.ftl | 32 +-- Resources/Locale/ru-RU/robotics/mmi.ftl | 2 +- .../Locale/ru-RU/speech/accent-systems.ftl | 2 +- .../entities/clothing/neck/mantles.ftl | 12 +- .../spawners/random/department/medical.ftl | 6 +- .../spawners/random/department/security.ftl | 17 +- .../markers/spawners/random/medical.ftl | 4 - .../markers/spawners/random/security.ftl | 15 - .../entities/mobs/player/silicon.ftl | 2 - .../objects/consumable/food/food_base.ftl | 4 +- 18 files changed, 376 insertions(+), 184 deletions(-) create mode 100644 Resources/Locale/ru-RU/reagents/meta/consumable/drink/drinks.ftl delete mode 100644 Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/medical.ftl delete mode 100644 Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/security.ftl diff --git a/Resources/Locale/ru-RU/connection-messages.ftl b/Resources/Locale/ru-RU/connection-messages.ftl index 2666f27ae58..ea8f505027c 100644 --- a/Resources/Locale/ru-RU/connection-messages.ftl +++ b/Resources/Locale/ru-RU/connection-messages.ftl @@ -34,7 +34,6 @@ whitelist-manual = Вы отсутствуете в белом списке эт whitelist-blacklisted = Вы находитесь в чёрном списке этого сервера. whitelist-always-deny = Вам запрещено присоединяться к этому серверу. whitelist-fail-prefix = Не внесён в белый список: { $msg } -whitelist-misconfigured = Сервер неправильно настроен и не принимает игроков. Пожалуйста, свяжитесь с владельцем сервера и повторите попытку позже. cmd-blacklistadd-desc = Добавить игрока в чёрный список сервера. cmd-blacklistadd-help = Использование: blacklistadd cmd-blacklistadd-existing = { $username } уже находится в чёрном списке! diff --git a/Resources/Locale/ru-RU/discord/watchlist-connections.ftl b/Resources/Locale/ru-RU/discord/watchlist-connections.ftl index 346fe5935b1..1aaedc2a455 100644 --- a/Resources/Locale/ru-RU/discord/watchlist-connections.ftl +++ b/Resources/Locale/ru-RU/discord/watchlist-connections.ftl @@ -1,14 +1,16 @@ discord-watchlist-connection-header = - { $players -> - [one] { $players } player on a watchlist has - *[other] { $players } players on a watchlist have - } connected to { $serverName } + { $players } { $players -> + [one] игрок в списке наблюдения подключился + [few] игрока в списке наблюдения поключились + *[other] игроков в списке наблюдения подключились + } к { $serverName } discord-watchlist-connection-entry = - - { $playerName } with message "{ $message }"{ $expiry -> + - { $playerName } с сообщением "{ $message }"{ $expiry -> [0] { "" } - *[other] { " " }(expires ) + *[other] { " " }(истекает ) }{ $otherWatchlists -> [0] { "" } - [one] { " " }and { $otherWatchlists } other watchlist - *[other] { " " }and { $otherWatchlists } other watchlists + [one] { " " }и ещё { $otherWatchlists } наблюдением + [few] { " " }и ещё { $otherWatchlists } наблюдения + *[other] { " " }и ещё { $otherWatchlists } наблюдений } diff --git a/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl b/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl index 249753761eb..8600597e743 100644 --- a/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl @@ -171,10 +171,8 @@ ghost-role-information-nukeop-reinforcement-description = Ядерным опе ghost-role-information-nukeop-reinforcement-rules = Вы [color=red][bold]Командный антагонист[/bold][/color], в команде с ядернымы оперативниками, которые призвали вас. ghost-role-information-syndicate-monkey-reinforcement-name = Агент Синдиката-обезьяна ghost-role-information-syndicate-monkey-reinforcement-description = Кому-то нужно подкрепление. Вы, специально обученная обезьяна, поможете им. -ghost-role-information-syndicate-monkey-reinforcement-rules = Вы [color=red][bold]Командный антагонист[/bold][/color], в команде с агентом, который вас призвал. ghost-role-information-syndicate-kobold-reinforcement-name = Агент Синдиката-кобольд ghost-role-information-syndicate-kobold-reinforcement-description = Кому-то нужно подкрепление. Вы, специально обученный кобольд, поможете им. -ghost-role-information-syndicate-kobold-reinforcement-rules = Вы [color=red][bold]Командный антагонист[/bold][/color], в команде с агентом, который вас призвал. ghost-role-information-syndicate-cyborg-assault-name = Штурмовой киборг Синдиката ghost-role-information-syndicate-cyborg-saboteur-name = Саботажный киборг Синдиката ghost-role-information-syndicate-cyborg-description = Синдикату нужно подкрепление. Вы, холодная кремниевая машина для убийства, поможете им. diff --git a/Resources/Locale/ru-RU/guidebook/guides.ftl b/Resources/Locale/ru-RU/guidebook/guides.ftl index 34c5096b673..3692f56104c 100644 --- a/Resources/Locale/ru-RU/guidebook/guides.ftl +++ b/Resources/Locale/ru-RU/guidebook/guides.ftl @@ -78,62 +78,62 @@ guide-entry-minor-antagonists = Малые антагонисты guide-entry-space-ninja = Космический ниндзя guide-entry-thieves = Воры guide-entry-rules = Правила сервера -guide-entry-rules-core-only = Core Only Ruleset -guide-entry-rules-lrp = Standard Ruleset -guide-entry-rules-mrp = MRP Ruleset -guide-entry-rules-role-types = Role Types -guide-entry-rules-core = Core Rules -guide-entry-rules-c1 = C1 -guide-entry-rules-c2 = C2 -guide-entry-rules-c3 = C3 -guide-entry-rules-c4 = C4 -guide-entry-rules-c5 = C5 -guide-entry-rules-c6 = C6 -guide-entry-rules-c7 = C7 -guide-entry-rules-c8 = C8 -guide-entry-rules-c9 = C9 -guide-entry-rules-c10 = C10 -guide-entry-rules-c11 = C11 -guide-entry-rules-c12 = C12 -guide-entry-rules-c13 = C13 -guide-entry-rules-c14 = C14 -guide-entry-rules-roleplay = Roleplay Rules -guide-entry-rules-r1 = R1 -guide-entry-rules-r2 = R2 -guide-entry-rules-r3 = R3 -guide-entry-rules-r4 = R4 -guide-entry-rules-r5 = R5 -guide-entry-rules-r6 = R6 -guide-entry-rules-r7 = R7 -guide-entry-rules-r8 = R8 -guide-entry-rules-r9 = R9 -guide-entry-rules-r10 = R10 -guide-entry-rules-r11 = R11 -guide-entry-rules-r11-1 = R11-1 -guide-entry-rules-r11-2 = R11-2 -guide-entry-rules-r12 = R12 -guide-entry-rules-r13 = R13 -guide-entry-rules-r14 = R14 -guide-entry-rules-r15 = R15 -guide-entry-rules-silicon = Silicon Rules -guide-entry-rules-s1 = S1 -guide-entry-rules-s2 = S2 -guide-entry-rules-s3 = S3 -guide-entry-rules-s4 = S4 -guide-entry-rules-s5 = S5 -guide-entry-rules-s6 = S6 -guide-entry-rules-s7 = S7 -guide-entry-rules-s8 = S8 -guide-entry-rules-s9 = S9 -guide-entry-rules-s10 = S10 -guide-entry-rules-mrp-m0 = MRP Rules -guide-entry-rules-m1 = M1 -guide-entry-rules-space-law = Space Law -guide-entry-rules-sl-crime-list = Crime List -guide-entry-rules-sl-controlled-substances = Controlled Substances -guide-entry-rules-sl-restricted-gear = Restricted Gear -guide-entry-rules-sl-restricted-weapons = Restricted Weapons -guide-entry-rules-ban-types = Ban Types -guide-entry-rules-ban-durations = Ban Durations +guide-entry-rules-core-only = Только основные правила +guide-entry-rules-lrp = Стандартные правила +guide-entry-rules-mrp = МРП правила +guide-entry-rules-role-types = Виды ролей +guide-entry-rules-core = Основные правила +guide-entry-rules-c1 = О1 +guide-entry-rules-c2 = О2 +guide-entry-rules-c3 = О3 +guide-entry-rules-c4 = О4 +guide-entry-rules-c5 = О5 +guide-entry-rules-c6 = О6 +guide-entry-rules-c7 = О7 +guide-entry-rules-c8 = О8 +guide-entry-rules-c9 = О9 +guide-entry-rules-c10 = О10 +guide-entry-rules-c11 = О11 +guide-entry-rules-c12 = О12 +guide-entry-rules-c13 = О13 +guide-entry-rules-c14 = О14 +guide-entry-rules-roleplay = РП Правила +guide-entry-rules-r1 = Р1 +guide-entry-rules-r2 = Р2 +guide-entry-rules-r3 = Р3 +guide-entry-rules-r4 = Р4 +guide-entry-rules-r5 = Р5 +guide-entry-rules-r6 = Р6 +guide-entry-rules-r7 = Р7 +guide-entry-rules-r8 = Р8 +guide-entry-rules-r9 = Р9 +guide-entry-rules-r10 = Р10 +guide-entry-rules-r11 = Р11 +guide-entry-rules-r11-1 = Р11-1 +guide-entry-rules-r11-2 = Р11-2 +guide-entry-rules-r12 = Р12 +guide-entry-rules-r13 = Р13 +guide-entry-rules-r14 = Р14 +guide-entry-rules-r15 = Р15 +guide-entry-rules-silicon = Правила синтетиков +guide-entry-rules-s1 = С1 +guide-entry-rules-s2 = С2 +guide-entry-rules-s3 = С3 +guide-entry-rules-s4 = С4 +guide-entry-rules-s5 = С5 +guide-entry-rules-s6 = С6 +guide-entry-rules-s7 = С7 +guide-entry-rules-s8 = С8 +guide-entry-rules-s9 = С9 +guide-entry-rules-s10 = С10 +guide-entry-rules-mrp-m0 = МРП Правила +guide-entry-rules-m1 = М1 +guide-entry-rules-space-law = Космический закон +guide-entry-rules-sl-crime-list = Список преступлений +guide-entry-rules-sl-controlled-substances = Контролируемые вещества +guide-entry-rules-sl-restricted-gear = Ограниченное снаряжение +guide-entry-rules-sl-restricted-weapons = Ограниченное оружие +guide-entry-rules-ban-types = Виды банов +guide-entry-rules-ban-durations = Длительности банов guide-entry-writing = Разметка письма guide-entry-glossary = Словарь терминов diff --git a/Resources/Locale/ru-RU/holopad/holopad.ftl b/Resources/Locale/ru-RU/holopad/holopad.ftl index 7054e2eb0a5..dc19e47d0f4 100644 --- a/Resources/Locale/ru-RU/holopad/holopad.ftl +++ b/Resources/Locale/ru-RU/holopad/holopad.ftl @@ -35,6 +35,7 @@ holopad-hologram-name = голограмма { $name } # Holopad actions holopad-activate-projector-verb = Активировать голопроектор holopad-ai-is-unable-to-reach-holopad = Вы не можете связаться с источником вызова, он находится слишком далеко от вашего ядра. +holopad-ai-is-unable-to-activate-projector = Вы не можете активировать голопроектор, он находится слишком далеко от вашего ядра. # Mapping prototypes # General holopad-general-tools = Общий - Инструменты @@ -62,6 +63,8 @@ holopad-command-hos = Командование - ГСБ # Science holopad-science-anomaly = Научный - Аномалистика holopad-science-artifact = Научный - Ксеноархеология +holopad-science-artifact-north = Научный - Ксеноархеология Север +holopad-science-artifact-south = Научный - Ксеноархеология Юг holopad-science-robotics = Научный - Робототехника holopad-science-rnd = Научный - РНД holopad-science-front = Научный - Приёмная @@ -84,6 +87,7 @@ holopad-cargo-salvage-bay = Снабжение - Утилизаторский о holopad-cargo-breakroom = Снабжение - Комната отдыха holopad-cargo-ats = Снабжение - АТС holopad-cargo-shuttle = Снабжение - Шаттл +holopad-cargo-mailroom = Снабжение - Почта # Engineering holopad-engineering-atmos-front = Атмос - Приёмная holopad-engineering-atmos-main = Атмос - Главный @@ -95,6 +99,7 @@ holopad-engineering-telecoms = Инженерный - Телекоммуника holopad-engineering-tech-vault = Инженерный - Техническое хранилище holopad-engineering-ame = Инженерный - ДАМ holopad-engineering-power = Инженерный - Питание +holopad-engineering-main = Инженерный - Главный # S ecurity holopad-security-front = СБ - Приёмная holopad-security-brig = СБ - Бриг @@ -108,6 +113,8 @@ holopad-security-lawyer = СБ - Адковат holopad-security-armory = СБ - Оружейная holopad-security-locker-room = СБ - Раздевалка holopad-security-brig-med = СБ - Бригмед +holopad-security-evac-checkpoint = СБ - КПП Эвакуация +holopad-security-arrivals-checkpoint = СБ - КПП Прибытие # Service holopad-service-janitor = Сервис - Уборщик holopad-service-bar = Сервис - Бар diff --git a/Resources/Locale/ru-RU/lobby/lobby-gui.ftl b/Resources/Locale/ru-RU/lobby/lobby-gui.ftl index 299e0faa91e..244c014675a 100644 --- a/Resources/Locale/ru-RU/lobby/lobby-gui.ftl +++ b/Resources/Locale/ru-RU/lobby/lobby-gui.ftl @@ -1,4 +1,4 @@ -ui-lobby-title = Лобби +ui-lobby-title = Лобби: {$serverName} ui-lobby-ahelp-button = AHelp ui-lobby-options-button = Настройки ui-lobby-leave-button = Выйти diff --git a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl index b573653ab10..1c5a8a53242 100644 --- a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl @@ -1,68 +1,194 @@ -reagent-name-coffee = кофе -reagent-desc-coffee = Напиток, приготовленный из заваренных кофейных зёрен. Содержит умеренное количество кофеина. -reagent-name-cream = сливки -reagent-desc-cream = Жирная, но ещё жидкая часть молока. Почему бы вам не смешать это с виски, а? -reagent-name-coconut-water = кокосовая вода -reagent-desc-coconut-water = Фаворит выживающих на необитаемых островах. -reagent-name-cream-of-coconut = кокосовые сливки -reagent-desc-cream-of-coconut = Сладкая, сиропообразная версия кокосовых сливок с добавлением сахара. -reagent-name-cafe-latte = кофе латте -reagent-desc-cafe-latte = Приятный, крепкий и вкусный напиток на время чтения. -reagent-name-tea-powder = порошковый чай -reagent-desc-tea-powder = Мелко измельченные чайные листья, используемые для приготовления чая. -reagent-name-green-tea = зелёный чай -reagent-desc-green-tea = Вкусный зелёный чай. -reagent-name-grenadine = сироп гренадин -reagent-desc-grenadine = Не с вишневым вкусом! -reagent-name-iced-coffee = айс-кофе -reagent-desc-iced-coffee = Кофе со льдом, бодрящий и прохладный. -reagent-name-iced-green-tea = зелёный чай со льдом -reagent-desc-iced-green-tea = Холодный зелёный чай. -reagent-name-iced-tea = чай со льдом -reagent-desc-iced-tea = Он же айс-ти. Не имеет отношения к определённому рэп-исполнителю/актёру. -reagent-name-lemonade = лимонад -reagent-desc-lemonade = Напиток из лимонного сока, воды и подсластителя, например, тростникового сахара или мёда. -reagent-name-arnold-palmer = Арнольд Палмер -reagent-desc-arnold-palmer = Теперь взгляните на этот удар. -reagent-name-milk = молоко -reagent-desc-milk = Непрозрачная белая жидкость, вырабатываемая молочными железами млекопитающих. -reagent-name-milk-goat = козье молоко -reagent-desc-milk-goat = Непрозрачная белая жидкость, производимая козами. Высокая концентрация обезжиренных сливок. -reagent-name-milk-oat = овсяное молоко -reagent-desc-milk-oat = На удивление вкусное. -reagent-name-milk-soy = соевое молоко -reagent-desc-milk-soy = Любимчик потребителей. -reagent-name-milk-spoiled = прогорклое молоко -reagent-desc-milk-spoiled = Это молоко испортилось. -reagent-name-nothing = ничего -reagent-desc-nothing = Абсолютно ничего. -reagent-name-nuclear-cola = ядерная кола -reagent-desc-nuclear-cola = Кола, кола никогда не меняется. -reagent-name-hot-cocoa = горячее какао -reagent-desc-hot-cocoa = Пахнет праздниками! -reagent-name-soda-water = газированная вода -reagent-desc-soda-water = Она же содовая. Почему бы не сделать виски с содовой? -reagent-name-soy-latte = соевый латте -reagent-desc-soy-latte = Кофейный напиток, приготовленный из эспрессо и подогретого соевого молока. -reagent-name-tea = чай -reagent-desc-tea = Напиток, приготовленный путём кипячения листьев чайного дерева Camellia sinensis. -reagent-name-tonic-water = тоник -reagent-desc-tonic-water = Вкус у него странный, но, по крайней мере, хинин препятствует распространению космической малярии. -reagent-name-water = вода -reagent-desc-water = Бесцветная жидкость, необходимая человекам для выживания. -reagent-name-ice = лёд -reagent-desc-ice = Застывшая вода. -reagent-name-dry-ramen = сухой рамэн -reagent-desc-dry-ramen = Сухая лапша и соль. -reagent-name-hot-ramen = горячий рамэн -reagent-desc-hot-ramen = Горячая лапша. -reagent-name-pilk = пилк -reagent-desc-pilk = Тошнотворная смесь молока и колы. -reagent-name-posca = поска -reagent-desc-posca = Напиток бедных воинов из забытой эпохи. +reagent-name-absinthe = абсент +reagent-desc-absinthe = Спиртной напиток со вкусом аниса, полученный из растений. +reagent-name-ale = эль +reagent-desc-ale = Тёмный алкогольный напиток, приготовленный из ячменного солода и дрожжей. +reagent-name-beer = пиво +reagent-desc-beer = Алкогольный напиток, изготовленный из солода, хмеля, дрожжей и воды. +reagent-name-blue-curacao = голубой Кюрасао +reagent-desc-blue-curacao = Экзотично-голубой фруктовый напиток, дистиллированный из апельсинов. +reagent-name-cognac = коньяк +reagent-desc-cognac = Сладкий и крепкий алкогольный напиток, дважды дистиллированный и оставленный для выдержки на несколько лет. Сладкий, как блуд. +reagent-name-dead-rum = мёртвый ром +reagent-desc-dead-rum = Дистиллированный алкогольный напиток, изготовленный из морской воды. +reagent-name-ethanol = этанол +reagent-desc-ethanol = Он же этиловый спирт. Простейший алкоголь, при употреблении пьянит, легко воспламеняется. +reagent-name-gin = джин +reagent-desc-gin = Дистиллированный алкогольный напиток, в котором преобладает аромат ягод можжевельника. +reagent-name-coffeeliqueur = кофейный ликёр +reagent-desc-coffeeliqueur = Ликёр, со вкусом кофе колд брю и специй. +reagent-name-melon-liquor = арбузный ликёр +reagent-desc-melon-liquor = Довольно сладкий фруктовый ликёр крепостью 23 градуса. +reagent-name-n-t-cahors = НеоТеологический кагор +reagent-desc-n-t-cahors = Креплёное десертное вино, изготовленное из каберне совиньон, саперави и других сортов винограда. +reagent-name-poison-wine = ядовитое вино +reagent-desc-poison-wine = Это вообще вино? Ядовитое! Галлюциногенное! Вероятно, ваше руководство потребляет его в огромных количествах! +reagent-name-rum = ром +reagent-desc-rum = Дистиллированный алкогольный напиток, изготовленный из субпродуктов сахарного тростника. +reagent-name-sake = саке +reagent-desc-sake = Алкогольный напиток, изготовленный путём брожения шлифованного риса. +reagent-name-tequila = текила +reagent-desc-tequila = Крепкий и слабо ароматизированный спирт производства Мексики. +reagent-name-vermouth = вермут +reagent-desc-vermouth = Ароматизированное, креплёное белое вино, со вкусом различных трав. +reagent-name-vodka = водка +reagent-desc-vodka = Прозрачный дистиллированный алкогольный напиток, происходящий из Польши и России. +reagent-name-whiskey = виски +reagent-desc-whiskey = Тип дистиллированного алкогольного напитка, изготовленного из забродившего зернового сусла. +reagent-name-wine = вино +reagent-desc-wine = Алкогольный напиток премиум-класса, изготовленный из дистиллированного виноградного сока. +reagent-name-champagne = шампанское +reagent-desc-champagne = Премиальное игристое вино. +reagent-name-acid-spit = кислотный плевок +reagent-desc-acid-spit = Напиток для смелых, но при неправильном приготовлении может оказаться смертельно опасным! +reagent-name-allies-cocktail = коктейль Союзники +reagent-desc-allies-cocktail = Напиток из ваших союзников, не так сладок, как если бы из ваших врагов. +reagent-name-aloe = алоэ +reagent-desc-aloe = Очень, очень, очень хорошо. +reagent-name-amasec = амасек +reagent-desc-amasec = Официальный напиток Оружейного клуба! +reagent-name-andalusia = Андалусия +reagent-desc-andalusia = Хороший напиток со странным названием. +reagent-name-antifreeze = антифриз +reagent-desc-antifreeze = Непревзойдённая свежесть. +reagent-name-atomic-bomb = Атомная Бомба +reagent-desc-atomic-bomb = Распространение ядерного оружия никогда не было таким вкусным. +reagent-name-b52 = Б-52 +reagent-desc-b52 = Кофе, ирландские сливки и коньяк. Просто бомба. +reagent-name-blue-hawaiian = Голубые Гавайи +reagent-desc-blue-hawaiian = Алоха! Это значит "привет" или "пока"? +reagent-name-bahama-mama = Багама-Мама +reagent-desc-bahama-mama = Тропический коктейль. +reagent-name-banana-honk = Банана-Хонк +reagent-desc-banana-honk = Напиток из Бананового Рая. +reagent-name-barefoot = босоногая +reagent-desc-barefoot = Босоногая и беременная. +reagent-name-beepsky-smash = удар Бипски +reagent-desc-beepsky-smash = Откажись выпить - и приготовься к ЗАКОНУ. +reagent-name-black-russian = Чёрный Русский +reagent-desc-black-russian = Для людей с непереносимостью лактозы. Так же прекрасен, как и белый русский. +reagent-name-bloody-mary = Кровавая Мэри +reagent-desc-bloody-mary = Странная, но приятная смесь из водки, томата и сока лайма. +reagent-name-booger = козявка +reagent-desc-booger = Фууу... +reagent-name-brave-bull = Храбрый Бык +reagent-desc-brave-bull = Так же эффективен, как и голландский кураж! +reagent-name-coconut-rum = кокосовый ром +reagent-desc-coconut-rum = Ром с кокосом для тропического настроения. +reagent-name-cosmopolitan = космополитен +reagent-desc-cosmopolitan = Даже в худшей ситуации ничто не сравнится со бокалом свежего космополитена. +reagent-name-cuba-libre = Куба либре +reagent-desc-cuba-libre = Ром, смешанный с колой. Да здравствует революция. +reagent-name-demons-blood = Кровь Демона +reagent-desc-demons-blood = ААААХ!!!! +reagent-name-devils-kiss = Поцелуй Дьявола +reagent-desc-devils-kiss = Жуткое время! +reagent-name-doctors-delight = Радость Доктора +reagent-desc-doctors-delight = Глоток сделал - Медибот свободен. Это, наверное, даже к лучшему. +reagent-name-driest-martini = самый сухой мартини +reagent-desc-driest-martini = Только для опытных. Вы уверены, что видите плавающие в бокале песчинки. +reagent-name-erika-surprise = сюрприз Эрики +reagent-desc-erika-surprise = Сюрприз в том, что он зелёный! +reagent-name-gargle-blaster = пангалактический грызлодёр +reagent-desc-gargle-blaster = Ого, эта штука выглядит нестабильной! +reagent-name-gin-fizz = шипучий джин +reagent-desc-gin-fizz = Освежающе лимонный, восхитительно сухой. +reagent-name-gin-tonic = джин-тоник +reagent-desc-gin-tonic = Классический мягкий коктейль всех времён и народов. +reagent-name-gildlager = Гильдлагер +reagent-desc-gildlager = 50-градусный коричный шнапс, созданный для девочек-подростков на весенних каникулах. +reagent-name-grog = грог +reagent-desc-grog = Ром, разбавленный водой, одобрено пиратами! +reagent-name-hippies-delight = Радость Хиппи +reagent-desc-hippies-delight = Ты просто не понимаешь, чувааак. +reagent-name-hooch = суррогат +reagent-desc-hooch = Либо чья-то неудача в приготовлении коктейля, либо чья-то попытка производства алкоголя. В любом случае, вы действительно хотите это выпить? +reagent-name-iced-beer = пиво со льдом +reagent-desc-iced-beer = Пиво настолько морозное, что воздух вокруг него замерзает. +reagent-name-irish-slammer = Ирландская тюрьма +reagent-desc-irish-slammer = Нетрадиционная смесь Ирландских сливок и стаута. +reagent-name-irish-cream = Ирландские сливки +reagent-desc-irish-cream = Сливки с добавлением виски. Что ещё можно ожидать от ирландцев. +reagent-name-irish-coffee = ирландский кофе +reagent-desc-irish-coffee = Кофе с ирландскими сливками. Обычные сливки - это совсем не то! +reagent-name-kira-special = Кира спешл +reagent-desc-kira-special = Да здравствует парень, которого все принимали за девушку. Бака! +reagent-name-long-island-iced-tea = Лонг-Айленд айс ти +reagent-desc-long-island-iced-tea = Винный шкаф, собранный в вкусную смесь. Предназначен только для женщин-алкоголиков среднего возраста. +reagent-name-manhattan = Манхэттен +reagent-desc-manhattan = Любимый напиток Детектива под прикрытием. Он никогда не переносил джин... +reagent-name-manhattan-project = Манхэттенский Проект +reagent-desc-manhattan-project = Напиток для учёных, размышляющих о том, как взорвать станцию. +reagent-name-manly-dorf = Мужественный Дворф +reagent-desc-manly-dorf = Пиво и эль, соединённые в восхитительный коктейль. Предназначено только для крепких гномов. reagent-name-the-martinez = Мартинес reagent-desc-the-martinez = Легенда среди киберпанков. Вспоминается по напитку, забывается по пьяни. -reagent-name-white-gilgamesh = белый Гильгамеш +reagent-name-margarita = маргарита +reagent-desc-margarita = На каёмке лайм с солью. Аррива~! +reagent-name-martini = классический мартини +reagent-desc-martini = Вермут с джином. Не совсем как пил 007, но всё равно вкусно. +reagent-name-mead = медовуха +reagent-desc-mead = Напиток викингов, хоть и дешёвый. +reagent-name-mojito = Мохито +reagent-desc-mojito = Если это достаточно хорошо для Космической Кубы, то подойдёт и для вас. +reagent-name-moonshine = самогон +reagent-desc-moonshine = Самодельный напиток, изготавливаемый в домашних условиях. Что может пойти не так? +reagent-name-neurotoxin = нейротоксин +reagent-desc-neurotoxin = Сильный нейротоксин, который вводит субъекта в состояние, напоминающее смерть. +reagent-name-painkiller = болеутоляющее +reagent-desc-painkiller = Лекарство от всех бед. +reagent-name-patron = Покровитель +reagent-desc-patron = Текила с серебром в своём составе, фаворит женщин-алкоголичек из клубной тусовки. +reagent-name-pina-colada = Пина Колада +reagent-desc-pina-colada = За то, чтобы потеряться под дождём. +reagent-name-red-mead = красная медовуха +reagent-desc-red-mead = Настоящий напиток викингов! Несмотря на то, что он имеет странный красный цвет. +reagent-name-rewriter = Переписчик +reagent-desc-rewriter = Тайна святилища Библиотекаря... +reagent-name-sbiten = сбитень +reagent-desc-sbiten = Пикантная водка! Может быть немного жгучей для малышей! +reagent-name-screwdriver-cocktail = отвёртка +reagent-desc-screwdriver-cocktail = Водка, смешанная с обычным апельсиновым соком. Результат на удивление вкусный. +reagent-name-cogchamp = Когчамп +reagent-desc-cogchamp = Даже Четыре Генерала Ратвара не могли устоять перед этим! Qevax Jryy! Коктейль передней линии бара. +reagent-name-silencer = глушитель +reagent-desc-silencer = Напиток из рая мимов. +reagent-name-singulo = сингуло +reagent-desc-singulo = Блю-спейс напиток! +reagent-name-snow-white = Белый Снег +reagent-desc-snow-white = Морозная свежесть. +reagent-name-sui-dream = сон Сью +reagent-desc-sui-dream = 'Состав: Белая газировка, голубой Кюрасао, дынный ликер.' +reagent-name-syndicate-bomb = бомба синдиката +reagent-desc-syndicate-bomb = Кто-то подложил нам бомбу! +reagent-name-tequila-sunrise = текила санрайз +reagent-desc-tequila-sunrise = Текила и апельсиновый сок. Очень похож на "Отвёртку", только мексиканскую. +reagent-name-three-mile-island = чай со льдом Три-Майл-Айленд +reagent-desc-three-mile-island = "Сделан для женщин, достаточно крепок для мужчин." +reagent-name-toxins-special = токсин спешл +reagent-desc-toxins-special = Эта штука ОГОНЬ! ВЫЗЫВАЙТЕ ЧЁРТОВ ШАТТЛ! +reagent-name-vodka-martini = водка-мартини +reagent-desc-vodka-martini = Водка вместо джина. Не совсем как пил 007, но всё равно вкусно. +reagent-name-vodka-tonic = водка-тоник +reagent-desc-vodka-tonic = Для тех случаев, когда джин-тоник недостаточно русский. +reagent-name-whiskey-cola = виски-кола +reagent-desc-whiskey-cola = Виски, смешанный с колой. Удивительно освежает. +reagent-name-white-gilgamesh = Белый Гильгамеш reagent-desc-white-gilgamesh = Тошнотворная смесь молока и пива. Вызывает ощущение одеревенелости. -reagent-name-mopwata = швабода -reagent-desc-mopwata = Грязная, застоявшаяся вода из-под швабры, швабровая вода. +reagent-name-whiskey-soda = виски-содовая +reagent-desc-whiskey-soda = Невероятно освежающе! +reagent-name-white-russian = Белый Русский +reagent-desc-white-russian = Но это только твоё мнение, чувак. +reagent-name-vodka-red-bool = водка-ред булеан +reagent-desc-vodka-red-bool = Потому что сердечная и печёночная недостаточность идут рука об руку. +reagent-name-xeno-basher = Ксенодав +reagent-desc-xeno-basher = Идеальный напиток перед началом экспедиции. +reagent-name-irish-bool = Ирландский булеан +reagent-desc-irish-bool = Непереводимая математическая шутка про булеан. Посмейтесь. +reagent-name-budget-insuls = бюджетные изольки +reagent-desc-budget-insuls = Любимый напиток тайдера. +reagent-name-watermelon-wakeup = арбузное пробуждение +reagent-desc-watermelon-wakeup = Если вы хотите взбодриться, это поможет... Ещё и сладкое. +reagent-name-rubberneck = раббернек +reagent-desc-rubberneck = Популярный напиток среди тех, кто придерживается полностью синтетической диеты. +reagent-name-zombiecocktail = Зомби +reagent-desc-zombiecocktail = It gets in your head. Your he-eyeh-ead. diff --git a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/drinks.ftl b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/drinks.ftl new file mode 100644 index 00000000000..cc2d01a3df4 --- /dev/null +++ b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/drinks.ftl @@ -0,0 +1,64 @@ +reagent-name-coffee = кофе +reagent-desc-coffee = Напиток, приготовленный из заваренных кофейных зёрен. Содержит умеренное количество кофеина. +reagent-name-cream = сливки +reagent-desc-cream = Жирная, но ещё жидкая часть молока. Почему бы вам не смешать это с виски, а? +reagent-name-coconut-water = кокосовая вода +reagent-desc-coconut-water = Фаворит выживающих на необитаемых островах. +reagent-name-cream-of-coconut = кокосовые сливки +reagent-desc-cream-of-coconut = Сладкая, сиропообразная версия кокосовых сливок с добавлением сахара. +reagent-name-cafe-latte = кофе латте +reagent-desc-cafe-latte = Приятный, крепкий и вкусный напиток на время чтения. +reagent-name-tea-powder = порошковый чай +reagent-desc-tea-powder = Мелко измельченные чайные листья, используемые для приготовления чая. +reagent-name-green-tea = зелёный чай +reagent-desc-green-tea = Вкусный зелёный чай. +reagent-name-grenadine = сироп гренадин +reagent-desc-grenadine = Не с вишневым вкусом! +reagent-name-iced-coffee = айс-кофе +reagent-desc-iced-coffee = Кофе со льдом, бодрящий и прохладный. +reagent-name-iced-green-tea = зелёный чай со льдом +reagent-desc-iced-green-tea = Холодный зелёный чай. +reagent-name-iced-tea = чай со льдом +reagent-desc-iced-tea = Он же айс-ти. Не имеет отношения к определённому рэп-исполнителю/актёру. +reagent-name-lemonade = лимонад +reagent-desc-lemonade = Напиток из лимонного сока, воды и подсластителя, например, тростникового сахара или мёда. +reagent-name-arnold-palmer = Арнольд Палмер +reagent-desc-arnold-palmer = Теперь взгляните на этот удар. +reagent-name-milk = молоко +reagent-desc-milk = Непрозрачная белая жидкость, вырабатываемая молочными железами млекопитающих. +reagent-name-milk-goat = козье молоко +reagent-desc-milk-goat = Непрозрачная белая жидкость, производимая козами. Высокая концентрация обезжиренных сливок. +reagent-name-milk-oat = овсяное молоко +reagent-desc-milk-oat = На удивление вкусное. +reagent-name-milk-soy = соевое молоко +reagent-desc-milk-soy = Любимчик потребителей. +reagent-name-milk-spoiled = прогорклое молоко +reagent-desc-milk-spoiled = Это молоко испортилось. +reagent-name-nothing = ничего +reagent-desc-nothing = Абсолютно ничего. +reagent-name-nuclear-cola = ядерная кола +reagent-desc-nuclear-cola = Кола, кола никогда не меняется. +reagent-name-hot-cocoa = горячее какао +reagent-desc-hot-cocoa = Пахнет праздниками! +reagent-name-soda-water = газированная вода +reagent-desc-soda-water = Она же содовая. Почему бы не сделать виски с содовой? +reagent-name-soy-latte = соевый латте +reagent-desc-soy-latte = Кофейный напиток, приготовленный из эспрессо и подогретого соевого молока. +reagent-name-tea = чай +reagent-desc-tea = Напиток, приготовленный путём кипячения листьев чайного дерева Camellia sinensis. +reagent-name-tonic-water = тоник +reagent-desc-tonic-water = Вкус у него странный, но, по крайней мере, хинин препятствует распространению космической малярии. +reagent-name-water = вода +reagent-desc-water = Бесцветная жидкость, необходимая человекам для выживания. +reagent-name-ice = лёд +reagent-desc-ice = Застывшая вода. +reagent-name-dry-ramen = сухой рамэн +reagent-desc-dry-ramen = Сухая лапша и соль. +reagent-name-hot-ramen = горячий рамэн +reagent-desc-hot-ramen = Горячая лапша. +reagent-name-pilk = пилк +reagent-desc-pilk = Тошнотворная смесь молока и колы. +reagent-name-posca = поска +reagent-desc-posca = Напиток бедных воинов из забытой эпохи. +reagent-name-mopwata = швабода +reagent-desc-mopwata = Грязная, застоявшаяся вода из-под швабры, швабровая вода. diff --git a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/soda.ftl b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/soda.ftl index bb3bb1575a6..b430b05909b 100644 --- a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/soda.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/soda.ftl @@ -1,38 +1,38 @@ -reagent-name-cola = кола +reagent-name-cola = Спейс Кола reagent-desc-cola = Сладкий газированный безалкогольный напиток. Не содержит кофеина. reagent-name-shirley-temple = Ширли Темпл reagent-desc-shirley-temple = Фаворит среди более юных членов экипажа. -reagent-name-changeling-sting = жало генокрада +reagent-name-changeling-sting = Жало Генокрада reagent-desc-changeling-sting = Вы делаете маленький глоток и чувствуете жжение... reagent-name-dr-gibb = доктор Гибб reagent-desc-dr-gibb = Восхитительная смесь из 42 различных вкусов. -reagent-name-energy-drink = энергетический напиток +reagent-name-energy-drink = Ред Булеан reagent-desc-energy-drink = Доза энергии! Nanotrasen не несёт ответственности, если у вас вырастут птичьи придатки. reagent-name-grape-soda = виноградная газировка reagent-desc-grape-soda = Это винограааааад! reagent-name-ice-cream = мороженое reagent-desc-ice-cream = Ешьте скорее, пока не превратилось в суп-мороженое! -reagent-name-lemon-lime = лимон-лайм -reagent-desc-lemon-lime = Терпкая газировка из лимона и лайма -reagent-name-lemon-lime-cranberry = клюквенный лимон-лайм +reagent-name-lemon-lime = Смайт +reagent-desc-lemon-lime = Терпкая газировка из лимона и лайма. +reagent-name-lemon-lime-cranberry = Клюквенный Смайт reagent-desc-lemon-lime-cranberry = Терпкая клюква, Рождество, нотки лимона и лайма. -reagent-name-pwr-game = Pwr Game +reagent-name-pwr-game = ПВР Гейм reagent-desc-pwr-game = Единственный напиток, обладающий СИЛОЙ, которую жаждут настоящие геймеры. Когда геймеры говорят о геймерском топливе, они имеют в виду именно это. reagent-name-root-beer = рутбир -reagent-desc-root-beer = Очень сладкий, газированный напиток, напоминающий сарспариллу. Хорошо сочетается с мороженым. +reagent-desc-root-beer = Очень сладкий, газированный напиток, напоминающий сарсапариллу. Хорошо сочетается с мороженым. reagent-name-root-beer-float = рутбир с мороженым reagent-desc-root-beer-float = Рутбир, но теперь с мороженым сверху! Это действительно магнум опус канадских летних напитков. -reagent-name-sol-dry = sol dry +reagent-name-sol-dry = Сол Драй reagent-desc-sol-dry = Сладкая имбирная газировка из космоса! reagent-name-roy-rogers = Рой Роджерс reagent-desc-roy-rogers = Убедительное доказательство того, что существует нечто известное, как "слишком сладко". -reagent-name-space-mountain-wind = космический маунтин винд -reagent-desc-space-mountain-wind = Проходит сквозь, словно космический ветер. -reagent-name-space-up = спейс-ап +reagent-name-space-mountain-wind = Спейс Солар Вайнд +reagent-desc-space-mountain-wind = Проходит сквозь, словно солнечный ветер. +reagent-name-space-up = Спейс-Ап reagent-desc-space-up = На вкус как пробоина в корпусе у вас во рту. -reagent-name-starkist = старкист +reagent-name-starkist = Старкист reagent-desc-starkist = Сладкий безалкогольный напиток со вкусом апельсина. -reagent-name-fourteen-loko = фоуртин локо +reagent-name-fourteen-loko = Фоуртин Локо reagent-desc-fourteen-loko = Сильно переработанная жидкая субстанция, едва ли соответствующая межгалактическим стандартам безопасности для безалкогольного напитка. -reagent-name-shamblers-juice = сок Shambler -reagent-desc-shamblers-juice = ~Встряхните мне немного этого сока Shambler!~ +reagent-name-shamblers-juice = сок Шэмблер +reagent-desc-shamblers-juice = ~Встряхните мне немного этого сока Шэмблер!~ diff --git a/Resources/Locale/ru-RU/robotics/mmi.ftl b/Resources/Locale/ru-RU/robotics/mmi.ftl index 2564d4f686b..c22351b7efd 100644 --- a/Resources/Locale/ru-RU/robotics/mmi.ftl +++ b/Resources/Locale/ru-RU/robotics/mmi.ftl @@ -2,7 +2,7 @@ positronic-brain-installed = Обнаружена нейронная актив positronic-brain-off = Нейронная активность не обнаружена. positronic-brain-still-searching = Идёт процесс синтетического нейронного дескремблирования... positronic-brain-searching = Начинается процесс синтетического нейронного дескремблирования... -positronic-brain-role-name = позитронный мозг +positronic-brain-role-name = Позитронный мозг positronic-brain-role-description = Служите экипажу станции. positronic-brain-wipe-device-verb-text = Стереть мозг positronic-brain-wiped-device = Нейронная активность была прекращена. diff --git a/Resources/Locale/ru-RU/speech/accent-systems.ftl b/Resources/Locale/ru-RU/speech/accent-systems.ftl index 98f0d88ff6c..75d5619322d 100644 --- a/Resources/Locale/ru-RU/speech/accent-systems.ftl +++ b/Resources/Locale/ru-RU/speech/accent-systems.ftl @@ -1 +1 @@ -skeleton-suffix = АЧК АЧК! +skeleton-suffix = КЛАЦ КЛАЦ! diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/neck/mantles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/neck/mantles.ftl index fb09f6ad459..7ed34f53df8 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/neck/mantles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/neck/mantles.ftl @@ -1,17 +1,17 @@ ent-ClothingNeckMantleCap = мантия капитана - .desc = Торжественная мантия, надеваемая на плечи. Другие стоят на плечах гигантов. Вы - тот гигант, на плечах которого они стоят. + .desc = Удобная и шикарная мантия, подобающая только самому опытному капитану. ent-ClothingNeckMantleCE = мантия старшего инженера - .desc = Ярко белая с жёлтыми полосками мантия. Не носите рядом с работающими механизмами. + .desc = Высокая видимость, есть. Система RIG, есть. Ячейка большой емкости, есть. Все, что может понадобиться главному инженеру в стильной мантии. ent-ClothingNeckMantleCMO = мантия главного врача - .desc = Светло-голубая накидка для ПРОФЕССИОНАЛА от медицины. Хорошо контрастирует с кровью. + .desc = Для ГВ, который побывал в достаточном количестве медбеев, чтобы знать, что чем больше больше СИЗ, тем меньше визитов в хим чистку центрального командования после окончания смены. ent-ClothingNeckMantleHOP = мантия главы персонала - .desc = Декоративная накидка на плечи синего и красного цветов, подчёркивающая мастерство владения печатями. + .desc = Хороший ГП знает, что выдача бумаг - это всего лишь часть работы... гладить своего пса и стильно выглядеть - вторая часть. ent-ClothingNeckMantleHOS = мантия главы службы безопасности - .desc = Чешуйчатая мантия, которую можно обернуть вокруг верхней части тела. "Чешуя" символизирует сотрудников службы безопасности и то, как вы несёте их на своих плечах. + .desc = Перестрелки с оперативниками - это просто очередной вторник для этого ГСБ. Эта мантия - символ преданности станции. ent-ClothingNeckMantleHOSShoulder = наплечная мантия главы службы безопасности .desc = Перестрелка с ядерными оперативниками - обычный вторник для этого ГСБ. Эта мантия - символ его преданности станции. ent-ClothingNeckMantleRD = мантия научного руководителя - .desc = Ужасно удобная драпировка на плечи для гения как в вопросах науки, так и моды. + .desc = Когда долгие дни в офисе состоят из взрывов, ядовитых газов, роботов-убийц и свежей пиццы из карго, эта мантия будет держать вас в комфорте. ent-ClothingNeckMantleQM = мантия квартирмейстера .desc = Для властелина грузов и материалов, дабы властвовать над отделом, достойная мантия для демонстрации превосходства! ent-ClothingNeckMantle = мантия diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/medical.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/medical.ftl index 139597f9cb0..50354c34bc4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/medical.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/medical.ftl @@ -1,2 +1,4 @@ - - +ent-LootSpawnerMedicalMinor = спавнер лечебные припасы + .desc = { ent-MarkerBase.desc } +ent-LootSpawnerMedicalClassy = спавнер лут медицинский + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/security.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/security.ftl index 139597f9cb0..aa02544ed62 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/security.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/security.ftl @@ -1,2 +1,15 @@ - - +ent-LootSpawnerSecurityBasic = спавнер лут СБ + .suffix = Снаряжение, Простое + .desc = { ent-MarkerBase.desc } +ent-LootSpawnerSecurity = спавнер лут СБ + .suffix = Снаряжение, Лучше + .desc = { ent-MarkerBase.desc } +ent-LootSpawnerArmory = спавнер лут оружейная + .suffix = Оружие, Броня + .desc = { ent-MarkerBase.desc } +ent-LootSpawnerArmoryGunsOnly = спавнер лут оружейная + .suffix = Оружие + .desc = { ent-MarkerBase.desc } +ent-LootSpawnerArmoryArmorOnly = спавнер лут оружейная + .suffix = Броня + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/medical.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/medical.ftl deleted file mode 100644 index 50354c34bc4..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/medical.ftl +++ /dev/null @@ -1,4 +0,0 @@ -ent-LootSpawnerMedicalMinor = спавнер лечебные припасы - .desc = { ent-MarkerBase.desc } -ent-LootSpawnerMedicalClassy = спавнер лут медицинский - .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/security.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/security.ftl deleted file mode 100644 index 5e84ce54bdd..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/security.ftl +++ /dev/null @@ -1,15 +0,0 @@ -ent-LootSpawnerSecurityBasic = спавнер лут служба безопасности - .suffix = Экипировка, Простая - .desc = { ent-MarkerBase.desc } -ent-LootSpawnerSecurity = спавнер лут служба безопасности - .suffix = Экипировка, Улучшенная - .desc = { ent-MarkerBase.desc } -ent-LootSpawnerArmory = спавнер лут оружейная - .suffix = Оружие, Броня - .desc = { ent-MarkerBase.desc } -ent-LootSpawnerArmoryGunsOnly = спавнер лут оружейная - .suffix = Оружие - .desc = { ent-MarkerBase.desc } -ent-LootSpawnerArmoryArmorOnly = спавнер лут оружейная - .suffix = Броня - .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl index 6dbd8b08d84..772950e6bed 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl @@ -24,8 +24,6 @@ ent-OverlordCircuitBoard = плата законов (Владыка) .desc = Электронная плата, хранящая набор законов ИИ 'Владыка'. ent-GameMasterCircuitBoard = плата законов (Игровой мастер) .desc = Электронная плата, хранящая набор законов ИИ 'Игровой мастер'. -ent-DungeonMasterCircuitBoard = плата законов (Игровой мастер) - .desc = Электронная плата, хранящая набор законов ИИ 'Игровой мастер'. ent-ArtistCircuitBoard = плата законов (Художник) .desc = Электронная плата, хранящая набор законов ИИ 'Художник'. ent-AntimovCircuitBoard = плата законов (Антимов) diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/food_base.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/food_base.ftl index 5d671c4dd37..4d5b07be609 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/food_base.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/food_base.ftl @@ -1,5 +1,7 @@ -ent-FoodBase = { ent-BaseItem } +ent-EdibleBase = { ent-BaseItem } .desc = { ent-BaseItem.desc } +ent-FoodBase = { ent-EdibleBase } + .desc = { ent-EdibleBase.desc } ent-FoodInjectableBase = { ent-FoodBase } .desc = { ent-FoodBase.desc } ent-FoodOpenableBase = { "" } From 9944076227f3945a36b6a30e59007a2abbd623d6 Mon Sep 17 00:00:00 2001 From: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Date: Thu, 23 Jan 2025 04:12:22 -0500 Subject: [PATCH 077/103] Box Station - Update (#34605) * Various changes * Implemented a bunch of changes Emisse wanted, finished up all my atmos changes I wanted to make as well * Added reporter to prototype, and fixed dirt * Resolved outstanding issues * Fixed a floating camera --- Resources/Maps/box.yml | 27756 +++++++++++++++------------- Resources/Prototypes/Maps/box.yml | 1 + 2 files changed, 15043 insertions(+), 12714 deletions(-) diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 16949151154..086a883fea7 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -84,119 +84,119 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: WQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAADIQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAEQAAAAAAWQAAAAABEQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAACeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAABHQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAD + tiles: WQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAIQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABeQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAA version: 6 0,0: ind: 0,0 - tiles: WQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAADWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAFAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAFAAAAAAA + tiles: WQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAABWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAFAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAFAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACEQAAAAAAEQAAAAAAHQAAAAACHQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADEQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAABEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAD + tiles: eQAAAAAAHQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAD version: 6 -1,0: ind: -1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADWQAAAAADWQAAAAADWQAAAAABHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABWQAAAAACWQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAdgAAAAADdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAAD + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAADWQAAAAABWQAAAAACWQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAdgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADWQAAAAAD version: 6 1,-1: ind: 1,-1 - tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAWQAAAAABeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAACdgAAAAACBQAAAAACBQAAAAABdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACBQAAAAACBQAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAABWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABWQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAWQAAAAACeQAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAdgAAAAAAdgAAAAABdgAAAAADWQAAAAAAeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAB + tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAACWQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAACdgAAAAADBQAAAAADBQAAAAACdgAAAAACdgAAAAABdgAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAWQAAAAADeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAAABQAAAAACBQAAAAACdgAAAAACdgAAAAABdgAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAABWQAAAAADeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADWQAAAAADeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAWQAAAAABeQAAAAAAdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAWQAAAAADeQAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: WQAAAAABWQAAAAACWQAAAAABeQAAAAAAaQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAB + tiles: WQAAAAACWQAAAAADWQAAAAABeQAAAAAAaQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAB version: 6 -2,-2: ind: -2,-2 - tiles: WQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAABdgAAAAABdgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAaQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAB + tiles: WQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADdgAAAAAAdgAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAABdgAAAAADdgAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAaQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAAD version: 6 1,-2: ind: 1,-2 - tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAADWQAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADeQAAAAAAbAAAAAABbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAABWQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABbAAAAAABHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAADWQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAHQAAAAADHQAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAABbAAAAAABHQAAAAACHQAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABbAAAAAADHQAAAAADHQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAbAAAAAABHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAAB + tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAABWQAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAADWQAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAACWQAAAAACeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAABWQAAAAABeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACbAAAAAACHQAAAAABHQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABHQAAAAABHQAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAbAAAAAADHQAAAAACHQAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAABbAAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAbAAAAAACHQAAAAAAHQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADbAAAAAADHQAAAAABHQAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAB version: 6 0,-2: ind: 0,-2 - tiles: WQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAABHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABHQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACdgAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAABHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAALAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACLAAAAAAALAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAACHQAAAAADLQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAD + tiles: WQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACdgAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAWQAAAAACWQAAAAABHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACHQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAdgAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAACEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAACHQAAAAACEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAALAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAADEQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADLAAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADEQAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACHQAAAAADEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAWQAAAAADWQAAAAAC version: 6 -1,-2: ind: -1,-2 - tiles: WQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADBgAAAAAAWQAAAAADeQAAAAAAHQAAAAAAdgAAAAACdgAAAAADdgAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABBgAAAAAAWQAAAAAAeQAAAAAAHQAAAAADdgAAAAABdgAAAAABdgAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAABgAAAAAAWQAAAAADeQAAAAAAHQAAAAAAdgAAAAADdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACBgAAAAAAWQAAAAADeQAAAAAAHQAAAAACdgAAAAADdgAAAAADdgAAAAABHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADHQAAAAABdgAAAAADdgAAAAADdgAAAAADHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAHQAAAAABdgAAAAADdgAAAAABdgAAAAACHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAABLQAAAAABHQAAAAAALQAAAAAC + tiles: WQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAACWQAAAAABeQAAAAAAHQAAAAADdgAAAAACdgAAAAADdgAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADWQAAAAABBgAAAAAAWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADdgAAAAACHQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAWQAAAAACBgAAAAAAWQAAAAADeQAAAAAAHQAAAAADdgAAAAACdgAAAAADdgAAAAADHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACBgAAAAAAWQAAAAABeQAAAAAAHQAAAAADdgAAAAADdgAAAAABdgAAAAABHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADWQAAAAADBgAAAAAAWQAAAAACeQAAAAAAHQAAAAADdgAAAAACdgAAAAACdgAAAAADHQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABHQAAAAACdgAAAAABdgAAAAAAdgAAAAABHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAABdgAAAAABHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAHQAAAAADHQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAHQAAAAADEQAAAAAA version: 6 -2,0: ind: -2,0 - tiles: HQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAACeQAAAAAAaAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: HQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABeQAAAAAAaAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAC + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAABWQAAAAABAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAB version: 6 0,-3: ind: 0,-3 - tiles: WQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAdwAAAAADdgAAAAADdgAAAAACdgAAAAACdwAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAdwAAAAAAdgAAAAABdgAAAAAAdgAAAAACdwAAAAABaQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAAA + tiles: WQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAdwAAAAACdgAAAAACdgAAAAABdgAAAAADdwAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAdwAAAAACdgAAAAACdgAAAAACdgAAAAACdwAAAAAAaQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAAB version: 6 1,-3: ind: 1,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAACbAAAAAACWQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAaQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAHQAAAAADHQAAAAABbAAAAAAAHQAAAAACHQAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAAAbAAAAAACWQAAAAACWQAAAAAAWQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABbAAAAAADHQAAAAABHQAAAAACeQAAAAAAUgAAAAADLAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAWQAAAAAAWQAAAAACWQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAABWQAAAAACLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAADeQAAAAAAaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACWQAAAAAAWQAAAAACWQAAAAACaQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAbAAAAAACHQAAAAACHQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAADbAAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAACbAAAAAADHQAAAAAAHQAAAAACeQAAAAAAUgAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACWQAAAAABWQAAAAAAWQAAAAAB version: 6 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAACDgAAAAABDgAAAAADDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAADgAAAAABDgAAAAADDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWQAAAAABDgAAAAABDgAAAAABDgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAADgAAAAACDgAAAAABDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAAQAAAAACAQAAAAAAAQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAAQAAAAAEAQAAAAABAQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABAQAAAAAAAQAAAAADAQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAQAAAAABAQAAAAADAQAAAAAFWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAAQAAAAACAQAAAAAAAQAAAAABFAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABAQAAAAADAQAAAAAFAQAAAAADFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAQAAAAADAQAAAAABAQAAAAAFFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAAQAAAAABAQAAAAAEAQAAAAAE + tiles: eQAAAAAAeQAAAAAADgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAACDgAAAAADDgAAAAADDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAADgAAAAABDgAAAAABDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWQAAAAAADgAAAAABDgAAAAAADgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAABAQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAQAAAAAFAQAAAAAEAQAAAAAFWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAQAAAAADAQAAAAAAAQAAAAAFWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADAQAAAAADAQAAAAAEAQAAAAAFWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEFAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABAQAAAAAAAQAAAAADAQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAAQAAAAACAQAAAAAEAQAAAAAFFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAA version: 6 0,1: ind: 0,1 - tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAC + tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: eQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA + tiles: eQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADUAAAAAAAUAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA version: 6 1,1: ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAACdgAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAABHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAABAQAAAAAAAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAACdgAAAAADHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: HQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACeQAAAAAAWQAAAAABLAAAAAAALAAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAHQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAACQAAAAABHQAAAAABCQAAAAAB + tiles: HQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAACLAAAAAAALAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAACQAAAAAAHQAAAAADCQAAAAAB version: 6 0,2: ind: 0,2 - tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABHQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAADWQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAABeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADCQAAAAACHQAAAAAACQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAAACQAAAAADHQAAAAABCQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: WQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: AQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + tiles: AQAAAAAAAQAAAAAFAQAAAAAFAQAAAAAFAQAAAAABAQAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA version: 6 2,0: ind: 2,0 - tiles: PgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAACQAAAAADCQAAAAADCQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAFAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAACAQAAAAADAQAAAAAFAQAAAAAFAQAAAAADAQAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAEAQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAAFWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAABAQAAAAAFAQAAAAAEAQAAAAAAAQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAQAAAAAFAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAACAQAAAAAFAQAAAAACAQAAAAAEAQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAABAQAAAAACAQAAAAAFAQAAAAACAQAAAAAFAQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + tiles: PgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAACQAAAAAACQAAAAABCQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAACAQAAAAAAAQAAAAAFAQAAAAAFAQAAAAAAAQAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAFAQAAAAAEAQAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAAEWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAADAQAAAAAEAQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAADAQAAAAACAQAAAAADAQAAAAAFAQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAQAAAAACAQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAAFAQAAAAABAQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACdgAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAABdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAA version: 6 0,3: ind: 0,3 - tiles: HQAAAAADHQAAAAACCQAAAAACHQAAAAAACQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAACHQAAAAADCQAAAAADHQAAAAADCQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: eQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACEQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAEQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABEQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACEQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAADEQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA version: 6 -3,1: ind: -3,1 - tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAdgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADeQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAAdgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 @@ -204,15 +204,15 @@ entities: version: 6 -4,0: ind: -4,0 - tiles: WQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAA version: 6 -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,0: ind: -6,0 @@ -220,23 +220,23 @@ entities: version: 6 -5,-1: ind: -5,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAB version: 6 -4,-1: ind: -4,-1 - tiles: WQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAD + tiles: WQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAB version: 6 -3,-1: ind: -3,-1 - tiles: eQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAHQAAAAADeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAD + tiles: eQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABHQAAAAABeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADHQAAAAACeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAD version: 6 3,0: ind: 3,0 - tiles: OgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAADPgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAABdgAAAAADeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAACUgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: OgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADPgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAUgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: eQAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADHQAAAAAAHQAAAAACWQAAAAADeQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAACeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAdgAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAACWQAAAAACHQAAAAACWQAAAAADWQAAAAACHQAAAAABHQAAAAACWQAAAAACHQAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACWQAAAAACHQAAAAACWQAAAAAAWQAAAAACHQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADWQAAAAADHQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACCQAAAAAACQAAAAACCQAAAAADOgAAAAAAOgAAAAAAOgAAAAAA + tiles: eQAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAACXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACHQAAAAADHQAAAAACWQAAAAAAeQAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACdgAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACWQAAAAAAHQAAAAACWQAAAAADWQAAAAADHQAAAAABHQAAAAAAWQAAAAADHQAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAADWQAAAAABHQAAAAADWQAAAAAAWQAAAAACHQAAAAACHQAAAAACWQAAAAADeQAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAAAWQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACCQAAAAADCQAAAAAACQAAAAABOgAAAAAAOgAAAAAAOgAAAAAA version: 6 3,1: ind: 3,1 @@ -244,11 +244,11 @@ entities: version: 6 4,1: ind: 4,1 - tiles: HQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: PgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: PgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 5,0: ind: 5,0 @@ -256,11 +256,11 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACWQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAACWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAACWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAABdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAADWQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAABWQAAAAACHQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAACdgAAAAADWQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -4,-2: ind: -4,-2 @@ -268,7 +268,7 @@ entities: version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAdgAAAAABdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAdgAAAAADdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAA version: 6 -3,-3: ind: -3,-3 @@ -276,75 +276,75 @@ entities: version: 6 -2,-4: ind: -2,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADQAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAQAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAagAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACHQAAAAAAEQAAAAAAHQAAAAADHQAAAAACEQAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACHQAAAAABHQAAAAABEQAAAAAAHQAAAAACHQAAAAABEQAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABHQAAAAABHQAAAAACEQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACHQAAAAACHQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAAAHQAAAAACEQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADHQAAAAABHQAAAAADEQAAAAAAHQAAAAABHQAAAAABEQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAADHQAAAAACEQAAAAAAHQAAAAADHQAAAAACEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAC + tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAagAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAABHQAAAAABEQAAAAAAHQAAAAACHQAAAAACEQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAADEQAAAAAAHQAAAAADHQAAAAADEQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAHQAAAAACEQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABHQAAAAACHQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABEQAAAAAAHQAAAAAAHQAAAAABEQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAADHQAAAAAAEQAAAAAAHQAAAAADHQAAAAACEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAB version: 6 0,-4: ind: 0,-4 - tiles: eQAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAABYgAAAAADYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAADYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAACeQAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAACYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAACeQAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: eQAAAAAAaQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADbAAAAAABbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAADeQAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAABWQAAAAADWQAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAACWQAAAAAAWQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAAD + tiles: eQAAAAAAaQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAACbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAABbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAABeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAABWQAAAAABWQAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACeQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACWQAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAADWQAAAAAAWQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAADbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAACaQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABaQAAAAAAaQAAAAAAHQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAADaQAAAAAAHQAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAaQAAAAAAHQAAAAADaQAAAAAAHQAAAAAC + tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAACbAAAAAACbAAAAAADeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAABbAAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAADaQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAHQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAABaQAAAAAAHQAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABaQAAAAAAHQAAAAADaQAAAAAAHQAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAABeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABCQAAAAAACQAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAbAAAAAACbAAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABCQAAAAACCQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAABaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAABHQAAAAADbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAWQAAAAAAWQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABeQAAAAAAWQAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADaQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAACHQAAAAACaQAAAAAAbAAAAAACbAAAAAABbAAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAbAAAAAACbAAAAAABbAAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAADbAAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAWQAAAAADEQAAAAAAHQAAAAAAWQAAAAAAbAAAAAACbAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAWQAAAAABEQAAAAAAHQAAAAADWQAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAA + tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAADHQAAAAACaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAACHQAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAWQAAAAAAWQAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACeQAAAAAAWQAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAABHQAAAAABaQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAACHQAAAAAAaQAAAAAAbAAAAAADbAAAAAABbAAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAbAAAAAAAbAAAAAACbAAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABeQAAAAAAbAAAAAABbAAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAWQAAAAADEQAAAAAAHQAAAAAAWQAAAAADbAAAAAACbAAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADWQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAWQAAAAACEQAAAAAAHQAAAAACWQAAAAADbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: eQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACWQAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABbAAAAAACbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAABeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADWQAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: eQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABaAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAbAAAAAAAbAAAAAACbAAAAAACaAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAADWQAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAABbAAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA + tiles: eQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADaAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACaAAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACaAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADbAAAAAAAbAAAAAACbAAAAAADaAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAWQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAABbAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAACWQAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAEeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABEwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAABWQAAAAAAbAAAAAACWQAAAAABbAAAAAACWQAAAAADbAAAAAAAWQAAAAACbAAAAAABWQAAAAACbAAAAAAAWQAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABHQAAAAAAWQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAABeQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAEeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADEwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAAAWQAAAAABbAAAAAAAWQAAAAABbAAAAAABWQAAAAAAbAAAAAADWQAAAAADbAAAAAAAWQAAAAACbAAAAAACWQAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAABWQAAAAAAHQAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAPAAAAAAAYAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAPAAAAAAAYAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 5,-3: ind: 5,-3 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-4: ind: 5,-4 - tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAC + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAG version: 6 4,-1: ind: 4,-1 - tiles: WQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAAAHQAAAAABHQAAAAABHQAAAAAAWQAAAAABWQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAACWQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAABHQAAAAADWQAAAAABWQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABHQAAAAAAHQAAAAADHQAAAAABWQAAAAABWQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAABHQAAAAACHQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAABWQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAACHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADWQAAAAACWQAAAAACHQAAAAAAHQAAAAABHQAAAAAAWQAAAAACWQAAAAABHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAADHQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADHQAAAAADHQAAAAACHQAAAAACWQAAAAABWQAAAAADHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAHQAAAAACHQAAAAADHQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-5: ind: 4,-5 - tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA version: 6 5,-5: ind: 5,-5 @@ -352,15 +352,15 @@ entities: version: 6 3,-5: ind: 3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: eQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA version: 6 1,-4: ind: 1,-4 @@ -368,11 +368,11 @@ entities: version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAagAAAAACagAAAAADagAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAADagAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAD version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAAwAAAAACAwAAAAABeQAAAAAAWQAAAAAAWQAAAAAADgAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAAwAAAAADAwAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAADAwAAAAADAwAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAADgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADHQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABDgAAAAABDgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABHQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -3,-4: ind: -3,-4 @@ -380,47 +380,31 @@ entities: version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAA version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: AAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,-7: - ind: 2,-7 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,-8: - ind: 2,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,-7: - ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAA - version: 6 - 1,-8: - ind: 1,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAA version: 6 -4,-4: ind: -4,-4 @@ -444,7 +428,7 @@ entities: version: 6 -1,3: ind: -1,3 - tiles: dgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAACQAAAAABHQAAAAABCQAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: dgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAACQAAAAABHQAAAAACCQAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 @@ -480,7 +464,7 @@ entities: version: 6 3,-6: ind: 3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAA version: 6 -6,-1: ind: -6,-1 @@ -538,7 +522,6 @@ entities: 2556: 6,-49 2557: 7,-49 2595: 3,-45 - 2625: -6,-76 2690: 4,-76 3014: 80,-54 3015: 79,-54 @@ -664,7 +647,6 @@ entities: 3079: 34,-49 3080: 37,-50 3081: 37,-49 - 3082: 18,-84 3129: 34,-44 3130: 35,-44 3131: 34,-39 @@ -714,17 +696,27 @@ entities: color: '#FFFFFFFF' id: BotGreyscale decals: - 1060: -1,-22 - 1061: -2,-21 - 1062: -1,-20 - 1063: 0,-21 - 1079: -2,-14 - 1080: 0,-14 3570: -16,36 3571: -15,36 3572: -14,36 3573: -13,36 3574: -12,36 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 6021: 0,-12 + 6022: -2,-12 + 6072: 15,-77 + 6073: 21,-77 + 6074: 20,-79 + 6075: 16,-79 + 6219: -25,-76 + 6230: -26,-76 + 6231: -25,-75 + 6232: -24,-76 + 6233: -25,-77 - node: color: '#FFFFFFFF' id: BotLeft @@ -742,11 +734,13 @@ entities: 3591: 1,37 3592: 2,37 - node: + zIndex: 1 color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 1058: 0,-20 - 1059: -2,-22 + 6020: 0,-22 + 6228: -24,-75 + 6229: -26,-77 - node: color: '#DE3A3A96' id: BotRight @@ -761,11 +755,13 @@ entities: 2455: 10,-42 2456: 10,-41 - node: + zIndex: 1 color: '#FFFFFFFF' id: BotRightGreyscale decals: - 1056: 0,-22 - 1057: -2,-20 + 6019: -2,-22 + 6226: -26,-75 + 6227: -24,-77 - node: color: '#FFFFFFFF' id: Box @@ -777,23 +773,12 @@ entities: decals: 2460: 14,-42 2461: 14,-41 - - node: - color: '#334E6DC8' - id: BrickBoxOverlay - decals: - 3685: 11,-69 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkBox - decals: - 2062: -3,-17 - 2063: -1,-17 - 2064: 1,-17 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 2963: 11,-35 + 5987: -24,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe @@ -820,6 +805,8 @@ entities: decals: 2964: 11,-34 3576: -2,37 + 5988: -24,-11 + 5989: -24,-10 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -858,6 +845,7 @@ entities: 3578: 0,38 3579: 1,38 3580: 2,38 + 5990: -25,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -1132,6 +1120,12 @@ entities: 2573: 7,-41 2635: -10,-73 2853: 9,-66 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 6238: -20,-73 - node: color: '#FFEBAE96' id: BrickTileWhiteCornerNe @@ -1215,8 +1209,13 @@ entities: decals: 2267: -6,-58 2580: 7,-45 - 2617: -5,-76 2650: -10,-77 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 6239: -20,-78 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw @@ -1305,6 +1304,12 @@ entities: 1529: -11,3 2122: -10,-15 2274: -6,-52 + - node: + zIndex: 1 + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 6018: -7,-17 - node: color: '#5299B43A' id: BrickTileWhiteLineE @@ -1369,6 +1374,15 @@ entities: 2877: 9,-69 2878: 9,-68 2879: 9,-67 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 6234: -20,-74 + 6235: -20,-75 + 6236: -20,-76 + 6237: -20,-77 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -1574,8 +1588,6 @@ entities: 2608: 8,-76 2609: 6,-76 2610: 7,-76 - 2623: -6,-76 - 2624: -7,-76 2633: -20,-71 2634: -21,-71 2651: -11,-77 @@ -1595,6 +1607,12 @@ entities: 2873: 5,-71 2874: 6,-71 2875: 7,-71 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 6240: -21,-78 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -1610,12 +1628,7 @@ entities: 1525: -14,7 1526: -13,2 1527: -13,3 - 1826: -19,-13 - 1827: -19,-12 - 1828: -19,-11 - 1829: -19,-10 2275: -8,-52 - 2327: -19,-14 - node: color: '#5299B43A' id: BrickTileWhiteLineW @@ -1898,34 +1911,21 @@ entities: 3362: 49,1 3363: 48,1 - node: + zIndex: 1 color: '#334E6DC8' id: CheckerNWSE decals: - 505: -25,-14 - 506: -25,-13 - 507: -25,-12 - 508: -25,-11 - 509: -25,-10 - 510: -24,-10 - 511: -23,-10 - 512: -22,-10 - 513: -21,-10 - 514: -21,-11 - 515: -21,-12 - 516: -21,-13 - 517: -21,-14 - 518: -22,-14 - 519: -23,-14 - 520: -24,-14 - 521: -24,-13 - 522: -24,-12 - 523: -24,-11 - 524: -23,-11 - 525: -22,-11 - 526: -22,-12 - 527: -22,-13 - 528: -23,-13 - 529: -23,-12 + 6049: -2,-27 + 6050: -2,-28 + 6051: 0,-28 + 6052: 0,-27 + 6053: -1,-27 + 6054: -1,-28 + 6055: -3,-25 + 6056: -2,-25 + 6057: -1,-25 + 6058: 0,-25 + 6059: 1,-25 - node: color: '#474F52FF' id: CheckerNWSE @@ -2258,9 +2258,6 @@ entities: 226: -31,-16 227: -32,-16 228: -33,-16 - 229: -33,-17 - 230: -32,-17 - 231: -31,-17 232: -30,-17 242: -32,-18 258: -6,-46 @@ -2344,6 +2341,8 @@ entities: 5755: -59,-18 5756: -60,-18 5757: -60,-19 + 6252: -33,-17 + 6253: -31,-18 - node: cleanable: True zIndex: 5 @@ -2828,6 +2827,19 @@ entities: 5948: -27,-69 5949: -25,-66 5950: -23,-67 + 5991: -22,-11 + 6076: 21,-76 + 6077: 18,-74 + 6078: 14,-76 + 6079: 15,-80 + 6080: 22,-80 + 6136: 13,-57 + 6137: 14,-57 + 6138: 12,-54 + 6254: -32,-16 + 6255: -32,-17 + 6256: -33,-14 + 6257: -36,-19 - node: cleanable: True zIndex: 5 @@ -2844,6 +2856,10 @@ entities: 4905: 68,-16 5235: 18,-34 5820: -2,-36 + 6258: -34,-22 + 6259: -25,-26 + 6260: -27,-26 + 6261: -28,-24 - node: cleanable: True zIndex: 5 @@ -2854,7 +2870,6 @@ entities: 244: -32,-15 245: -33,-15 246: -33,-16 - 247: -33,-17 248: -33,-14 249: -33,-13 250: -32,-13 @@ -3601,17 +3616,9 @@ entities: 5790: -21,-7 5791: -18,-11 5792: -18,-12 - 5793: -19,-14 5794: -21,-17 5795: -23,-17 5796: -22,-19 - 5797: -22,-14 - 5798: -25,-13 - 5799: -25,-12 - 5800: -24,-10 - 5801: -21,-11 - 5802: -22,-11 - 5803: -24,-13 5804: -24,-19 5805: -26,-20 5806: -21,-26 @@ -3641,6 +3648,51 @@ entities: 5954: -25,-71 5955: -27,-67 5956: -33,-66 + 5992: -23,-11 + 5993: -21,-11 + 5994: -21,-12 + 5995: -22,-12 + 5996: -24,-12 + 5997: -24,-13 + 5998: -18,-13 + 5999: -19,-13 + 6000: -19,-12 + 6001: -17,-11 + 6002: -18,-10 + 6081: 20,-77 + 6082: 20,-79 + 6083: 15,-79 + 6084: 13,-76 + 6085: 13,-75 + 6086: 13,-74 + 6087: 14,-74 + 6088: 15,-74 + 6089: 15,-75 + 6090: 21,-75 + 6091: 21,-74 + 6092: 20,-74 + 6093: 19,-74 + 6094: 19,-75 + 6095: 24,-75 + 6096: 25,-77 + 6097: 25,-78 + 6098: 25,-79 + 6120: 16,-84 + 6121: 16,-86 + 6122: 20,-86 + 6123: 20,-85 + 6124: 25,-84 + 6125: 26,-85 + 6126: 26,-81 + 6127: 26,-80 + 6128: 25,-79 + 6129: 26,-73 + 6130: 26,-68 + 6131: 26,-65 + 6132: 21,-61 + 6133: 15,-58 + 6134: 17,-57 + 6135: 19,-57 - node: cleanable: True zIndex: 5 @@ -3654,7 +3706,6 @@ entities: 237: -31,-14 238: -30,-15 239: -31,-16 - 240: -32,-17 241: -32,-18 453: -22,-25 454: -26,-31 @@ -4127,9 +4178,7 @@ entities: 5909: 19,-79 5910: 19,-75 5911: 16,-73 - 5912: 14,-75 5913: 15,-79 - 5914: 17,-75 5915: 16,-74 5916: 20,-75 5917: 25,-75 @@ -4162,6 +4211,53 @@ entities: 5944: 40,-60 5945: 35,-67 5946: 5,-67 + 6003: -23,-12 + 6004: -28,-12 + 6005: -28,-11 + 6006: -24,-20 + 6007: -22,-17 + 6008: -22,-26 + 6009: -22,-25 + 6010: -20,-25 + 6011: -16,-27 + 6012: -16,-25 + 6099: 8,-76 + 6100: 4,-74 + 6101: -3,-71 + 6102: -2,-71 + 6103: 16,-78 + 6104: 12,-79 + 6105: 12,-80 + 6106: 22,-79 + 6107: 23,-79 + 6108: 23,-78 + 6109: 22,-78 + 6110: 22,-77 + 6111: 23,-77 + 6112: 22,-76 + 6113: 20,-80 + 6114: 19,-81 + 6115: 20,-82 + 6116: 20,-84 + 6117: 18,-84 + 6118: 18,-85 + 6119: 18,-86 + 6139: 17,-47 + 6140: 18,-45 + 6141: 19,-45 + 6142: 19,-46 + 6143: 18,-47 + 6144: 13,-44 + 6145: 12,-43 + 6146: 12,-44 + 6147: 0,-44 + 6148: -3,-55 + 6149: -5,-76 + 6150: -6,-76 + 6151: -7,-76 + 6152: -2,-69 + 6153: -3,-70 + 6154: -14,-77 - node: zIndex: 1 color: '#FFFFFFFF' @@ -4275,6 +4371,13 @@ entities: 433: -30,-31 1147: -21,-31 1148: -22,-31 + - node: + zIndex: 1 + color: '#A4610696' + id: FullTileOverlayGreyscale + decals: + 6248: -32,-18 + 6249: -31,-18 - node: color: '#D381C934' id: FullTileOverlayGreyscale @@ -4322,6 +4425,14 @@ entities: 2882: -1,-72 2883: -2,-72 2884: -3,-72 + - node: + zIndex: 2 + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 6242: -20,-79 + 6243: -20,-80 + 6244: -20,-72 - node: color: '#EFCF412B' id: FullTileOverlayGreyscale @@ -4639,6 +4750,13 @@ entities: decals: 3171: -33,-32 3172: -32,-32 + - node: + zIndex: 1 + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 6250: -32,-17 + 6251: -31,-17 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -4768,11 +4886,16 @@ entities: 980: 34,-55 981: 34,-54 982: 34,-53 + - node: + zIndex: 1 + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 6017: -19,-12 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 190: -33,-17 191: -33,-16 192: -33,-15 193: -33,-14 @@ -4828,12 +4951,6 @@ entities: id: HalfTileOverlayGreyscale270 decals: 2223: -5,-6 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 1064: -3,-25 - 1067: -2,-27 - node: color: '#334E6D5A' id: HalfTileOverlayGreyscale90 @@ -4963,7 +5080,6 @@ entities: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 1068: 0,-27 2584: 4,-43 2585: 4,-42 2691: -3,-70 @@ -5015,9 +5131,6 @@ entities: 536: 11,-8 537: 12,-8 538: 13,-8 - 2017: 27,-90 - 2018: 27,-91 - 2023: 31,-91 - node: zIndex: 1 color: '#334E6DC8' @@ -5083,6 +5196,13 @@ entities: id: QuarterTileOverlayGreyscale decals: 818: 63,-27 + - node: + zIndex: 1 + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 6015: -19,-11 + 6016: -19,-10 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -5354,10 +5474,6 @@ entities: 553: -16,-14 554: -16,-13 555: -16,-12 - 2021: 29,-94 - 2022: 29,-93 - 2026: 25,-94 - 2027: 25,-93 2052: -9,-10 2053: -8,-10 2054: -7,-10 @@ -5462,7 +5578,6 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 188: -31,-17 428: -27,-28 3199: -36,-23 3200: -35,-23 @@ -5615,10 +5730,6 @@ entities: 561: 14,-18 562: 14,-17 563: 14,-16 - 2019: 27,-94 - 2020: 27,-93 - 2024: 31,-94 - 2025: 31,-93 2043: 7,-10 2044: 6,-10 2045: 5,-10 @@ -5726,6 +5837,13 @@ entities: 734: 38,-57 3135: 7,-32 3393: 8,-32 + - node: + zIndex: 1 + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + decals: + 6013: -19,-14 + 6014: -19,-13 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 @@ -5940,9 +6058,6 @@ entities: 814: -9,-30 815: -8,-30 816: -7,-30 - 2015: 29,-90 - 2016: 29,-91 - 2028: 25,-91 - node: zIndex: 1 color: '#334E6DC8' @@ -6448,8 +6563,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 343: -1,23 - 1065: 0,-28 - 3412: 1,-26 - node: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale270 @@ -6475,6 +6588,12 @@ entities: decals: 429: -30,-39 3167: -34,-32 + - node: + zIndex: 1 + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 6245: -33,-17 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale270 @@ -6503,8 +6622,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 344: -3,23 - 1066: -2,-28 - 3413: -3,-26 - node: color: '#334E6D5A' id: ThreeQuarterTileOverlayGreyscale90 @@ -6594,7 +6711,6 @@ entities: 68: 87,-39 69: 87,-58 70: 81,-67 - 71: 62,-72 72: 49,-67 73: -43,-49 74: -43,-50 @@ -6615,6 +6731,18 @@ entities: 1014: -69,-17 1015: -76,-17 1016: -67,-10 + 5980: 62,-71 + 5981: 61,-73 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnBox + decals: + 6045: -2,-21 + 6046: 0,-21 + 6047: -1,-29 + 6048: -1,-26 + 6217: -21,-73 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE @@ -6659,12 +6787,36 @@ entities: 1282: 44,-21 1283: 46,-21 2953: 42,-21 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 6024: -3,-17 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW decals: 1280: 46,-21 1281: 44,-21 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 6023: 1,-17 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 6033: -3,-13 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 6034: 1,-13 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -6672,7 +6824,6 @@ entities: 1073: -3,-30 1665: 51,-21 2314: -73,-4 - 3093: 13,-77 3512: -13,-63 - node: zIndex: 1 @@ -6680,6 +6831,8 @@ entities: id: WarnCornerSmallNE decals: 5975: -27,-70 + 6071: 16,-78 + 6177: -21,-84 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -6692,7 +6845,6 @@ entities: 2291: -79,-6 2312: -69,-4 2313: -76,-4 - 3092: 17,-77 3511: -11,-63 - node: zIndex: 1 @@ -6700,6 +6852,8 @@ entities: id: WarnCornerSmallNW decals: 5974: -23,-70 + 6068: 20,-78 + 6174: -19,-84 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -6707,15 +6861,15 @@ entities: 422: -41,-10 1536: -13,6 1663: 51,-17 - 2041: 22,-90 2317: -73,8 - 3091: 13,-75 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnCornerSmallSE decals: 5977: -27,-66 + 6070: 16,-76 + 6176: -21,-82 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -6725,12 +6879,10 @@ entities: 710: 72,-19 1535: -11,6 1662: 55,-17 - 2042: 34,-90 2287: -79,10 2290: -79,-4 2315: -69,8 2316: -76,8 - 3094: 17,-75 3699: -38,-10 - node: zIndex: 1 @@ -6738,6 +6890,8 @@ entities: id: WarnCornerSmallSW decals: 5976: -23,-66 + 6069: 20,-76 + 6175: -19,-82 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleN @@ -6782,12 +6936,8 @@ entities: 1689: 60,-32 1690: 60,-31 1691: 60,-30 - 2038: 22,-93 - 2039: 22,-92 - 2040: 22,-91 2476: 8,-49 2477: 8,-48 - 3089: 13,-76 3510: -13,-62 3514: 23,18 - node: @@ -6798,11 +6948,12 @@ entities: 5962: -27,-69 5963: -27,-68 5964: -27,-67 + 6066: 16,-77 + 6170: -21,-83 - node: color: '#334E6DC8' id: WarnLineGreyscaleE decals: - 1332: -7,-17 1510: -9,8 - node: color: '#52B4E996' @@ -6823,6 +6974,16 @@ entities: 2659: -10,-75 2949: 42,-20 2950: 42,-19 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 6030: -3,-16 + 6031: -3,-15 + 6032: -3,-14 + 6043: -4,-25 + 6044: -4,-24 - node: color: '#334E6DC8' id: WarnLineGreyscaleN @@ -6890,6 +7051,15 @@ entities: 2889: 3,-66 2890: 8,-66 2952: 41,-18 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 6025: -2,-17 + 6026: 0,-17 + 6262: 8,1 + 6263: 9,1 - node: color: '#334E6DC8' id: WarnLineGreyscaleS @@ -6964,6 +7134,14 @@ entities: 3349: 44,-21 3350: 43,-21 3351: 42,-21 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 6155: -7,-76 + 6156: -6,-76 + 6157: -5,-76 - node: color: '#EFB34196' id: WarnLineGreyscaleW @@ -6986,6 +7164,16 @@ entities: 2658: -8,-75 2896: -8,-69 2897: -8,-70 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 6027: 1,-16 + 6028: 1,-15 + 6029: 1,-14 + 6040: 2,-25 + 6041: 2,-24 - node: color: '#FFFFFFFF' id: WarnLineN @@ -7035,12 +7223,6 @@ entities: 1659: 52,-17 1660: 53,-17 1661: 54,-17 - 2032: 33,-90 - 2033: 32,-90 - 2034: 31,-90 - 2035: 25,-90 - 2036: 24,-90 - 2037: 23,-90 2298: -70,8 2299: -71,8 2300: -72,8 @@ -7058,9 +7240,6 @@ entities: 2602: -1,-79 2603: -2,-79 2604: -3,-79 - 3086: 14,-75 - 3087: 15,-75 - 3088: 16,-75 - node: zIndex: 1 color: '#FFFFFFFF' @@ -7069,6 +7248,10 @@ entities: 5968: -26,-66 5969: -25,-66 5970: -24,-66 + 6063: 17,-76 + 6064: 18,-76 + 6065: 19,-76 + 6173: -20,-82 - node: color: '#FFFFFFFF' id: WarnLineS @@ -7116,9 +7299,6 @@ entities: 1651: 55,-19 1652: 55,-18 1682: 53,-27 - 2029: 34,-93 - 2030: 34,-92 - 2031: 34,-91 2261: -8,-54 2286: -79,9 2289: -79,-5 @@ -7128,7 +7308,6 @@ entities: 2393: -30,-39 2474: 8,-49 2475: 8,-48 - 3090: 17,-76 3509: -11,-62 3518: 25,18 3567: -11,34 @@ -7143,6 +7322,18 @@ entities: 5965: -23,-69 5966: -23,-68 5967: -23,-67 + 6067: 20,-77 + 6172: -19,-83 + 6213: -21,-77 + 6214: -21,-76 + 6215: -21,-75 + 6216: -21,-74 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: WarnLineS + decals: + 6241: -21,-78 - node: color: '#FFFFFFFF' id: WarnLineW @@ -7185,11 +7376,6 @@ entities: 1069: -1,-30 1070: 0,-30 1071: -2,-30 - 1074: 0,-25 - 1075: -1,-25 - 1076: -2,-25 - 1077: -3,-25 - 1078: 1,-25 1152: 76,-26 1153: 77,-26 1154: 78,-26 @@ -7213,15 +7399,6 @@ entities: 2471: 11,-46 2472: 10,-46 2473: 9,-46 - 2819: 13,-84 - 2820: 14,-84 - 2821: 15,-84 - 2822: 16,-84 - 2823: 17,-84 - 2824: 18,-84 - 3083: 14,-77 - 3084: 15,-77 - 3085: 16,-77 3508: -12,-63 - node: zIndex: 1 @@ -7231,6 +7408,10 @@ entities: 5971: -26,-70 5972: -25,-70 5973: -24,-70 + 6060: 17,-78 + 6061: 18,-78 + 6062: 19,-78 + 6171: -20,-84 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -7423,32 +7604,32 @@ entities: -3,0: 0: 48113 -2,-4: - 0: 48051 + 0: 13235 -2,-3: - 0: 63259 + 0: 63251 -2,-2: 0: 52479 -2,-1: 0: 65520 -2,-5: - 0: 62259 - 1: 128 + 0: 13107 + 1: 8 -1,-4: - 0: 65520 + 0: 62395 -1,-3: - 0: 61695 + 0: 61455 -1,-2: 0: 65535 -1,-1: 0: 65520 -1,-5: - 0: 61678 + 0: 65294 -1,0: 0: 56831 0,-4: - 0: 65520 + 0: 30438 0,-3: - 0: 61567 + 0: 61447 0,-2: 0: 65535 0,-1: @@ -7510,16 +7691,16 @@ entities: 4,3: 0: 48027 0,-5: - 0: 61491 - 1: 136 + 0: 30467 + 1: 8 1,-3: 0: 65358 1,-2: 0: 4607 - 1,-5: - 0: 65256 1,-4: 0: 61166 + 1,-5: + 0: 61160 2,-4: 0: 65535 2,-3: @@ -7628,7 +7809,7 @@ entities: 0: 61423 8,-1: 0: 12320 - 2: 34944 + 4: 34944 -8,-4: 0: 30583 -8,-5: @@ -7772,22 +7953,23 @@ entities: -1,-8: 0: 36863 0,-7: - 0: 13073 - 1: 12 + 0: 28689 + 1: 128 -1,-7: - 0: 61132 + 0: 63692 + 1: 16 0,-6: - 0: 13104 - 1: 34816 + 0: 13111 + 1: 32768 -1,-6: - 0: 61152 + 0: 61167 1,-8: 0: 4095 1,-7: - 1: 4369 + 1: 4368 0: 52428 1,-6: - 1: 1 + 1: 17 0: 52416 1,-9: 0: 12287 @@ -7809,10 +7991,10 @@ entities: 0: 8191 -2,-7: 0: 4369 - 1: 17472 + 1: 17536 -2,-6: 0: 4369 - 1: 1092 + 1: 35840 -1,-9: 0: 52701 -8,1: @@ -7833,8 +8015,9 @@ entities: 0: 4369 1: 4 -9,3: - 0: 4623 + 0: 15 1: 9472 + 3: 4608 -8,4: 0: 13073 -7,1: @@ -7979,7 +8162,7 @@ entities: 0: 30583 6,-12: 1: 4369 - 4: 204 + 2: 204 3: 49152 6,-11: 1: 61713 @@ -7988,10 +8171,10 @@ entities: 0: 29424 6,-13: 1: 4369 - 4: 49152 + 2: 49152 3: 204 7,-12: - 4: 17 + 2: 17 3: 4096 1: 17476 7,-11: @@ -8000,7 +8183,7 @@ entities: 7,-10: 0: 61680 7,-13: - 4: 4096 + 2: 4096 1: 17476 3: 17 8,-12: @@ -8038,7 +8221,7 @@ entities: 1: 8704 8,0: 0: 63523 - 2: 8 + 4: 8 8,1: 0: 61440 8,2: @@ -8191,7 +8374,7 @@ entities: 0: 61166 -1,10: 1: 60928 - 0: 192 + 3: 192 -1,11: 1: 14 0: 57344 @@ -8200,7 +8383,7 @@ entities: 0,9: 0: 65535 0,10: - 0: 240 + 3: 240 1: 65280 0,11: 1: 15 @@ -8211,10 +8394,12 @@ entities: 0: 56829 1,10: 1: 53504 - 0: 8396 + 3: 8192 + 0: 204 1,11: 1: 19549 - 0: 4130 + 0: 4096 + 3: 34 1,12: 0: 4369 1: 17476 @@ -8282,7 +8467,7 @@ entities: 1: 34952 10,7: 1: 33249 - 0: 3598 + 3: 3598 9,8: 1: 34952 10,3: @@ -8294,10 +8479,10 @@ entities: 11,6: 1: 40844 11,7: - 0: 771 + 3: 771 1: 35064 10,8: - 0: 3598 + 3: 3598 1: 33249 11,5: 0: 34956 @@ -8313,29 +8498,29 @@ entities: 1: 20293 12,7: 1: 33008 - 0: 3598 + 3: 3598 11,8: 1: 35064 - 0: 771 + 3: 771 9,0: - 2: 15 + 4: 15 0: 65296 9,1: 0: 47232 9,2: 0: 48955 9,-1: - 2: 65520 + 4: 65520 0: 1 10,0: - 2: 1 + 4: 1 0: 65292 10,1: 0: 56789 10,2: 0: 64961 10,-1: - 2: 4368 + 4: 4368 0: 57548 11,0: 0: 30543 @@ -8461,7 +8646,8 @@ entities: 0: 65520 -10,4: 1: 3 - 0: 60936 + 3: 8 + 0: 60928 -13,4: 0: 61432 -12,5: @@ -8471,24 +8657,24 @@ entities: -12,6: 1: 44868 -12,7: - 0: 3855 + 3: 3855 1: 16624 -13,7: 1: 17652 - 0: 257 + 3: 257 -12,8: - 0: 3855 + 3: 3855 1: 16624 -11,5: 0: 4095 -11,6: 1: 18210 -11,7: - 0: 257 + 3: 257 1: 18006 -11,8: 1: 18006 - 0: 257 + 3: 257 -10,5: 0: 61182 -10,6: @@ -8519,19 +8705,19 @@ entities: -14,6: 1: 44953 -14,7: - 0: 3855 + 3: 3855 1: 16624 -14,3: 0: 65535 -14,8: - 0: 3855 + 3: 3855 1: 16624 -13,6: 1: 57600 0: 1092 -13,8: 1: 17652 - 0: 257 + 3: 257 -16,0: 0: 55807 -16,-1: @@ -8767,10 +8953,10 @@ entities: 13,6: 1: 40866 13,7: - 0: 771 + 3: 771 1: 36024 12,8: - 0: 3598 + 3: 3598 1: 33008 14,5: 0: 3 @@ -8779,7 +8965,7 @@ entities: 1: 310 13,8: 1: 36028 - 0: 771 + 3: 771 15,5: 1: 304 16,4: @@ -8816,18 +9002,19 @@ entities: 18,2: 0: 65327 18,3: - 0: 4111 + 0: 15 1: 3840 + 3: 4096 19,0: 1: 61455 19,1: 1: 36608 19,2: 1: 742 - 0: 8192 + 3: 8192 19,3: 1: 226 - 0: 32768 + 3: 32768 20,0: 1: 61715 20,1: @@ -9360,7 +9547,7 @@ entities: 20,-15: 0: 24020 20,-14: - 0: 54612 + 0: 56660 20,-13: 0: 17885 21,-12: @@ -9371,7 +9558,7 @@ entities: 21,-10: 0: 29040 21,-13: - 0: 28791 + 0: 28774 22,-12: 1: 4096 22,-11: @@ -9385,7 +9572,7 @@ entities: 21,-15: 0: 32631 21,-14: - 0: 30471 + 0: 30215 21,-16: 1: 236 22,-16: @@ -9461,7 +9648,7 @@ entities: 0: 15 16,-20: 1: 16 - 0: 52454 + 3: 52454 15,-20: 1: 44719 16,-19: @@ -9473,63 +9660,63 @@ entities: 0: 40960 1: 954 15,-18: - 0: 142 - 1: 21248 + 0: 234 + 1: 20480 16,-21: - 0: 16384 + 3: 16384 1: 15 17,-20: 1: 144 - 0: 14178 + 3: 14178 17,-19: - 0: 1 + 3: 1 1: 63744 17,-18: 1: 153 0: 61440 17,-21: 1: 8207 - 0: 16384 + 3: 16384 18,-20: 1: 9910 - 0: 2056 + 3: 2056 18,-19: 1: 13990 - 0: 2056 + 3: 2056 18,-18: 0: 4096 1: 17486 18,-21: 1: 9895 - 0: 2056 + 3: 2056 19,-20: - 0: 3855 + 3: 3855 1: 8432 19,-19: - 0: 3855 + 3: 3855 1: 20720 19,-18: 1: 17487 19,-21: 1: 8432 - 0: 3855 + 3: 3855 20,-20: 1: 8946 - 0: 2056 + 3: 2056 20,-19: 1: 8946 - 0: 2056 + 3: 2056 20,-18: 1: 1839 0: 8192 20,-21: 1: 8946 - 0: 2056 + 3: 2056 21,-20: - 0: 3855 + 3: 3855 1: 8432 21,-19: - 0: 3855 + 3: 3855 1: 20720 21,-18: 1: 21855 @@ -9537,7 +9724,7 @@ entities: 1: 5621 21,-21: 1: 8432 - 0: 3855 + 3: 3855 22,-20: 1: 8995 22,-19: @@ -9547,9 +9734,9 @@ entities: 22,-21: 1: 8995 12,-20: - 1: 12288 + 1: 12847 11,-20: - 1: 61440 + 1: 61455 12,-19: 1: 12002 11,-19: @@ -9559,56 +9746,51 @@ entities: 0: 8192 11,-18: 0: 61695 - 13,-19: - 1: 18417 13,-20: 1: 4401 - 13,-21: - 1: 4369 + 13,-19: + 1: 18417 13,-18: 1: 17476 14,-20: - 0: 16 + 3: 16 14,-19: 1: 241 15,-21: 1: 43694 8,-20: - 0: 3 - 1: 68 + 1: 13119 + 8,-21: + 1: 12561 7,-20: - 0: 63 - 1: 28672 - 8,-19: 1: 65535 + 8,-19: + 1: 16179 7,-19: 1: 65535 8,-18: - 1: 15 0: 35840 - 7,-18: - 1: 8751 - 8,-21: - 1: 16632 + 9,-20: + 1: 4383 9,-19: 1: 6033 9,-18: - 1: 1 0: 62912 - 9,-20: - 1: 34944 + 1: 1 + 9,-21: + 1: 4371 10,-20: - 1: 45056 - 0: 16384 + 1: 58447 10,-19: 0: 65024 - 1: 5 + 1: 7 10,-18: 0: 63743 4,-20: 0: 65535 4,-21: - 0: 65287 + 0: 65348 + 3: 1 3,-20: 0: 65535 4,-19: @@ -9616,41 +9798,44 @@ entities: 3,-19: 0: 65535 4,-18: - 0: 61695 + 0: 255 + 1: 53248 3,-18: - 0: 57599 + 0: 255 + 1: 49152 4,-17: 6: 30576 + 5,-20: + 0: 65535 5,-19: - 0: 65520 + 0: 65535 5,-18: - 0: 61455 + 0: 15 + 1: 57344 5,-17: 0: 30576 - 5,-20: - 1: 58444 5,-21: - 3: 57344 - 1: 3780 + 0: 65280 + 3: 15 6,-20: - 1: 28675 - 0: 32904 + 0: 30583 6,-19: - 0: 30576 + 0: 30583 6,-18: - 0: 21575 + 0: 17479 + 1: 4096 6,-21: - 3: 12288 - 0: 34824 - 1: 768 + 0: 30502 6,-17: 0: 17476 6,-16: 0: 62532 + 7,-18: + 1: 12834 7,-17: 1: 29766 7,-21: - 0: 13203 + 1: 61440 7,-16: 1: 1 0: 4096 @@ -9678,8 +9863,7 @@ entities: -4,-19: 0: 65535 -5,-20: - 0: 49152 - 1: 273 + 0: 53521 -5,-19: 0: 56797 -4,-18: @@ -9687,40 +9871,44 @@ entities: -5,-18: 0: 57297 -3,-20: - 0: 28748 + 0: 28672 + 3: 76 -3,-19: 0: 30711 -3,-18: 0: 65520 -3,-21: - 0: 52430 + 3: 52428 + 1: 4353 -2,-20: - 0: 3855 + 3: 15 + 0: 3840 -2,-19: 0: 65535 -2,-18: 0: 65535 -2,-21: - 0: 61696 + 3: 61696 1: 248 -1,-18: 0: 65534 -1,-21: - 0: 61440 + 3: 61440 1: 2296 -1,-20: 0: 61152 -1,-19: 0: 36590 0,-20: - 0: 15160 + 0: 15152 + 3: 8 0,-19: 0: 35771 0,-18: 0: 65531 -8,-19: 0: 13104 - 1: 34824 + 1: 34952 -9,-19: 0: 34944 1: 8192 @@ -9729,42 +9917,47 @@ entities: 1: 3072 -9,-17: 0: 36608 + -7,-20: + 1: 15 + 0: 60928 + -7,-21: + 1: 13107 + -7,-19: + 0: 3822 -7,-18: 0: 61166 - -7,-19: - 1: 1024 + -6,-20: + 1: 7 + 0: 47872 + -6,-19: + 0: 35771 -6,-18: 0: 49075 - -6,-19: - 0: 36044 - -6,-20: - 1: 1092 - -6,-21: - 1: 17476 -5,-21: - 1: 4369 + 0: 4915 + 1: 34824 -12,-16: 1: 20292 - 0: 10 + 3: 10 -13,-16: 1: 20292 - 0: 10 + 3: 10 -12,-15: 1: 17732 - 0: 43690 + 3: 43690 -13,-15: - 0: 43690 + 3: 43690 1: 17732 -12,-14: 1: 49060 - 0: 10 + 3: 10 -13,-14: 1: 65444 - 0: 10 + 3: 10 -12,-13: 1: 62 -12,-17: - 0: 43690 + 3: 43690 1: 17732 -11,-16: 1: 8994 @@ -9789,7 +9982,7 @@ entities: -13,-18: 1: 44800 -13,-17: - 0: 43690 + 3: 43690 1: 17732 -11,-18: 1: 8960 @@ -9798,10 +9991,11 @@ entities: -9,-18: 1: 1811 0,-21: - 0: 61440 + 3: 61440 1: 248 1,-20: - 0: 1799 + 3: 7 + 0: 1792 1,-19: 0: 65535 1,-18: @@ -9809,25 +10003,26 @@ entities: 1,-17: 0: 4095 1,-21: - 0: 64648 + 3: 64648 1: 112 2,-20: 0: 43962 2,-19: 0: 49147 2,-18: - 0: 62395 + 0: 46011 2,-21: - 0: 48059 + 3: 13107 + 0: 34816 + 1: 8 3,-21: - 0: 65295 + 0: 65280 + 3: 14 0,-24: - 3: 61440 - 0: 3072 + 3: 64512 1: 136 -1,-24: - 3: 61440 - 0: 256 + 3: 61696 1: 136 0,-23: 1: 35064 @@ -9836,32 +10031,32 @@ entities: 0,-22: 1: 35064 -1,-22: - 0: 128 + 3: 128 1: 34936 0,-25: 1: 36744 1,-24: - 0: 768 - 3: 61440 + 3: 62208 1: 136 1,-23: 1: 112 - 0: 34956 + 3: 34956 1,-22: 1: 112 - 0: 34952 + 3: 34952 1,-25: 1: 36736 2,-23: - 0: 13073 + 3: 13073 1: 52224 2,-22: - 0: 4369 - 1: 1092 + 3: 4369 + 1: 36044 3,-23: 1: 61440 3,-22: - 0: 61424 + 1: 15 + 3: 60928 3,-24: 1: 35939 3,-25: @@ -9869,9 +10064,11 @@ entities: 4,-24: 1: 4096 4,-23: - 1: 62563 + 1: 64739 4,-22: - 0: 30576 + 1: 15 + 3: 4352 + 0: 58368 -4,-24: 1: 310 -5,-24: @@ -9881,29 +10078,31 @@ entities: -5,-23: 1: 53558 -4,-22: - 1: 240 + 1: 61680 -5,-22: - 1: 4593 + 1: 33777 0: 4 + -4,-21: + 1: 65295 + 3: 112 -4,-25: 1: 51200 -3,-23: 1: 4352 - 0: 52462 + 3: 52462 -3,-22: - 1: 16 - 0: 61132 + 1: 4112 + 3: 61132 -3,-24: 3: 32768 1: 136 -3,-25: 1: 36342 -2,-24: - 0: 1792 - 3: 61440 + 3: 63232 1: 136 -2,-23: - 0: 1 + 3: 1 1: 35064 -2,-22: 1: 35064 @@ -9912,123 +10111,64 @@ entities: -1,-25: 1: 36744 5,-23: - 1: 4096 - 0: 36044 + 1: 61459 5,-22: - 3: 3 - 1: 17632 + 1: 15 + 3: 65280 5,-24: - 1: 32 - 0: 51208 - 5,-25: - 0: 32768 - 1: 8804 + 1: 62432 6,-24: - 0: 47893 + 1: 61680 6,-23: - 0: 7099 + 1: 61986 6,-22: - 1: 16 - 0: 52428 - 6,-25: - 0: 21847 + 1: 231 + 0: 57344 7,-24: - 0: 47893 + 1: 61680 7,-23: - 0: 7099 + 1: 61440 7,-22: - 0: 32631 - 7,-25: - 0: 21853 + 1: 61712 8,-24: - 0: 29459 - 1: 128 + 1: 61680 8,-23: - 0: 14199 + 1: 4369 8,-22: - 0: 13104 - 1: 34952 - 8,-25: - 0: 12561 - 1: 35012 - 9,-21: - 1: 15 - 10,-21: - 1: 15 - 11,-21: - 1: 15 - 12,-21: - 1: 15 - 8,-29: - 0: 4096 - 1: 34816 - 7,-28: - 0: 65533 - 8,-28: - 0: 8192 - 1: 8 - 8,-27: - 0: 8738 - 8,-26: - 0: 4371 - 1: 19592 - 8,-30: - 1: 33 - 7,-30: - 1: 8 - 7,-29: - 0: 52735 - 5,-28: - 1: 2 - 0: 32768 - 5,-29: - 1: 8704 - 5,-27: - 1: 8192 - 0: 34952 - 5,-26: - 1: 17954 - 0: 8 - 6,-26: - 0: 21845 - 6,-29: - 0: 30446 - 6,-28: - 0: 61158 - 6,-27: - 0: 3264 - 7,-27: - 0: 1905 - 7,-26: - 0: 21845 - 5,-30: - 1: 128 - 6,-30: - 1: 3 - -6,-23: + 1: 63761 + 9,-24: + 1: 4368 + 9,-22: + 1: 31190 + -7,-22: 1: 27776 -6,-22: - 1: 49346 + 1: 2547 + -6,-23: + 1: 27776 + -6,-21: + 1: 546 + 0: 2184 -15,-16: 1: 23391 - 0: 1024 + 3: 1024 -15,-15: 1: 34959 -15,-17: 1: 34952 -14,-16: 1: 20292 - 0: 10 + 3: 10 -14,-15: 1: 21588 - 0: 43690 + 3: 43690 -15,-14: 1: 2184 -14,-14: 1: 36772 - 0: 10 + 3: 10 -14,-17: - 0: 43690 + 3: 43690 1: 21588 -15,-18: 1: 34816 @@ -10039,23 +10179,23 @@ entities: -15,10: 1: 12 -14,9: - 0: 3855 + 3: 3855 1: 41200 -14,10: 1: 15 -13,9: - 0: 257 + 3: 257 1: 17652 -13,10: 1: 62901 - 0: 64 + 3: 64 -12,9: 1: 41200 - 0: 3855 + 3: 3855 -12,10: 1: 4383 -11,9: - 0: 257 + 3: 257 1: 18006 -11,10: 1: 7 @@ -10081,24 +10221,24 @@ entities: 1: 34952 10,9: 1: 16865 - 0: 3598 + 3: 3598 9,10: 1: 8 10,10: 1: 15 11,9: - 0: 771 + 3: 771 1: 39160 11,10: 1: 60011 - 0: 128 + 3: 128 12,9: 1: 16624 - 0: 3598 + 3: 3598 12,10: 1: 12862 13,9: - 0: 771 + 3: 771 1: 40124 13,10: 1: 15 @@ -10116,7 +10256,7 @@ entities: 1: 32768 20,-22: 1: 10970 - 0: 32 + 3: 32 19,-22: 1: 24456 21,-22: @@ -10172,13 +10312,13 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + temperature: 293.15 moles: - - 21.824879 - - 82.10312 - 0 - 0 - 0 + - 6666.982 + - 0 - 0 - 0 - 0 @@ -10202,13 +10342,13 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 235 moles: + - 21.824879 + - 82.10312 - 0 - 0 - 0 - - 6666.982 - - 0 - 0 - 0 - 0 @@ -10255,8 +10395,8 @@ entities: id: docking46345 localAnchorB: -0.5,-1 localAnchorA: -66.5,22 - damping: 42.400932 - stiffness: 380.5899 + damping: 42.40074 + stiffness: 380.58823 - type: OccluderTree - type: Shuttle - type: RadiationGridResistance @@ -10334,6 +10474,31 @@ entities: - type: Transform pos: -1.4590547,-61.356407 parent: 8364 +- proto: ActionToggleInternals + entities: + - uid: 25167 + components: + - type: Transform + parent: 21419 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 21419 + - uid: 25181 + components: + - type: Transform + parent: 20121 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 20121 +- proto: ActionToggleLight + entities: + - uid: 16587 + components: + - type: Transform + parent: 11756 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 11756 - proto: AirAlarm entities: - uid: 256 @@ -10348,8 +10513,72 @@ entities: - 22993 - 22800 - 23146 + - uid: 291 + components: + - type: MetaData + name: Triage Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-27.5 + parent: 8364 + - type: DeviceList + devices: + - 27961 + - 24712 + - 24787 + - 6211 + - 5879 + - 9811 + - 5548 + - uid: 835 + components: + - type: MetaData + name: Artifact Lab South Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-40.5 + parent: 8364 + - type: DeviceList + devices: + - 25054 + - 25859 + - 6529 + - 23316 + - 24092 + - 226 + - 6468 + - 6473 + - 6474 + - 19883 + - 6489 + - 6488 + - uid: 1860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-82.5 + parent: 8364 + - type: DeviceList + devices: + - 23910 + - uid: 3087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-21.5 + parent: 8364 + - type: DeviceList + devices: + - 24524 + - 24893 + - 24892 + - 24572 + - 24785 + - 27963 - uid: 3263 components: + - type: MetaData + name: Cryopods Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-35.5 @@ -10357,8 +10586,82 @@ entities: - type: DeviceList devices: - 19113 - - 19123 - 19114 + - 24815 + - uid: 3656 + components: + - type: MetaData + name: AI Core Air Alarm + - type: Transform + pos: 0.5,-15.5 + parent: 8364 + - type: DeviceList + devices: + - 26959 + - 26674 + - 26999 + - uid: 4328 + components: + - type: MetaData + name: Sci - North Hall Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-26.5 + parent: 8364 + - type: DeviceList + devices: + - 13368 + - 13367 + - 13365 + - 13369 + - 13370 + - 13371 + - 21762 + - 22713 + - 25170 + - 21228 + - 23256 + - 25168 + - 6459 + - 5519 + - 5518 + - uid: 4329 + components: + - type: MetaData + name: Sci - South Hall Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-44.5 + parent: 8364 + - type: DeviceList + devices: + - 5518 + - 5519 + - 6459 + - 15346 + - 23255 + - 11761 + - 6467 + - 6464 + - 6463 + - 26974 + - 22728 + - 26987 + - 5513 + - 5512 + - 5511 + - uid: 5769 + components: + - type: MetaData + name: Newsroom Air Alarm + - type: Transform + pos: -20.5,-8.5 + parent: 8364 + - type: DeviceList + devices: + - 27019 + - 5768 + - 4565 - uid: 6646 components: - type: Transform @@ -10369,6 +10672,54 @@ entities: - 22640 - 24368 - 24373 + - 24369 + - 24371 + - 1411 + - 28236 + - 24370 + - 24372 + - 24293 + - 15127 + - 15450 + - 24296 + - 24295 + - 24294 + - 24297 + - 24292 + - 15126 + - 25318 + - 24291 + - 24298 + - 11963 + - 13469 + - 22631 + - 22632 + - uid: 8150 + components: + - type: MetaData + name: Boxing Ring Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,7.5 + parent: 8364 + - type: DeviceList + devices: + - 8149 + - 24401 + - 20066 + - 20068 + - 24376 + - 24377 + - 26685 + - uid: 8249 + components: + - type: Transform + pos: 24.5,20.5 + parent: 8364 + - type: DeviceList + devices: + - 22748 + - 22747 - uid: 10705 components: - type: Transform @@ -10434,6 +10785,29 @@ entities: - 25307 - 25304 - 25305 + - uid: 17159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-68.5 + parent: 8364 + - type: DeviceList + devices: + - 23151 + - 16977 + - 5278 + - 16627 + - 5264 + - 27403 + - 27404 + - 27405 + - 10877 + - 14117 + - 17048 + - 14124 + - 17043 + - 17156 + - 16626 - uid: 17778 components: - type: Transform @@ -10446,10 +10820,12 @@ entities: - 16975 - 16976 - 23000 - - 23010 - - 23011 + - 16880 + - 16882 - uid: 18773 components: + - type: MetaData + name: Engineering Outside Comms Air Alarm - type: Transform pos: -3.5,-50.5 parent: 8364 @@ -10461,9 +10837,34 @@ entities: - 17087 - 26635 - 16853 - - 14486 - - 23068 - - 23067 + - 23774 + - 781 + - 14501 + - uid: 19344 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 8364 + - type: DeviceList + devices: + - 25364 + - 25367 + - 25366 + - 25365 + - 1311 + - 14226 + - 16155 + - 15139 + - uid: 19773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,4.5 + parent: 8364 + - type: DeviceList + devices: + - 25325 + - 25324 - uid: 20630 components: - type: Transform @@ -10478,28 +10879,6 @@ entities: - type: Transform pos: 63.5,-11.5 parent: 8364 - - type: DeviceList - devices: - - 19992 - - 19991 - - 19993 - - 26804 - - 26805 - - 26806 - - 24919 - - 24921 - - 13380 - - 13379 - - 13378 - - 13362 - - 13363 - - 22690 - - 13391 - - 13390 - - 13389 - - 10521 - - 10523 - - 22691 - uid: 22563 components: - type: Transform @@ -10563,9 +10942,9 @@ entities: parent: 8364 - type: DeviceList devices: - - 23261 - - 22587 - - 16789 + - 17208 + - 25092 + - 747 - uid: 22589 components: - type: Transform @@ -10573,12 +10952,21 @@ entities: parent: 8364 - type: DeviceList devices: - - 22591 - 6917 - 9826 - 9825 - - 23948 - - 23947 + - 23071 + - 783 + - 23218 + - 17571 + - 28206 + - 28205 + - 7277 + - 8080 + - 8110 + - 1652 + - 16943 + - 1672 - uid: 22594 components: - type: Transform @@ -10625,19 +11013,10 @@ entities: - 22598 - 24240 - 24239 - - uid: 22600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 8364 - - type: DeviceList - devices: - - 22601 - - 24187 - - 24188 - uid: 22603 components: + - type: MetaData + name: Bridge Air Alarm - type: Transform rot: 3.141592653589793 rad pos: -2.5,-9.5 @@ -10663,9 +11042,9 @@ entities: parent: 8364 - type: DeviceList devices: - - 24217 - - 24224 - 22613 + - 23856 + - 20029 - uid: 22614 components: - type: Transform @@ -10762,6 +11141,8 @@ entities: - 24110 - uid: 22641 components: + - type: MetaData + name: Bar Air Alarm - type: Transform pos: 25.5,1.5 parent: 8364 @@ -10769,21 +11150,21 @@ entities: devices: - 22645 - 22646 - - 22647 - - 24436 - - uid: 22642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-11.5 - parent: 8364 - - type: DeviceList - devices: - - 22645 - - 22646 - - 22647 - - 24436 - - 27233 + - 25964 + - 279 + - 24444 + - 24459 + - 25959 + - 25963 + - 25958 + - 25960 + - 25961 + - 25962 + - 24441 + - 27966 + - 24435 + - 24462 + - 24471 - uid: 22649 components: - type: Transform @@ -10792,9 +11173,9 @@ entities: parent: 8364 - type: DeviceList devices: - - 24494 - 24493 - 22648 + - 24898 - uid: 22650 components: - type: Transform @@ -10825,8 +11206,10 @@ entities: - 22657 - 10452 - 24916 - - 24914 - - 24917 + - 27939 + - 24638 + - 27936 + - 27941 - uid: 22659 components: - type: Transform @@ -10839,14 +11222,14 @@ entities: - 13385 - 22645 - 22646 - - 2940 - - 14093 - - 14208 - 14220 - - 14094 - - 11725 - 11719 - - 22658 + - 11725 + - 14094 + - 23086 + - 22749 + - 824 + - 27992 - 13391 - 13390 - 13389 @@ -10854,8 +11237,13 @@ entities: - 13381 - 13383 - 13384 - - 24586 - - 24585 + - 27991 + - 22758 + - 23876 + - 23251 + - 23087 + - 14208 + - 14093 - uid: 22661 components: - type: Transform @@ -10869,8 +11257,8 @@ entities: - 14149 - 22663 - 19972 - - 24599 - 24610 + - 24644 - uid: 22665 components: - type: Transform @@ -10884,45 +11272,31 @@ entities: - 14093 - 14208 - 14220 - - 22666 - 14094 - 11725 - 11719 - - 24584 - 24581 - 24583 - 24582 - - uid: 22667 - components: - - type: Transform - pos: 40.5,-21.5 - parent: 8364 - - type: DeviceList - devices: - - 21773 - - 21774 - - 5548 - - 9811 - - 18680 - - 18682 - - 22668 - - 24587 - - 24588 + - 27962 + - 24783 - uid: 22670 components: + - type: MetaData + name: Emergency Room Air Alarm - type: Transform rot: 3.141592653589793 rad pos: 33.5,-31.5 parent: 8364 - type: DeviceList devices: - - 8002 - - 5547 + - 22672 + - 27959 + - 27960 - 6211 - 5879 - - 22672 - - 24712 - - 24705 + - 5547 + - 8002 - uid: 22673 components: - type: Transform @@ -10935,6 +11309,8 @@ entities: - 24746 - uid: 22676 components: + - type: MetaData + name: Medical Staff Hallway Air Alarm - type: Transform pos: 37.5,-30.5 parent: 8364 @@ -10962,14 +11338,8 @@ entities: - 5546 - 7993 - 22681 - - 24813 - - 24814 - - 24812 - - 24815 - 24811 - 24816 - - 24775 - - 24778 - 24776 - 24777 - uid: 22684 @@ -10997,12 +11367,9 @@ entities: parent: 8364 - type: DeviceList devices: - - 13380 - - 13379 - - 13378 - - 13362 - - 13363 - - 22690 + - 26804 + - 26805 + - 26806 - 13391 - 13390 - 13389 @@ -11011,8 +11378,8 @@ entities: - 22691 - 24920 - 24918 - - 24921 - - 24919 + - 26039 + - 26038 - uid: 22694 components: - type: Transform @@ -11024,23 +11391,25 @@ entities: - 13380 - 13379 - 13378 - - 22697 - - 22696 - - 22695 - - 24246 - - 24245 + - 5927 + - 827 + - 5928 - 19992 - 19991 - 19993 + - 23122 + - 26036 + - 26037 - uid: 22699 components: + - type: MetaData + name: Chapel Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-6.5 parent: 8364 - type: DeviceList devices: - - 22700 - 24930 - 24931 - 20899 @@ -11051,6 +11420,9 @@ entities: - 21540 - 21542 - 21541 + - 5730 + - 5463 + - 7176 - uid: 22701 components: - type: Transform @@ -11061,6 +11433,9 @@ entities: - 24967 - 24968 - 22702 + - 5748 + - 5735 + - 5740 - uid: 22703 components: - type: Transform @@ -11069,8 +11444,8 @@ entities: parent: 8364 - type: DeviceList devices: - - 5382 - - 5383 + - 7098 + - 7133 - 22704 - 21543 - 21544 @@ -11080,8 +11455,15 @@ entities: - 21542 - 21539 - 21540 + - 4537 + - 25986 + - 26691 + - 22731 + - 8142 - uid: 22706 components: + - type: MetaData + name: Robotics Air Alarm - type: Transform pos: 56.5,-21.5 parent: 8364 @@ -11092,31 +11474,13 @@ entities: - 13364 - 25116 - 25115 - - uid: 22714 - components: - - type: Transform - pos: 60.5,-25.5 - parent: 8364 - - type: DeviceList - devices: - - 13365 - - 13367 - - 13368 - - 13369 - - 13370 - - 13371 - - 22713 - - 5519 - - 5518 - - 6459 - - 25170 - - 25171 - - 25168 - - 25169 - - 25136 - - 25131 + - 27880 + - 27703 + - 26973 - uid: 22715 components: + - type: MetaData + name: R&D Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-19.5 @@ -11126,12 +11490,17 @@ entities: - 13371 - 13370 - 13369 - - 22717 + - 27425 - 13362 - 25069 - - 25072 + - 27204 + - 20289 + - 23885 + - 27202 - uid: 22718 components: + - type: MetaData + name: Artifact Lab North Air Alarm - type: Transform pos: 79.5,-22.5 parent: 8364 @@ -11148,11 +11517,13 @@ entities: parent: 8364 - type: DeviceList devices: - - 25167 - - 25165 - 22720 + - 27311 + - 25506 - uid: 22723 components: + - type: MetaData + name: Artifact Chamber Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-39.5 @@ -11160,35 +11531,6 @@ entities: - type: DeviceList devices: - 22722 - - uid: 22726 - components: - - type: Transform - pos: 73.5,-42.5 - parent: 8364 - - type: DeviceList - devices: - - 6468 - - 6473 - - 6474 - - 6488 - - 6489 - - 19883 - - 22725 - - 25261 - - 25260 - - uid: 22732 - components: - - type: Transform - pos: 62.5,-38.5 - parent: 8364 - - type: DeviceList - devices: - - 25223 - - 25224 - - 25241 - - 25242 - - 22733 - - 22731 - uid: 22734 components: - type: Transform @@ -11227,9 +11569,12 @@ entities: - 5511 - 5512 - 5513 - - 1479 - - 25206 - - 25207 + - 4406 + - 4461 + - 746 + - 4403 + - 4404 + - 4460 - uid: 22956 components: - type: Transform @@ -11263,21 +11608,23 @@ entities: - 24010 - 24011 - 24012 - - uid: 22970 + - uid: 23133 components: + - type: MetaData + name: PA West Air Alarm - type: Transform - pos: -37.5,-3.5 + rot: 1.5707963267948966 rad + pos: -8.5,-75.5 parent: 8364 - type: DeviceList devices: - - 25364 - - 25367 - - 25366 - - 25365 - - 1311 - - 14226 - - 16155 - - 15139 + - 23131 + - 23259 + - 22003 + - 10877 + - 27405 + - 27404 + - 27403 - uid: 23262 components: - type: Transform @@ -11368,6 +11715,18 @@ entities: - 25420 - 25422 - 25421 + - uid: 23899 + components: + - type: MetaData + name: Toxins Room Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-37.5 + parent: 8364 + - type: DeviceList + devices: + - 25164 + - 25166 - uid: 23938 components: - type: Transform @@ -11380,12 +11739,15 @@ entities: - 11600 - 11377 - 11603 - - 23939 - 23940 - 25488 - 25487 - 25518 - 25519 + - 26931 + - 591 + - 23258 + - 21999 - uid: 23943 components: - type: Transform @@ -11422,6 +11784,15 @@ entities: - 7357 - 25557 - 25560 + - uid: 24632 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 8364 + - type: DeviceList + devices: + - 24634 + - 24635 - uid: 24766 components: - type: Transform @@ -11432,6 +11803,17 @@ entities: - 25800 - 24915 - 25804 + - 27933 + - uid: 24812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-39.5 + parent: 8364 + - type: DeviceList + devices: + - 24896 + - 24790 - uid: 24987 components: - type: Transform @@ -11446,6 +11828,20 @@ entities: - 8934 - 25762 - 25759 + - uid: 25225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-75.5 + parent: 8364 + - type: DeviceList + devices: + - 27274 + - 26051 + - 738 + - 27210 + - 26034 + - 27167 - uid: 25234 components: - type: Transform @@ -11513,8 +11909,8 @@ entities: - type: DeviceList devices: - 25375 - - 25479 - - 25486 + - 23905 + - 21996 - uid: 25825 components: - type: Transform @@ -11522,20 +11918,19 @@ entities: parent: 8364 - type: DeviceList devices: + - 11722 + - 22237 + - 7043 + - 7180 + - 7078 - 14167 - 14343 - - 2944 - 14342 - - 7078 - - 7180 - - 7043 - - 25827 - - 25826 - - 25316 - - 25317 - - 25318 - - 25315 - - 11722 + - 2944 + - 1416 + - 16625 + - 19169 + - 22690 - uid: 25833 components: - type: Transform @@ -11573,6 +11968,8 @@ entities: - 25337 - uid: 25915 components: + - type: MetaData + name: Surgery Air Alarm - type: Transform rot: 3.141592653589793 rad pos: 20.5,-37.5 @@ -11580,10 +11977,12 @@ entities: - type: DeviceList devices: - 25914 - - 24707 - - 24711 + - 24599 + - 24603 - uid: 26703 components: + - type: MetaData + name: PA Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-76.5 @@ -11591,10 +11990,12 @@ entities: - type: DeviceList devices: - 26694 - - 26695 - 26702 + - 23906 - uid: 26704 components: + - type: MetaData + name: AME Air Alarm - type: Transform pos: -17.5,-71.5 parent: 8364 @@ -11602,7 +12003,7 @@ entities: devices: - 26698 - 26693 - - 26697 + - 662 - uid: 26707 components: - type: Transform @@ -11610,11 +12011,17 @@ entities: parent: 8364 - type: DeviceList devices: - - 5463 - - 5462 - - 1860 + - 23556 + - 27531 + - 26032 + - 5264 + - 16627 + - 5278 + - 5277 - uid: 26908 components: + - type: MetaData + name: PA East Air Alarm - type: Transform rot: 3.141592653589793 rad pos: 7.5,-76.5 @@ -11622,8 +12029,111 @@ entities: - type: DeviceList devices: - 26701 - - 23177 - - 23179 + - 25231 + - 14502 + - uid: 26989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-82.5 + parent: 8364 + - type: DeviceList + devices: + - 23147 + - uid: 27150 + components: + - type: MetaData + name: Breakroom Air Alarm + - type: Transform + pos: 55.5,-38.5 + parent: 8364 + - type: DeviceList + devices: + - 27198 + - 847 + - 27197 + - 27879 + - 27878 + - 27875 + - uid: 27881 + components: + - type: Transform + pos: 57.5,-25.5 + parent: 8364 + - type: DeviceList + devices: + - 25136 + - 25131 + - 5235 + - 5236 + - 151 + - uid: 27964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-26.5 + parent: 8364 + - type: DeviceList + devices: + - 2782 + - 19972 + - 21773 + - 21774 + - 27944 + - 27947 + - 27945 + - uid: 27965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-25.5 + parent: 8364 + - type: DeviceList + devices: + - 18680 + - 18682 + - 27948 + - 27949 + - 24729 + - 24587 + - 22668 + - 24588 + - 9811 + - 5548 + - 21773 + - 21774 + - uid: 28154 + components: + - type: MetaData + name: AI Upload Air Alarm + - type: Transform + pos: -1.5,-18.5 + parent: 8364 + - type: DeviceList + devices: + - 3860 + - 4557 + - 28193 + - 28194 + - uid: 28227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-54.5 + parent: 8364 + - type: DeviceList + devices: + - 28234 + - 28222 + - 16918 + - 23088 + - 28235 + - 23090 + - 28224 + - 28230 + - 28231 + - 28223 + - 28233 - proto: AirCanister entities: - uid: 444 @@ -11731,16 +12241,6 @@ entities: - type: Transform pos: -21.5,51.5 parent: 8364 - - uid: 27150 - components: - - type: Transform - pos: 22.5,-89.5 - parent: 8364 - - uid: 27151 - components: - - type: Transform - pos: 24.5,-88.5 - parent: 8364 - uid: 27213 components: - type: Transform @@ -12031,11 +12531,6 @@ entities: parent: 8364 - proto: AirlockCaptainLocked entities: - - uid: 1152 - components: - - type: Transform - pos: -50.5,-3.5 - parent: 8364 - uid: 5692 components: - type: MetaData @@ -12057,20 +12552,6 @@ entities: - type: Transform pos: 9.5,-20.5 parent: 8364 - - uid: 8143 - components: - - type: MetaData - name: Captain Chunnel - - type: Transform - pos: -5.5,-16.5 - parent: 8364 - - uid: 8144 - components: - - type: MetaData - name: Captain Chunnel - - type: Transform - pos: 4.5,-16.5 - parent: 8364 - uid: 10734 components: - type: MetaData @@ -12171,6 +12652,8 @@ entities: entities: - uid: 2216 components: + - type: MetaData + name: CE's Office - type: Transform pos: -6.5,-66.5 parent: 8364 @@ -12193,11 +12676,6 @@ entities: parent: 8364 - proto: AirlockCommandGlassLocked entities: - - uid: 854 - components: - - type: Transform - pos: 28.5,-107.5 - parent: 8364 - uid: 5514 components: - type: MetaData @@ -12228,6 +12706,8 @@ entities: parent: 8364 - uid: 5651 components: + - type: MetaData + name: EVA Entrance - type: Transform pos: -11.5,0.5 parent: 8364 @@ -12238,38 +12718,28 @@ entities: parent: 8364 - proto: AirlockCommandLocked entities: - - uid: 5619 + - uid: 647 components: - type: MetaData - name: Briefing - - type: Transform - pos: -7.5,-10.5 - parent: 8364 - - uid: 6597 - components: - - type: Transform - pos: 28.5,-88.5 - parent: 8364 - - uid: 6598 - components: - - type: Transform - pos: 28.5,-94.5 - parent: 8364 - - uid: 6599 - components: + name: AI Upload - type: Transform - pos: 28.5,-82.5 + rot: -1.5707963267948966 rad + pos: -0.5,-25.5 parent: 8364 - - uid: 16621 + - uid: 5619 components: + - type: MetaData + name: Briefing - type: Transform - pos: 10.5,-68.5 + pos: -7.5,-10.5 parent: 8364 - - uid: 16631 + - uid: 27816 components: + - type: MetaData + name: AI Entrance - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-85.5 + pos: -0.5,-28.5 parent: 8364 - proto: AirlockDetectiveGlassLocked entities: @@ -12378,13 +12848,6 @@ entities: parent: 8364 - proto: AirlockEngineeringLocked entities: - - uid: 576 - components: - - type: MetaData - name: Shuttle Construction - - type: Transform - pos: -66.5,11.5 - parent: 8364 - uid: 799 components: - type: MetaData @@ -12392,6 +12855,11 @@ entities: - type: Transform pos: 42.5,4.5 parent: 8364 + - uid: 1409 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 8364 - uid: 1673 components: - type: Transform @@ -12411,6 +12879,8 @@ entities: parent: 8364 - uid: 4683 components: + - type: MetaData + name: PA - type: Transform pos: -0.5,-72.5 parent: 8364 @@ -12459,11 +12929,6 @@ entities: - type: Transform pos: -30.5,-65.5 parent: 8364 - - uid: 15875 - components: - - type: Transform - pos: 12.5,-83.5 - parent: 8364 - uid: 16101 components: - type: MetaData @@ -12480,6 +12945,8 @@ entities: parent: 8364 - uid: 16146 components: + - type: MetaData + name: Gravity & Anchor - type: Transform pos: -19.5,-71.5 parent: 8364 @@ -12514,11 +12981,6 @@ entities: - type: Transform pos: 10.5,-73.5 parent: 8364 - - uid: 17671 - components: - - type: Transform - pos: 11.5,-82.5 - parent: 8364 - uid: 18303 components: - type: MetaData @@ -12526,13 +12988,6 @@ entities: - type: Transform pos: 47.5,-40.5 parent: 8364 - - uid: 18681 - components: - - type: MetaData - name: Gravity Gen - - type: Transform - pos: -0.5,-28.5 - parent: 8364 - uid: 19984 components: - type: MetaData @@ -12545,6 +13000,13 @@ entities: - type: Transform pos: -20.5,-67.5 parent: 8364 + - uid: 27794 + components: + - type: MetaData + name: Station Anchor + - type: Transform + pos: -19.5,-79.5 + parent: 8364 - proto: AirlockExternal entities: - uid: 431 @@ -12604,8 +13066,6 @@ entities: - type: Transform pos: 91.5,-29.5 parent: 8364 - - type: DeviceLinkSink - invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 5209: @@ -12658,10 +13118,14 @@ entities: - type: Transform pos: 23.5,-60.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 3852: - DoorStatus: DoorBolt + 3707: + - DoorStatus: Close - proto: AirlockExternalGlassCargoLocked entities: - uid: 7010 @@ -12694,16 +13158,86 @@ entities: parent: 8364 - proto: AirlockExternalGlassEngineeringLocked entities: + - uid: 2905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-82.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 3601: + - DoorStatus: DoorBolt + 4365: + - DoorStatus: DoorBolt + - uid: 3601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-84.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 4365: + - DoorStatus: DoorBolt + 2905: + - DoorStatus: DoorBolt - uid: 3707 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-61.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: 3852: - DoorStatus: DoorBolt + 3858: + - DoorStatus: Close + - uid: 4365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-84.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 3601: + - DoorStatus: DoorBolt + 2905: + - DoorStatus: DoorBolt + - uid: 11754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-82.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14105: + - DoorStatus: DoorBolt + - uid: 14105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-84.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11754: + - DoorStatus: DoorBolt - uid: 14448 components: - type: Transform @@ -12748,8 +13282,17 @@ entities: linkedPorts: 508: - DoorStatus: DoorBolt + - uid: 594 + components: + - type: MetaData + name: Shuttle Building Supplies + - type: Transform + pos: -66.5,11.5 + parent: 8364 - uid: 1495 components: + - type: MetaData + name: Shuttle Airlock - type: Transform pos: -66.5,19.5 parent: 8364 @@ -12775,6 +13318,17 @@ entities: linkedPorts: 9810: - DoorStatus: DoorBolt + - uid: 11795 + components: + - type: Transform + pos: 62.5,-70.5 + parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 19987: + - DoorStatus: DoorBolt - uid: 12466 components: - type: Transform @@ -12829,15 +13383,6 @@ entities: linkedPorts: 19366: - DoorStatus: DoorBolt - - uid: 19857 - components: - - type: Transform - pos: 62.5,-71.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 19987: - - DoorStatus: DoorBolt - uid: 19988 components: - type: Transform @@ -12956,11 +13501,6 @@ entities: linkedPorts: 22633: - DoorStatus: DoorBolt - - uid: 6600 - components: - - type: Transform - pos: 30.5,-79.5 - parent: 8364 - uid: 9810 components: - type: Transform @@ -13029,9 +13569,11 @@ entities: - type: Transform pos: 61.5,-72.5 parent: 8364 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 19857: + 11795: - DoorStatus: DoorBolt - uid: 19989 components: @@ -13051,11 +13593,6 @@ entities: linkedPorts: 5626: - DoorStatus: DoorBolt - - uid: 27848 - components: - - type: Transform - pos: 33.5,-79.5 - parent: 8364 - proto: AirlockExternalShuttleLocked entities: - uid: 593 @@ -13169,7 +13706,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -37852.17 + secondsUntilStateChange: -74012.63 state: Opening - type: DeviceLinkSource lastSignals: @@ -13342,11 +13879,6 @@ entities: - type: Transform pos: -31.5,13.5 parent: 8364 - - uid: 13474 - components: - - type: Transform - pos: -19.5,-11.5 - parent: 8364 - uid: 14311 components: - type: MetaData @@ -13568,6 +14100,8 @@ entities: entities: - uid: 12024 components: + - type: MetaData + name: EVA Gear - type: Transform pos: -11.5,5.5 parent: 8364 @@ -13698,11 +14232,6 @@ entities: parent: 8364 - proto: AirlockMaintCaptainLocked entities: - - uid: 1154 - components: - - type: Transform - pos: -50.5,-9.5 - parent: 8364 - uid: 2380 components: - type: Transform @@ -13784,6 +14313,11 @@ entities: parent: 8364 - proto: AirlockMaintEngiLocked entities: + - uid: 1154 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 8364 - uid: 6310 components: - type: Transform @@ -13879,16 +14413,6 @@ entities: - type: Transform pos: 41.5,11.5 parent: 8364 - - uid: 783 - components: - - type: Transform - pos: 25.5,-99.5 - parent: 8364 - - uid: 784 - components: - - type: Transform - pos: 31.5,-99.5 - parent: 8364 - uid: 1518 components: - type: Transform @@ -13933,16 +14457,6 @@ entities: - type: Transform pos: -33.5,-52.5 parent: 8364 - - uid: 4966 - components: - - type: Transform - pos: 24.5,-94.5 - parent: 8364 - - uid: 4967 - components: - - type: Transform - pos: 32.5,-94.5 - parent: 8364 - uid: 6407 components: - type: Transform @@ -14059,13 +14573,6 @@ entities: - type: Transform pos: -30.5,-3.5 parent: 8364 - - uid: 14421 - components: - - type: MetaData - name: Vacant Office B Maintenance - - type: Transform - pos: -25.5,-12.5 - parent: 8364 - uid: 15303 components: - type: Transform @@ -14264,6 +14771,16 @@ entities: - type: Transform pos: 18.5,30.5 parent: 8364 +- proto: AirlockMaintServiceLocked + entities: + - uid: 688 + components: + - type: MetaData + name: Newsroom Maintenance + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 8364 - proto: AirlockMedicalGlassLocked entities: - uid: 1791 @@ -14772,6 +15289,14 @@ entities: parent: 8364 - proto: AirlockServiceGlassLocked entities: + - uid: 742 + components: + - type: MetaData + name: Newsroom Entrance + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 8364 - uid: 9841 components: - type: Transform @@ -14851,6 +15376,70 @@ entities: parent: 8364 - proto: AirSensor entities: + - uid: 151 + components: + - type: Transform + pos: 61.5,-27.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27881 + - uid: 226 + components: + - type: Transform + pos: 77.5,-37.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 835 + - uid: 591 + components: + - type: Transform + pos: 1.5,20.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23938 + - uid: 738 + components: + - type: Transform + pos: -24.5,-77.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25225 + - uid: 781 + components: + - type: Transform + pos: -1.5,-53.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 18773 + - uid: 782 + components: + - type: Transform + pos: 70.5,-13.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22689 + - uid: 783 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22589 + - uid: 847 + components: + - type: Transform + pos: 57.5,-40.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27150 - uid: 1311 components: - type: Transform @@ -14858,25 +15447,92 @@ entities: parent: 8364 - type: DeviceNetwork deviceLists: - - 22970 - - uid: 1479 + - 19344 + - uid: 1411 components: - type: Transform - pos: 69.5,-52.5 + pos: 12.5,15.5 parent: 8364 - - uid: 1860 + - type: DeviceNetwork + deviceLists: + - 6646 + - uid: 4406 components: - type: Transform - pos: -11.5,-68.5 + pos: 68.5,-51.5 parent: 8364 - type: DeviceNetwork deviceLists: - - 26707 - - uid: 14486 + - 22954 + - uid: 4460 components: - type: Transform - pos: -0.5,-55.5 + pos: 76.5,-53.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22954 + - uid: 4537 + components: + - type: Transform + pos: 63.5,-6.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22703 + - uid: 5450 + components: + - type: Transform + pos: -61.5,-2.5 parent: 8364 + - uid: 5740 + components: + - type: Transform + pos: 69.5,4.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22701 + - uid: 6529 + components: + - type: Transform + pos: 79.5,-45.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 835 + - uid: 7176 + components: + - type: Transform + pos: 69.5,-2.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22699 + - uid: 9450 + components: + - type: Transform + pos: 58.5,-13.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22689 + - uid: 15126 + components: + - type: Transform + pos: 5.5,9.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 + - uid: 15127 + components: + - type: Transform + pos: 5.5,12.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - uid: 15139 components: - type: Transform @@ -14884,7 +15540,31 @@ entities: parent: 8364 - type: DeviceNetwork deviceLists: - - 22970 + - 19344 + - uid: 15450 + components: + - type: Transform + pos: 5.5,15.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 + - uid: 17048 + components: + - type: Transform + pos: -5.5,-69.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 17159 + - uid: 17156 + components: + - type: Transform + pos: 6.5,-68.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 17159 - uid: 17593 components: - type: Transform @@ -14910,11 +15590,22 @@ entities: - type: Transform pos: 15.5,-51.5 parent: 8364 - - uid: 20898 + - uid: 21999 components: - type: Transform - pos: 63.5,-13.5 + pos: 10.5,20.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23938 + - uid: 22237 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25825 - uid: 22561 components: - type: Transform @@ -14923,7 +15614,6 @@ entities: - uid: 22571 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-47.5 parent: 8364 - uid: 22572 @@ -14936,14 +15626,6 @@ entities: - type: Transform pos: -23.5,-67.5 parent: 8364 - - type: DeviceNetwork - deviceLists: - - 22588 - - uid: 22591 - components: - - type: Transform - pos: -3.5,-30.5 - parent: 8364 - uid: 22593 components: - type: Transform @@ -14959,11 +15641,6 @@ entities: - type: Transform pos: -7.5,-17.5 parent: 8364 - - uid: 22601 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 8364 - uid: 22602 components: - type: Transform @@ -15024,11 +15701,6 @@ entities: - type: Transform pos: 10.5,10.5 parent: 8364 - - uid: 22647 - components: - - type: Transform - pos: 26.5,-9.5 - parent: 8364 - uid: 22648 components: - type: Transform @@ -15044,31 +15716,27 @@ entities: - type: Transform pos: 45.5,-7.5 parent: 8364 - - uid: 22658 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 8364 - uid: 22663 components: - type: Transform pos: 20.5,-21.5 parent: 8364 - - uid: 22666 - components: - - type: Transform - pos: 28.5,-17.5 - parent: 8364 - uid: 22668 components: - type: Transform pos: 30.5,-24.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27965 - uid: 22672 components: - type: Transform pos: 31.5,-29.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22670 - uid: 22674 components: - type: Transform @@ -15099,26 +15767,11 @@ entities: - type: Transform pos: 40.5,-57.5 parent: 8364 - - uid: 22690 - components: - - type: Transform - pos: 66.5,-13.5 - parent: 8364 - uid: 22691 components: - type: Transform pos: 48.5,-13.5 parent: 8364 - - uid: 22697 - components: - - type: Transform - pos: 78.5,-12.5 - parent: 8364 - - uid: 22700 - components: - - type: Transform - pos: 72.5,-10.5 - parent: 8364 - uid: 22702 components: - type: Transform @@ -15139,11 +15792,10 @@ entities: - type: Transform pos: 66.5,-24.5 parent: 8364 - - uid: 22717 - components: - - type: Transform - pos: 73.5,-23.5 - parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22712 + - 4328 - uid: 22719 components: - type: Transform @@ -15159,31 +15811,35 @@ entities: - type: Transform pos: 72.5,-40.5 parent: 8364 - - uid: 22725 - components: - - type: Transform - pos: 77.5,-45.5 - parent: 8364 - uid: 22728 components: - type: Transform pos: 66.5,-45.5 parent: 8364 - - uid: 22731 + - type: DeviceNetwork + deviceLists: + - 4329 + - uid: 22742 components: - type: Transform - pos: 67.5,-39.5 + pos: 55.5,-30.5 parent: 8364 - - uid: 22733 + - uid: 22749 components: - type: Transform - pos: 54.5,-39.5 + pos: 30.5,-13.5 parent: 8364 - - uid: 22742 + - type: DeviceNetwork + deviceLists: + - 22659 + - uid: 22758 components: - type: Transform - pos: 55.5,-30.5 + pos: 22.5,-13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 - uid: 22957 components: - type: Transform @@ -15204,6 +15860,47 @@ entities: - type: Transform pos: -27.5,-1.5 parent: 8364 + - uid: 23131 + components: + - type: Transform + pos: -6.5,-75.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23133 + - uid: 23147 + components: + - type: Transform + pos: 22.5,-84.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26989 + - uid: 23251 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 + - uid: 23255 + components: + - type: Transform + pos: 66.5,-39.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4329 + - uid: 23256 + components: + - type: Transform + pos: 66.5,-32.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22712 + - 4328 - uid: 23264 components: - type: Transform @@ -15224,25 +15921,44 @@ entities: - type: Transform pos: -11.5,8.5 parent: 8364 + - uid: 23556 + components: + - type: Transform + pos: -13.5,-69.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 - uid: 23696 components: - type: Transform pos: -4.5,6.5 parent: 8364 + - uid: 23885 + components: + - type: Transform + pos: 71.5,-23.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22715 - uid: 23903 components: - type: Transform pos: -0.5,6.5 parent: 8364 - - uid: 23935 + - uid: 23910 components: - type: Transform - pos: -0.5,15.5 + pos: 14.5,-84.5 parent: 8364 - - uid: 23939 + - type: DeviceNetwork + deviceLists: + - 1860 + - uid: 23935 components: - type: Transform - pos: 7.5,20.5 + pos: -0.5,15.5 parent: 8364 - uid: 23940 components: @@ -15259,6 +15975,30 @@ entities: - type: Transform pos: -3.5,27.5 parent: 8364 + - uid: 24435 + components: + - type: Transform + pos: 21.5,2.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 + - uid: 24459 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 + - uid: 24892 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 3087 - uid: 24915 components: - type: Transform @@ -15269,6 +16009,14 @@ entities: - type: Transform pos: 0.5,32.5 parent: 8364 + - uid: 25092 + components: + - type: Transform + pos: -24.5,-70.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22588 - uid: 25236 components: - type: Transform @@ -15294,20 +16042,18 @@ entities: - type: Transform pos: -12.5,14.5 parent: 8364 - - uid: 25375 - components: - - type: Transform - pos: -6.5,15.5 - parent: 8364 - - uid: 25826 + - uid: 25318 components: - type: Transform - pos: -57.5,1.5 + pos: 5.5,6.5 parent: 8364 - - uid: 25827 + - type: DeviceNetwork + deviceLists: + - 6646 + - uid: 25375 components: - type: Transform - pos: -57.5,-5.5 + pos: -6.5,15.5 parent: 8364 - uid: 25830 components: @@ -15344,6 +16090,14 @@ entities: - type: Transform pos: 0.5,50.5 parent: 8364 + - uid: 26685 + components: + - type: Transform + pos: 33.5,7.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8150 - uid: 26698 components: - type: Transform @@ -15364,11 +16118,155 @@ entities: - type: Transform pos: -0.5,-73.5 parent: 8364 - - uid: 27489 + - uid: 26999 components: - type: Transform - pos: 3.5,-66.5 + pos: -0.5,-12.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 3656 + - uid: 27019 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 5769 + - uid: 27167 + components: + - type: Transform + pos: -20.5,-74.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25225 + - uid: 27204 + components: + - type: Transform + pos: 71.5,-30.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22715 + - uid: 27703 + components: + - type: Transform + pos: 53.5,-18.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22706 + - uid: 27878 + components: + - type: Transform + pos: 54.5,-35.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27150 + - uid: 27947 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27964 + - uid: 27949 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27965 + - uid: 27961 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 291 + - uid: 27962 + components: + - type: Transform + pos: 30.5,-18.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22665 + - uid: 27963 + components: + - type: Transform + pos: 46.5,-18.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 3087 + - uid: 27973 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 8364 + - uid: 28193 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28154 + - uid: 28194 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28154 + - uid: 28206 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22589 + - uid: 28233 + components: + - type: Transform + pos: -15.5,-53.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28227 + - uid: 28234 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28227 + - uid: 28235 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28227 + - uid: 28236 + components: + - type: Transform + pos: 16.5,15.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - proto: AltarConvertMaint entities: - uid: 20907 @@ -15434,30 +16332,6 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-22.5 parent: 8364 - - uid: 563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-111.5 - parent: 8364 - - uid: 566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-100.5 - parent: 8364 - - uid: 567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-92.5 - parent: 8364 - - uid: 568 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-92.5 - parent: 8364 - uid: 1260 components: - type: MetaData @@ -15491,6 +16365,13 @@ entities: - type: Transform pos: 46.5,-64.5 parent: 8364 + - uid: 3604 + components: + - type: MetaData + name: Gravity APC + - type: Transform + pos: -22.5,-72.5 + parent: 8364 - uid: 3714 components: - type: MetaData @@ -15520,12 +16401,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-60.5 parent: 8364 - - uid: 4938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-86.5 - parent: 8364 - uid: 5759 components: - type: MetaData @@ -15659,22 +16534,6 @@ entities: currentReceiving: 15.000059 currentSupply: 15 supplyRampPosition: -5.9127808E-05 - - uid: 8150 - components: - - type: MetaData - name: AI Upload APC - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-15.5 - parent: 8364 - - uid: 8157 - components: - - type: MetaData - name: Grav Gen APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 8364 - uid: 8265 components: - type: Transform @@ -15913,13 +16772,6 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,-9.5 parent: 8364 - - uid: 14075 - components: - - type: MetaData - name: Vacant Office B APC - - type: Transform - pos: -19.5,-10.5 - parent: 8364 - uid: 14145 components: - type: MetaData @@ -16159,12 +17011,27 @@ entities: - type: Transform pos: 8.5,-50.5 parent: 8364 + - uid: 25196 + components: + - type: MetaData + name: Newsroom APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 8364 - uid: 26717 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-69.5 parent: 8364 + - uid: 27052 + components: + - type: MetaData + name: Station Anchor APC + - type: Transform + pos: -18.5,-80.5 + parent: 8364 - uid: 27503 components: - type: MetaData @@ -16173,6 +17040,22 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-76.5 parent: 8364 + - uid: 27830 + components: + - type: MetaData + name: AI Core APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 8364 + - uid: 28155 + components: + - type: MetaData + name: AI Upload APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 8364 - proto: APCElectronics entities: - uid: 14440 @@ -16308,7 +17191,7 @@ entities: - uid: 27915 components: - type: Transform - pos: -4.5121183,-14.413322 + pos: 2.5261002,-23.281736 parent: 8364 - proto: Ash entities: @@ -16322,7 +17205,7 @@ entities: - uid: 27912 components: - type: Transform - pos: 3.2198467,-12.066172 + pos: -3.6,-23.45 parent: 8364 - proto: AsteroidRock entities: @@ -16570,1248 +17453,3238 @@ entities: - type: Transform pos: 15.5,-50.5 parent: 8364 - - uid: 9355 + - uid: 298 components: - type: Transform - pos: 26.5,-55.5 + pos: 53.5,32.5 parent: 8364 - - uid: 9378 + - uid: 537 components: - type: Transform - pos: 26.5,-54.5 + pos: -44.5,32.5 parent: 8364 - - uid: 9385 + - uid: 568 components: - type: Transform - pos: 27.5,-56.5 + pos: -53.5,32.5 parent: 8364 - - uid: 9386 + - uid: 570 components: - type: Transform - pos: 27.5,-54.5 + pos: -13.5,-82.5 parent: 8364 - - uid: 9387 + - uid: 576 components: - type: Transform - pos: 28.5,-56.5 + pos: -48.5,-64.5 parent: 8364 - - uid: 9595 + - uid: 592 components: - type: Transform - pos: 28.5,-55.5 + pos: -52.5,34.5 parent: 8364 - - uid: 9708 + - uid: 661 components: - type: Transform - pos: 26.5,-52.5 + pos: -46.5,-67.5 parent: 8364 - - uid: 9710 + - uid: 739 components: - type: Transform - pos: 26.5,-51.5 + pos: -9.5,-85.5 parent: 8364 - - uid: 9711 + - uid: 741 components: - type: Transform - pos: 26.5,-50.5 + pos: -10.5,-90.5 parent: 8364 - - uid: 11914 + - uid: 862 components: - type: Transform - pos: 27.5,-51.5 + pos: 9.5,-88.5 parent: 8364 - - uid: 12084 + - uid: 865 components: - type: Transform - pos: 27.5,-50.5 + pos: 9.5,-89.5 parent: 8364 - - uid: 12085 + - uid: 876 components: - type: Transform - pos: 28.5,-52.5 + pos: 52.5,34.5 parent: 8364 - - uid: 14641 + - uid: 2004 components: - type: Transform - pos: 28.5,-50.5 + pos: 78.5,-79.5 parent: 8364 - - uid: 15375 + - uid: 2261 components: - type: Transform - pos: 26.5,-44.5 + pos: -54.5,32.5 parent: 8364 - - uid: 15376 + - uid: 3539 components: - type: Transform - pos: 26.5,-42.5 + pos: -54.5,34.5 parent: 8364 - - uid: 15451 + - uid: 4262 components: - type: Transform - pos: 27.5,-44.5 + pos: 15.5,-84.5 parent: 8364 - - uid: 15452 + - uid: 4264 components: - type: Transform - pos: 27.5,-43.5 + pos: 13.5,-83.5 parent: 8364 - - uid: 15453 + - uid: 4265 components: - type: Transform - pos: 28.5,-44.5 + pos: 13.5,-85.5 parent: 8364 - - uid: 15454 + - uid: 4280 components: - type: Transform - pos: 28.5,-43.5 + pos: 7.5,-83.5 parent: 8364 - - uid: 15470 + - uid: 4281 components: - type: Transform - pos: 26.5,-56.5 + pos: 7.5,-82.5 parent: 8364 - - uid: 15471 + - uid: 4282 components: - type: Transform - pos: 27.5,-55.5 + pos: 7.5,-81.5 parent: 8364 - - uid: 15472 + - uid: 4283 components: - type: Transform - pos: 28.5,-54.5 + pos: 7.5,-80.5 parent: 8364 - - uid: 15473 + - uid: 4301 components: - type: Transform - pos: 27.5,-52.5 + pos: 8.5,-80.5 parent: 8364 - - uid: 15474 + - uid: 4302 components: - type: Transform - pos: 28.5,-51.5 + pos: 9.5,-83.5 parent: 8364 - - uid: 15477 + - uid: 4303 components: - type: Transform - pos: 26.5,-43.5 + pos: 7.5,-88.5 parent: 8364 - - uid: 15478 + - uid: 4304 components: - type: Transform - pos: 27.5,-42.5 + pos: 7.5,-86.5 parent: 8364 - - uid: 15480 + - uid: 4305 components: - type: Transform - pos: 28.5,-42.5 + pos: 7.5,-85.5 parent: 8364 - - uid: 17651 + - uid: 4306 components: - type: Transform - pos: 14.5,-52.5 + pos: 7.5,-90.5 parent: 8364 - - uid: 19031 + - uid: 4307 components: - type: Transform - pos: 16.5,-51.5 + pos: 83.5,-83.5 parent: 8364 - - uid: 19032 + - uid: 4308 components: - type: Transform - pos: 16.5,-52.5 + pos: 79.5,-81.5 parent: 8364 - - uid: 21772 + - uid: 4309 components: - type: Transform - pos: 14.5,-50.5 + pos: 79.5,-83.5 parent: 8364 - - uid: 22803 + - uid: 4310 components: - type: Transform - pos: 14.5,-51.5 + pos: 78.5,-83.5 parent: 8364 - - uid: 22946 + - uid: 4311 components: - type: Transform - pos: 15.5,-52.5 + pos: 8.5,-82.5 parent: 8364 - - uid: 23143 + - uid: 4312 components: - type: Transform - pos: 15.5,-51.5 + pos: 9.5,-81.5 parent: 8364 - - uid: 23167 + - uid: 4313 components: - type: Transform - pos: 16.5,-50.5 + pos: 8.5,-85.5 parent: 8364 - - uid: 27997 + - uid: 4314 components: - type: Transform - pos: -8.5,-92.5 + pos: 9.5,-80.5 parent: 8364 - - uid: 27998 + - uid: 4315 components: - type: Transform - pos: 21.5,-80.5 + pos: 8.5,-84.5 parent: 8364 - - uid: 27999 + - uid: 4316 components: - type: Transform - pos: 22.5,-80.5 + pos: 77.5,-79.5 parent: 8364 - - uid: 28000 + - uid: 4317 components: - type: Transform - pos: 23.5,-80.5 + pos: 76.5,-79.5 parent: 8364 - - uid: 28001 + - uid: 4318 components: - type: Transform - pos: 25.5,-80.5 + pos: 75.5,-79.5 parent: 8364 - - uid: 28002 + - uid: 4319 components: - type: Transform - pos: 24.5,-80.5 + pos: 8.5,-83.5 parent: 8364 - - uid: 28003 + - uid: 4320 components: - type: Transform - pos: 21.5,-87.5 + pos: 8.5,-88.5 parent: 8364 - - uid: 28004 + - uid: 4321 components: - type: Transform - pos: 20.5,-87.5 + pos: 8.5,-87.5 parent: 8364 - - uid: 28005 + - uid: 4322 components: - type: Transform - pos: -7.5,-92.5 + pos: 8.5,-86.5 parent: 8364 - - uid: 28006 + - uid: 4332 components: - type: Transform - pos: -6.5,-92.5 + pos: 51.5,34.5 parent: 8364 - - uid: 28007 + - uid: 4333 components: - type: Transform - pos: -5.5,-92.5 + pos: 50.5,34.5 parent: 8364 - - uid: 28008 + - uid: 4334 components: - type: Transform - pos: -4.5,-92.5 + pos: 49.5,34.5 parent: 8364 - - uid: 28009 + - uid: 4335 components: - type: Transform - pos: -3.5,-92.5 + pos: 50.5,36.5 parent: 8364 - - uid: 28010 + - uid: 4336 components: - type: Transform - pos: -2.5,-92.5 + pos: 51.5,36.5 parent: 8364 - - uid: 28011 + - uid: 4337 components: - type: Transform - pos: -1.5,-92.5 + pos: 75.5,-81.5 parent: 8364 - - uid: 28012 + - uid: 4338 components: - type: Transform - pos: -0.5,-92.5 + pos: 78.5,-81.5 parent: 8364 - - uid: 28013 + - uid: 4339 components: - type: Transform - pos: 1.5,-92.5 + pos: 76.5,-81.5 parent: 8364 - - uid: 28014 + - uid: 4340 components: - type: Transform - pos: 2.5,-92.5 + pos: 77.5,-81.5 parent: 8364 - - uid: 28015 + - uid: 4341 components: - type: Transform - pos: 3.5,-92.5 + pos: 7.5,-89.5 parent: 8364 - - uid: 28016 + - uid: 4342 components: - type: Transform - pos: 4.5,-92.5 + pos: 8.5,-81.5 parent: 8364 - - uid: 28017 + - uid: 4343 components: - type: Transform - pos: 5.5,-92.5 + pos: 50.5,38.5 parent: 8364 - - uid: 28018 + - uid: 4344 components: - type: Transform - pos: 6.5,-92.5 + pos: 52.5,36.5 parent: 8364 - - uid: 28019 + - uid: 4345 components: - type: Transform - pos: 7.5,-92.5 + pos: 49.5,36.5 parent: 8364 - - uid: 28020 + - uid: 4346 components: - type: Transform - pos: 0.5,-92.5 + pos: 53.5,36.5 parent: 8364 -- proto: AtmosFixFreezerMarker - entities: - - uid: 2846 + - uid: 4347 components: - type: Transform - pos: 40.5,-2.5 + pos: -54.5,-55.5 parent: 8364 - - uid: 2847 + - uid: 4348 components: - type: Transform - pos: 39.5,-0.5 + pos: -54.5,-56.5 parent: 8364 - - uid: 2848 + - uid: 4349 components: - type: Transform - pos: 39.5,0.5 + pos: -52.5,-55.5 parent: 8364 - - uid: 10530 + - uid: 4350 components: - type: Transform - pos: 40.5,-0.5 + pos: -54.5,-57.5 parent: 8364 - - uid: 10600 + - uid: 4351 components: - type: Transform - pos: 39.5,-1.5 + pos: 49.5,38.5 parent: 8364 - - uid: 10602 + - uid: 4352 components: - type: Transform - pos: 39.5,-2.5 + pos: 53.5,38.5 parent: 8364 - - uid: 10606 + - uid: 4353 components: - type: Transform - pos: 38.5,0.5 + pos: 52.5,38.5 parent: 8364 - - uid: 10607 + - uid: 4354 components: - type: Transform - pos: 38.5,-0.5 + pos: 51.5,38.5 parent: 8364 - - uid: 10611 + - uid: 4361 components: - type: Transform - pos: 38.5,-1.5 + pos: -52.5,-59.5 parent: 8364 - - uid: 10617 + - uid: 4362 components: - type: Transform - pos: 38.5,-2.5 + pos: -52.5,-58.5 parent: 8364 - - uid: 10618 + - uid: 4363 components: - type: Transform - pos: 37.5,0.5 + pos: -52.5,-57.5 parent: 8364 - - uid: 10635 + - uid: 4364 components: - type: Transform - pos: 37.5,-0.5 + pos: -52.5,-56.5 parent: 8364 - - uid: 10636 + - uid: 4377 components: - type: Transform - pos: 37.5,-1.5 + pos: -54.5,-58.5 parent: 8364 - - uid: 10717 + - uid: 4378 components: - type: Transform - pos: 37.5,-2.5 + pos: -54.5,-59.5 parent: 8364 - - uid: 10720 + - uid: 4409 components: - type: Transform - pos: 36.5,0.5 + pos: -9.5,-79.5 parent: 8364 - - uid: 10721 + - uid: 4411 components: - type: Transform - pos: 36.5,-0.5 + pos: -8.5,-82.5 parent: 8364 - - uid: 10726 + - uid: 4412 components: - type: Transform - pos: 36.5,-1.5 + pos: -8.5,-90.5 parent: 8364 - - uid: 10727 + - uid: 4414 components: - type: Transform - pos: 36.5,-2.5 + pos: -8.5,-81.5 parent: 8364 - - uid: 10728 + - uid: 4415 components: - type: Transform - pos: 35.5,0.5 + pos: -8.5,-84.5 parent: 8364 - - uid: 10729 + - uid: 4416 components: - type: Transform - pos: 35.5,-0.5 + pos: 51.5,30.5 parent: 8364 - - uid: 10730 + - uid: 4417 components: - type: Transform - pos: 35.5,-1.5 + pos: 85.5,-75.5 parent: 8364 - - uid: 10731 + - uid: 4418 components: - type: Transform - pos: 35.5,-2.5 + pos: 87.5,-75.5 parent: 8364 - - uid: 22554 + - uid: 4419 components: - type: Transform - pos: 40.5,-1.5 + pos: 86.5,-73.5 parent: 8364 - - uid: 22651 + - uid: 4420 components: - type: Transform - pos: 40.5,0.5 + pos: 1.5,-80.5 parent: 8364 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 8204 + - uid: 4421 components: - type: Transform - pos: 12.5,-64.5 + pos: -1.5,-80.5 parent: 8364 - - uid: 8205 + - uid: 4422 components: - type: Transform - pos: 13.5,-66.5 + pos: 0.5,-80.5 parent: 8364 - - uid: 8206 + - uid: 4423 components: - type: Transform - pos: 14.5,-65.5 + pos: 14.5,-83.5 parent: 8364 - - uid: 9347 + - uid: 4424 components: - type: Transform - pos: 14.5,-66.5 + pos: 13.5,-84.5 parent: 8364 - - uid: 15467 + - uid: 4427 components: - type: Transform - pos: 14.5,-64.5 + pos: 15.5,-85.5 parent: 8364 - - uid: 16130 + - uid: 4428 components: - type: Transform - pos: 13.5,-65.5 + pos: 16.5,-83.5 parent: 8364 - - uid: 16259 + - uid: 4430 components: - type: Transform - pos: 13.5,-64.5 + pos: 14.5,-85.5 parent: 8364 - - uid: 16285 + - uid: 4431 components: - type: Transform - pos: 12.5,-66.5 + pos: 15.5,-83.5 parent: 8364 - - uid: 16460 + - uid: 4432 components: - type: Transform - pos: 12.5,-65.5 + pos: 14.5,-84.5 parent: 8364 -- proto: AtmosFixOxygenMarker - entities: - - uid: 9348 + - uid: 4442 components: - type: Transform - pos: 16.5,-64.5 + pos: 4.5,-80.5 parent: 8364 - - uid: 9349 + - uid: 4443 components: - type: Transform - pos: 16.5,-66.5 + pos: 3.5,-79.5 parent: 8364 - - uid: 9350 + - uid: 4444 components: - type: Transform - pos: 17.5,-64.5 + pos: 3.5,-80.5 parent: 8364 - - uid: 9351 + - uid: 4445 components: - type: Transform - pos: 17.5,-65.5 + pos: 2.5,-80.5 parent: 8364 - - uid: 9352 + - uid: 4446 components: - type: Transform - pos: 18.5,-64.5 + pos: -7.5,-80.5 parent: 8364 - - uid: 9353 + - uid: 4447 components: - type: Transform - pos: 18.5,-65.5 + pos: 72.5,15.5 parent: 8364 - - uid: 9354 + - uid: 4449 components: - type: Transform - pos: 18.5,-66.5 + pos: 50.5,28.5 parent: 8364 - - uid: 15468 + - uid: 4450 components: - type: Transform - pos: 16.5,-65.5 + pos: 53.5,30.5 parent: 8364 - - uid: 15469 + - uid: 4451 components: - type: Transform - pos: 17.5,-66.5 + pos: 52.5,28.5 parent: 8364 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 14723 + - uid: 4452 components: - type: Transform - pos: 26.5,-48.5 + pos: -3.5,-80.5 parent: 8364 - - uid: 14724 + - uid: 4453 components: - type: Transform - pos: 26.5,-47.5 + pos: -4.5,-80.5 parent: 8364 - - uid: 14727 + - uid: 4454 components: - type: Transform - pos: 27.5,-48.5 + pos: -5.5,-80.5 parent: 8364 - - uid: 15003 + - uid: 4455 components: - type: Transform - pos: 27.5,-47.5 + pos: -6.5,-80.5 parent: 8364 - - uid: 15318 + - uid: 4466 components: - type: Transform - pos: 27.5,-46.5 + pos: 21.5,-83.5 parent: 8364 - - uid: 15353 + - uid: 4467 components: - type: Transform - pos: 28.5,-47.5 + pos: 21.5,-84.5 parent: 8364 - - uid: 15374 + - uid: 4468 components: - type: Transform - pos: 28.5,-46.5 + pos: 21.5,-85.5 parent: 8364 - - uid: 15475 + - uid: 4469 components: - type: Transform - pos: 26.5,-46.5 + pos: 22.5,-83.5 parent: 8364 - - uid: 15476 + - uid: 4470 components: - type: Transform - pos: 28.5,-48.5 + pos: 22.5,-84.5 parent: 8364 -- proto: Autolathe - entities: - - uid: 13406 + - uid: 4471 components: - type: Transform - pos: 69.5,-19.5 + pos: 22.5,-85.5 parent: 8364 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - - uid: 15361 + - uid: 4472 components: - type: Transform - pos: -28.5,-24.5 + pos: 84.5,-83.5 parent: 8364 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - - uid: 17801 + - uid: 4473 components: - type: Transform - pos: 2.5,-52.5 + pos: 86.5,-83.5 parent: 8364 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth -- proto: BackgammonBoard - entities: - - uid: 6519 + - uid: 4477 components: - type: Transform - pos: 24.02721,-8.402973 + pos: 86.5,-79.5 parent: 8364 - - uid: 11674 + - uid: 4478 components: - type: Transform - pos: 63.5,-7.5 + pos: 47.5,41.5 parent: 8364 -- proto: BagpipeInstrument - entities: - - uid: 26004 + - uid: 4479 components: - type: Transform - pos: 22.356016,2.7478647 + pos: 42.5,36.5 parent: 8364 -- proto: BannerCargo - entities: - - uid: 27596 + - uid: 4480 components: - type: Transform - pos: -32.5,-22.5 + pos: 44.5,36.5 parent: 8364 -- proto: BannerNanotrasen - entities: - - uid: 21765 + - uid: 4481 components: - type: Transform - pos: -24.5,-9.5 + pos: -0.5,41.5 parent: 8364 -- proto: Barricade - entities: - - uid: 54 + - uid: 4482 components: - type: Transform - pos: 22.5,26.5 + pos: 45.5,36.5 parent: 8364 - - uid: 55 + - uid: 4483 components: - type: Transform - pos: 22.5,29.5 + pos: 43.5,36.5 parent: 8364 - - uid: 56 + - uid: 4484 components: - type: Transform - pos: 22.5,28.5 + pos: -50.5,-57.5 parent: 8364 - - uid: 514 + - uid: 4485 components: - type: Transform - pos: -50.5,3.5 + pos: -50.5,-55.5 parent: 8364 - - uid: 5016 + - uid: 4486 components: - type: Transform - pos: -20.5,12.5 + pos: -50.5,-56.5 parent: 8364 - - uid: 11390 + - uid: 4487 components: - type: Transform - pos: 65.5,15.5 + pos: -50.5,-58.5 parent: 8364 - - uid: 11653 + - uid: 4488 components: - type: Transform - pos: 62.5,16.5 + pos: 7.5,-87.5 parent: 8364 - - uid: 11654 + - uid: 4489 components: - type: Transform - pos: 61.5,16.5 + pos: 77.5,-83.5 parent: 8364 - - uid: 11655 + - uid: 4490 components: - type: Transform - pos: 60.5,16.5 + pos: 76.5,-83.5 parent: 8364 - - uid: 13253 + - uid: 4491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,19.5 + pos: 75.5,-83.5 parent: 8364 - - uid: 13254 + - uid: 4626 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,22.5 + pos: 16.5,-84.5 parent: 8364 - - uid: 13308 + - uid: 4627 components: - type: Transform - pos: -39.5,21.5 + pos: 16.5,-85.5 parent: 8364 - - uid: 13484 + - uid: 4628 components: - type: Transform - pos: -23.5,4.5 + pos: 9.5,-82.5 parent: 8364 - - uid: 13485 + - uid: 4629 components: - type: Transform - pos: -18.5,4.5 + pos: 7.5,-84.5 parent: 8364 - - uid: 13755 + - uid: 4630 components: - type: Transform - pos: -55.5,7.5 + pos: -0.5,-80.5 parent: 8364 - - uid: 15300 + - uid: 4631 components: - type: Transform - pos: -30.5,-47.5 + pos: 84.5,-73.5 parent: 8364 - - uid: 15578 + - uid: 4632 components: - type: Transform - pos: -34.5,-45.5 + pos: 84.5,-79.5 parent: 8364 - - uid: 15595 + - uid: 4633 components: - type: Transform - pos: -33.5,-52.5 + pos: 85.5,-79.5 parent: 8364 - - uid: 15596 + - uid: 4634 components: - type: Transform - pos: -30.5,-54.5 + pos: 81.5,-86.5 parent: 8364 - - uid: 15597 + - uid: 4635 components: - type: Transform - pos: -30.5,-53.5 + pos: 83.5,-73.5 parent: 8364 - - uid: 15598 + - uid: 4636 components: - type: Transform - pos: -33.5,-55.5 + pos: 85.5,-73.5 parent: 8364 - - uid: 15711 + - uid: 4637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-58.5 + pos: 87.5,-73.5 parent: 8364 - - uid: 15803 + - uid: 4638 components: - type: Transform - pos: -30.5,-44.5 + pos: 86.5,-75.5 parent: 8364 - - uid: 15944 + - uid: 4639 components: - type: Transform - pos: -19.5,-53.5 + pos: 50.5,30.5 parent: 8364 - - uid: 20038 + - uid: 4640 components: - type: Transform - pos: 87.5,-23.5 + pos: 85.5,-83.5 parent: 8364 - - uid: 20039 + - uid: 4641 components: - type: Transform - pos: 87.5,-28.5 + pos: 87.5,-83.5 parent: 8364 -- proto: BarricadeBlock - entities: - - uid: 2501 + - uid: 4642 components: - type: Transform - pos: -31.5,13.5 + pos: 87.5,-79.5 parent: 8364 -- proto: BarSignMaidCafe - entities: - - uid: 5444 + - uid: 4643 components: - type: Transform - pos: 26.5,-11.5 + pos: 44.5,38.5 parent: 8364 -- proto: BarSignOfficerBeersky - entities: - - uid: 7136 + - uid: 4644 components: - type: Transform - pos: -34.5,17.5 + pos: 41.5,36.5 parent: 8364 -- proto: BaseComputer - entities: - - uid: 5355 + - uid: 4645 components: - type: Transform - pos: 56.5,-29.5 + pos: 1.5,41.5 parent: 8364 - - uid: 21139 + - uid: 4648 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-20.5 + pos: -47.5,34.5 parent: 8364 - - uid: 25918 + - uid: 4650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,-51.5 + pos: -1.5,41.5 parent: 8364 - - uid: 27190 + - uid: 4652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-86.5 + pos: 51.5,28.5 parent: 8364 -- proto: BaseGasCondenser - entities: - - uid: 5562 + - uid: 4657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-19.5 + pos: 52.5,30.5 parent: 8364 - - uid: 18633 + - uid: 4678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-42.5 + pos: 49.5,28.5 parent: 8364 -- proto: Basketball - entities: - - uid: 815 + - uid: 4680 components: - type: Transform - pos: 33.5,-2.5 + pos: 53.5,28.5 parent: 8364 -- proto: BassGuitarInstrument - entities: - - uid: 25901 + - uid: 4684 components: - type: Transform - pos: 22.460173,2.6171174 + pos: 79.5,15.5 parent: 8364 -- proto: BeachBall - entities: - - uid: 20679 + - uid: 4696 components: - type: Transform - pos: 34.165627,9.592048 + pos: 87.5,-81.5 parent: 8364 - - uid: 27654 + - uid: 4699 components: - type: Transform - pos: 6.549402,-27.166641 + pos: 6.5,-80.5 parent: 8364 -- proto: Beaker - entities: - - uid: 7260 + - uid: 4834 components: - type: Transform - pos: 29.5,1.5 + pos: 5.5,-79.5 parent: 8364 - - uid: 21180 + - uid: 4935 components: - type: Transform - pos: 74.27338,-18.287746 + pos: -9.5,-82.5 parent: 8364 - - uid: 26550 + - uid: 4936 components: - type: Transform - pos: -6.0280805,52.564606 + pos: -8.5,-83.5 parent: 8364 -- proto: Bed - entities: - - uid: 777 + - uid: 4937 components: - type: Transform - pos: -31.5,-24.5 + pos: -8.5,-85.5 parent: 8364 - - uid: 2008 + - uid: 4938 components: - type: Transform - pos: 55.5,-49.5 + pos: -7.5,-81.5 parent: 8364 - - uid: 2037 + - uid: 4939 components: - type: Transform - pos: 26.5,-34.5 + pos: -9.5,-80.5 parent: 8364 - - uid: 2214 + - uid: 4962 components: - type: Transform - pos: 26.5,-35.5 + pos: -7.5,-79.5 parent: 8364 - - uid: 2222 + - uid: 4963 components: - type: Transform - pos: 24.5,-28.5 + pos: -6.5,-79.5 parent: 8364 - - uid: 5221 + - uid: 4964 components: - type: Transform - pos: 8.5,-21.5 + pos: -5.5,-79.5 parent: 8364 - - uid: 5757 + - uid: 4965 components: - type: Transform - pos: 24.5,-29.5 + pos: -4.5,-79.5 parent: 8364 - - uid: 6469 + - uid: 4966 components: - type: Transform - pos: 6.5,9.5 + pos: -2.5,-80.5 parent: 8364 - - uid: 6470 + - uid: 5197 components: - type: Transform - pos: 6.5,12.5 + pos: 23.5,-83.5 parent: 8364 - - uid: 6471 + - uid: 5198 components: - type: Transform - pos: 6.5,15.5 + pos: 23.5,-84.5 parent: 8364 - - uid: 6482 + - uid: 5200 components: - type: Transform - pos: 13.5,14.5 + pos: 23.5,-85.5 parent: 8364 - - uid: 6483 + - uid: 5201 components: - type: Transform - pos: 17.5,14.5 + pos: 20.5,-85.5 parent: 8364 - - uid: 6670 + - uid: 5273 components: - type: Transform - pos: 6.5,6.5 + pos: 8.5,-89.5 parent: 8364 - - uid: 6935 + - uid: 6091 components: - type: Transform - pos: 37.5,-51.5 + pos: -46.5,32.5 parent: 8364 - - uid: 8422 + - uid: 6092 components: - type: Transform - pos: 44.5,-58.5 + pos: -47.5,32.5 parent: 8364 - - uid: 8630 + - uid: 6093 components: - type: Transform - pos: -10.5,23.5 + pos: -57.5,-61.5 parent: 8364 - - uid: 8631 + - uid: 6096 components: - type: Transform - pos: -6.5,23.5 + pos: -43.5,34.5 parent: 8364 - - uid: 8632 + - uid: 6419 components: - type: Transform - pos: -2.5,23.5 + pos: 5.5,45.5 parent: 8364 - - uid: 9361 + - uid: 6596 components: - type: Transform - pos: -6.5,31.5 + pos: -34.5,14.5 parent: 8364 - - uid: 10570 + - uid: 8045 components: - type: Transform - pos: 33.5,-0.5 + pos: -48.5,-59.5 parent: 8364 - - uid: 10774 + - uid: 8076 components: - type: Transform - pos: 46.5,-58.5 + pos: -50.5,-59.5 parent: 8364 - - uid: 15326 + - uid: 9355 components: - type: Transform - pos: 63.5,-3.5 + pos: 26.5,-55.5 parent: 8364 - - uid: 18647 + - uid: 9378 components: - type: Transform - pos: -2.5,-61.5 + pos: 26.5,-54.5 parent: 8364 - - uid: 19064 + - uid: 9385 components: - type: Transform - pos: 24.5,-27.5 + pos: 27.5,-56.5 parent: 8364 - - uid: 20156 + - uid: 9386 components: - type: Transform - pos: -19.5,16.5 + pos: 27.5,-54.5 parent: 8364 - - uid: 21210 + - uid: 9387 components: - type: Transform - pos: 71.5,-35.5 + pos: 28.5,-56.5 parent: 8364 - - uid: 21244 + - uid: 9595 components: - type: Transform - pos: 15.5,41.5 + pos: 28.5,-55.5 parent: 8364 - - uid: 21743 + - uid: 9708 components: - type: Transform - pos: -30.5,-74.5 + pos: 26.5,-52.5 parent: 8364 - - uid: 26349 + - uid: 9710 components: - type: Transform - pos: -21.5,40.5 + pos: 26.5,-51.5 parent: 8364 - - uid: 26350 + - uid: 9711 components: - type: Transform - pos: -18.5,40.5 + pos: 26.5,-50.5 parent: 8364 - - uid: 26351 + - uid: 10555 components: - type: Transform - pos: -17.5,48.5 + pos: -48.5,-58.5 parent: 8364 - - uid: 26352 + - uid: 10706 components: - type: Transform - pos: -20.5,48.5 + pos: -44.5,-67.5 parent: 8364 -- proto: BedsheetCaptain - entities: - - uid: 5315 + - uid: 10855 components: - type: Transform - pos: 8.5,-21.5 + pos: 79.5,-79.5 parent: 8364 -- proto: BedsheetCE - entities: - - uid: 17952 + - uid: 10869 components: - type: Transform - pos: -2.5,-61.5 + pos: 79.5,-77.5 parent: 8364 -- proto: BedsheetCosmos - entities: - - uid: 5579 + - uid: 11751 components: - type: Transform - pos: 6.5,6.5 + pos: -45.5,32.5 parent: 8364 -- proto: BedsheetGreen - entities: - - uid: 5471 + - uid: 11759 components: - type: Transform - pos: 44.5,-58.5 + pos: 6.5,-81.5 parent: 8364 - - uid: 5472 + - uid: 11914 components: - type: Transform - pos: 37.5,-51.5 + pos: 27.5,-51.5 parent: 8364 - - uid: 5916 + - uid: 12084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-58.5 + pos: 27.5,-50.5 parent: 8364 -- proto: BedsheetHOP - entities: - - uid: 21278 + - uid: 12085 components: - type: Transform - pos: -10.5,-27.5 + pos: 28.5,-52.5 parent: 8364 -- proto: BedsheetHOS - entities: - - uid: 21245 + - uid: 14481 components: - type: Transform - pos: 15.5,41.5 + pos: 4.5,-79.5 parent: 8364 -- proto: BedsheetMedical - entities: - - uid: 5451 + - uid: 14482 components: - type: Transform - pos: 32.5,-27.5 + pos: 6.5,-79.5 parent: 8364 - - uid: 5452 + - uid: 14483 components: - type: Transform - pos: 30.5,-27.5 + pos: -46.5,-58.5 parent: 8364 - - uid: 9485 + - uid: 14505 components: - type: Transform - pos: -6.5,31.5 + pos: 85.5,-77.5 parent: 8364 - - uid: 18601 + - uid: 14506 components: - type: Transform - pos: 29.5,-36.5 + pos: 15.5,-49.5 parent: 8364 - - uid: 18602 + - uid: 14641 components: - type: Transform - pos: 32.5,-36.5 + pos: 28.5,-50.5 parent: 8364 - - uid: 18646 + - uid: 15375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-29.5 + pos: 26.5,-44.5 parent: 8364 - - uid: 19287 + - uid: 15376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 + pos: 26.5,-42.5 parent: 8364 - - uid: 20142 + - uid: 15451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-27.5 + pos: 27.5,-44.5 parent: 8364 -- proto: BedsheetOrange - entities: - - uid: 26353 + - uid: 15452 components: - type: Transform - pos: -20.5,48.5 + pos: 27.5,-43.5 parent: 8364 - - uid: 26355 + - uid: 15453 components: - type: Transform - pos: -18.5,40.5 + pos: 28.5,-44.5 parent: 8364 - - uid: 26356 + - uid: 15454 components: - type: Transform - pos: -21.5,40.5 + pos: 28.5,-43.5 parent: 8364 -- proto: BedsheetQM - entities: - - uid: 5287 + - uid: 15470 components: - type: Transform - pos: -31.5,-24.5 + pos: 26.5,-56.5 parent: 8364 -- proto: BedsheetRD - entities: - - uid: 21243 + - uid: 15471 components: - type: Transform - pos: 71.5,-35.5 + pos: 27.5,-55.5 parent: 8364 -- proto: BedsheetSpawner - entities: - - uid: 5583 + - uid: 15472 components: - type: Transform - pos: 6.5,15.5 + pos: 28.5,-54.5 parent: 8364 - - uid: 6461 + - uid: 15473 components: - type: Transform - pos: 55.5,-49.5 + pos: 27.5,-52.5 parent: 8364 - - uid: 6465 + - uid: 15474 components: - type: Transform - pos: 6.5,9.5 + pos: 28.5,-51.5 parent: 8364 - - uid: 6466 + - uid: 15477 components: - type: Transform - pos: 6.5,12.5 + pos: 26.5,-43.5 parent: 8364 - - uid: 6484 + - uid: 15478 components: - type: Transform - pos: 13.5,14.5 + pos: 27.5,-42.5 parent: 8364 - - uid: 6485 + - uid: 15480 components: - type: Transform - pos: 17.5,14.5 + pos: 28.5,-42.5 parent: 8364 - - uid: 8925 + - uid: 17651 components: - type: Transform - pos: -19.5,16.5 + pos: 14.5,-52.5 parent: 8364 - - uid: 10569 + - uid: 19031 components: - type: Transform - pos: 33.5,-0.5 + pos: 16.5,-51.5 parent: 8364 - - uid: 15325 + - uid: 19032 components: - type: Transform - pos: 63.5,-3.5 + pos: 16.5,-52.5 parent: 8364 -- proto: BedsheetSyndie - entities: - - uid: 26354 + - uid: 21772 components: - type: Transform - pos: -17.5,48.5 + pos: 14.5,-50.5 parent: 8364 -- proto: BedsheetWhite - entities: - - uid: 8627 + - uid: 22450 components: - type: Transform - pos: -10.5,23.5 + pos: -48.5,-55.5 parent: 8364 - - uid: 8628 + - uid: 22451 components: - type: Transform - pos: -6.5,23.5 + pos: 3.5,41.5 parent: 8364 - - uid: 8629 + - uid: 22452 components: - type: Transform - pos: -2.5,23.5 + pos: 5.5,43.5 parent: 8364 -- proto: BigBox - entities: - - uid: 2277 + - uid: 22453 components: - type: Transform - pos: 46.455715,-47.446358 + pos: 5.5,44.5 parent: 8364 - - uid: 25967 + - uid: 22454 components: - type: Transform - pos: -25.023743,-15.516048 + pos: 42.5,38.5 parent: 8364 -- proto: BikeHorn + - uid: 22455 + components: + - type: Transform + pos: 41.5,38.5 + parent: 8364 + - uid: 22456 + components: + - type: Transform + pos: 43.5,38.5 + parent: 8364 + - uid: 22457 + components: + - type: Transform + pos: 87.5,-77.5 + parent: 8364 + - uid: 22513 + components: + - type: Transform + pos: 86.5,-77.5 + parent: 8364 + - uid: 22514 + components: + - type: Transform + pos: -8.5,-86.5 + parent: 8364 + - uid: 22515 + components: + - type: Transform + pos: -8.5,-88.5 + parent: 8364 + - uid: 22527 + components: + - type: Transform + pos: -9.5,-78.5 + parent: 8364 + - uid: 22528 + components: + - type: Transform + pos: -9.5,-81.5 + parent: 8364 + - uid: 22547 + components: + - type: Transform + pos: 20.5,-83.5 + parent: 8364 + - uid: 22548 + components: + - type: Transform + pos: 20.5,-84.5 + parent: 8364 + - uid: 22551 + components: + - type: Transform + pos: 86.5,-81.5 + parent: 8364 + - uid: 22556 + components: + - type: Transform + pos: 85.5,-81.5 + parent: 8364 + - uid: 22557 + components: + - type: Transform + pos: 83.5,-81.5 + parent: 8364 + - uid: 22573 + components: + - type: Transform + pos: 83.5,-77.5 + parent: 8364 + - uid: 22591 + components: + - type: Transform + pos: 84.5,-77.5 + parent: 8364 + - uid: 22600 + components: + - type: Transform + pos: 83.5,-75.5 + parent: 8364 + - uid: 22601 + components: + - type: Transform + pos: 5.5,-80.5 + parent: 8364 + - uid: 22644 + components: + - type: Transform + pos: -48.5,-56.5 + parent: 8364 + - uid: 22658 + components: + - type: Transform + pos: -46.5,-59.5 + parent: 8364 + - uid: 22695 + components: + - type: Transform + pos: -48.5,-57.5 + parent: 8364 + - uid: 22803 + components: + - type: Transform + pos: 14.5,-51.5 + parent: 8364 + - uid: 22946 + components: + - type: Transform + pos: 15.5,-52.5 + parent: 8364 + - uid: 23134 + components: + - type: Transform + pos: -46.5,-56.5 + parent: 8364 + - uid: 23135 + components: + - type: Transform + pos: 0.5,41.5 + parent: 8364 + - uid: 23139 + components: + - type: Transform + pos: -8.5,-89.5 + parent: 8364 + - uid: 23143 + components: + - type: Transform + pos: 15.5,-51.5 + parent: 8364 + - uid: 23155 + components: + - type: Transform + pos: 84.5,-81.5 + parent: 8364 + - uid: 23166 + components: + - type: Transform + pos: 15.5,-53.5 + parent: 8364 + - uid: 23167 + components: + - type: Transform + pos: 16.5,-50.5 + parent: 8364 + - uid: 23319 + components: + - type: Transform + pos: -8.5,-79.5 + parent: 8364 + - uid: 23533 + components: + - type: Transform + pos: 83.5,-79.5 + parent: 8364 + - uid: 23536 + components: + - type: Transform + pos: 84.5,-75.5 + parent: 8364 + - uid: 23537 + components: + - type: Transform + pos: 2.5,41.5 + parent: 8364 + - uid: 23538 + components: + - type: Transform + pos: -46.5,-57.5 + parent: 8364 + - uid: 23922 + components: + - type: Transform + pos: -46.5,-64.5 + parent: 8364 + - uid: 23928 + components: + - type: Transform + pos: -46.5,-66.5 + parent: 8364 + - uid: 23929 + components: + - type: Transform + pos: -50.5,-65.5 + parent: 8364 + - uid: 23931 + components: + - type: Transform + pos: -52.5,-66.5 + parent: 8364 + - uid: 23932 + components: + - type: Transform + pos: -50.5,-66.5 + parent: 8364 + - uid: 23933 + components: + - type: Transform + pos: -50.5,-64.5 + parent: 8364 + - uid: 23934 + components: + - type: Transform + pos: -50.5,-67.5 + parent: 8364 + - uid: 23937 + components: + - type: Transform + pos: -50.5,-63.5 + parent: 8364 + - uid: 23939 + components: + - type: Transform + pos: -52.5,-63.5 + parent: 8364 + - uid: 23941 + components: + - type: Transform + pos: -46.5,-63.5 + parent: 8364 + - uid: 23946 + components: + - type: Transform + pos: -48.5,-65.5 + parent: 8364 + - uid: 23947 + components: + - type: Transform + pos: -9.5,-87.5 + parent: 8364 + - uid: 23948 + components: + - type: Transform + pos: -9.5,-83.5 + parent: 8364 + - uid: 24187 + components: + - type: Transform + pos: -9.5,-84.5 + parent: 8364 + - uid: 24188 + components: + - type: Transform + pos: -9.5,-88.5 + parent: 8364 + - uid: 24384 + components: + - type: Transform + pos: -48.5,-63.5 + parent: 8364 + - uid: 24979 + components: + - type: Transform + pos: -54.5,-64.5 + parent: 8364 + - uid: 24982 + components: + - type: Transform + pos: -54.5,-66.5 + parent: 8364 + - uid: 24983 + components: + - type: Transform + pos: -52.5,-67.5 + parent: 8364 + - uid: 24984 + components: + - type: Transform + pos: -54.5,-65.5 + parent: 8364 + - uid: 25055 + components: + - type: Transform + pos: 44.5,30.5 + parent: 8364 + - uid: 25063 + components: + - type: Transform + pos: 41.5,32.5 + parent: 8364 + - uid: 25074 + components: + - type: Transform + pos: 45.5,30.5 + parent: 8364 + - uid: 25077 + components: + - type: Transform + pos: -52.5,-65.5 + parent: 8364 + - uid: 25087 + components: + - type: Transform + pos: -51.5,28.5 + parent: 8364 + - uid: 25150 + components: + - type: Transform + pos: -55.5,28.5 + parent: 8364 + - uid: 25158 + components: + - type: Transform + pos: -53.5,34.5 + parent: 8364 + - uid: 25163 + components: + - type: Transform + pos: 65.5,-78.5 + parent: 8364 + - uid: 25165 + components: + - type: Transform + pos: -44.5,34.5 + parent: 8364 + - uid: 25184 + components: + - type: Transform + pos: -9.5,-91.5 + parent: 8364 + - uid: 25188 + components: + - type: Transform + pos: -47.5,36.5 + parent: 8364 + - uid: 25192 + components: + - type: Transform + pos: 75.5,-75.5 + parent: 8364 + - uid: 25193 + components: + - type: Transform + pos: 77.5,-77.5 + parent: 8364 + - uid: 25195 + components: + - type: Transform + pos: 53.5,34.5 + parent: 8364 + - uid: 25202 + components: + - type: Transform + pos: -43.5,32.5 + parent: 8364 + - uid: 25203 + components: + - type: Transform + pos: 44.5,32.5 + parent: 8364 + - uid: 25223 + components: + - type: Transform + pos: 5.5,-93.5 + parent: 8364 + - uid: 25224 + components: + - type: Transform + pos: -5.5,-93.5 + parent: 8364 + - uid: 25241 + components: + - type: Transform + pos: 3.5,-93.5 + parent: 8364 + - uid: 25347 + components: + - type: Transform + pos: -53.5,28.5 + parent: 8364 + - uid: 25453 + components: + - type: Transform + pos: -51.5,32.5 + parent: 8364 + - uid: 25458 + components: + - type: Transform + pos: 42.5,32.5 + parent: 8364 + - uid: 25479 + components: + - type: Transform + pos: 45.5,32.5 + parent: 8364 + - uid: 25486 + components: + - type: Transform + pos: 43.5,32.5 + parent: 8364 + - uid: 25495 + components: + - type: Transform + pos: -48.5,-66.5 + parent: 8364 + - uid: 25677 + components: + - type: Transform + pos: -0.5,-86.5 + parent: 8364 + - uid: 25678 + components: + - type: Transform + pos: -10.5,-85.5 + parent: 8364 + - uid: 25892 + components: + - type: Transform + pos: -54.5,-67.5 + parent: 8364 + - uid: 25897 + components: + - type: Transform + pos: -52.5,32.5 + parent: 8364 + - uid: 25927 + components: + - type: Transform + pos: -54.5,28.5 + parent: 8364 + - uid: 25949 + components: + - type: Transform + pos: 65.5,-79.5 + parent: 8364 + - uid: 25966 + components: + - type: Transform + pos: -55.5,32.5 + parent: 8364 + - uid: 25975 + components: + - type: Transform + pos: 49.5,30.5 + parent: 8364 + - uid: 25982 + components: + - type: Transform + pos: -45.5,34.5 + parent: 8364 + - uid: 26033 + components: + - type: Transform + pos: -6.5,-93.5 + parent: 8364 + - uid: 26065 + components: + - type: Transform + pos: -10.5,-91.5 + parent: 8364 + - uid: 26072 + components: + - type: Transform + pos: -7.5,-93.5 + parent: 8364 + - uid: 26081 + components: + - type: Transform + pos: -15.5,-82.5 + parent: 8364 + - uid: 26082 + components: + - type: Transform + pos: -10.5,-84.5 + parent: 8364 + - uid: 26088 + components: + - type: Transform + pos: -14.5,-82.5 + parent: 8364 + - uid: 26102 + components: + - type: Transform + pos: 56.5,-78.5 + parent: 8364 + - uid: 26103 + components: + - type: Transform + pos: -3.5,-93.5 + parent: 8364 + - uid: 26104 + components: + - type: Transform + pos: 2.5,-93.5 + parent: 8364 + - uid: 26106 + components: + - type: Transform + pos: 8.5,-91.5 + parent: 8364 + - uid: 26107 + components: + - type: Transform + pos: 8.5,-90.5 + parent: 8364 + - uid: 26381 + components: + - type: Transform + pos: 6.5,-91.5 + parent: 8364 + - uid: 26388 + components: + - type: Transform + pos: -46.5,-65.5 + parent: 8364 + - uid: 26628 + components: + - type: Transform + pos: -52.5,-64.5 + parent: 8364 + - uid: 26670 + components: + - type: Transform + pos: -48.5,-67.5 + parent: 8364 + - uid: 26877 + components: + - type: Transform + pos: -54.5,-63.5 + parent: 8364 + - uid: 26924 + components: + - type: Transform + pos: -46.5,34.5 + parent: 8364 + - uid: 26930 + components: + - type: Transform + pos: -52.5,28.5 + parent: 8364 + - uid: 26946 + components: + - type: Transform + pos: -44.5,-59.5 + parent: 8364 + - uid: 26947 + components: + - type: Transform + pos: -46.5,-55.5 + parent: 8364 + - uid: 26948 + components: + - type: Transform + pos: -8.5,-80.5 + parent: 8364 + - uid: 26949 + components: + - type: Transform + pos: -8.5,-87.5 + parent: 8364 + - uid: 26951 + components: + - type: Transform + pos: 45.5,34.5 + parent: 8364 + - uid: 26961 + components: + - type: Transform + pos: 44.5,34.5 + parent: 8364 + - uid: 26967 + components: + - type: Transform + pos: -51.5,34.5 + parent: 8364 + - uid: 26968 + components: + - type: Transform + pos: -43.5,28.5 + parent: 8364 + - uid: 26969 + components: + - type: Transform + pos: -52.5,36.5 + parent: 8364 + - uid: 26970 + components: + - type: Transform + pos: -55.5,30.5 + parent: 8364 + - uid: 26971 + components: + - type: Transform + pos: -9.5,-86.5 + parent: 8364 + - uid: 26972 + components: + - type: Transform + pos: -9.5,-89.5 + parent: 8364 + - uid: 26976 + components: + - type: Transform + pos: -9.5,-90.5 + parent: 8364 + - uid: 26981 + components: + - type: Transform + pos: -44.5,-57.5 + parent: 8364 + - uid: 26982 + components: + - type: Transform + pos: -44.5,-65.5 + parent: 8364 + - uid: 26983 + components: + - type: Transform + pos: -44.5,-58.5 + parent: 8364 + - uid: 27004 + components: + - type: Transform + pos: -49.5,41.5 + parent: 8364 + - uid: 27005 + components: + - type: Transform + pos: -55.5,36.5 + parent: 8364 + - uid: 27006 + components: + - type: Transform + pos: -47.5,28.5 + parent: 8364 + - uid: 27014 + components: + - type: Transform + pos: -54.5,30.5 + parent: 8364 + - uid: 27015 + components: + - type: Transform + pos: -47.5,30.5 + parent: 8364 + - uid: 27032 + components: + - type: Transform + pos: 51.5,32.5 + parent: 8364 + - uid: 27035 + components: + - type: Transform + pos: 52.5,32.5 + parent: 8364 + - uid: 27039 + components: + - type: Transform + pos: -46.5,38.5 + parent: 8364 + - uid: 27040 + components: + - type: Transform + pos: -55.5,34.5 + parent: 8364 + - uid: 27041 + components: + - type: Transform + pos: 67.5,-76.5 + parent: 8364 + - uid: 27042 + components: + - type: Transform + pos: 68.5,-75.5 + parent: 8364 + - uid: 27069 + components: + - type: Transform + pos: -36.5,16.5 + parent: 8364 + - uid: 27070 + components: + - type: Transform + pos: -46.5,28.5 + parent: 8364 + - uid: 27071 + components: + - type: Transform + pos: -44.5,28.5 + parent: 8364 + - uid: 27072 + components: + - type: Transform + pos: -52.5,30.5 + parent: 8364 + - uid: 27073 + components: + - type: Transform + pos: -51.5,30.5 + parent: 8364 + - uid: 27074 + components: + - type: Transform + pos: -53.5,30.5 + parent: 8364 + - uid: 27075 + components: + - type: Transform + pos: -45.5,30.5 + parent: 8364 + - uid: 27076 + components: + - type: Transform + pos: -43.5,30.5 + parent: 8364 + - uid: 27077 + components: + - type: Transform + pos: -45.5,28.5 + parent: 8364 + - uid: 27078 + components: + - type: Transform + pos: -44.5,30.5 + parent: 8364 + - uid: 27079 + components: + - type: Transform + pos: -35.5,15.5 + parent: 8364 + - uid: 27081 + components: + - type: Transform + pos: 50.5,32.5 + parent: 8364 + - uid: 27082 + components: + - type: Transform + pos: 43.5,34.5 + parent: 8364 + - uid: 27083 + components: + - type: Transform + pos: -43.5,38.5 + parent: 8364 + - uid: 27084 + components: + - type: Transform + pos: -51.5,36.5 + parent: 8364 + - uid: 27085 + components: + - type: Transform + pos: 41.5,34.5 + parent: 8364 + - uid: 27086 + components: + - type: Transform + pos: 49.5,32.5 + parent: 8364 + - uid: 27087 + components: + - type: Transform + pos: 42.5,34.5 + parent: 8364 + - uid: 27088 + components: + - type: Transform + pos: 66.5,-76.5 + parent: 8364 + - uid: 27089 + components: + - type: Transform + pos: 69.5,-79.5 + parent: 8364 + - uid: 27090 + components: + - type: Transform + pos: 67.5,-78.5 + parent: 8364 + - uid: 27091 + components: + - type: Transform + pos: 70.5,-80.5 + parent: 8364 + - uid: 27092 + components: + - type: Transform + pos: 66.5,-78.5 + parent: 8364 + - uid: 27093 + components: + - type: Transform + pos: 43.5,30.5 + parent: 8364 + - uid: 27094 + components: + - type: Transform + pos: 42.5,30.5 + parent: 8364 + - uid: 27095 + components: + - type: Transform + pos: 66.5,-77.5 + parent: 8364 + - uid: 27096 + components: + - type: Transform + pos: 45.5,38.5 + parent: 8364 + - uid: 27097 + components: + - type: Transform + pos: -46.5,30.5 + parent: 8364 + - uid: 27098 + components: + - type: Transform + pos: 45.5,28.5 + parent: 8364 + - uid: 27099 + components: + - type: Transform + pos: 41.5,30.5 + parent: 8364 + - uid: 27100 + components: + - type: Transform + pos: 43.5,28.5 + parent: 8364 + - uid: 27101 + components: + - type: Transform + pos: 44.5,28.5 + parent: 8364 + - uid: 27102 + components: + - type: Transform + pos: 68.5,-76.5 + parent: 8364 + - uid: 27103 + components: + - type: Transform + pos: 67.5,-77.5 + parent: 8364 + - uid: 27104 + components: + - type: Transform + pos: 70.5,-78.5 + parent: 8364 + - uid: 27105 + components: + - type: Transform + pos: 68.5,-77.5 + parent: 8364 + - uid: 27106 + components: + - type: Transform + pos: 42.5,28.5 + parent: 8364 + - uid: 27107 + components: + - type: Transform + pos: 41.5,28.5 + parent: 8364 + - uid: 27108 + components: + - type: Transform + pos: 69.5,-76.5 + parent: 8364 + - uid: 27109 + components: + - type: Transform + pos: 69.5,-78.5 + parent: 8364 + - uid: 27110 + components: + - type: Transform + pos: 70.5,-77.5 + parent: 8364 + - uid: 27111 + components: + - type: Transform + pos: 69.5,-77.5 + parent: 8364 + - uid: 27172 + components: + - type: Transform + pos: -7.5,-91.5 + parent: 8364 + - uid: 27173 + components: + - type: Transform + pos: 66.5,-80.5 + parent: 8364 + - uid: 27174 + components: + - type: Transform + pos: 66.5,-79.5 + parent: 8364 + - uid: 27207 + components: + - type: Transform + pos: 4.5,-93.5 + parent: 8364 + - uid: 27230 + components: + - type: Transform + pos: -8.5,-91.5 + parent: 8364 + - uid: 27236 + components: + - type: Transform + pos: 76.5,-73.5 + parent: 8364 + - uid: 27240 + components: + - type: Transform + pos: 75.5,-73.5 + parent: 8364 + - uid: 27256 + components: + - type: Transform + pos: 78.5,-75.5 + parent: 8364 + - uid: 27257 + components: + - type: Transform + pos: 79.5,-73.5 + parent: 8364 + - uid: 27533 + components: + - type: Transform + pos: 7.5,-91.5 + parent: 8364 + - uid: 27551 + components: + - type: Transform + pos: 76.5,-75.5 + parent: 8364 + - uid: 27552 + components: + - type: Transform + pos: 77.5,-75.5 + parent: 8364 + - uid: 27795 + components: + - type: Transform + pos: -53.5,36.5 + parent: 8364 + - uid: 27796 + components: + - type: Transform + pos: -54.5,36.5 + parent: 8364 + - uid: 27797 + components: + - type: Transform + pos: -45.5,38.5 + parent: 8364 + - uid: 27798 + components: + - type: Transform + pos: -44.5,-55.5 + parent: 8364 + - uid: 27799 + components: + - type: Transform + pos: -44.5,-63.5 + parent: 8364 + - uid: 27800 + components: + - type: Transform + pos: -44.5,-56.5 + parent: 8364 + - uid: 27801 + components: + - type: Transform + pos: -44.5,-64.5 + parent: 8364 + - uid: 27802 + components: + - type: Transform + pos: -54.5,38.5 + parent: 8364 + - uid: 27803 + components: + - type: Transform + pos: -52.5,38.5 + parent: 8364 + - uid: 27804 + components: + - type: Transform + pos: -53.5,38.5 + parent: 8364 + - uid: 27805 + components: + - type: Transform + pos: -55.5,38.5 + parent: 8364 + - uid: 27806 + components: + - type: Transform + pos: -43.5,36.5 + parent: 8364 + - uid: 27807 + components: + - type: Transform + pos: -45.5,36.5 + parent: 8364 + - uid: 27808 + components: + - type: Transform + pos: -44.5,36.5 + parent: 8364 + - uid: 27809 + components: + - type: Transform + pos: -46.5,36.5 + parent: 8364 + - uid: 27810 + components: + - type: Transform + pos: -44.5,-66.5 + parent: 8364 + - uid: 27811 + components: + - type: Transform + pos: -51.5,38.5 + parent: 8364 + - uid: 27863 + components: + - type: Transform + pos: -47.5,38.5 + parent: 8364 + - uid: 27864 + components: + - type: Transform + pos: -44.5,38.5 + parent: 8364 + - uid: 27865 + components: + - type: Transform + pos: 77.5,-73.5 + parent: 8364 + - uid: 27866 + components: + - type: Transform + pos: 78.5,-73.5 + parent: 8364 + - uid: 27867 + components: + - type: Transform + pos: 77.5,11.5 + parent: 8364 + - uid: 27868 + components: + - type: Transform + pos: 79.5,-75.5 + parent: 8364 + - uid: 27870 + components: + - type: Transform + pos: 78.5,-77.5 + parent: 8364 + - uid: 27871 + components: + - type: Transform + pos: 75.5,-77.5 + parent: 8364 + - uid: 27989 + components: + - type: Transform + pos: 76.5,-77.5 + parent: 8364 + - uid: 27997 + components: + - type: Transform + pos: -8.5,-92.5 + parent: 8364 + - uid: 28005 + components: + - type: Transform + pos: -7.5,-92.5 + parent: 8364 + - uid: 28006 + components: + - type: Transform + pos: -6.5,-92.5 + parent: 8364 + - uid: 28007 + components: + - type: Transform + pos: -5.5,-92.5 + parent: 8364 + - uid: 28008 + components: + - type: Transform + pos: -4.5,-92.5 + parent: 8364 + - uid: 28009 + components: + - type: Transform + pos: -3.5,-92.5 + parent: 8364 + - uid: 28010 + components: + - type: Transform + pos: -2.5,-92.5 + parent: 8364 + - uid: 28011 + components: + - type: Transform + pos: -1.5,-92.5 + parent: 8364 + - uid: 28012 + components: + - type: Transform + pos: -0.5,-92.5 + parent: 8364 + - uid: 28013 + components: + - type: Transform + pos: 1.5,-92.5 + parent: 8364 + - uid: 28014 + components: + - type: Transform + pos: 2.5,-92.5 + parent: 8364 + - uid: 28015 + components: + - type: Transform + pos: 3.5,-92.5 + parent: 8364 + - uid: 28016 + components: + - type: Transform + pos: 4.5,-92.5 + parent: 8364 + - uid: 28017 + components: + - type: Transform + pos: 5.5,-92.5 + parent: 8364 + - uid: 28018 + components: + - type: Transform + pos: 6.5,-92.5 + parent: 8364 + - uid: 28019 + components: + - type: Transform + pos: 7.5,-92.5 + parent: 8364 + - uid: 28020 + components: + - type: Transform + pos: 0.5,-92.5 + parent: 8364 +- proto: AtmosFixFreezerMarker + entities: + - uid: 2846 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 8364 + - uid: 2847 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 8364 + - uid: 2848 + components: + - type: Transform + pos: 39.5,0.5 + parent: 8364 + - uid: 10530 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 8364 + - uid: 10600 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 8364 + - uid: 10602 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 8364 + - uid: 10606 + components: + - type: Transform + pos: 38.5,0.5 + parent: 8364 + - uid: 10607 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 8364 + - uid: 10611 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 8364 + - uid: 10617 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 8364 + - uid: 10618 + components: + - type: Transform + pos: 37.5,0.5 + parent: 8364 + - uid: 10635 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 8364 + - uid: 10636 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 8364 + - uid: 10717 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 8364 + - uid: 10720 + components: + - type: Transform + pos: 36.5,0.5 + parent: 8364 + - uid: 10721 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 8364 + - uid: 10726 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 8364 + - uid: 10727 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 8364 + - uid: 10728 + components: + - type: Transform + pos: 35.5,0.5 + parent: 8364 + - uid: 10729 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 8364 + - uid: 10730 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 8364 + - uid: 10731 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 8364 + - uid: 22554 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 8364 + - uid: 22651 + components: + - type: Transform + pos: 40.5,0.5 + parent: 8364 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 8204 + components: + - type: Transform + pos: 12.5,-64.5 + parent: 8364 + - uid: 8205 + components: + - type: Transform + pos: 13.5,-66.5 + parent: 8364 + - uid: 8206 + components: + - type: Transform + pos: 14.5,-65.5 + parent: 8364 + - uid: 9347 + components: + - type: Transform + pos: 14.5,-66.5 + parent: 8364 + - uid: 15467 + components: + - type: Transform + pos: 14.5,-64.5 + parent: 8364 + - uid: 16130 + components: + - type: Transform + pos: 13.5,-65.5 + parent: 8364 + - uid: 16259 + components: + - type: Transform + pos: 13.5,-64.5 + parent: 8364 + - uid: 16285 + components: + - type: Transform + pos: 12.5,-66.5 + parent: 8364 + - uid: 16460 + components: + - type: Transform + pos: 12.5,-65.5 + parent: 8364 +- proto: AtmosFixOxygenMarker + entities: + - uid: 9348 + components: + - type: Transform + pos: 16.5,-64.5 + parent: 8364 + - uid: 9349 + components: + - type: Transform + pos: 16.5,-66.5 + parent: 8364 + - uid: 9350 + components: + - type: Transform + pos: 17.5,-64.5 + parent: 8364 + - uid: 9351 + components: + - type: Transform + pos: 17.5,-65.5 + parent: 8364 + - uid: 9352 + components: + - type: Transform + pos: 18.5,-64.5 + parent: 8364 + - uid: 9353 + components: + - type: Transform + pos: 18.5,-65.5 + parent: 8364 + - uid: 9354 + components: + - type: Transform + pos: 18.5,-66.5 + parent: 8364 + - uid: 15468 + components: + - type: Transform + pos: 16.5,-65.5 + parent: 8364 + - uid: 15469 + components: + - type: Transform + pos: 17.5,-66.5 + parent: 8364 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 14723 + components: + - type: Transform + pos: 26.5,-48.5 + parent: 8364 + - uid: 14724 + components: + - type: Transform + pos: 26.5,-47.5 + parent: 8364 + - uid: 14727 + components: + - type: Transform + pos: 27.5,-48.5 + parent: 8364 + - uid: 15003 + components: + - type: Transform + pos: 27.5,-47.5 + parent: 8364 + - uid: 15318 + components: + - type: Transform + pos: 27.5,-46.5 + parent: 8364 + - uid: 15353 + components: + - type: Transform + pos: 28.5,-47.5 + parent: 8364 + - uid: 15374 + components: + - type: Transform + pos: 28.5,-46.5 + parent: 8364 + - uid: 15475 + components: + - type: Transform + pos: 26.5,-46.5 + parent: 8364 + - uid: 15476 + components: + - type: Transform + pos: 28.5,-48.5 + parent: 8364 +- proto: Autolathe + entities: + - uid: 13406 + components: + - type: Transform + pos: 69.5,-19.5 + parent: 8364 + - type: MaterialStorage + materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + - uid: 15361 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 8364 + - type: MaterialStorage + materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth + - uid: 17801 + components: + - type: Transform + pos: 2.5,-52.5 + parent: 8364 + - type: MaterialStorage + materialWhiteList: + - Steel + - Plastic + - Wood + - Glass + - Cloth +- proto: BackgammonBoard + entities: + - uid: 6519 + components: + - type: Transform + pos: 24.02721,-8.402973 + parent: 8364 + - uid: 11674 + components: + - type: Transform + pos: 63.5,-7.5 + parent: 8364 +- proto: BagpipeInstrument + entities: + - uid: 26004 + components: + - type: Transform + pos: 22.356016,2.7478647 + parent: 8364 +- proto: BannerCargo + entities: + - uid: 27596 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 8364 +- proto: Barricade + entities: + - uid: 54 + components: + - type: Transform + pos: 22.5,26.5 + parent: 8364 + - uid: 55 + components: + - type: Transform + pos: 22.5,29.5 + parent: 8364 + - uid: 56 + components: + - type: Transform + pos: 22.5,28.5 + parent: 8364 + - uid: 514 + components: + - type: Transform + pos: -50.5,3.5 + parent: 8364 + - uid: 5016 + components: + - type: Transform + pos: -20.5,12.5 + parent: 8364 + - uid: 11390 + components: + - type: Transform + pos: 65.5,15.5 + parent: 8364 + - uid: 11653 + components: + - type: Transform + pos: 62.5,16.5 + parent: 8364 + - uid: 11654 + components: + - type: Transform + pos: 61.5,16.5 + parent: 8364 + - uid: 11655 + components: + - type: Transform + pos: 60.5,16.5 + parent: 8364 + - uid: 13253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,19.5 + parent: 8364 + - uid: 13254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,22.5 + parent: 8364 + - uid: 13308 + components: + - type: Transform + pos: -39.5,21.5 + parent: 8364 + - uid: 13484 + components: + - type: Transform + pos: -23.5,4.5 + parent: 8364 + - uid: 13485 + components: + - type: Transform + pos: -18.5,4.5 + parent: 8364 + - uid: 13755 + components: + - type: Transform + pos: -55.5,7.5 + parent: 8364 + - uid: 15300 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 8364 + - uid: 15578 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 8364 + - uid: 15595 + components: + - type: Transform + pos: -33.5,-52.5 + parent: 8364 + - uid: 15596 + components: + - type: Transform + pos: -30.5,-54.5 + parent: 8364 + - uid: 15597 + components: + - type: Transform + pos: -30.5,-53.5 + parent: 8364 + - uid: 15598 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 8364 + - uid: 15711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-58.5 + parent: 8364 + - uid: 15803 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 8364 + - uid: 15944 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 8364 + - uid: 20038 + components: + - type: Transform + pos: 87.5,-23.5 + parent: 8364 + - uid: 20039 + components: + - type: Transform + pos: 87.5,-28.5 + parent: 8364 +- proto: BarricadeBlock + entities: + - uid: 2501 + components: + - type: Transform + pos: -31.5,13.5 + parent: 8364 +- proto: BarSignMaidCafe + entities: + - uid: 5444 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 8364 +- proto: BarSignOfficerBeersky + entities: + - uid: 7136 + components: + - type: Transform + pos: -34.5,17.5 + parent: 8364 +- proto: BaseComputer + entities: + - uid: 5355 + components: + - type: Transform + pos: 56.5,-29.5 + parent: 8364 + - uid: 21139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-20.5 + parent: 8364 + - uid: 25918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-51.5 + parent: 8364 +- proto: BaseComputerAiAccess + entities: + - uid: 28183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 8364 +- proto: BaseGasCondenser + entities: + - uid: 5562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-19.5 + parent: 8364 + - uid: 18633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-42.5 + parent: 8364 +- proto: Basketball + entities: + - uid: 815 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 8364 +- proto: BassGuitarInstrument + entities: + - uid: 25901 + components: + - type: Transform + pos: 22.460173,2.6171174 + parent: 8364 +- proto: BeachBall + entities: + - uid: 20679 + components: + - type: Transform + pos: 34.165627,9.592048 + parent: 8364 + - uid: 27654 + components: + - type: Transform + pos: 6.549402,-27.166641 + parent: 8364 +- proto: Beaker + entities: + - uid: 7260 + components: + - type: Transform + pos: 29.5,1.5 + parent: 8364 + - uid: 21180 + components: + - type: Transform + pos: 74.27338,-18.287746 + parent: 8364 + - uid: 26550 + components: + - type: Transform + pos: -6.0280805,52.564606 + parent: 8364 +- proto: Bed + entities: + - uid: 777 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 8364 + - uid: 2008 + components: + - type: Transform + pos: 55.5,-49.5 + parent: 8364 + - uid: 2037 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 8364 + - uid: 2214 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 8364 + - uid: 2222 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 8364 + - uid: 5221 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 8364 + - uid: 5757 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 8364 + - uid: 6469 + components: + - type: Transform + pos: 6.5,9.5 + parent: 8364 + - uid: 6470 + components: + - type: Transform + pos: 6.5,12.5 + parent: 8364 + - uid: 6471 + components: + - type: Transform + pos: 6.5,15.5 + parent: 8364 + - uid: 6482 + components: + - type: Transform + pos: 13.5,14.5 + parent: 8364 + - uid: 6483 + components: + - type: Transform + pos: 17.5,14.5 + parent: 8364 + - uid: 6670 + components: + - type: Transform + pos: 6.5,6.5 + parent: 8364 + - uid: 6935 + components: + - type: Transform + pos: 37.5,-51.5 + parent: 8364 + - uid: 8422 + components: + - type: Transform + pos: 44.5,-58.5 + parent: 8364 + - uid: 8630 + components: + - type: Transform + pos: -10.5,23.5 + parent: 8364 + - uid: 8631 + components: + - type: Transform + pos: -6.5,23.5 + parent: 8364 + - uid: 8632 + components: + - type: Transform + pos: -2.5,23.5 + parent: 8364 + - uid: 9361 + components: + - type: Transform + pos: -6.5,31.5 + parent: 8364 + - uid: 10570 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 8364 + - uid: 10774 + components: + - type: Transform + pos: 46.5,-58.5 + parent: 8364 + - uid: 15326 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 8364 + - uid: 18647 + components: + - type: Transform + pos: -2.5,-61.5 + parent: 8364 + - uid: 19064 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 8364 + - uid: 20156 + components: + - type: Transform + pos: -19.5,16.5 + parent: 8364 + - uid: 21210 + components: + - type: Transform + pos: 71.5,-35.5 + parent: 8364 + - uid: 21244 + components: + - type: Transform + pos: 15.5,41.5 + parent: 8364 + - uid: 21743 + components: + - type: Transform + pos: -30.5,-74.5 + parent: 8364 + - uid: 26349 + components: + - type: Transform + pos: -21.5,40.5 + parent: 8364 + - uid: 26350 + components: + - type: Transform + pos: -18.5,40.5 + parent: 8364 + - uid: 26351 + components: + - type: Transform + pos: -17.5,48.5 + parent: 8364 + - uid: 26352 + components: + - type: Transform + pos: -20.5,48.5 + parent: 8364 +- proto: BedsheetCaptain + entities: + - uid: 5315 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 8364 +- proto: BedsheetCE + entities: + - uid: 17952 + components: + - type: Transform + pos: -2.5,-61.5 + parent: 8364 +- proto: BedsheetCosmos + entities: + - uid: 5579 + components: + - type: Transform + pos: 6.5,6.5 + parent: 8364 +- proto: BedsheetGreen + entities: + - uid: 5471 + components: + - type: Transform + pos: 44.5,-58.5 + parent: 8364 + - uid: 5472 + components: + - type: Transform + pos: 37.5,-51.5 + parent: 8364 + - uid: 5916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-58.5 + parent: 8364 +- proto: BedsheetHOP + entities: + - uid: 21278 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 8364 +- proto: BedsheetHOS + entities: + - uid: 21245 + components: + - type: Transform + pos: 15.5,41.5 + parent: 8364 +- proto: BedsheetMedical + entities: + - uid: 5451 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 8364 + - uid: 5452 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 8364 + - uid: 9485 + components: + - type: Transform + pos: -6.5,31.5 + parent: 8364 + - uid: 18601 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 8364 + - uid: 18602 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 8364 + - uid: 18646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-29.5 + parent: 8364 + - uid: 19287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 8364 + - uid: 20142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-27.5 + parent: 8364 +- proto: BedsheetOrange + entities: + - uid: 26353 + components: + - type: Transform + pos: -20.5,48.5 + parent: 8364 + - uid: 26355 + components: + - type: Transform + pos: -18.5,40.5 + parent: 8364 + - uid: 26356 + components: + - type: Transform + pos: -21.5,40.5 + parent: 8364 +- proto: BedsheetQM + entities: + - uid: 5287 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 8364 +- proto: BedsheetRD + entities: + - uid: 21243 + components: + - type: Transform + pos: 71.5,-35.5 + parent: 8364 +- proto: BedsheetSpawner + entities: + - uid: 5583 + components: + - type: Transform + pos: 6.5,15.5 + parent: 8364 + - uid: 6461 + components: + - type: Transform + pos: 55.5,-49.5 + parent: 8364 + - uid: 6465 + components: + - type: Transform + pos: 6.5,9.5 + parent: 8364 + - uid: 6466 + components: + - type: Transform + pos: 6.5,12.5 + parent: 8364 + - uid: 6484 + components: + - type: Transform + pos: 13.5,14.5 + parent: 8364 + - uid: 6485 + components: + - type: Transform + pos: 17.5,14.5 + parent: 8364 + - uid: 8925 + components: + - type: Transform + pos: -19.5,16.5 + parent: 8364 + - uid: 10569 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 8364 + - uid: 15325 + components: + - type: Transform + pos: 63.5,-3.5 + parent: 8364 +- proto: BedsheetSyndie + entities: + - uid: 26354 + components: + - type: Transform + pos: -17.5,48.5 + parent: 8364 +- proto: BedsheetWhite + entities: + - uid: 8627 + components: + - type: Transform + pos: -10.5,23.5 + parent: 8364 + - uid: 8628 + components: + - type: Transform + pos: -6.5,23.5 + parent: 8364 + - uid: 8629 + components: + - type: Transform + pos: -2.5,23.5 + parent: 8364 +- proto: BigBox + entities: + - uid: 2277 + components: + - type: Transform + pos: 46.455715,-47.446358 + parent: 8364 + - uid: 25967 + components: + - type: Transform + pos: -25.023743,-15.516048 + parent: 8364 +- proto: BikeHorn entities: - uid: 7191 components: @@ -17842,6 +20715,12 @@ entities: - type: Transform pos: 27.5,-41.5 parent: 8364 + - uid: 3542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-86.5 + parent: 8364 - uid: 3568 components: - type: MetaData @@ -17849,6 +20728,12 @@ entities: - type: Transform pos: -42.5,-49.5 parent: 8364 + - uid: 3605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-86.5 + parent: 8364 - uid: 3750 components: - type: Transform @@ -17859,6 +20744,12 @@ entities: - type: Transform pos: -6.5,-76.5 parent: 8364 + - uid: 4205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-86.5 + parent: 8364 - uid: 4704 components: - type: Transform @@ -17908,15 +20799,22 @@ entities: - type: Transform pos: -5.5,-76.5 parent: 8364 + - uid: 13849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-86.5 + parent: 8364 - uid: 13910 components: - type: Transform pos: -61.5,-21.5 parent: 8364 - - uid: 17676 + - uid: 15544 components: - type: Transform - pos: 19.5,-86.5 + rot: -1.5707963267948966 rad + pos: 15.5,-86.5 parent: 8364 - uid: 18326 components: @@ -17953,16 +20851,6 @@ entities: - type: Transform pos: 91.5,-25.5 parent: 8364 - - uid: 20133 - components: - - type: Transform - pos: 19.5,-83.5 - parent: 8364 - - uid: 20134 - components: - - type: Transform - pos: 19.5,-84.5 - parent: 8364 - uid: 20180 components: - type: Transform @@ -17988,10 +20876,11 @@ entities: - type: Transform pos: 15.5,-49.5 parent: 8364 - - uid: 26646 + - uid: 25091 components: - type: Transform - pos: 19.5,-85.5 + rot: 1.5707963267948966 rad + pos: 23.5,-86.5 parent: 8364 - uid: 26666 components: @@ -18297,15 +21186,16 @@ entities: parent: 8364 - proto: BorgCharger entities: - - uid: 25975 + - uid: 3719 components: - type: Transform - pos: 2.5,-10.5 + pos: -4.5,-14.5 parent: 8364 - - uid: 26072 + - uid: 4207 components: - type: Transform - pos: -3.5,-10.5 + rot: 3.141592653589793 rad + pos: 3.5,-14.5 parent: 8364 - uid: 27381 components: @@ -18327,11 +21217,6 @@ entities: - type: Transform pos: -48.5,-16.5 parent: 8364 - - uid: 27996 - components: - - type: Transform - pos: 33.5,-84.5 - parent: 8364 - proto: BoxBeaker entities: - uid: 18896 @@ -18432,7 +21317,7 @@ entities: - uid: 9388 components: - type: Transform - pos: -2.4849367,38.8545 + pos: -2.3561149,38.959312 parent: 8364 - uid: 9589 components: @@ -18488,10 +21373,12 @@ entities: - type: Transform pos: -55.5,-11.5 parent: 8364 - - uid: 25859 +- proto: BoxFolderClipboard + entities: + - uid: 6122 components: - type: Transform - pos: -0.48406625,-11.440446 + pos: -20.684553,-13.423042 parent: 8364 - proto: BoxFolderGrey entities: @@ -18569,11 +21456,6 @@ entities: - type: Transform pos: 69.5,-35.5 parent: 8364 - - uid: 27175 - components: - - type: Transform - pos: 26.534222,-106.3969 - parent: 8364 - proto: BoxFolderYellow entities: - uid: 6601 @@ -18657,7 +21539,15 @@ entities: - uid: 9389 components: - type: Transform - pos: -2.5193274,39.107735 + pos: -2.7208788,39.167786 + parent: 8364 +- proto: BoxingBell + entities: + - uid: 11158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,14.5 parent: 8364 - proto: BoxLatexGloves entities: @@ -18687,11 +21577,6 @@ entities: - type: Transform pos: 55.44968,-51.427322 parent: 8364 - - uid: 14437 - components: - - type: Transform - pos: -20.70863,-5.352804 - parent: 8364 - proto: BoxLightMixed entities: - uid: 2271 @@ -18704,25 +21589,25 @@ entities: - type: Transform pos: 6.392988,-63.281517 parent: 8364 + - uid: 9310 + components: + - type: Transform + pos: 2.5504029,-35.390793 + parent: 8364 - uid: 14439 components: - type: Transform - pos: -20.20863,-5.399679 + pos: -20.550636,-5.3221245 parent: 8364 - proto: BoxLighttube entities: - uid: 14438 components: - type: Transform - pos: -20.536755,-5.462179 + pos: -20.331778,-5.4367876 parent: 8364 - proto: BoxLighttubeHoliday entities: - - uid: 16587 - components: - - type: Transform - pos: 2.6634254,-34.550735 - parent: 8364 - uid: 16591 components: - type: Transform @@ -18789,6 +21674,13 @@ entities: - type: Transform pos: 2.4019985,-33.752228 parent: 8364 +- proto: BoxWarmLightbulb + entities: + - uid: 3152 + components: + - type: Transform + pos: -20.727808,-5.2387333 + parent: 8364 - proto: BoxZiptie entities: - uid: 542 @@ -18906,6 +21798,44 @@ entities: - type: Transform pos: 5.6363735,-36.502228 parent: 8364 +- proto: ButtonFrameCaution + entities: + - uid: 4248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-86.5 + parent: 8364 + - uid: 22313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-71.5 + parent: 8364 + - uid: 23908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-71.5 + parent: 8364 + - uid: 27061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-82.5 + parent: 8364 + - uid: 27063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-86.5 + parent: 8364 + - uid: 27850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-82.5 + parent: 8364 - proto: ButtonFrameExit entities: - uid: 3810 @@ -18940,11 +21870,6 @@ entities: - type: Transform pos: 9.5,-77.5 parent: 8364 - - uid: 144 - components: - - type: Transform - pos: 14.5,-77.5 - parent: 8364 - uid: 346 components: - type: Transform @@ -19045,6 +21970,11 @@ entities: - type: Transform pos: -25.5,-0.5 parent: 8364 + - uid: 566 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 8364 - uid: 577 components: - type: Transform @@ -19125,6 +22055,11 @@ entities: - type: Transform pos: -78.5,-4.5 parent: 8364 + - uid: 784 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 8364 - uid: 1107 components: - type: Transform @@ -19565,6 +22500,46 @@ entities: - type: Transform pos: 34.5,-64.5 parent: 8364 + - uid: 3281 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 8364 + - uid: 3631 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 8364 + - uid: 3632 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 8364 + - uid: 3633 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 8364 + - uid: 3634 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 8364 + - uid: 3653 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 8364 + - uid: 3654 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 8364 + - uid: 3671 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 8364 - uid: 3681 components: - type: Transform @@ -19580,6 +22555,11 @@ entities: - type: Transform pos: 25.5,-60.5 parent: 8364 + - uid: 3701 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 8364 - uid: 3702 components: - type: Transform @@ -19665,6 +22645,11 @@ entities: - type: Transform pos: 17.5,-42.5 parent: 8364 + - uid: 3772 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 8364 - uid: 3792 components: - type: Transform @@ -19685,11 +22670,6 @@ entities: - type: Transform pos: 11.5,-77.5 parent: 8364 - - uid: 3826 - components: - - type: Transform - pos: 12.5,-77.5 - parent: 8364 - uid: 3827 components: - type: Transform @@ -19700,6 +22680,11 @@ entities: - type: Transform pos: 12.5,-71.5 parent: 8364 + - uid: 3834 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 8364 - uid: 3839 components: - type: Transform @@ -19780,16 +22765,6 @@ entities: - type: Transform pos: 2.5,-63.5 parent: 8364 - - uid: 4005 - components: - - type: Transform - pos: 13.5,-77.5 - parent: 8364 - - uid: 4031 - components: - - type: Transform - pos: -19.5,-72.5 - parent: 8364 - uid: 4032 components: - type: Transform @@ -19825,6 +22800,146 @@ entities: - type: Transform pos: 25.5,-51.5 parent: 8364 + - uid: 4251 + components: + - type: Transform + pos: 19.5,-81.5 + parent: 8364 + - uid: 4252 + components: + - type: Transform + pos: 20.5,-81.5 + parent: 8364 + - uid: 4253 + components: + - type: Transform + pos: 16.5,-81.5 + parent: 8364 + - uid: 4254 + components: + - type: Transform + pos: 14.5,-81.5 + parent: 8364 + - uid: 4255 + components: + - type: Transform + pos: 24.5,-81.5 + parent: 8364 + - uid: 4256 + components: + - type: Transform + pos: 25.5,-81.5 + parent: 8364 + - uid: 4257 + components: + - type: Transform + pos: 22.5,-81.5 + parent: 8364 + - uid: 4258 + components: + - type: Transform + pos: 25.5,-80.5 + parent: 8364 + - uid: 4271 + components: + - type: Transform + pos: -24.5,-76.5 + parent: 8364 + - uid: 4284 + components: + - type: Transform + pos: -21.5,-77.5 + parent: 8364 + - uid: 4292 + components: + - type: Transform + pos: -22.5,-76.5 + parent: 8364 + - uid: 4298 + components: + - type: Transform + pos: -24.5,-74.5 + parent: 8364 + - uid: 4359 + components: + - type: Transform + pos: 25.5,-79.5 + parent: 8364 + - uid: 4360 + components: + - type: Transform + pos: 25.5,-78.5 + parent: 8364 + - uid: 4381 + components: + - type: Transform + pos: 18.5,-81.5 + parent: 8364 + - uid: 4382 + components: + - type: Transform + pos: 15.5,-81.5 + parent: 8364 + - uid: 4383 + components: + - type: Transform + pos: 17.5,-81.5 + parent: 8364 + - uid: 4384 + components: + - type: Transform + pos: 21.5,-81.5 + parent: 8364 + - uid: 4389 + components: + - type: Transform + pos: 12.5,-81.5 + parent: 8364 + - uid: 4391 + components: + - type: Transform + pos: 23.5,-81.5 + parent: 8364 + - uid: 4392 + components: + - type: Transform + pos: 25.5,-77.5 + parent: 8364 + - uid: 4393 + components: + - type: Transform + pos: 25.5,-76.5 + parent: 8364 + - uid: 4408 + components: + - type: Transform + pos: -21.5,-82.5 + parent: 8364 + - uid: 4439 + components: + - type: Transform + pos: -19.5,-81.5 + parent: 8364 + - uid: 4440 + components: + - type: Transform + pos: -18.5,-81.5 + parent: 8364 + - uid: 4441 + components: + - type: Transform + pos: -19.5,-83.5 + parent: 8364 + - uid: 4448 + components: + - type: Transform + pos: -20.5,-83.5 + parent: 8364 + - uid: 4459 + components: + - type: Transform + pos: -18.5,-80.5 + parent: 8364 - uid: 4520 components: - type: Transform @@ -19840,15 +22955,10 @@ entities: - type: Transform pos: 0.5,-60.5 parent: 8364 - - uid: 4696 - components: - - type: Transform - pos: 13.5,-83.5 - parent: 8364 - - uid: 4699 + - uid: 4623 components: - type: Transform - pos: 18.5,-77.5 + pos: 13.5,-81.5 parent: 8364 - uid: 4710 components: @@ -19860,6 +22970,36 @@ entities: - type: Transform pos: -12.5,36.5 parent: 8364 + - uid: 4940 + components: + - type: Transform + pos: -19.5,-84.5 + parent: 8364 + - uid: 4941 + components: + - type: Transform + pos: -21.5,-73.5 + parent: 8364 + - uid: 4949 + components: + - type: Transform + pos: -22.5,-72.5 + parent: 8364 + - uid: 4953 + components: + - type: Transform + pos: -24.5,-75.5 + parent: 8364 + - uid: 4955 + components: + - type: Transform + pos: -20.5,-81.5 + parent: 8364 + - uid: 4959 + components: + - type: Transform + pos: -21.5,-76.5 + parent: 8364 - uid: 5069 components: - type: Transform @@ -20065,36 +23205,16 @@ entities: - type: Transform pos: 4.5,-14.5 parent: 8364 - - uid: 5739 - components: - - type: Transform - pos: -2.5,-16.5 - parent: 8364 - uid: 5750 components: - type: Transform pos: -0.5,-3.5 parent: 8364 - - uid: 5751 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 8364 - uid: 5762 components: - type: Transform pos: -0.5,-7.5 parent: 8364 - - uid: 5865 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 8364 - - uid: 5876 - components: - - type: Transform - pos: -1.5,-24.5 - parent: 8364 - uid: 5895 components: - type: Transform @@ -20400,36 +23520,6 @@ entities: - type: Transform pos: -7.5,-8.5 parent: 8364 - - uid: 6088 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 8364 - - uid: 6089 - components: - - type: Transform - pos: -1.5,-12.5 - parent: 8364 - - uid: 6090 - components: - - type: Transform - pos: -2.5,-12.5 - parent: 8364 - - uid: 6091 - components: - - type: Transform - pos: 0.5,-12.5 - parent: 8364 - - uid: 6092 - components: - - type: Transform - pos: 1.5,-12.5 - parent: 8364 - - uid: 6093 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 8364 - uid: 6101 components: - type: Transform @@ -20510,6 +23600,11 @@ entities: - type: Transform pos: -10.5,-25.5 parent: 8364 + - uid: 6143 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 8364 - uid: 6212 components: - type: Transform @@ -20540,21 +23635,6 @@ entities: - type: Transform pos: -13.5,-17.5 parent: 8364 - - uid: 6218 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 8364 - - uid: 6219 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 8364 - - uid: 6220 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 8364 - uid: 6221 components: - type: Transform @@ -20685,11 +23765,6 @@ entities: - type: Transform pos: 25.5,18.5 parent: 8364 - - uid: 6419 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 8364 - uid: 6431 components: - type: Transform @@ -20990,11 +24065,6 @@ entities: - type: Transform pos: 20.5,-0.5 parent: 8364 - - uid: 6925 - components: - - type: Transform - pos: -1.5,-16.5 - parent: 8364 - uid: 7000 components: - type: Transform @@ -21110,11 +24180,6 @@ entities: - type: Transform pos: 26.5,-0.5 parent: 8364 - - uid: 7098 - components: - - type: Transform - pos: 0.5,-16.5 - parent: 8364 - uid: 7099 components: - type: Transform @@ -21305,31 +24370,6 @@ entities: - type: Transform pos: -46.5,21.5 parent: 8364 - - uid: 8117 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 8364 - - uid: 8118 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 8364 - - uid: 8120 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 8364 - - uid: 8121 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 8364 - - uid: 8154 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 8364 - uid: 8185 components: - type: Transform @@ -22235,30 +25275,25 @@ entities: - type: Transform pos: 17.5,33.5 parent: 8364 - - uid: 9310 - components: - - type: Transform - pos: 16.5,33.5 - parent: 8364 - uid: 9311 components: - type: Transform - pos: 15.5,33.5 + pos: 14.5,31.5 parent: 8364 - uid: 9312 components: - type: Transform - pos: 14.5,33.5 + pos: 15.5,31.5 parent: 8364 - uid: 9313 components: - type: Transform - pos: 13.5,33.5 + pos: 16.5,31.5 parent: 8364 - uid: 9314 components: - type: Transform - pos: 13.5,32.5 + pos: 16.5,34.5 parent: 8364 - uid: 9315 components: @@ -22298,17 +25333,17 @@ entities: - uid: 9324 components: - type: Transform - pos: 15.5,34.5 + pos: 17.5,34.5 parent: 8364 - uid: 9325 components: - type: Transform - pos: 12.5,33.5 + pos: 14.5,34.5 parent: 8364 - uid: 9326 components: - type: Transform - pos: 18.5,34.5 + pos: 15.5,34.5 parent: 8364 - uid: 9327 components: @@ -22370,6 +25405,11 @@ entities: - type: Transform pos: -19.5,50.5 parent: 8364 + - uid: 9457 + components: + - type: Transform + pos: 17.5,35.5 + parent: 8364 - uid: 9599 components: - type: Transform @@ -24010,11 +27050,6 @@ entities: - type: Transform pos: 48.5,-2.5 parent: 8364 - - uid: 10555 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 8364 - uid: 10658 components: - type: Transform @@ -24230,6 +27265,16 @@ entities: - type: Transform pos: -11.5,44.5 parent: 8364 + - uid: 10853 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 8364 + - uid: 10871 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 8364 - uid: 10914 components: - type: Transform @@ -24460,11 +27505,6 @@ entities: - type: Transform pos: 70.5,-9.5 parent: 8364 - - uid: 11094 - components: - - type: Transform - pos: 69.5,-9.5 - parent: 8364 - uid: 11095 components: - type: Transform @@ -26610,6 +29650,11 @@ entities: - type: Transform pos: -65.5,14.5 parent: 8364 + - uid: 12429 + components: + - type: Transform + pos: 11.5,-81.5 + parent: 8364 - uid: 12497 components: - type: Transform @@ -29595,6 +32640,11 @@ entities: - type: Transform pos: -2.5,11.5 parent: 8364 + - uid: 13663 + components: + - type: Transform + pos: 69.5,-9.5 + parent: 8364 - uid: 13693 components: - type: Transform @@ -30030,11 +33080,6 @@ entities: - type: Transform pos: 6.5,-34.5 parent: 8364 - - uid: 14125 - components: - - type: Transform - pos: 2.5,-12.5 - parent: 8364 - uid: 14144 components: - type: Transform @@ -30325,51 +33370,6 @@ entities: - type: Transform pos: 5.5,-35.5 parent: 8364 - - uid: 14477 - components: - - type: Transform - pos: -19.5,-10.5 - parent: 8364 - - uid: 14478 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 8364 - - uid: 14479 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 8364 - - uid: 14480 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 8364 - - uid: 14481 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 8364 - - uid: 14482 - components: - - type: Transform - pos: -23.5,-11.5 - parent: 8364 - - uid: 14483 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 8364 - - uid: 14484 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 8364 - - uid: 14485 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 8364 - uid: 14618 components: - type: Transform @@ -31235,15 +34235,10 @@ entities: - type: Transform pos: -22.5,-28.5 parent: 8364 - - uid: 14916 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 8364 - - uid: 14918 + - uid: 14920 components: - type: Transform - pos: 1.5,-16.5 + pos: 15.5,-71.5 parent: 8364 - uid: 14980 components: @@ -32345,11 +35340,6 @@ entities: - type: Transform pos: -29.5,-26.5 parent: 8364 - - uid: 15369 - components: - - type: Transform - pos: -3.5,-24.5 - parent: 8364 - uid: 15434 components: - type: Transform @@ -32370,16 +35360,6 @@ entities: - type: Transform pos: 20.5,-55.5 parent: 8364 - - uid: 15481 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 8364 - - uid: 15491 - components: - - type: Transform - pos: -0.5,-21.5 - parent: 8364 - uid: 15496 components: - type: Transform @@ -32645,11 +35625,6 @@ entities: - type: Transform pos: -38.5,-58.5 parent: 8364 - - uid: 15721 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 8364 - uid: 15798 components: - type: Transform @@ -32680,11 +35655,6 @@ entities: - type: Transform pos: -37.5,-8.5 parent: 8364 - - uid: 16153 - components: - - type: Transform - pos: -19.5,-73.5 - parent: 8364 - uid: 16212 components: - type: Transform @@ -33230,11 +36200,6 @@ entities: - type: Transform pos: 26.5,-70.5 parent: 8364 - - uid: 16506 - components: - - type: Transform - pos: 12.5,-83.5 - parent: 8364 - uid: 16507 components: - type: Transform @@ -33275,11 +36240,6 @@ entities: - type: Transform pos: 4.5,-43.5 parent: 8364 - - uid: 16522 - components: - - type: Transform - pos: 11.5,-83.5 - parent: 8364 - uid: 16523 components: - type: Transform @@ -33315,11 +36275,6 @@ entities: - type: Transform pos: -0.5,-65.5 parent: 8364 - - uid: 16546 - components: - - type: Transform - pos: 14.5,-83.5 - parent: 8364 - uid: 16549 components: - type: Transform @@ -33520,16 +36475,6 @@ entities: - type: Transform pos: 25.5,-56.5 parent: 8364 - - uid: 16623 - components: - - type: Transform - pos: 31.5,-116.5 - parent: 8364 - - uid: 16624 - components: - - type: Transform - pos: 31.5,-117.5 - parent: 8364 - uid: 16636 components: - type: Transform @@ -33850,11 +36795,6 @@ entities: - type: Transform pos: 16.5,-71.5 parent: 8364 - - uid: 16723 - components: - - type: Transform - pos: 17.5,-83.5 - parent: 8364 - uid: 16725 components: - type: Transform @@ -33865,21 +36805,6 @@ entities: - type: Transform pos: 14.5,-71.5 parent: 8364 - - uid: 16731 - components: - - type: Transform - pos: 16.5,-83.5 - parent: 8364 - - uid: 16735 - components: - - type: Transform - pos: 18.5,-83.5 - parent: 8364 - - uid: 16737 - components: - - type: Transform - pos: 15.5,-71.5 - parent: 8364 - uid: 16738 components: - type: Transform @@ -33955,11 +36880,6 @@ entities: - type: Transform pos: 13.5,-71.5 parent: 8364 - - uid: 16833 - components: - - type: Transform - pos: 15.5,-83.5 - parent: 8364 - uid: 16834 components: - type: Transform @@ -34030,11 +36950,6 @@ entities: - type: Transform pos: 9.5,-76.5 parent: 8364 - - uid: 16918 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 8364 - uid: 16934 components: - type: Transform @@ -34075,21 +36990,6 @@ entities: - type: Transform pos: -15.5,-77.5 parent: 8364 - - uid: 16953 - components: - - type: Transform - pos: 25.5,-73.5 - parent: 8364 - - uid: 16954 - components: - - type: Transform - pos: 25.5,-72.5 - parent: 8364 - - uid: 16964 - components: - - type: Transform - pos: 25.5,-74.5 - parent: 8364 - uid: 16987 components: - type: Transform @@ -34510,16 +37410,6 @@ entities: - type: Transform pos: -19.5,-69.5 parent: 8364 - - uid: 17424 - components: - - type: Transform - pos: -19.5,-70.5 - parent: 8364 - - uid: 17425 - components: - - type: Transform - pos: -19.5,-71.5 - parent: 8364 - uid: 17427 components: - type: Transform @@ -34715,16 +37605,6 @@ entities: - type: Transform pos: -16.5,-71.5 parent: 8364 - - uid: 17782 - components: - - type: Transform - pos: 15.5,-77.5 - parent: 8364 - - uid: 17783 - components: - - type: Transform - pos: 16.5,-77.5 - parent: 8364 - uid: 17811 components: - type: Transform @@ -37885,11 +40765,6 @@ entities: - type: Transform pos: 56.5,-63.5 parent: 8364 - - uid: 19580 - components: - - type: Transform - pos: 62.5,-70.5 - parent: 8364 - uid: 19581 components: - type: Transform @@ -39905,46 +42780,6 @@ entities: - type: Transform pos: 8.5,-36.5 parent: 8364 - - uid: 21997 - components: - - type: Transform - pos: -4.5,-16.5 - parent: 8364 - - uid: 21998 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 8364 - - uid: 21999 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 8364 - - uid: 22000 - components: - - type: Transform - pos: 3.5,-16.5 - parent: 8364 - - uid: 22001 - components: - - type: Transform - pos: -1.5,-23.5 - parent: 8364 - - uid: 22002 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 8364 - - uid: 22003 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 8364 - - uid: 22004 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 8364 - uid: 22460 components: - type: Transform @@ -39975,6 +42810,21 @@ entities: - type: Transform pos: 11.5,-8.5 parent: 8364 + - uid: 22529 + components: + - type: Transform + pos: -20.5,-82.5 + parent: 8364 + - uid: 22530 + components: + - type: Transform + pos: -22.5,-73.5 + parent: 8364 + - uid: 22538 + components: + - type: Transform + pos: -21.5,-74.5 + parent: 8364 - uid: 22578 components: - type: Transform @@ -40005,11 +42855,6 @@ entities: - type: Transform pos: -7.5,-61.5 parent: 8364 - - uid: 22856 - components: - - type: Transform - pos: 17.5,-77.5 - parent: 8364 - uid: 22857 components: - type: Transform @@ -40055,25 +42900,40 @@ entities: - type: Transform pos: -14.5,-71.5 parent: 8364 - - uid: 23009 + - uid: 23138 components: - type: Transform - pos: 11.5,-82.5 + pos: -3.5,-60.5 parent: 8364 - - uid: 23098 + - uid: 23235 components: - type: Transform - pos: 11.5,-81.5 + pos: -13.5,-71.5 parent: 8364 - - uid: 23138 + - uid: 23243 components: - type: Transform - pos: -3.5,-60.5 + pos: -3.5,-13.5 parent: 8364 - - uid: 23235 + - uid: 23261 components: - type: Transform - pos: -13.5,-71.5 + pos: 19.5,-55.5 + parent: 8364 + - uid: 24926 + components: + - type: Transform + pos: -21.5,-75.5 + parent: 8364 + - uid: 25207 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 8364 + - uid: 25315 + components: + - type: Transform + pos: -63.5,14.5 parent: 8364 - uid: 25739 components: @@ -40130,11 +42990,6 @@ entities: - type: Transform pos: 9.5,-75.5 parent: 8364 - - uid: 26102 - components: - - type: Transform - pos: 24.5,-74.5 - parent: 8364 - uid: 26136 components: - type: Transform @@ -40315,585 +43170,215 @@ entities: - type: Transform pos: 4.5,-72.5 parent: 8364 - - uid: 27031 - components: - - type: Transform - pos: 29.5,-111.5 - parent: 8364 - - uid: 27032 - components: - - type: Transform - pos: 28.5,-111.5 - parent: 8364 - - uid: 27033 - components: - - type: Transform - pos: 28.5,-110.5 - parent: 8364 - - uid: 27034 - components: - - type: Transform - pos: 28.5,-109.5 - parent: 8364 - - uid: 27035 - components: - - type: Transform - pos: 28.5,-108.5 - parent: 8364 - - uid: 27036 - components: - - type: Transform - pos: 29.5,-109.5 - parent: 8364 - - uid: 27037 - components: - - type: Transform - pos: 30.5,-109.5 - parent: 8364 - - uid: 27038 - components: - - type: Transform - pos: 31.5,-109.5 - parent: 8364 - - uid: 27039 - components: - - type: Transform - pos: 31.5,-111.5 - parent: 8364 - - uid: 27040 - components: - - type: Transform - pos: 31.5,-110.5 - parent: 8364 - - uid: 27041 - components: - - type: Transform - pos: 31.5,-112.5 - parent: 8364 - - uid: 27042 - components: - - type: Transform - pos: 31.5,-113.5 - parent: 8364 - - uid: 27043 - components: - - type: Transform - pos: 31.5,-114.5 - parent: 8364 - - uid: 27044 - components: - - type: Transform - pos: 31.5,-115.5 - parent: 8364 - - uid: 27045 - components: - - type: Transform - pos: 30.5,-115.5 - parent: 8364 - - uid: 27046 - components: - - type: Transform - pos: 29.5,-115.5 - parent: 8364 - - uid: 27047 - components: - - type: Transform - pos: 28.5,-115.5 - parent: 8364 - - uid: 27048 - components: - - type: Transform - pos: 27.5,-115.5 - parent: 8364 - - uid: 27049 - components: - - type: Transform - pos: 26.5,-115.5 - parent: 8364 - - uid: 27050 - components: - - type: Transform - pos: 25.5,-115.5 - parent: 8364 - - uid: 27051 - components: - - type: Transform - pos: 25.5,-114.5 - parent: 8364 - - uid: 27052 - components: - - type: Transform - pos: 25.5,-113.5 - parent: 8364 - - uid: 27053 - components: - - type: Transform - pos: 25.5,-112.5 - parent: 8364 - - uid: 27054 - components: - - type: Transform - pos: 25.5,-111.5 - parent: 8364 - - uid: 27055 - components: - - type: Transform - pos: 25.5,-110.5 - parent: 8364 - - uid: 27056 - components: - - type: Transform - pos: 25.5,-109.5 - parent: 8364 - - uid: 27057 - components: - - type: Transform - pos: 26.5,-109.5 - parent: 8364 - - uid: 27058 - components: - - type: Transform - pos: 27.5,-109.5 - parent: 8364 - - uid: 27059 - components: - - type: Transform - pos: 28.5,-107.5 - parent: 8364 - - uid: 27060 - components: - - type: Transform - pos: 28.5,-106.5 - parent: 8364 - - uid: 27061 - components: - - type: Transform - pos: 27.5,-106.5 - parent: 8364 - - uid: 27062 - components: - - type: Transform - pos: 29.5,-106.5 - parent: 8364 - - uid: 27063 - components: - - type: Transform - pos: 31.5,-100.5 - parent: 8364 - - uid: 27064 - components: - - type: Transform - pos: 30.5,-100.5 - parent: 8364 - - uid: 27065 - components: - - type: Transform - pos: 29.5,-103.5 - parent: 8364 - - uid: 27066 - components: - - type: Transform - pos: 29.5,-102.5 - parent: 8364 - - uid: 27067 - components: - - type: Transform - pos: 29.5,-101.5 - parent: 8364 - - uid: 27068 - components: - - type: Transform - pos: 29.5,-100.5 - parent: 8364 - - uid: 27069 - components: - - type: Transform - pos: 29.5,-99.5 - parent: 8364 - - uid: 27070 - components: - - type: Transform - pos: 29.5,-98.5 - parent: 8364 - - uid: 27071 - components: - - type: Transform - pos: 29.5,-97.5 - parent: 8364 - - uid: 27072 - components: - - type: Transform - pos: 29.5,-96.5 - parent: 8364 - - uid: 27073 - components: - - type: Transform - pos: 29.5,-95.5 - parent: 8364 - - uid: 27074 - components: - - type: Transform - pos: 27.5,-95.5 - parent: 8364 - - uid: 27075 - components: - - type: Transform - pos: 27.5,-96.5 - parent: 8364 - - uid: 27076 - components: - - type: Transform - pos: 27.5,-97.5 - parent: 8364 - - uid: 27077 - components: - - type: Transform - pos: 27.5,-98.5 - parent: 8364 - - uid: 27078 - components: - - type: Transform - pos: 27.5,-99.5 - parent: 8364 - - uid: 27079 - components: - - type: Transform - pos: 27.5,-100.5 - parent: 8364 - - uid: 27080 - components: - - type: Transform - pos: 27.5,-101.5 - parent: 8364 - - uid: 27081 - components: - - type: Transform - pos: 27.5,-102.5 - parent: 8364 - - uid: 27082 - components: - - type: Transform - pos: 27.5,-103.5 - parent: 8364 - - uid: 27083 - components: - - type: Transform - pos: 28.5,-100.5 - parent: 8364 - - uid: 27084 - components: - - type: Transform - pos: 32.5,-100.5 - parent: 8364 - - uid: 27085 - components: - - type: Transform - pos: 32.5,-101.5 - parent: 8364 - - uid: 27086 - components: - - type: Transform - pos: 32.5,-102.5 - parent: 8364 - - uid: 27087 - components: - - type: Transform - pos: 32.5,-103.5 - parent: 8364 - - uid: 27088 - components: - - type: Transform - pos: 33.5,-103.5 - parent: 8364 - - uid: 27089 - components: - - type: Transform - pos: 33.5,-104.5 - parent: 8364 - - uid: 27090 - components: - - type: Transform - pos: 32.5,-99.5 - parent: 8364 - - uid: 27091 - components: - - type: Transform - pos: 32.5,-98.5 - parent: 8364 - - uid: 27092 - components: - - type: Transform - pos: 32.5,-97.5 - parent: 8364 - - uid: 27093 - components: - - type: Transform - pos: 32.5,-96.5 - parent: 8364 - - uid: 27094 - components: - - type: Transform - pos: 35.5,-92.5 - parent: 8364 - - uid: 27095 - components: - - type: Transform - pos: 34.5,-92.5 - parent: 8364 - - uid: 27096 - components: - - type: Transform - pos: 33.5,-92.5 - parent: 8364 - - uid: 27097 - components: - - type: Transform - pos: 32.5,-92.5 - parent: 8364 - - uid: 27098 - components: - - type: Transform - pos: 31.5,-92.5 - parent: 8364 - - uid: 27099 - components: - - type: Transform - pos: 32.5,-91.5 - parent: 8364 - - uid: 27100 - components: - - type: Transform - pos: 32.5,-90.5 - parent: 8364 - - uid: 27101 - components: - - type: Transform - pos: 32.5,-89.5 - parent: 8364 - - uid: 27102 - components: - - type: Transform - pos: 32.5,-88.5 - parent: 8364 - - uid: 27103 - components: - - type: Transform - pos: 32.5,-93.5 - parent: 8364 - - uid: 27104 - components: - - type: Transform - pos: 21.5,-92.5 - parent: 8364 - - uid: 27105 - components: - - type: Transform - pos: 22.5,-92.5 - parent: 8364 - - uid: 27106 - components: - - type: Transform - pos: 23.5,-92.5 - parent: 8364 - - uid: 27107 + - uid: 26977 components: - type: Transform - pos: 24.5,-92.5 + pos: 27.5,-72.5 parent: 8364 - - uid: 27108 + - uid: 26978 components: - type: Transform - pos: 24.5,-91.5 + pos: 19.5,-84.5 parent: 8364 - - uid: 27109 + - uid: 27003 components: - type: Transform - pos: 24.5,-90.5 + pos: 2.5,-13.5 parent: 8364 - - uid: 27110 + - uid: 27009 components: - type: Transform - pos: 24.5,-89.5 + pos: -0.5,-17.5 parent: 8364 - - uid: 27111 + - uid: 27010 components: - type: Transform - pos: 24.5,-93.5 + pos: 2.5,-12.5 parent: 8364 - uid: 27112 components: - type: Transform - pos: 24.5,-94.5 + pos: 18.5,-72.5 parent: 8364 - uid: 27113 components: - type: Transform - pos: 24.5,-95.5 + pos: 25.5,-72.5 parent: 8364 - uid: 27114 components: - type: Transform - pos: 24.5,-96.5 + pos: 18.5,-73.5 parent: 8364 - uid: 27115 components: - type: Transform - pos: 24.5,-97.5 + pos: 26.5,-81.5 parent: 8364 - uid: 27116 components: - type: Transform - pos: 24.5,-98.5 + pos: 25.5,-74.5 parent: 8364 - uid: 27117 components: - type: Transform - pos: 24.5,-99.5 + pos: 27.5,-78.5 parent: 8364 - uid: 27118 components: - type: Transform - pos: 24.5,-100.5 + pos: 18.5,-85.5 parent: 8364 - uid: 27119 components: - type: Transform - pos: 24.5,-101.5 + pos: 18.5,-86.5 parent: 8364 - uid: 27120 components: - type: Transform - pos: 24.5,-102.5 + pos: 27.5,-79.5 parent: 8364 - uid: 27121 components: - type: Transform - pos: 24.5,-103.5 + pos: 27.5,-80.5 parent: 8364 - uid: 27122 components: - type: Transform - pos: 23.5,-103.5 + pos: 25.5,-82.5 parent: 8364 - uid: 27123 components: - type: Transform - pos: 23.5,-104.5 + pos: 15.5,-84.5 parent: 8364 - uid: 27124 components: - type: Transform - pos: 31.5,-86.5 + pos: 17.5,-84.5 parent: 8364 - uid: 27125 components: - type: Transform - pos: 30.5,-86.5 + pos: 16.5,-84.5 parent: 8364 - uid: 27126 components: - type: Transform - pos: 29.5,-86.5 + pos: 14.5,-84.5 parent: 8364 - uid: 27127 components: - type: Transform - pos: 28.5,-86.5 + pos: 26.5,-84.5 parent: 8364 - uid: 27128 components: - type: Transform - pos: 28.5,-87.5 + pos: 27.5,-81.5 parent: 8364 - uid: 27129 components: - type: Transform - pos: 28.5,-88.5 + pos: 27.5,-71.5 parent: 8364 - uid: 27130 components: - type: Transform - pos: 28.5,-89.5 + pos: 18.5,-74.5 parent: 8364 - uid: 27131 components: - type: Transform - pos: 28.5,-90.5 + pos: 25.5,-75.5 parent: 8364 - uid: 27132 components: - type: Transform - pos: 28.5,-91.5 + pos: 25.5,-73.5 parent: 8364 - uid: 27133 components: - type: Transform - pos: 28.5,-92.5 + pos: 18.5,-83.5 parent: 8364 - uid: 27134 components: - type: Transform - pos: 28.5,-93.5 + pos: 18.5,-75.5 parent: 8364 - uid: 27135 components: - type: Transform - pos: 28.5,-85.5 + pos: 18.5,-78.5 parent: 8364 - uid: 27136 components: - type: Transform - pos: 28.5,-84.5 + pos: 18.5,-76.5 parent: 8364 - uid: 27137 components: - type: Transform - pos: 28.5,-83.5 + pos: 18.5,-77.5 parent: 8364 - uid: 27138 components: - type: Transform - pos: 28.5,-82.5 + pos: 18.5,-79.5 parent: 8364 - uid: 27139 components: - type: Transform - pos: 28.5,-81.5 + pos: 25.5,-83.5 parent: 8364 - - uid: 27140 + - uid: 27141 components: - type: Transform - pos: 28.5,-80.5 + pos: 25.5,-84.5 parent: 8364 - - uid: 27141 + - uid: 27151 components: - type: Transform - pos: 28.5,-79.5 + pos: 27.5,-73.5 parent: 8364 - - uid: 27142 + - uid: 27175 components: - type: Transform - pos: 28.5,-78.5 + pos: 27.5,-74.5 parent: 8364 - - uid: 27146 + - uid: 27178 components: - type: Transform - pos: 29.5,-85.5 + pos: 18.5,-80.5 parent: 8364 - - uid: 27147 + - uid: 27181 components: - type: Transform - pos: 30.5,-85.5 + pos: 18.5,-84.5 parent: 8364 - - uid: 27148 + - uid: 27182 components: - type: Transform - pos: 31.5,-85.5 + pos: 21.5,-84.5 parent: 8364 - - uid: 27149 + - uid: 27183 components: - type: Transform - pos: 32.5,-85.5 + pos: 18.5,-82.5 + parent: 8364 + - uid: 27190 + components: + - type: Transform + pos: 20.5,-84.5 + parent: 8364 + - uid: 27191 + components: + - type: Transform + pos: 22.5,-84.5 parent: 8364 - uid: 27223 components: @@ -41140,65 +43625,210 @@ entities: - type: Transform pos: 86.5,-2.5 parent: 8364 - - uid: 27861 + - uid: 27787 components: - type: Transform - pos: 25.5,-117.5 + pos: -23.5,-76.5 parent: 8364 - - uid: 27862 + - uid: 27874 components: - type: Transform - pos: 25.5,-116.5 + pos: 1.5,-17.5 parent: 8364 - - uid: 27863 + - uid: 27919 components: - type: Transform - pos: 24.5,-112.5 + pos: 0.5,-17.5 parent: 8364 - - uid: 27864 + - uid: 27927 components: - type: Transform - pos: 23.5,-112.5 + pos: 60.5,-69.5 parent: 8364 - - uid: 27865 + - uid: 27934 components: - type: Transform - pos: 32.5,-112.5 + pos: 13.5,34.5 parent: 8364 - - uid: 27866 + - uid: 27935 components: - type: Transform - pos: 33.5,-112.5 + pos: 12.5,34.5 parent: 8364 - - uid: 27872 + - uid: 27971 components: - type: Transform - pos: 29.5,-79.5 + pos: 59.5,-39.5 parent: 8364 - - uid: 27873 + - uid: 27972 components: - type: Transform - pos: 30.5,-79.5 + pos: 59.5,-38.5 parent: 8364 - - uid: 27874 + - uid: 27977 components: - type: Transform - pos: 31.5,-79.5 + pos: 2.5,-17.5 parent: 8364 - - uid: 27875 + - uid: 27978 components: - type: Transform - pos: 32.5,-79.5 + pos: 2.5,-16.5 parent: 8364 - - uid: 27971 + - uid: 28000 components: - type: Transform - pos: 59.5,-39.5 + pos: -19.5,-9.5 parent: 8364 - - uid: 27972 + - uid: 28001 components: - type: Transform - pos: 59.5,-38.5 + pos: -20.5,-9.5 + parent: 8364 + - uid: 28002 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 8364 + - uid: 28003 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 8364 + - uid: 28004 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 8364 + - uid: 28021 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 8364 + - uid: 28024 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 8364 + - uid: 28069 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 8364 + - uid: 28159 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 8364 + - uid: 28160 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 8364 + - uid: 28161 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 8364 + - uid: 28162 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 8364 + - uid: 28163 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 8364 + - uid: 28164 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 8364 + - uid: 28165 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 8364 + - uid: 28166 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 8364 + - uid: 28167 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 8364 + - uid: 28168 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 8364 + - uid: 28169 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 8364 + - uid: 28170 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 8364 + - uid: 28171 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 8364 + - uid: 28172 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 8364 + - uid: 28173 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 8364 + - uid: 28174 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 8364 + - uid: 28175 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 8364 + - uid: 28176 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 8364 + - uid: 28177 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 8364 + - uid: 28178 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 8364 + - uid: 28179 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 8364 + - uid: 28180 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 8364 + - uid: 28181 + components: + - type: Transform + pos: -3.5,-20.5 parent: 8364 - proto: CableApcStack entities: @@ -41377,11 +44007,31 @@ entities: - type: Transform pos: -3.5,-66.5 parent: 8364 + - uid: 2928 + components: + - type: Transform + pos: 16.5,-80.5 + parent: 8364 - uid: 3054 components: - type: Transform pos: -7.5,-10.5 parent: 8364 + - uid: 3536 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 8364 + - uid: 3540 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 8364 + - uid: 3630 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 8364 - uid: 3691 components: - type: Transform @@ -41472,21 +44122,61 @@ entities: - type: Transform pos: -8.5,-74.5 parent: 8364 - - uid: 3869 + - uid: 3873 components: - type: Transform - pos: 15.5,-77.5 + pos: -19.5,-72.5 parent: 8364 - uid: 4050 components: - type: Transform pos: 10.5,-80.5 parent: 8364 + - uid: 4210 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 8364 + - uid: 4211 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 8364 + - uid: 4272 + components: + - type: Transform + pos: -20.5,-72.5 + parent: 8364 + - uid: 4369 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 8364 + - uid: 4371 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 8364 + - uid: 4372 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 8364 + - uid: 4373 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 8364 - uid: 4519 components: - type: Transform pos: -0.5,-58.5 parent: 8364 + - uid: 4550 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 8364 - uid: 4553 components: - type: Transform @@ -41557,21 +44247,11 @@ entities: - type: Transform pos: 46.5,19.5 parent: 8364 - - uid: 5272 - components: - - type: Transform - pos: 1.5,-24.5 - parent: 8364 - uid: 5314 components: - type: Transform pos: -3.5,-5.5 parent: 8364 - - uid: 5450 - components: - - type: Transform - pos: -44.5,-61.5 - parent: 8364 - uid: 5520 components: - type: Transform @@ -41642,16 +44322,6 @@ entities: - type: Transform pos: -13.5,-12.5 parent: 8364 - - uid: 5766 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 8364 - - uid: 5771 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 8364 - uid: 5772 components: - type: Transform @@ -41842,16 +44512,6 @@ entities: - type: Transform pos: -2.5,-59.5 parent: 8364 - - uid: 5827 - components: - - type: Transform - pos: -2.5,-57.5 - parent: 8364 - - uid: 5828 - components: - - type: Transform - pos: -1.5,-57.5 - parent: 8364 - uid: 5829 components: - type: Transform @@ -41982,26 +44642,11 @@ entities: - type: Transform pos: -16.5,-15.5 parent: 8364 - - uid: 5855 - components: - - type: Transform - pos: -19.5,-12.5 - parent: 8364 - - uid: 5856 - components: - - type: Transform - pos: -18.5,-12.5 - parent: 8364 - uid: 5857 components: - type: Transform pos: -16.5,-14.5 parent: 8364 - - uid: 5858 - components: - - type: Transform - pos: -17.5,-12.5 - parent: 8364 - uid: 5859 components: - type: Transform @@ -42042,16 +44687,6 @@ entities: - type: Transform pos: -22.5,-12.5 parent: 8364 - - uid: 5927 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 8364 - - uid: 5928 - components: - - type: Transform - pos: -20.5,-12.5 - parent: 8364 - uid: 5929 components: - type: Transform @@ -42432,16 +45067,6 @@ entities: - type: Transform pos: -16.5,-68.5 parent: 8364 - - uid: 6392 - components: - - type: Transform - pos: 1.5,-25.5 - parent: 8364 - - uid: 6596 - components: - - type: Transform - pos: 27.5,-77.5 - parent: 8364 - uid: 6605 components: - type: Transform @@ -43147,11 +45772,6 @@ entities: - type: Transform pos: -6.5,-62.5 parent: 8364 - - uid: 7073 - components: - - type: Transform - pos: 27.5,-78.5 - parent: 8364 - uid: 7201 components: - type: Transform @@ -43422,11 +46042,6 @@ entities: - type: Transform pos: 31.5,-38.5 parent: 8364 - - uid: 8814 - components: - - type: Transform - pos: -43.5,-61.5 - parent: 8364 - uid: 8885 components: - type: Transform @@ -43472,11 +46087,6 @@ entities: - type: Transform pos: 7.5,26.5 parent: 8364 - - uid: 9243 - components: - - type: Transform - pos: -45.5,-61.5 - parent: 8364 - uid: 9462 components: - type: Transform @@ -45127,10 +47737,10 @@ entities: - type: Transform pos: 45.5,37.5 parent: 8364 - - uid: 11984 + - uid: 11758 components: - type: Transform - pos: -46.5,-61.5 + pos: 18.5,-79.5 parent: 8364 - uid: 11990 components: @@ -45222,11 +47832,6 @@ entities: - type: Transform pos: -44.5,28.5 parent: 8364 - - uid: 12023 - components: - - type: Transform - pos: -47.5,-61.5 - parent: 8364 - uid: 12025 components: - type: Transform @@ -45307,11 +47912,6 @@ entities: - type: Transform pos: -45.5,12.5 parent: 8364 - - uid: 12641 - components: - - type: Transform - pos: -48.5,-61.5 - parent: 8364 - uid: 13102 components: - type: Transform @@ -45817,10 +48417,10 @@ entities: - type: Transform pos: -50.5,-3.5 parent: 8364 - - uid: 14147 + - uid: 14088 components: - type: Transform - pos: -49.5,-61.5 + pos: 18.5,-76.5 parent: 8364 - uid: 14368 components: @@ -45877,25 +48477,15 @@ entities: - type: Transform pos: -22.5,-67.5 parent: 8364 - - uid: 15105 - components: - - type: Transform - pos: -50.5,-61.5 - parent: 8364 - - uid: 15106 - components: - - type: Transform - pos: -51.5,-61.5 - parent: 8364 - - uid: 15126 + - uid: 15340 components: - type: Transform - pos: -52.5,-61.5 + pos: 15.5,-80.5 parent: 8364 - - uid: 15127 + - uid: 15344 components: - type: Transform - pos: -53.5,-61.5 + pos: 14.5,-80.5 parent: 8364 - uid: 15460 components: @@ -45962,11 +48552,6 @@ entities: - type: Transform pos: -52.5,-55.5 parent: 8364 - - uid: 15831 - components: - - type: Transform - pos: -49.5,-60.5 - parent: 8364 - uid: 15832 components: - type: Transform @@ -46037,16 +48622,6 @@ entities: - type: Transform pos: -54.5,-67.5 parent: 8364 - - uid: 15857 - components: - - type: Transform - pos: -53.5,-62.5 - parent: 8364 - - uid: 15858 - components: - - type: Transform - pos: -53.5,-60.5 - parent: 8364 - uid: 15859 components: - type: Transform @@ -46107,6 +48682,11 @@ entities: - type: Transform pos: -6.5,-74.5 parent: 8364 + - uid: 15892 + components: + - type: Transform + pos: 18.5,-80.5 + parent: 8364 - uid: 15904 components: - type: Transform @@ -46757,16 +49337,6 @@ entities: - type: Transform pos: 6.5,-55.5 parent: 8364 - - uid: 17589 - components: - - type: Transform - pos: 15.5,-75.5 - parent: 8364 - - uid: 17602 - components: - - type: Transform - pos: 15.5,-76.5 - parent: 8364 - uid: 17698 components: - type: Transform @@ -46897,6 +49467,11 @@ entities: - type: Transform pos: -6.5,-61.5 parent: 8364 + - uid: 19073 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 8364 - uid: 19130 components: - type: Transform @@ -46962,30 +49537,30 @@ entities: - type: Transform pos: -30.5,-60.5 parent: 8364 - - uid: 19169 + - uid: 19174 components: - type: Transform - pos: -54.5,-61.5 + pos: -57.5,-61.5 parent: 8364 - - uid: 19172 + - uid: 19197 components: - type: Transform - pos: -55.5,-61.5 + pos: -56.5,-61.5 parent: 8364 - - uid: 19173 + - uid: 19202 components: - type: Transform - pos: -56.5,-61.5 + pos: -55.5,-61.5 parent: 8364 - - uid: 19174 + - uid: 19203 components: - type: Transform - pos: -57.5,-61.5 + pos: -42.5,-61.5 parent: 8364 - - uid: 19175 + - uid: 19204 components: - type: Transform - pos: -42.5,-61.5 + pos: -43.5,-61.5 parent: 8364 - uid: 19288 components: @@ -47302,11 +49877,6 @@ entities: - type: Transform pos: 85.5,-44.5 parent: 8364 - - uid: 19773 - components: - - type: Transform - pos: -45.5,-62.5 - parent: 8364 - uid: 19774 components: - type: Transform @@ -47547,11 +50117,6 @@ entities: - type: Transform pos: -49.5,-63.5 parent: 8364 - - uid: 19900 - components: - - type: Transform - pos: -49.5,-62.5 - parent: 8364 - uid: 19901 components: - type: Transform @@ -47607,11 +50172,6 @@ entities: - type: Transform pos: -45.5,-59.5 parent: 8364 - - uid: 19912 - components: - - type: Transform - pos: -45.5,-60.5 - parent: 8364 - uid: 19913 components: - type: Transform @@ -47677,186 +50237,16 @@ entities: - type: Transform pos: 81.5,-68.5 parent: 8364 - - uid: 21377 - components: - - type: Transform - pos: 28.5,-113.5 - parent: 8364 - - uid: 21378 - components: - - type: Transform - pos: 28.5,-114.5 - parent: 8364 - - uid: 21379 - components: - - type: Transform - pos: 29.5,-114.5 - parent: 8364 - - uid: 21380 - components: - - type: Transform - pos: 30.5,-114.5 - parent: 8364 - - uid: 21386 - components: - - type: Transform - pos: 27.5,-113.5 - parent: 8364 - - uid: 21494 - components: - - type: Transform - pos: 26.5,-113.5 - parent: 8364 - - uid: 21527 - components: - - type: Transform - pos: 26.5,-112.5 - parent: 8364 - - uid: 21579 - components: - - type: Transform - pos: 25.5,-112.5 - parent: 8364 - - uid: 21968 - components: - - type: Transform - pos: 24.5,-112.5 - parent: 8364 - uid: 22337 components: - type: Transform pos: -0.5,-31.5 parent: 8364 - - uid: 22454 - components: - - type: Transform - pos: 30.5,-113.5 - parent: 8364 - - uid: 22455 - components: - - type: Transform - pos: 30.5,-112.5 - parent: 8364 - - uid: 22456 - components: - - type: Transform - pos: 30.5,-111.5 - parent: 8364 - - uid: 22457 - components: - - type: Transform - pos: 30.5,-110.5 - parent: 8364 - - uid: 22527 - components: - - type: Transform - pos: 30.5,-109.5 - parent: 8364 - - uid: 22528 - components: - - type: Transform - pos: 29.5,-109.5 - parent: 8364 - - uid: 22529 - components: - - type: Transform - pos: 28.5,-109.5 - parent: 8364 - - uid: 22530 - components: - - type: Transform - pos: 28.5,-108.5 - parent: 8364 - - uid: 22536 - components: - - type: Transform - pos: 28.5,-107.5 - parent: 8364 - - uid: 22537 - components: - - type: Transform - pos: 28.5,-106.5 - parent: 8364 - - uid: 22538 - components: - - type: Transform - pos: 28.5,-105.5 - parent: 8364 - - uid: 22539 - components: - - type: Transform - pos: 28.5,-104.5 - parent: 8364 - - uid: 22540 - components: - - type: Transform - pos: 28.5,-103.5 - parent: 8364 - - uid: 22541 - components: - - type: Transform - pos: 28.5,-101.5 - parent: 8364 - - uid: 22542 - components: - - type: Transform - pos: 28.5,-100.5 - parent: 8364 - - uid: 22547 - components: - - type: Transform - pos: 28.5,-102.5 - parent: 8364 - - uid: 22548 - components: - - type: Transform - pos: 28.5,-98.5 - parent: 8364 - uid: 22583 components: - type: Transform pos: 4.5,-80.5 parent: 8364 - - uid: 22644 - components: - - type: Transform - pos: 28.5,-97.5 - parent: 8364 - - uid: 22736 - components: - - type: Transform - pos: 28.5,-96.5 - parent: 8364 - - uid: 22737 - components: - - type: Transform - pos: 28.5,-99.5 - parent: 8364 - - uid: 22747 - components: - - type: Transform - pos: 28.5,-93.5 - parent: 8364 - - uid: 22750 - components: - - type: Transform - pos: 28.5,-92.5 - parent: 8364 - - uid: 22758 - components: - - type: Transform - pos: 28.5,-95.5 - parent: 8364 - - uid: 22764 - components: - - type: Transform - pos: 28.5,-94.5 - parent: 8364 - - uid: 22770 - components: - - type: Transform - pos: 28.5,-91.5 - parent: 8364 - uid: 22807 components: - type: Transform @@ -47872,140 +50262,45 @@ entities: - type: Transform pos: 1.5,-80.5 parent: 8364 - - uid: 22858 - components: - - type: Transform - pos: 29.5,-91.5 - parent: 8364 - - uid: 22889 - components: - - type: Transform - pos: 30.5,-91.5 - parent: 8364 - - uid: 22921 - components: - - type: Transform - pos: 31.5,-91.5 - parent: 8364 - uid: 22961 components: - type: Transform pos: -10.5,-74.5 parent: 8364 - - uid: 22975 - components: - - type: Transform - pos: 31.5,-92.5 - parent: 8364 - - uid: 22976 - components: - - type: Transform - pos: 32.5,-92.5 - parent: 8364 - - uid: 22977 - components: - - type: Transform - pos: 33.5,-92.5 - parent: 8364 - uid: 22979 components: - type: Transform pos: 0.5,-80.5 parent: 8364 - - uid: 23133 + - uid: 23003 components: - type: Transform - pos: 27.5,-109.5 + pos: 18.5,-77.5 parent: 8364 - uid: 23203 components: - type: Transform pos: -14.5,-74.5 parent: 8364 - - uid: 23204 - components: - - type: Transform - pos: 26.5,-109.5 - parent: 8364 - - uid: 23211 - components: - - type: Transform - pos: 25.5,-109.5 - parent: 8364 - - uid: 23223 - components: - - type: Transform - pos: 12.5,-80.5 - parent: 8364 - uid: 23238 components: - type: Transform pos: -0.5,-80.5 parent: 8364 - - uid: 23915 - components: - - type: Transform - pos: 24.5,-109.5 - parent: 8364 - - uid: 24005 - components: - - type: Transform - pos: 23.5,-109.5 - parent: 8364 - - uid: 24687 - components: - - type: Transform - pos: 13.5,-80.5 - parent: 8364 - - uid: 25012 - components: - - type: Transform - pos: 23.5,-108.5 - parent: 8364 - - uid: 25013 - components: - - type: Transform - pos: 23.5,-107.5 - parent: 8364 - - uid: 25225 - components: - - type: Transform - pos: 23.5,-106.5 - parent: 8364 - - uid: 25226 - components: - - type: Transform - pos: 23.5,-105.5 - parent: 8364 - - uid: 25228 - components: - - type: Transform - pos: 23.5,-104.5 - parent: 8364 - - uid: 25229 - components: - - type: Transform - pos: 23.5,-103.5 - parent: 8364 - - uid: 25230 - components: - - type: Transform - pos: 24.5,-103.5 - parent: 8364 - - uid: 25231 + - uid: 24928 components: - type: Transform - pos: 24.5,-102.5 + pos: -19.5,-71.5 parent: 8364 - - uid: 25232 + - uid: 24970 components: - type: Transform - pos: 24.5,-101.5 + pos: 12.5,-80.5 parent: 8364 - - uid: 25347 + - uid: 25208 components: - type: Transform - pos: 24.5,-100.5 + pos: -2.5,-13.5 parent: 8364 - uid: 25611 components: @@ -48027,21 +50322,6 @@ entities: - type: Transform pos: -10.5,26.5 parent: 8364 - - uid: 25677 - components: - - type: Transform - pos: 24.5,-99.5 - parent: 8364 - - uid: 25678 - components: - - type: Transform - pos: 24.5,-97.5 - parent: 8364 - - uid: 25784 - components: - - type: Transform - pos: 24.5,-96.5 - parent: 8364 - uid: 25839 components: - type: Transform @@ -48057,16 +50337,6 @@ entities: - type: Transform pos: -2.5,-80.5 parent: 8364 - - uid: 25892 - components: - - type: Transform - pos: 24.5,-95.5 - parent: 8364 - - uid: 25893 - components: - - type: Transform - pos: 24.5,-94.5 - parent: 8364 - uid: 25894 components: - type: Transform @@ -48077,61 +50347,11 @@ entities: - type: Transform pos: -6.5,-51.5 parent: 8364 - - uid: 25927 - components: - - type: Transform - pos: 24.5,-93.5 - parent: 8364 - - uid: 25949 - components: - - type: Transform - pos: 24.5,-92.5 - parent: 8364 - - uid: 25950 - components: - - type: Transform - pos: 24.5,-91.5 - parent: 8364 - - uid: 25981 - components: - - type: Transform - pos: 24.5,-98.5 - parent: 8364 - - uid: 25982 - components: - - type: Transform - pos: 25.5,-91.5 - parent: 8364 - - uid: 25983 - components: - - type: Transform - pos: 26.5,-91.5 - parent: 8364 - - uid: 25984 - components: - - type: Transform - pos: 27.5,-91.5 - parent: 8364 - - uid: 25985 - components: - - type: Transform - pos: 32.5,-93.5 - parent: 8364 - - uid: 25986 - components: - - type: Transform - pos: 32.5,-94.5 - parent: 8364 - uid: 25987 components: - type: Transform pos: -3.5,-80.5 parent: 8364 - - uid: 26000 - components: - - type: Transform - pos: 32.5,-95.5 - parent: 8364 - uid: 26001 components: - type: Transform @@ -48142,11 +50362,6 @@ entities: - type: Transform pos: -5.5,-80.5 parent: 8364 - - uid: 26003 - components: - - type: Transform - pos: 32.5,-96.5 - parent: 8364 - uid: 26005 components: - type: Transform @@ -48157,16 +50372,6 @@ entities: - type: Transform pos: -7.5,-80.5 parent: 8364 - - uid: 26007 - components: - - type: Transform - pos: 32.5,-97.5 - parent: 8364 - - uid: 26008 - components: - - type: Transform - pos: 32.5,-98.5 - parent: 8364 - uid: 26009 components: - type: Transform @@ -48197,21 +50402,6 @@ entities: - type: Transform pos: -9.5,-84.5 parent: 8364 - - uid: 26017 - components: - - type: Transform - pos: 32.5,-99.5 - parent: 8364 - - uid: 26018 - components: - - type: Transform - pos: 32.5,-100.5 - parent: 8364 - - uid: 26019 - components: - - type: Transform - pos: 32.5,-101.5 - parent: 8364 - uid: 26021 components: - type: Transform @@ -48262,11 +50452,6 @@ entities: - type: Transform pos: -15.5,-74.5 parent: 8364 - - uid: 26088 - components: - - type: Transform - pos: 32.5,-102.5 - parent: 8364 - uid: 26124 components: - type: Transform @@ -48502,66 +50687,6 @@ entities: - type: Transform pos: -20.5,51.5 parent: 8364 - - uid: 26381 - components: - - type: Transform - pos: 32.5,-103.5 - parent: 8364 - - uid: 26382 - components: - - type: Transform - pos: 33.5,-103.5 - parent: 8364 - - uid: 26383 - components: - - type: Transform - pos: 33.5,-104.5 - parent: 8364 - - uid: 26384 - components: - - type: Transform - pos: 33.5,-105.5 - parent: 8364 - - uid: 26385 - components: - - type: Transform - pos: 33.5,-106.5 - parent: 8364 - - uid: 26386 - components: - - type: Transform - pos: 33.5,-107.5 - parent: 8364 - - uid: 26387 - components: - - type: Transform - pos: 33.5,-108.5 - parent: 8364 - - uid: 26388 - components: - - type: Transform - pos: 32.5,-108.5 - parent: 8364 - - uid: 26389 - components: - - type: Transform - pos: 31.5,-108.5 - parent: 8364 - - uid: 26567 - components: - - type: Transform - pos: 31.5,-109.5 - parent: 8364 - - uid: 26568 - components: - - type: Transform - pos: 28.5,-90.5 - parent: 8364 - - uid: 26576 - components: - - type: Transform - pos: 28.5,-89.5 - parent: 8364 - uid: 26579 components: - type: Transform @@ -48587,41 +50712,6 @@ entities: - type: Transform pos: 8.5,-81.5 parent: 8364 - - uid: 26589 - components: - - type: Transform - pos: 14.5,-80.5 - parent: 8364 - - uid: 26591 - components: - - type: Transform - pos: 15.5,-80.5 - parent: 8364 - - uid: 26608 - components: - - type: Transform - pos: 15.5,-79.5 - parent: 8364 - - uid: 26627 - components: - - type: Transform - pos: 28.5,-88.5 - parent: 8364 - - uid: 26628 - components: - - type: Transform - pos: 28.5,-87.5 - parent: 8364 - - uid: 26712 - components: - - type: Transform - pos: 28.5,-86.5 - parent: 8364 - - uid: 26738 - components: - - type: Transform - pos: 28.5,-85.5 - parent: 8364 - uid: 26742 components: - type: Transform @@ -48682,41 +50772,6 @@ entities: - type: Transform pos: -11.5,-61.5 parent: 8364 - - uid: 26797 - components: - - type: Transform - pos: 28.5,-84.5 - parent: 8364 - - uid: 26798 - components: - - type: Transform - pos: 28.5,-83.5 - parent: 8364 - - uid: 26799 - components: - - type: Transform - pos: 28.5,-82.5 - parent: 8364 - - uid: 26800 - components: - - type: Transform - pos: 28.5,-81.5 - parent: 8364 - - uid: 26801 - components: - - type: Transform - pos: 28.5,-80.5 - parent: 8364 - - uid: 26802 - components: - - type: Transform - pos: 28.5,-79.5 - parent: 8364 - - uid: 26803 - components: - - type: Transform - pos: 28.5,-78.5 - parent: 8364 - uid: 26911 components: - type: Transform @@ -48742,25 +50797,30 @@ entities: - type: Transform pos: 9.5,-76.5 parent: 8364 - - uid: 26966 + - uid: 26996 components: - type: Transform - pos: 34.5,-92.5 + pos: 13.5,-80.5 parent: 8364 - - uid: 26967 + - uid: 27007 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 8364 + - uid: 27011 components: - type: Transform - pos: 34.5,-91.5 + pos: -0.5,-18.5 parent: 8364 - - uid: 26968 + - uid: 27012 components: - type: Transform - pos: 34.5,-90.5 + pos: -1.5,-17.5 parent: 8364 - - uid: 26969 + - uid: 27065 components: - type: Transform - pos: 34.5,-89.5 + pos: 18.5,-78.5 parent: 8364 - uid: 27143 components: @@ -48782,11 +50842,6 @@ entities: - type: Transform pos: 9.5,-75.5 parent: 8364 - - uid: 27230 - components: - - type: Transform - pos: 15.5,-78.5 - parent: 8364 - uid: 27461 components: - type: Transform @@ -48842,165 +50897,105 @@ entities: - type: Transform pos: 4.5,-68.5 parent: 8364 - - uid: 27809 - components: - - type: Transform - pos: 27.5,-76.5 - parent: 8364 - - uid: 27810 - components: - - type: Transform - pos: 27.5,-75.5 - parent: 8364 - - uid: 27811 - components: - - type: Transform - pos: 27.5,-74.5 - parent: 8364 - - uid: 27812 - components: - - type: Transform - pos: 27.5,-73.5 - parent: 8364 - - uid: 27813 - components: - - type: Transform - pos: 27.5,-72.5 - parent: 8364 - - uid: 27814 - components: - - type: Transform - pos: 27.5,-71.5 - parent: 8364 - - uid: 27815 - components: - - type: Transform - pos: 27.5,-70.5 - parent: 8364 - - uid: 27816 - components: - - type: Transform - pos: 27.5,-68.5 - parent: 8364 - - uid: 27817 - components: - - type: Transform - pos: 27.5,-69.5 - parent: 8364 - - uid: 27818 - components: - - type: Transform - pos: 26.5,-68.5 - parent: 8364 - - uid: 27819 - components: - - type: Transform - pos: 25.5,-68.5 - parent: 8364 - - uid: 27820 - components: - - type: Transform - pos: 24.5,-68.5 - parent: 8364 - - uid: 27821 + - uid: 27835 components: - type: Transform - pos: 23.5,-68.5 + pos: 9.5,-68.5 parent: 8364 - - uid: 27822 + - uid: 27845 components: - type: Transform - pos: 22.5,-68.5 + pos: 17.5,-80.5 parent: 8364 - - uid: 27823 + - uid: 27873 components: - type: Transform - pos: 21.5,-68.5 + pos: -0.5,-19.5 parent: 8364 - - uid: 27824 + - uid: 27876 components: - type: Transform - pos: 20.5,-68.5 + pos: 0.5,-11.5 parent: 8364 - - uid: 27825 + - uid: 27877 components: - type: Transform - pos: 19.5,-68.5 + pos: -1.5,-11.5 parent: 8364 - - uid: 27826 + - uid: 27883 components: - type: Transform - pos: 18.5,-68.5 + pos: -0.5,-11.5 parent: 8364 - - uid: 27827 + - uid: 27884 components: - type: Transform - pos: 17.5,-68.5 + pos: -2.5,-16.5 parent: 8364 - - uid: 27828 + - uid: 27905 components: - type: Transform - pos: 16.5,-68.5 + pos: 9.5,-71.5 parent: 8364 - - uid: 27829 + - uid: 27906 components: - type: Transform - pos: 15.5,-68.5 + pos: 9.5,-72.5 parent: 8364 - - uid: 27830 + - uid: 27907 components: - type: Transform - pos: 13.5,-68.5 + pos: 9.5,-70.5 parent: 8364 - - uid: 27831 + - uid: 27908 components: - type: Transform - pos: 12.5,-68.5 + pos: 9.5,-69.5 parent: 8364 - - uid: 27832 + - uid: 27909 components: - type: Transform - pos: 11.5,-68.5 + pos: 9.5,-73.5 parent: 8364 - - uid: 27833 + - uid: 27918 components: - type: Transform - pos: 14.5,-68.5 + pos: -2.5,-17.5 parent: 8364 - - uid: 27834 + - uid: 27980 components: - type: Transform - pos: 10.5,-68.5 + pos: -2.5,-11.5 parent: 8364 - - uid: 27835 + - uid: 27981 components: - type: Transform - pos: 9.5,-68.5 + pos: -2.5,-14.5 parent: 8364 - - uid: 27905 + - uid: 27982 components: - type: Transform - pos: 9.5,-71.5 + pos: -2.5,-12.5 parent: 8364 - - uid: 27906 + - uid: 28090 components: - type: Transform - pos: 9.5,-72.5 + pos: -19.5,-11.5 parent: 8364 - - uid: 27907 + - uid: 28099 components: - type: Transform - pos: 9.5,-70.5 + pos: -20.5,-11.5 parent: 8364 - - uid: 27908 + - uid: 28110 components: - type: Transform - pos: 9.5,-69.5 + pos: -21.5,-11.5 parent: 8364 - - uid: 27909 + - uid: 28112 components: - type: Transform - pos: 9.5,-73.5 + pos: -22.5,-11.5 parent: 8364 - proto: CableHVStack entities: @@ -49181,11 +51176,26 @@ entities: - type: Transform pos: -20.5,-65.5 parent: 8364 + - uid: 3541 + components: + - type: Transform + pos: -20.5,-76.5 + parent: 8364 - uid: 3635 components: - type: Transform pos: -20.5,-68.5 parent: 8364 + - uid: 3672 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 8364 + - uid: 3673 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 8364 - uid: 3723 components: - type: Transform @@ -49221,11 +51231,71 @@ entities: - type: Transform pos: 43.5,-3.5 parent: 8364 + - uid: 4277 + components: + - type: Transform + pos: -19.5,-77.5 + parent: 8364 + - uid: 4278 + components: + - type: Transform + pos: -19.5,-78.5 + parent: 8364 + - uid: 4279 + components: + - type: Transform + pos: -19.5,-76.5 + parent: 8364 + - uid: 4285 + components: + - type: Transform + pos: -19.5,-79.5 + parent: 8364 + - uid: 4286 + components: + - type: Transform + pos: -19.5,-80.5 + parent: 8364 + - uid: 4291 + components: + - type: Transform + pos: -18.5,-80.5 + parent: 8364 + - uid: 4554 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 8364 + - uid: 4561 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 8364 + - uid: 4562 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 8364 + - uid: 4563 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 8364 - uid: 4578 components: - type: Transform pos: 0.5,-60.5 parent: 8364 + - uid: 4942 + components: + - type: Transform + pos: -22.5,-75.5 + parent: 8364 + - uid: 4943 + components: + - type: Transform + pos: -22.5,-72.5 + parent: 8364 - uid: 5313 components: - type: Transform @@ -49271,11 +51341,6 @@ entities: - type: Transform pos: -12.5,-19.5 parent: 8364 - - uid: 5728 - components: - - type: Transform - pos: 0.5,-24.5 - parent: 8364 - uid: 5731 components: - type: Transform @@ -49286,41 +51351,11 @@ entities: - type: Transform pos: 4.5,-14.5 parent: 8364 - - uid: 5763 - components: - - type: Transform - pos: -1.5,-24.5 - parent: 8364 - - uid: 5781 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 8364 - uid: 5788 components: - type: Transform pos: -28.5,-64.5 parent: 8364 - - uid: 5789 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 8364 - - uid: 5861 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 8364 - - uid: 5866 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 8364 - - uid: 5874 - components: - - type: Transform - pos: -3.5,-24.5 - parent: 8364 - uid: 5949 components: - type: Transform @@ -49711,26 +51746,6 @@ entities: - type: Transform pos: 5.5,-25.5 parent: 8364 - - uid: 6094 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 8364 - - uid: 6095 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 8364 - - uid: 6096 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 8364 - - uid: 6097 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 8364 - uid: 6315 components: - type: Transform @@ -50351,11 +52366,6 @@ entities: - type: Transform pos: 3.5,-45.5 parent: 8364 - - uid: 8142 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 8364 - uid: 8161 components: - type: Transform @@ -53456,36 +55466,6 @@ entities: - type: Transform pos: -23.5,-12.5 parent: 8364 - - uid: 14501 - components: - - type: Transform - pos: -23.5,-11.5 - parent: 8364 - - uid: 14502 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 8364 - - uid: 14503 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 8364 - - uid: 14504 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 8364 - - uid: 14505 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 8364 - - uid: 14506 - components: - - type: Transform - pos: -19.5,-10.5 - parent: 8364 - uid: 14572 components: - type: Transform @@ -53906,11 +55886,6 @@ entities: - type: Transform pos: -26.5,-20.5 parent: 8364 - - uid: 14919 - components: - - type: Transform - pos: 1.5,-24.5 - parent: 8364 - uid: 14970 components: - type: Transform @@ -56451,16 +58426,6 @@ entities: - type: Transform pos: 69.5,-45.5 parent: 8364 - - uid: 20279 - components: - - type: Transform - pos: 70.5,-45.5 - parent: 8364 - - uid: 20280 - components: - - type: Transform - pos: 71.5,-45.5 - parent: 8364 - uid: 20281 components: - type: Transform @@ -56501,11 +58466,6 @@ entities: - type: Transform pos: 77.5,-43.5 parent: 8364 - - uid: 20289 - components: - - type: Transform - pos: 66.5,-39.5 - parent: 8364 - uid: 20290 components: - type: Transform @@ -56671,11 +58631,6 @@ entities: - type: Transform pos: 61.5,-29.5 parent: 8364 - - uid: 20327 - components: - - type: Transform - pos: 66.5,-26.5 - parent: 8364 - uid: 20328 components: - type: Transform @@ -56831,6 +58786,16 @@ entities: - type: Transform pos: 55.5,-32.5 parent: 8364 + - uid: 20858 + components: + - type: Transform + pos: 66.5,-26.5 + parent: 8364 + - uid: 21376 + components: + - type: Transform + pos: 66.5,-39.5 + parent: 8364 - uid: 21473 components: - type: Transform @@ -57326,45 +59291,30 @@ entities: - type: Transform pos: 8.5,-36.5 parent: 8364 - - uid: 22005 + - uid: 21968 components: - type: Transform - pos: -10.5,-19.5 + pos: 71.5,-45.5 parent: 8364 - - uid: 22214 + - uid: 22005 components: - type: Transform - pos: 24.5,-112.5 + pos: -10.5,-19.5 parent: 8364 - uid: 22216 components: - type: Transform pos: 7.5,-86.5 parent: 8364 - - uid: 22220 - components: - - type: Transform - pos: 25.5,-112.5 - parent: 8364 - - uid: 22450 - components: - - type: Transform - pos: 26.5,-112.5 - parent: 8364 - - uid: 22451 - components: - - type: Transform - pos: 26.5,-111.5 - parent: 8364 - - uid: 22452 + - uid: 22536 components: - type: Transform - pos: 26.5,-110.5 + pos: -22.5,-74.5 parent: 8364 - - uid: 22453 + - uid: 22537 components: - type: Transform - pos: 27.5,-110.5 + pos: -22.5,-73.5 parent: 8364 - uid: 22634 components: @@ -57441,11 +59391,56 @@ entities: - type: Transform pos: -16.5,-70.5 parent: 8364 + - uid: 23849 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 8364 + - uid: 23904 + components: + - type: Transform + pos: 70.5,-45.5 + parent: 8364 + - uid: 23914 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 8364 - uid: 24189 components: - type: Transform pos: -1.5,-8.5 parent: 8364 + - uid: 24923 + components: + - type: Transform + pos: -20.5,-74.5 + parent: 8364 + - uid: 24927 + components: + - type: Transform + pos: -21.5,-76.5 + parent: 8364 + - uid: 24974 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 8364 + - uid: 25089 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 8364 + - uid: 25215 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 8364 + - uid: 25251 + components: + - type: Transform + pos: -22.5,-76.5 + parent: 8364 - uid: 25262 components: - type: Transform @@ -58231,6 +60226,16 @@ entities: - type: Transform pos: -14.5,34.5 parent: 8364 + - uid: 26673 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 8364 + - uid: 26679 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 8364 - uid: 26715 components: - type: Transform @@ -58276,310 +60281,40 @@ entities: - type: Transform pos: -6.5,-80.5 parent: 8364 - - uid: 26970 - components: - - type: Transform - pos: 35.5,-92.5 - parent: 8364 - - uid: 26971 - components: - - type: Transform - pos: 34.5,-92.5 - parent: 8364 - - uid: 26972 - components: - - type: Transform - pos: 33.5,-92.5 - parent: 8364 - - uid: 26973 - components: - - type: Transform - pos: 33.5,-91.5 - parent: 8364 - - uid: 26974 - components: - - type: Transform - pos: 33.5,-90.5 - parent: 8364 - - uid: 26975 - components: - - type: Transform - pos: 33.5,-89.5 - parent: 8364 - - uid: 26976 - components: - - type: Transform - pos: 34.5,-89.5 - parent: 8364 - - uid: 26977 - components: - - type: Transform - pos: 32.5,-91.5 - parent: 8364 - - uid: 26978 - components: - - type: Transform - pos: 31.5,-91.5 - parent: 8364 - - uid: 26979 - components: - - type: Transform - pos: 30.5,-91.5 - parent: 8364 - - uid: 26980 - components: - - type: Transform - pos: 29.5,-91.5 - parent: 8364 - - uid: 26981 - components: - - type: Transform - pos: 28.5,-91.5 - parent: 8364 - - uid: 26982 - components: - - type: Transform - pos: 28.5,-90.5 - parent: 8364 - - uid: 26983 - components: - - type: Transform - pos: 28.5,-89.5 - parent: 8364 - - uid: 26984 - components: - - type: Transform - pos: 28.5,-88.5 - parent: 8364 - - uid: 26985 - components: - - type: Transform - pos: 28.5,-87.5 - parent: 8364 - - uid: 26986 - components: - - type: Transform - pos: 28.5,-86.5 - parent: 8364 - - uid: 26987 - components: - - type: Transform - pos: 29.5,-86.5 - parent: 8364 - - uid: 26988 - components: - - type: Transform - pos: 30.5,-86.5 - parent: 8364 - - uid: 26989 - components: - - type: Transform - pos: 31.5,-86.5 - parent: 8364 - - uid: 26990 - components: - - type: Transform - pos: 27.5,-91.5 - parent: 8364 - - uid: 26991 - components: - - type: Transform - pos: 26.5,-91.5 - parent: 8364 - - uid: 26992 - components: - - type: Transform - pos: 25.5,-91.5 - parent: 8364 - - uid: 26993 - components: - - type: Transform - pos: 24.5,-91.5 - parent: 8364 - - uid: 26994 - components: - - type: Transform - pos: 23.5,-91.5 - parent: 8364 - - uid: 26995 - components: - - type: Transform - pos: 22.5,-91.5 - parent: 8364 - - uid: 26996 - components: - - type: Transform - pos: 22.5,-92.5 - parent: 8364 - - uid: 26997 - components: - - type: Transform - pos: 21.5,-92.5 - parent: 8364 - - uid: 26998 - components: - - type: Transform - pos: 28.5,-92.5 - parent: 8364 - - uid: 26999 - components: - - type: Transform - pos: 28.5,-93.5 - parent: 8364 - - uid: 27000 - components: - - type: Transform - pos: 28.5,-94.5 - parent: 8364 - - uid: 27001 - components: - - type: Transform - pos: 28.5,-95.5 - parent: 8364 - - uid: 27002 - components: - - type: Transform - pos: 28.5,-96.5 - parent: 8364 - - uid: 27003 - components: - - type: Transform - pos: 28.5,-97.5 - parent: 8364 - - uid: 27004 + - uid: 26943 components: - type: Transform - pos: 28.5,-98.5 + pos: -0.5,-17.5 parent: 8364 - - uid: 27005 + - uid: 26954 components: - type: Transform - pos: 28.5,-99.5 + pos: -0.5,-16.5 parent: 8364 - - uid: 27006 + - uid: 26955 components: - type: Transform - pos: 28.5,-100.5 + pos: -0.5,-15.5 parent: 8364 - - uid: 27007 + - uid: 26956 components: - type: Transform - pos: 29.5,-100.5 + pos: -20.5,-72.5 parent: 8364 - uid: 27008 components: - type: Transform - pos: 30.5,-100.5 - parent: 8364 - - uid: 27009 - components: - - type: Transform - pos: 31.5,-100.5 - parent: 8364 - - uid: 27010 - components: - - type: Transform - pos: 32.5,-100.5 - parent: 8364 - - uid: 27011 - components: - - type: Transform - pos: 32.5,-99.5 - parent: 8364 - - uid: 27012 - components: - - type: Transform - pos: 32.5,-98.5 - parent: 8364 - - uid: 27013 - components: - - type: Transform - pos: 32.5,-97.5 - parent: 8364 - - uid: 27014 - components: - - type: Transform - pos: 32.5,-96.5 - parent: 8364 - - uid: 27015 - components: - - type: Transform - pos: 32.5,-95.5 - parent: 8364 - - uid: 27016 - components: - - type: Transform - pos: 32.5,-94.5 - parent: 8364 - - uid: 27017 - components: - - type: Transform - pos: 32.5,-93.5 - parent: 8364 - - uid: 27018 - components: - - type: Transform - pos: 32.5,-92.5 - parent: 8364 - - uid: 27019 - components: - - type: Transform - pos: 28.5,-101.5 - parent: 8364 - - uid: 27020 - components: - - type: Transform - pos: 28.5,-102.5 - parent: 8364 - - uid: 27021 - components: - - type: Transform - pos: 28.5,-103.5 - parent: 8364 - - uid: 27022 - components: - - type: Transform - pos: 28.5,-104.5 - parent: 8364 - - uid: 27023 - components: - - type: Transform - pos: 28.5,-105.5 - parent: 8364 - - uid: 27024 - components: - - type: Transform - pos: 28.5,-106.5 - parent: 8364 - - uid: 27025 - components: - - type: Transform - pos: 28.5,-107.5 - parent: 8364 - - uid: 27026 - components: - - type: Transform - pos: 28.5,-108.5 - parent: 8364 - - uid: 27027 - components: - - type: Transform - pos: 28.5,-109.5 - parent: 8364 - - uid: 27028 - components: - - type: Transform - pos: 28.5,-110.5 + pos: -1.5,-15.5 parent: 8364 - - uid: 27029 + - uid: 27054 components: - type: Transform - pos: 28.5,-111.5 + pos: -20.5,-73.5 parent: 8364 - - uid: 27030 + - uid: 27205 components: - type: Transform - pos: 29.5,-111.5 + pos: -20.5,-75.5 parent: 8364 - uid: 27314 components: @@ -58781,6 +60516,11 @@ entities: - type: Transform pos: -0.5,-76.5 parent: 8364 + - uid: 27814 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 8364 - uid: 27967 components: - type: Transform @@ -58801,11 +60541,56 @@ entities: - type: Transform pos: 59.5,-38.5 parent: 8364 + - uid: 27993 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 8364 + - uid: 27994 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 8364 + - uid: 27995 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 8364 + - uid: 27996 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 8364 + - uid: 27998 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 8364 + - uid: 27999 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 8364 - uid: 28060 components: - type: Transform pos: 58.5,-35.5 parent: 8364 + - uid: 28156 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 8364 + - uid: 28157 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 8364 + - uid: 28158 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 8364 - proto: CableMVStack entities: - uid: 1697 @@ -58992,17 +60777,11 @@ entities: rot: -1.5707963267948966 rad pos: 81.5,-65.5 parent: 8364 - - uid: 21376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-114.5 - parent: 8364 - - uid: 26965 + - uid: 25051 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-92.5 + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 parent: 8364 - proto: CannabisSeeds entities: @@ -59026,12 +60805,12 @@ entities: - uid: 21190 components: - type: Transform - pos: 74.3515,-19.897121 + pos: 74.41276,-20.008142 parent: 8364 - uid: 21198 components: - type: Transform - pos: 74.72912,-20.240425 + pos: 74.631615,-20.414675 parent: 8364 - proto: CaptainIDCard entities: @@ -59069,6 +60848,21 @@ entities: - type: Transform pos: -15.5,52.5 parent: 8364 + - uid: 4508 + components: + - type: Transform + pos: 55.5,-8.5 + parent: 8364 + - uid: 4510 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 8364 + - uid: 4512 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 8364 - uid: 5260 components: - type: Transform @@ -59129,21 +60923,6 @@ entities: - type: Transform pos: 55.5,-3.5 parent: 8364 - - uid: 5378 - components: - - type: Transform - pos: 55.5,-4.5 - parent: 8364 - - uid: 5379 - components: - - type: Transform - pos: 55.5,-5.5 - parent: 8364 - - uid: 5380 - components: - - type: Transform - pos: 55.5,-6.5 - parent: 8364 - uid: 5384 components: - type: Transform @@ -59154,21 +60933,6 @@ entities: - type: Transform pos: 56.5,-3.5 parent: 8364 - - uid: 5386 - components: - - type: Transform - pos: 56.5,-4.5 - parent: 8364 - - uid: 5387 - components: - - type: Transform - pos: 56.5,-5.5 - parent: 8364 - - uid: 5388 - components: - - type: Transform - pos: 56.5,-6.5 - parent: 8364 - uid: 5396 components: - type: Transform @@ -59399,16 +61163,31 @@ entities: - type: Transform pos: 11.5,-24.5 parent: 8364 + - uid: 6089 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 8364 - uid: 7045 components: - type: Transform pos: 8.5,-27.5 parent: 8364 + - uid: 7418 + components: + - type: Transform + pos: 55.5,-9.5 + parent: 8364 - uid: 8026 components: - type: Transform pos: 20.5,-7.5 parent: 8364 + - uid: 8143 + components: + - type: Transform + pos: 55.5,-7.5 + parent: 8364 - uid: 8200 components: - type: Transform @@ -59464,6 +61243,11 @@ entities: - type: Transform pos: 20.5,-8.5 parent: 8364 + - uid: 14484 + components: + - type: Transform + pos: 56.5,-8.5 + parent: 8364 - uid: 14857 components: - type: Transform @@ -59569,6 +61353,16 @@ entities: - type: Transform pos: -31.5,-25.5 parent: 8364 + - uid: 22732 + components: + - type: Transform + pos: 55.5,-4.5 + parent: 8364 + - uid: 22733 + components: + - type: Transform + pos: 56.5,-5.5 + parent: 8364 - uid: 22809 components: - type: Transform @@ -59594,36 +61388,6 @@ entities: - type: Transform pos: 19.5,-5.5 parent: 8364 - - uid: 24941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-7.5 - parent: 8364 - - uid: 24942 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-7.5 - parent: 8364 - - uid: 24943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-8.5 - parent: 8364 - - uid: 24944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-8.5 - parent: 8364 - - uid: 24945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-8.5 - parent: 8364 - uid: 24946 components: - type: Transform @@ -59636,23 +61400,15 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,-9.5 parent: 8364 - - uid: 24948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-9.5 - parent: 8364 - uid: 24949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-9.5 + pos: 56.5,-4.5 parent: 8364 - - uid: 24950 + - uid: 24961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-9.5 + pos: 56.5,-7.5 parent: 8364 - uid: 25684 components: @@ -59734,6 +61490,21 @@ entities: - type: Transform pos: -11.5,52.5 parent: 8364 + - uid: 26680 + components: + - type: Transform + pos: 57.5,-9.5 + parent: 8364 + - uid: 26684 + components: + - type: Transform + pos: 57.5,-8.5 + parent: 8364 + - uid: 26690 + components: + - type: Transform + pos: 56.5,-9.5 + parent: 8364 - uid: 26884 components: - type: Transform @@ -60115,6 +61886,11 @@ entities: parent: 8364 - proto: CarpetGreen entities: + - uid: 828 + components: + - type: Transform + pos: 69.5,-4.5 + parent: 8364 - uid: 1588 components: - type: Transform @@ -60140,130 +61916,161 @@ entities: - type: Transform pos: 11.5,-36.5 parent: 8364 - - uid: 5239 + - uid: 4513 components: - type: Transform - pos: 56.5,-34.5 + pos: 66.5,-8.5 parent: 8364 - - uid: 5242 + - uid: 4518 components: - type: Transform - pos: 56.5,-35.5 + pos: 66.5,-9.5 parent: 8364 - - uid: 6952 + - uid: 4521 components: - type: Transform - pos: 21.5,-3.5 + pos: 69.5,-8.5 parent: 8364 - - uid: 6990 + - uid: 4530 components: - type: Transform - pos: 22.5,-3.5 + rot: 3.141592653589793 rad + pos: 70.5,-8.5 parent: 8364 - - uid: 7001 + - uid: 4531 components: - type: Transform - pos: 23.5,-3.5 + rot: 3.141592653589793 rad + pos: 69.5,-9.5 parent: 8364 - - uid: 7003 + - uid: 4533 components: - type: Transform - pos: 74.5,-9.5 + rot: 3.141592653589793 rad + pos: 68.5,-9.5 parent: 8364 - - uid: 7013 + - uid: 4534 components: - type: Transform - pos: 64.5,-9.5 + rot: 3.141592653589793 rad + pos: 68.5,-10.5 parent: 8364 - - uid: 7022 + - uid: 4535 components: - type: Transform - pos: 68.5,-6.5 + rot: 3.141592653589793 rad + pos: 69.5,-10.5 parent: 8364 - - uid: 7036 + - uid: 5239 components: - type: Transform - pos: 18.5,24.5 + pos: 56.5,-34.5 parent: 8364 - - uid: 7038 + - uid: 5242 components: - type: Transform - pos: 66.5,-9.5 + pos: 56.5,-35.5 parent: 8364 - - uid: 7046 + - uid: 5737 components: - type: Transform - pos: 70.5,-10.5 + pos: 69.5,-5.5 parent: 8364 - - uid: 7074 + - uid: 5739 components: - type: Transform - pos: 67.5,-8.5 + pos: 69.5,-6.5 parent: 8364 - - uid: 7080 + - uid: 5828 components: - type: Transform - pos: 64.5,-8.5 + rot: 1.5707963267948966 rad + pos: -22.5,-12.5 parent: 8364 - - uid: 7087 + - uid: 5876 components: - type: Transform - pos: 66.5,-8.5 + pos: 71.5,-9.5 parent: 8364 - - uid: 7090 + - uid: 5882 components: - type: Transform - pos: 18.5,25.5 + pos: 72.5,-8.5 parent: 8364 - - uid: 7092 + - uid: 5883 components: - type: Transform - pos: 68.5,-9.5 + pos: 72.5,-9.5 parent: 8364 - - uid: 7127 + - uid: 5988 components: - type: Transform - pos: 68.5,-4.5 + pos: 71.5,-8.5 parent: 8364 - - uid: 7133 + - uid: 6090 components: - type: Transform - pos: 65.5,-8.5 + pos: 69.5,-7.5 parent: 8364 - - uid: 7153 + - uid: 6952 components: - type: Transform - pos: 69.5,-10.5 + pos: 21.5,-3.5 parent: 8364 - - uid: 7154 + - uid: 6990 components: - type: Transform - pos: 68.5,-8.5 + pos: 22.5,-3.5 parent: 8364 - - uid: 7176 + - uid: 7001 components: - type: Transform - pos: 68.5,-10.5 + pos: 23.5,-3.5 parent: 8364 - - uid: 7181 + - uid: 7003 components: - type: Transform - pos: 68.5,-5.5 + pos: 74.5,-9.5 parent: 8364 - - uid: 7217 + - uid: 7013 components: - type: Transform - pos: 67.5,-9.5 + pos: 64.5,-9.5 parent: 8364 - - uid: 7224 + - uid: 7022 components: - type: Transform - pos: 71.5,-10.5 + pos: 68.5,-6.5 parent: 8364 - - uid: 7231 + - uid: 7036 components: - type: Transform - pos: 65.5,-9.5 + pos: 18.5,24.5 + parent: 8364 + - uid: 7080 + components: + - type: Transform + pos: 64.5,-8.5 + parent: 8364 + - uid: 7090 + components: + - type: Transform + pos: 18.5,25.5 + parent: 8364 + - uid: 7127 + components: + - type: Transform + pos: 68.5,-4.5 + parent: 8364 + - uid: 7181 + components: + - type: Transform + pos: 68.5,-5.5 + parent: 8364 + - uid: 7224 + components: + - type: Transform + pos: 71.5,-10.5 parent: 8364 - uid: 7232 components: @@ -60290,6 +62097,21 @@ entities: - type: Transform pos: 16.5,24.5 parent: 8364 + - uid: 8146 + components: + - type: Transform + pos: 67.5,-8.5 + parent: 8364 + - uid: 8147 + components: + - type: Transform + pos: 65.5,-8.5 + parent: 8364 + - uid: 8148 + components: + - type: Transform + pos: 65.5,-9.5 + parent: 8364 - uid: 8401 components: - type: Transform @@ -60320,6 +62142,12 @@ entities: - type: Transform pos: 61.5,-3.5 parent: 8364 + - uid: 10870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 8364 - uid: 11373 components: - type: Transform @@ -60470,11 +62298,29 @@ entities: - type: Transform pos: 54.5,-0.5 parent: 8364 + - uid: 17704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-10.5 + parent: 8364 - uid: 19153 components: - type: Transform pos: 11.5,-35.5 parent: 8364 + - uid: 20119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-9.5 + parent: 8364 + - uid: 20124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-8.5 + parent: 8364 - uid: 20364 components: - type: Transform @@ -60530,71 +62376,21 @@ entities: - type: Transform pos: 5.5,-18.5 parent: 8364 - - uid: 24969 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-9.5 - parent: 8364 - - uid: 24970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-9.5 - parent: 8364 - - uid: 24971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-9.5 - parent: 8364 - - uid: 24972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-9.5 - parent: 8364 - - uid: 24973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-9.5 - parent: 8364 - - uid: 24974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-8.5 - parent: 8364 - - uid: 24975 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-8.5 - parent: 8364 - - uid: 24976 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-8.5 - parent: 8364 - - uid: 24977 + - uid: 22736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-8.5 + pos: 68.5,-8.5 parent: 8364 - - uid: 24978 + - uid: 22737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-8.5 + pos: 67.5,-9.5 parent: 8364 - - uid: 24979 + - uid: 23772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-7.5 + rot: 3.141592653589793 rad + pos: 70.5,-9.5 parent: 8364 - uid: 24980 components: @@ -60608,35 +62404,29 @@ entities: rot: 1.5707963267948966 rad pos: 70.5,-6.5 parent: 8364 - - uid: 24982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-6.5 - parent: 8364 - - uid: 24983 + - uid: 24985 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,-5.5 + pos: 70.5,-4.5 parent: 8364 - - uid: 24984 + - uid: 24986 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,-4.5 + pos: 70.5,-5.5 parent: 8364 - - uid: 24985 + - uid: 25190 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,-4.5 + pos: -21.5,-13.5 parent: 8364 - - uid: 24986 + - uid: 25201 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,-5.5 + pos: -20.5,-13.5 parent: 8364 - uid: 26117 components: @@ -60674,6 +62464,18 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-0.5 parent: 8364 + - uid: 27021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 8364 + - uid: 27022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 8364 - proto: CarpetOrange entities: - uid: 1753 @@ -61022,11 +62824,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-16.5 parent: 8364 - - uid: 13471 - components: - - type: Transform - pos: -23.5,-11.5 - parent: 8364 - uid: 13478 components: - type: Transform @@ -61043,46 +62840,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-16.5 parent: 8364 - - uid: 14091 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 8364 - - uid: 14105 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 8364 - - uid: 14106 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 8364 - - uid: 14113 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 8364 - - uid: 14114 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 8364 - - uid: 14115 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 8364 - - uid: 14116 - components: - - type: Transform - pos: -22.5,-11.5 - parent: 8364 - - uid: 14117 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 8364 - uid: 19150 components: - type: Transform @@ -61123,11 +62880,29 @@ entities: - type: Transform pos: 49.5,-30.5 parent: 8364 + - uid: 2017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-79.5 + parent: 8364 + - uid: 3606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-88.5 + parent: 8364 - uid: 4244 components: - type: Transform pos: 49.5,-18.5 parent: 8364 + - uid: 4476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-79.5 + parent: 8364 - uid: 4663 components: - type: Transform @@ -61143,6 +62918,29 @@ entities: - type: Transform pos: 49.5,-22.5 parent: 8364 + - uid: 5861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-88.5 + parent: 8364 + - uid: 5864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-79.5 + parent: 8364 + - uid: 5865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-79.5 + parent: 8364 + - uid: 5866 + components: + - type: Transform + pos: 0.5,41.5 + parent: 8364 - uid: 7149 components: - type: Transform @@ -61158,6 +62956,12 @@ entities: - type: Transform pos: 2.5,11.5 parent: 8364 + - uid: 10548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 8364 - uid: 10573 components: - type: Transform @@ -61583,6 +63387,12 @@ entities: - type: Transform pos: 32.5,-45.5 parent: 8364 + - uid: 12262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-88.5 + parent: 8364 - uid: 12328 components: - type: Transform @@ -61623,6 +63433,12 @@ entities: - type: Transform pos: 32.5,-53.5 parent: 8364 + - uid: 12458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-88.5 + parent: 8364 - uid: 12561 components: - type: Transform @@ -62268,6 +64084,12 @@ entities: - type: Transform pos: -22.5,10.5 parent: 8364 + - uid: 13781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-79.5 + parent: 8364 - uid: 13786 components: - type: Transform @@ -62308,6 +64130,18 @@ entities: - type: Transform pos: -39.5,-17.5 parent: 8364 + - uid: 14091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-79.5 + parent: 8364 + - uid: 14106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-84.5 + parent: 8364 - uid: 14119 components: - type: Transform @@ -62393,16 +64227,6 @@ entities: - type: Transform pos: -26.5,-10.5 parent: 8364 - - uid: 14702 - components: - - type: Transform - pos: -26.5,-11.5 - parent: 8364 - - uid: 14703 - components: - - type: Transform - pos: -26.5,-12.5 - parent: 8364 - uid: 14757 components: - type: Transform @@ -63118,6 +64942,21 @@ entities: - type: Transform pos: 47.5,38.5 parent: 8364 + - uid: 15831 + components: + - type: Transform + pos: -53.5,-61.5 + parent: 8364 + - uid: 15857 + components: + - type: Transform + pos: -45.5,-61.5 + parent: 8364 + - uid: 15858 + components: + - type: Transform + pos: -55.5,-61.5 + parent: 8364 - uid: 15871 components: - type: Transform @@ -63138,6 +64977,12 @@ entities: - type: Transform pos: 47.5,34.5 parent: 8364 + - uid: 15879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-79.5 + parent: 8364 - uid: 15894 components: - type: Transform @@ -63498,6 +65343,18 @@ entities: - type: Transform pos: -47.5,13.5 parent: 8364 + - uid: 16145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-88.5 + parent: 8364 + - uid: 16207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-88.5 + parent: 8364 - uid: 16307 components: - type: Transform @@ -63578,11 +65435,35 @@ entities: - type: Transform pos: -49.5,2.5 parent: 8364 + - uid: 16396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-81.5 + parent: 8364 + - uid: 16398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-79.5 + parent: 8364 + - uid: 16451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-79.5 + parent: 8364 - uid: 16452 components: - type: Transform pos: -49.5,1.5 parent: 8364 + - uid: 16506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-84.5 + parent: 8364 - uid: 16532 components: - type: Transform @@ -63603,16 +65484,53 @@ entities: - type: Transform pos: 0.5,-76.5 parent: 8364 - - uid: 16634 + - uid: 16553 components: - type: Transform - pos: 27.5,-76.5 + rot: 3.141592653589793 rad + pos: 23.5,-88.5 + parent: 8364 + - uid: 16554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-80.5 + parent: 8364 + - uid: 16555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-84.5 + parent: 8364 + - uid: 16619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-87.5 + parent: 8364 + - uid: 16621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-85.5 parent: 8364 - uid: 16714 components: - type: Transform pos: -0.5,-77.5 parent: 8364 + - uid: 16789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-79.5 + parent: 8364 + - uid: 16973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-79.5 + parent: 8364 - uid: 17184 components: - type: Transform @@ -63656,80 +65574,60 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-68.5 parent: 8364 - - uid: 19189 - components: - - type: Transform - pos: -42.5,-61.5 - parent: 8364 - - uid: 19194 - components: - - type: Transform - pos: -43.5,-61.5 - parent: 8364 - - uid: 19195 - components: - - type: Transform - pos: -44.5,-61.5 - parent: 8364 - - uid: 19196 - components: - - type: Transform - pos: -45.5,-61.5 - parent: 8364 - - uid: 19197 + - uid: 19173 components: - type: Transform - pos: -46.5,-61.5 + pos: -49.5,-61.5 parent: 8364 - - uid: 19200 + - uid: 19175 components: - type: Transform pos: -47.5,-61.5 parent: 8364 - - uid: 19201 + - uid: 19189 components: - type: Transform - pos: -48.5,-61.5 + pos: -51.5,-61.5 parent: 8364 - - uid: 19202 + - uid: 19194 components: - type: Transform - pos: -49.5,-61.5 + pos: -42.5,-61.5 parent: 8364 - - uid: 19203 + - uid: 19195 components: - type: Transform - pos: -50.5,-61.5 + pos: -45.5,-60.5 parent: 8364 - - uid: 19204 + - uid: 19196 components: - type: Transform - pos: -51.5,-61.5 + pos: -53.5,-62.5 parent: 8364 - - uid: 19205 + - uid: 19200 components: - type: Transform - pos: -52.5,-61.5 + pos: -49.5,-60.5 parent: 8364 - - uid: 19207 + - uid: 19201 components: - type: Transform - pos: -53.5,-61.5 + pos: -53.5,-60.5 parent: 8364 - uid: 19209 components: - type: Transform - pos: -54.5,-61.5 + pos: -45.5,-62.5 parent: 8364 - uid: 19210 components: - type: Transform - pos: -55.5,-61.5 + pos: -49.5,-62.5 parent: 8364 - uid: 19211 components: - type: Transform - pos: -56.5,-61.5 + pos: -43.5,-61.5 parent: 8364 - uid: 19212 components: @@ -63759,12 +65657,12 @@ entities: - uid: 19222 components: - type: Transform - pos: -53.5,-60.5 + pos: -54.5,-61.5 parent: 8364 - uid: 19223 components: - type: Transform - pos: -49.5,-60.5 + pos: -52.5,-61.5 parent: 8364 - uid: 19224 components: @@ -63819,12 +65717,12 @@ entities: - uid: 19269 components: - type: Transform - pos: -45.5,-60.5 + pos: -50.5,-61.5 parent: 8364 - uid: 19270 components: - type: Transform - pos: -45.5,-62.5 + pos: -48.5,-61.5 parent: 8364 - uid: 19271 components: @@ -63854,7 +65752,7 @@ entities: - uid: 19290 components: - type: Transform - pos: -49.5,-62.5 + pos: -46.5,-61.5 parent: 8364 - uid: 19291 components: @@ -63884,7 +65782,7 @@ entities: - uid: 19300 components: - type: Transform - pos: -53.5,-62.5 + pos: -44.5,-61.5 parent: 8364 - uid: 19301 components: @@ -64246,6 +66144,12 @@ entities: - type: Transform pos: 87.5,-74.5 parent: 8364 + - uid: 22000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-79.5 + parent: 8364 - uid: 22489 components: - type: Transform @@ -64366,21 +66270,6 @@ entities: - type: Transform pos: 52.5,-79.5 parent: 8364 - - uid: 22513 - components: - - type: Transform - pos: 52.5,-80.5 - parent: 8364 - - uid: 22514 - components: - - type: Transform - pos: 52.5,-81.5 - parent: 8364 - - uid: 22515 - components: - - type: Transform - pos: 52.5,-82.5 - parent: 8364 - uid: 22517 components: - type: Transform @@ -64446,6 +66335,72 @@ entities: - type: Transform pos: -10.5,-74.5 parent: 8364 + - uid: 22744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-88.5 + parent: 8364 + - uid: 22922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-82.5 + parent: 8364 + - uid: 22941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-79.5 + parent: 8364 + - uid: 22944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-79.5 + parent: 8364 + - uid: 23002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-79.5 + parent: 8364 + - uid: 23006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-88.5 + parent: 8364 + - uid: 23008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-88.5 + parent: 8364 + - uid: 23150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-88.5 + parent: 8364 + - uid: 23153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-86.5 + parent: 8364 + - uid: 23179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-79.5 + parent: 8364 + - uid: 23182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-83.5 + parent: 8364 - uid: 26401 components: - type: Transform @@ -64590,15 +66545,27 @@ entities: - type: Transform pos: -1.5,-75.5 parent: 8364 - - uid: 27276 + - uid: 26784 components: - type: Transform - pos: -0.5,41.5 + pos: -56.5,-61.5 parent: 8364 - - uid: 27277 + - uid: 26995 components: - type: Transform - pos: 0.5,41.5 + rot: 1.5707963267948966 rad + pos: 30.5,-88.5 + parent: 8364 + - uid: 27060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-84.5 + parent: 8364 + - uid: 27276 + components: + - type: Transform + pos: -0.5,41.5 parent: 8364 - uid: 27278 components: @@ -64741,80 +66708,11 @@ entities: - type: Transform pos: 86.5,-13.5 parent: 8364 - - uid: 27836 - components: - - type: Transform - pos: 13.5,-68.5 - parent: 8364 - - uid: 27837 - components: - - type: Transform - pos: 14.5,-68.5 - parent: 8364 - - uid: 27838 - components: - - type: Transform - pos: 15.5,-68.5 - parent: 8364 - - uid: 27839 - components: - - type: Transform - pos: 16.5,-68.5 - parent: 8364 - - uid: 27840 - components: - - type: Transform - pos: 17.5,-68.5 - parent: 8364 - - uid: 27841 - components: - - type: Transform - pos: 18.5,-68.5 - parent: 8364 - - uid: 27842 - components: - - type: Transform - pos: 19.5,-68.5 - parent: 8364 - - uid: 27843 - components: - - type: Transform - pos: 21.5,-68.5 - parent: 8364 - - uid: 27844 - components: - - type: Transform - pos: 22.5,-68.5 - parent: 8364 - - uid: 27845 - components: - - type: Transform - pos: 20.5,-68.5 - parent: 8364 - - uid: 27846 - components: - - type: Transform - pos: 23.5,-68.5 - parent: 8364 - - uid: 27847 - components: - - type: Transform - pos: 24.5,-68.5 - parent: 8364 - - uid: 27876 - components: - - type: Transform - pos: 34.5,-80.5 - parent: 8364 - - uid: 27877 - components: - - type: Transform - pos: 34.5,-79.5 - parent: 8364 - - uid: 27878 + - uid: 27852 components: - type: Transform - pos: 34.5,-78.5 + rot: 1.5707963267948966 rad + pos: 33.5,-84.5 parent: 8364 - proto: Cautery entities: @@ -64825,12 +66723,6 @@ entities: parent: 8364 - proto: Chair entities: - - uid: 827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-105.5 - parent: 8364 - uid: 921 components: - type: Transform @@ -65421,11 +67313,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-66.5 parent: 8364 - - uid: 16145 - components: - - type: Transform - pos: -20.5,-72.5 - parent: 8364 - uid: 16694 components: - type: Transform @@ -65605,6 +67492,12 @@ entities: - type: Transform pos: 71.5,6.5 parent: 8364 + - uid: 27988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-41.5 + parent: 8364 - proto: ChairFolding entities: - uid: 6912 @@ -65641,17 +67534,6 @@ entities: parent: 8364 - proto: ChairOfficeDark entities: - - uid: 592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-85.5 - parent: 8364 - - uid: 824 - components: - - type: Transform - pos: 30.5,-106.5 - parent: 8364 - uid: 1859 components: - type: Transform @@ -65669,6 +67551,12 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-17.5 parent: 8364 + - uid: 3824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 8364 - uid: 5219 components: - type: Transform @@ -65717,17 +67605,17 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-26.5 parent: 8364 - - uid: 6985 + - uid: 5781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,3.5 + rot: 1.5707963267948966 rad + pos: -21.464273,-12.388837 parent: 8364 - - uid: 8203 + - uid: 6985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 + rot: -1.5707963267948966 rad + pos: 21.5,3.5 parent: 8364 - uid: 8393 components: @@ -65850,17 +67738,6 @@ entities: - type: Transform pos: 62.5,-6.5 parent: 8364 - - uid: 14089 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 8364 - - uid: 14111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-11.5 - parent: 8364 - uid: 14309 components: - type: Transform @@ -65975,6 +67852,12 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,-31.5 parent: 8364 + - uid: 23189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.567106,-24.230312 + parent: 8364 - uid: 25020 components: - type: Transform @@ -66025,11 +67908,6 @@ entities: - type: Transform pos: 1.5,28.5 parent: 8364 - - uid: 27919 - components: - - type: Transform - pos: 2.7203026,-11.488351 - parent: 8364 - uid: 28111 components: - type: Transform @@ -66089,11 +67967,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-41.5 parent: 8364 - - uid: 17554 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 8364 - uid: 17594 components: - type: Transform @@ -66464,6 +68337,11 @@ entities: - type: Transform pos: -61.04908,-2.3450234 parent: 8364 + - uid: 15345 + components: + - type: Transform + pos: 86.32974,-42.329636 + parent: 8364 - uid: 16746 components: - type: Transform @@ -66591,6 +68469,30 @@ entities: rot: 3.141592653589793 rad pos: 65.5,-3.5 parent: 8364 +- proto: CigaretteSpent + entities: + - uid: 4492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.651825,-41.79801 + parent: 8364 + - uid: 15341 + components: + - type: Transform + pos: 85.11039,-41.422752 + parent: 8364 + - uid: 22916 + components: + - type: Transform + pos: 85.433464,-41.568687 + parent: 8364 + - uid: 26738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 85.495995,-40.943253 + parent: 8364 - proto: CigarGold entities: - uid: 5205 @@ -66845,242 +68747,84 @@ entities: showEnts: False occludes: True ent: null - - uid: 1426 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 1513 - components: - - type: Transform - pos: -75.5,-3.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 5.0982914 - - 19.179287 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 2357 - components: - - type: Transform - pos: 37.5,-49.5 - parent: 8364 - - uid: 5311 - components: - - type: Transform - pos: -8.5,-9.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6518 - components: - - type: Transform - pos: 11.5,8.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9171 - components: - - type: Transform - pos: -19.5,19.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 9197 - components: - - type: Transform - pos: -17.5,24.5 - parent: 8364 - - uid: 9255 - components: - - type: Transform - pos: -16.5,24.5 - parent: 8364 - - uid: 9808 - components: - - type: Transform - pos: 24.5,25.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11897 - components: - - type: Transform - pos: 79.5,-6.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11898 + - uid: 1426 components: - type: Transform - pos: 79.5,-10.5 + pos: 1.5,-40.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1513 + components: + - type: Transform + pos: -75.5,-3.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 5.0982914 + - 19.179287 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 2357 + components: + - type: Transform + pos: 37.5,-49.5 + parent: 8364 + - uid: 5311 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6518 + components: + - type: Transform + pos: 11.5,8.5 parent: 8364 - type: EntityStorage air: @@ -67114,10 +68858,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 12557 + - uid: 9171 components: - type: Transform - pos: -70.5,-16.5 + pos: -19.5,19.5 parent: 8364 - type: EntityStorage air: @@ -67151,10 +68895,20 @@ entities: showEnts: False occludes: True ent: null - - uid: 12694 + - uid: 9197 components: - type: Transform - pos: -65.5,-7.5 + pos: -17.5,24.5 + parent: 8364 + - uid: 9255 + components: + - type: Transform + pos: -16.5,24.5 + parent: 8364 + - uid: 9808 + components: + - type: Transform + pos: 24.5,25.5 parent: 8364 - type: EntityStorage air: @@ -67188,10 +68942,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 12695 + - uid: 11897 components: - type: Transform - pos: -65.5,-11.5 + pos: 79.5,-6.5 parent: 8364 - type: EntityStorage air: @@ -67225,10 +68979,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 12715 + - uid: 11898 components: - type: Transform - pos: -73.5,-16.5 + pos: 79.5,-10.5 parent: 8364 - type: EntityStorage air: @@ -67262,10 +69016,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 12877 + - uid: 12557 components: - type: Transform - pos: 82.5,-12.5 + pos: -70.5,-16.5 parent: 8364 - type: EntityStorage air: @@ -67299,10 +69053,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 13840 + - uid: 12694 components: - type: Transform - pos: -54.5,-13.5 + pos: -65.5,-7.5 parent: 8364 - type: EntityStorage air: @@ -67322,10 +69076,24 @@ entities: - 0 - 0 - 0 - - uid: 13891 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 12695 components: - type: Transform - pos: -59.5,-20.5 + pos: -65.5,-11.5 parent: 8364 - type: EntityStorage air: @@ -67359,10 +69127,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 14100 + - uid: 12715 components: - type: Transform - pos: -23.5,-3.5 + pos: -73.5,-16.5 parent: 8364 - type: EntityStorage air: @@ -67382,10 +69150,24 @@ entities: - 0 - 0 - 0 - - uid: 14563 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 12877 components: - type: Transform - pos: 65.5,-17.5 + pos: 82.5,-12.5 parent: 8364 - type: EntityStorage air: @@ -67419,15 +69201,33 @@ entities: showEnts: False occludes: True ent: null - - uid: 15547 + - uid: 13840 components: - type: Transform - pos: 37.5,-48.5 + pos: -54.5,-13.5 parent: 8364 - - uid: 15602 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13891 components: - type: Transform - pos: -33.5,-47.5 + pos: -59.5,-20.5 parent: 8364 - type: EntityStorage air: @@ -67461,10 +69261,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 15936 + - uid: 14100 components: - type: Transform - pos: -28.5,-43.5 + pos: -23.5,-3.5 parent: 8364 - type: EntityStorage air: @@ -67484,24 +69284,10 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 16814 + - uid: 14563 components: - type: Transform - pos: -5.5,-53.5 + pos: 65.5,-17.5 parent: 8364 - type: EntityStorage air: @@ -67521,15 +69307,29 @@ entities: - 0 - 0 - 0 - - uid: 16859 + - type: ContainerContainer + containers: + EntityStorageComponent: !type:Container + showEnts: False + occludes: True + ents: [] + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15547 components: - type: Transform - pos: 1.5,-57.5 + pos: 37.5,-48.5 parent: 8364 - - uid: 19277 + - uid: 15602 components: - type: Transform - pos: 41.5,-51.5 + pos: -33.5,-47.5 parent: 8364 - type: EntityStorage air: @@ -67563,10 +69363,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 20019 + - uid: 15936 components: - type: Transform - pos: 50.5,-31.5 + pos: -28.5,-43.5 parent: 8364 - type: EntityStorage air: @@ -67600,10 +69400,38 @@ entities: showEnts: False occludes: True ent: null - - uid: 20026 + - uid: 16814 components: - type: Transform - pos: 86.5,-31.5 + pos: -5.5,-53.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 5.001885 + - 18.816614 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 16859 + components: + - type: Transform + pos: 1.5,-57.5 + parent: 8364 + - uid: 19277 + components: + - type: Transform + pos: 41.5,-51.5 parent: 8364 - type: EntityStorage air: @@ -67637,10 +69465,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 20028 + - uid: 20019 components: - type: Transform - pos: 91.5,-23.5 + pos: 50.5,-31.5 parent: 8364 - type: EntityStorage air: @@ -67674,10 +69502,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 20029 + - uid: 20026 components: - type: Transform - pos: 86.5,-51.5 + pos: 86.5,-31.5 parent: 8364 - type: EntityStorage air: @@ -67711,10 +69539,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 20030 + - uid: 20028 components: - type: Transform - pos: 86.5,-59.5 + pos: 91.5,-23.5 parent: 8364 - type: EntityStorage air: @@ -67748,10 +69576,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 20031 + - uid: 20030 components: - type: Transform - pos: 80.5,-61.5 + pos: 86.5,-59.5 parent: 8364 - type: EntityStorage air: @@ -67785,10 +69613,10 @@ entities: showEnts: False occludes: True ent: null - - uid: 20032 + - uid: 20031 components: - type: Transform - pos: 63.5,-70.5 + pos: 80.5,-61.5 parent: 8364 - type: EntityStorage air: @@ -67950,6 +69778,11 @@ entities: - type: Transform pos: 1.5,-55.5 parent: 8364 + - uid: 24914 + components: + - type: Transform + pos: 63.5,-72.5 + parent: 8364 - uid: 26546 components: - type: Transform @@ -67983,6 +69816,11 @@ entities: - type: Transform pos: -40.5,-20.5 parent: 8364 + - uid: 27861 + components: + - type: Transform + pos: 83.5,-50.5 + parent: 8364 - proto: ClosetEmergencyN2FilledRandom entities: - uid: 7998 @@ -68249,43 +70087,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 20024 - components: - - type: Transform - pos: 86.5,-50.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 20025 components: - type: Transform @@ -68398,6 +70199,11 @@ entities: - type: Transform pos: 11.5,-75.5 parent: 8364 + - uid: 25985 + components: + - type: Transform + pos: 83.5,-51.5 + parent: 8364 - uid: 27448 components: - type: Transform @@ -68643,6 +70449,18 @@ entities: - 0 - 0 - 0 +- proto: ClosetMaintenance + entities: + - uid: 15880 + components: + - type: Transform + pos: 70.5,-62.5 + parent: 8364 + - uid: 26939 + components: + - type: Transform + pos: 85.5,-59.5 + parent: 8364 - proto: ClosetMaintenanceFilledRandom entities: - uid: 1026 @@ -68705,6 +70523,11 @@ entities: - 0 - 0 - 0 + - uid: 8120 + components: + - type: Transform + pos: 71.5,-62.5 + parent: 8364 - uid: 10527 components: - type: Transform @@ -69349,63 +71172,27 @@ entities: - type: Transform pos: 15.5,-36.5 parent: 8364 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 14550 + - uid: 27033 components: - type: Transform - pos: 34.5,-46.5 + pos: 46.5,11.5 parent: 8364 - - uid: 21159 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 4325 components: - type: Transform - pos: 79.5,-54.5 + pos: -20.5,-77.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21290 + - uid: 14550 components: - type: Transform - pos: -1.5,-27.5 + pos: 34.5,-46.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21762 + - uid: 21159 components: - type: Transform - pos: 0.5,-27.5 + pos: 79.5,-54.5 parent: 8364 - type: EntityStorage air: @@ -69671,43 +71458,6 @@ entities: - type: Transform pos: -36.5,-7.5 parent: 8364 - - uid: 20017 - components: - - type: Transform - pos: 88.5,-31.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 21341 components: - type: Transform @@ -69974,11 +71724,6 @@ entities: parent: 8364 - proto: ClothingBeltUtility entities: - - uid: 10603 - components: - - type: Transform - pos: 60.05134,-49.51496 - parent: 8364 - uid: 12274 components: - type: Transform @@ -69989,11 +71734,6 @@ entities: - type: Transform pos: -34.5,-60.5 parent: 8364 - - uid: 21240 - components: - - type: Transform - pos: 60.5,-19.5 - parent: 8364 - uid: 26833 components: - type: Transform @@ -70013,11 +71753,6 @@ entities: - type: Transform pos: 74.5232,-33.467606 parent: 8364 - - uid: 5318 - components: - - type: Transform - pos: 74.5101,-30.533546 - parent: 8364 - uid: 12265 components: - type: Transform @@ -70035,11 +71770,6 @@ entities: - type: Transform pos: 74.511635,-31.335205 parent: 8364 - - uid: 22551 - components: - - type: Transform - pos: 69.542885,-29.28833 - parent: 8364 - proto: ClothingEyesGlassesMeson entities: - uid: 2018 @@ -70146,54 +71876,6 @@ entities: - type: Transform pos: 2.5269985,-33.330353 parent: 8364 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 12261 - components: - - type: Transform - pos: -42.47281,1.4692228 - parent: 8364 - - uid: 21614 - components: - - type: MetaData - name: the grey kings gloves - - type: Transform - pos: 43.508904,-73.44038 - parent: 8364 -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 11795 - components: - - type: Transform - pos: 70.5,12.5 - parent: 8364 - - uid: 11796 - components: - - type: Transform - pos: 46.5,13.5 - parent: 8364 - - uid: 13852 - components: - - type: Transform - pos: -48.265545,1.3473 - parent: 8364 - - uid: 14433 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 8364 - - uid: 19347 - components: - - type: Transform - pos: 47.523952,-66.32047 - parent: 8364 -- proto: ClothingHandsGlovesFingerless - entities: - - uid: 2257 - components: - - type: Transform - pos: 58.641335,-51.477516 - parent: 8364 - proto: ClothingHandsGlovesLatex entities: - uid: 21264 @@ -70338,6 +72020,13 @@ entities: - type: Transform pos: -17.569038,51.765076 parent: 8364 +- proto: ClothingHeadHatPaper + entities: + - uid: 5782 + components: + - type: Transform + pos: -22.41492,-12.798657 + parent: 8364 - proto: ClothingHeadHatPirate entities: - uid: 5004 @@ -70477,7 +72166,7 @@ entities: - uid: 20122 components: - type: Transform - pos: 76.5,-57.5 + pos: 80.51578,-56.381706 parent: 8364 - uid: 21145 components: @@ -70714,7 +72403,7 @@ entities: - uid: 21750 components: - type: Transform - pos: 45.295048,-62.737274 + pos: 45.45511,-62.762016 parent: 8364 - proto: ClothingOuterApron entities: @@ -70795,13 +72484,6 @@ entities: - type: Transform pos: -46.493744,14.462048 parent: 8364 -- proto: ClothingOuterCoatDetectiveLoadout - entities: - - uid: 17906 - components: - - type: Transform - pos: 45.44214,-62.516068 - parent: 8364 - proto: ClothingOuterCoatJensen entities: - uid: 14199 @@ -70826,6 +72508,13 @@ entities: - type: Transform pos: 58.27977,8.379128 parent: 8364 +- proto: ClothingOuterCoatTrench + entities: + - uid: 19343 + components: + - type: Transform + pos: 45.46393,-62.490334 + parent: 8364 - proto: ClothingOuterHardsuitEVA entities: - uid: 12448 @@ -70896,7 +72585,7 @@ entities: - uid: 20120 components: - type: Transform - pos: 76.5,-57.5 + pos: 80.5262,-56.392128 parent: 8364 - proto: ClothingOuterSuitMonkey entities: @@ -70967,11 +72656,6 @@ entities: - type: Transform pos: 88.4803,-26.689615 parent: 8364 - - uid: 13781 - components: - - type: Transform - pos: -53.5,3.5 - parent: 8364 - proto: ClothingShoesBootsMag entities: - uid: 94 @@ -71055,10 +72739,10 @@ entities: - type: Transform pos: -38.47627,-56.748375 parent: 8364 - - uid: 5120 + - uid: 27044 components: - type: Transform - pos: 1.4697213,-22.60485 + pos: -26.493788,-77.45809 parent: 8364 - proto: ClothingUniformJumpsuitEngineeringHazard entities: @@ -71603,7 +73287,7 @@ entities: - uid: 27910 components: - type: Transform - pos: -4.600172,-11.893632 + pos: -3.6,-23.95 parent: 8364 - proto: CommsComputerCircuitboard entities: @@ -71614,12 +73298,6 @@ entities: parent: 8364 - proto: ComputerAlert entities: - - uid: 661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-84.5 - parent: 8364 - uid: 1611 components: - type: Transform @@ -71643,6 +73321,10 @@ entities: rot: 3.141592653589793 rad pos: 79.5,-26.5 parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 20207: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - uid: 17552 components: - type: Transform @@ -71835,17 +73517,18 @@ entities: parent: 8364 - proto: ComputerFrame entities: - - uid: 16630 - components: - - type: Transform - pos: 30.5,-105.5 - parent: 8364 - uid: 19878 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-44.5 parent: 8364 + - uid: 28184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 8364 - proto: ComputerId entities: - uid: 5326 @@ -71870,6 +73553,14 @@ entities: - type: Transform pos: 5.5,-6.5 parent: 8364 +- proto: ComputerMassMedia + entities: + - uid: 23828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 8364 - proto: ComputerMedicalRecords entities: - uid: 12065 @@ -71891,12 +73582,6 @@ entities: parent: 8364 - proto: ComputerPowerMonitoring entities: - - uid: 595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-85.5 - parent: 8364 - uid: 5549 components: - type: Transform @@ -72140,18 +73825,27 @@ entities: - uid: 5216 components: - type: Transform + anchored: False pos: -13.5,-64.5 parent: 8364 + - type: Physics + bodyType: Dynamic - uid: 6436 components: - type: Transform + anchored: False pos: -12.5,-64.5 parent: 8364 + - type: Physics + bodyType: Dynamic - uid: 6437 components: - type: Transform + anchored: False pos: -12.5,-63.5 parent: 8364 + - type: Physics + bodyType: Dynamic - uid: 17155 components: - type: Transform @@ -72160,8 +73854,11 @@ entities: - uid: 26910 components: - type: Transform + anchored: False pos: -13.5,-63.5 parent: 8364 + - type: Physics + bodyType: Dynamic - proto: ConveyorBelt entities: - uid: 1073 @@ -72437,7 +74134,7 @@ entities: - uid: 27914 components: - type: Transform - pos: -4.441743,-12.321369 + pos: -3.5,-23.7 parent: 8364 - proto: CowToolboxFilled entities: @@ -72471,6 +74168,11 @@ entities: - 0 - 0 - 0 + - uid: 27530 + components: + - type: Transform + pos: 72.5,-43.5 + parent: 8364 - proto: CrateCoffin entities: - uid: 11610 @@ -72498,6 +74200,13 @@ entities: - type: Transform pos: 73.5,2.5 parent: 8364 +- proto: CrateContrabandStorageSecure + entities: + - uid: 27489 + components: + - type: Transform + pos: -2.5,32.5 + parent: 8364 - proto: CrateEmergencyRadiation entities: - uid: 19055 @@ -72522,305 +74231,99 @@ entities: - type: Transform pos: 57.5,-43.5 parent: 8364 - - uid: 12659 - components: - - type: Transform - pos: 58.5,-43.5 - parent: 8364 - - uid: 17774 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 8364 - - uid: 17776 - components: - - type: Transform - pos: -31.5,-13.5 - parent: 8364 - - uid: 17789 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 8364 - - uid: 17790 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 8364 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 17716 - components: - - type: Transform - pos: -11.5,-72.5 - parent: 8364 - - uid: 18724 - components: - - type: Transform - pos: -10.5,-72.5 - parent: 8364 -- proto: CrateEngineeringCableBulk - entities: - - uid: 9423 - components: - - type: Transform - pos: -44.5,10.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 13325 + - uid: 6287 components: - type: Transform - pos: -4.5,-33.5 + pos: 90.5,-31.5 parent: 8364 - - uid: 26622 + - uid: 6597 components: - type: Transform - pos: 7.5,-59.5 + pos: -8.5,-42.5 parent: 8364 -- proto: CrateEngineeringShuttle - entities: - - uid: 11998 + - uid: 6598 components: - type: Transform - pos: -67.5,16.5 + pos: -32.5,-43.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateFilledSpawner - entities: - - uid: 17768 + - uid: 6599 components: - type: Transform - pos: -32.5,-15.5 + pos: -20.5,-58.5 parent: 8364 - - uid: 17769 + - uid: 6600 components: - type: Transform - pos: -29.5,-14.5 + pos: -9.5,-41.5 parent: 8364 - - uid: 17770 + - uid: 6908 components: - type: Transform - pos: -30.5,-16.5 + pos: 89.5,-31.5 parent: 8364 - - uid: 27518 + - uid: 12023 components: - type: Transform - pos: -36.5,-26.5 + pos: -32.5,-13.5 parent: 8364 - - uid: 27519 + - uid: 12659 components: - type: Transform - pos: -37.5,-26.5 + pos: 58.5,-43.5 parent: 8364 - - uid: 27589 + - uid: 17774 components: - type: Transform - pos: -38.5,-26.5 + pos: -29.5,-16.5 parent: 8364 - - uid: 27590 + - uid: 17776 components: - type: Transform - pos: -38.5,-24.5 + pos: -31.5,-13.5 parent: 8364 - - uid: 27591 + - uid: 17789 components: - type: Transform - pos: -37.5,-24.5 + pos: -31.5,-12.5 parent: 8364 - - uid: 27592 + - uid: 17790 components: - type: Transform - pos: -36.5,-24.5 + pos: -29.5,-12.5 parent: 8364 - - uid: 27593 + - uid: 26568 components: - type: Transform - pos: -36.5,-22.5 + pos: -8.5,-44.5 parent: 8364 - - uid: 27594 + - uid: 26591 components: - type: Transform - pos: -37.5,-22.5 + pos: -20.5,-57.5 parent: 8364 - - uid: 27595 + - uid: 26878 components: - type: Transform - pos: -38.5,-22.5 + pos: -7.5,-43.5 parent: 8364 -- proto: CrateFreezer +- proto: CrateEngineeringAMEShielding entities: - - uid: 8211 - components: - - type: Transform - pos: 38.5,-2.5 - parent: 8364 - - uid: 17887 + - uid: 17716 components: - type: Transform - pos: 21.5,-36.5 + pos: -11.5,-72.5 parent: 8364 - - 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 - - uid: 19056 + - uid: 18724 components: - type: Transform - pos: 26.5,-36.5 + pos: -10.5,-72.5 parent: 8364 -- proto: CrateGenericSteel +- proto: CrateEngineeringCableBulk entities: - - uid: 10005 - components: - - type: Transform - pos: 60.5,-48.5 - parent: 8364 - - uid: 13543 - components: - - type: Transform - pos: -23.5,2.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 14177 - components: - - type: Transform - pos: -51.5,-18.5 - parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 15489 + - uid: 9423 components: - type: Transform - pos: -8.5,-43.5 + pos: -44.5,10.5 parent: 8364 - type: EntityStorage air: @@ -72844,55 +74347,22 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 15937 + - uid: 13325 components: - type: Transform - pos: -32.5,-43.5 + pos: -4.5,-33.5 parent: 8364 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 5.001885 - - 18.816614 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 15951 + - uid: 26622 components: - type: Transform - pos: -20.5,-58.5 + pos: 7.5,-59.5 + parent: 8364 +- proto: CrateEngineeringShuttle + entities: + - uid: 11998 + components: + - type: Transform + pos: -67.5,16.5 parent: 8364 - type: EntityStorage air: @@ -72912,32 +74382,89 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 16395 +- proto: CrateFilledSpawner + entities: + - uid: 6224 components: - type: Transform - pos: -10.5,-41.5 + pos: 88.5,-31.5 + parent: 8364 + - uid: 6767 + components: + - type: Transform + pos: 89.5,-24.5 + parent: 8364 + - uid: 17768 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 8364 + - uid: 17769 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 8364 + - uid: 17770 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 8364 + - uid: 27518 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 8364 + - uid: 27519 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 8364 + - uid: 27589 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 8364 + - uid: 27590 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 8364 + - uid: 27591 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 8364 + - uid: 27592 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 8364 + - uid: 27593 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 8364 + - uid: 27594 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 8364 + - uid: 27595 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 8364 +- proto: CrateFreezer + entities: + - uid: 8211 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 8364 + - uid: 17887 + components: + - type: Transform + pos: 21.5,-36.5 parent: 8364 - type: EntityStorage air: @@ -72945,8 +74472,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -72957,32 +74484,22 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - PaperLabel: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 16398 + - uid: 19056 components: - type: Transform - pos: -9.5,-41.5 + pos: 26.5,-36.5 + parent: 8364 +- proto: CrateGenericSteel + entities: + - uid: 10005 + components: + - type: Transform + pos: 60.5,-48.5 + parent: 8364 + - uid: 13543 + components: + - type: Transform + pos: -23.5,2.5 parent: 8364 - type: EntityStorage air: @@ -73024,10 +74541,10 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 20015 + - uid: 14177 components: - type: Transform - pos: 90.5,-31.5 + pos: -51.5,-18.5 parent: 8364 - type: EntityStorage air: @@ -73069,10 +74586,10 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 20016 + - uid: 16395 components: - type: Transform - pos: 89.5,-31.5 + pos: -10.5,-41.5 parent: 8364 - type: EntityStorage air: @@ -73206,6 +74723,13 @@ entities: showEnts: False occludes: True ent: null +- proto: CrateMaterialPlasma + entities: + - uid: 26965 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 8364 - proto: CrateMedicalScrubs entities: - uid: 16545 @@ -73317,8 +74841,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 5.001885 - - 18.816614 + - 2.146141 + - 8.073578 - 0 - 0 - 0 @@ -73358,6 +74882,13 @@ entities: - type: Transform pos: 19.5,-36.5 parent: 8364 +- proto: CrateTechBoardRandom + entities: + - uid: 25893 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 8364 - proto: CrateTrashCart entities: - uid: 27585 @@ -73397,7 +74928,7 @@ entities: - uid: 11148 components: - type: Transform - pos: 65.5,2.5 + pos: 65.5126,2.4867446 parent: 8364 - uid: 14339 components: @@ -73461,11 +74992,6 @@ entities: - type: Transform pos: -37.449833,2.5174625 parent: 8364 - - uid: 12357 - components: - - type: Transform - pos: -56.729946,3.644562 - parent: 8364 - uid: 13503 components: - type: Transform @@ -73476,16 +75002,6 @@ entities: - type: Transform pos: -22.5,6.5 parent: 8364 - - uid: 15969 - components: - - type: Transform - pos: -24.345285,-43.747276 - parent: 8364 - - uid: 21248 - components: - - type: Transform - pos: 63.478237,-20.930044 - parent: 8364 - uid: 21271 components: - type: Transform @@ -73496,11 +75012,6 @@ entities: - type: Transform pos: 65.5,-53.5 parent: 8364 - - uid: 21619 - components: - - type: Transform - pos: 40.48116,-72.5237 - parent: 8364 - uid: 22819 components: - type: Transform @@ -73579,30 +75090,6 @@ entities: - type: Transform pos: 29.484377,-32.156303 parent: 8364 -- proto: d10Dice - entities: - - uid: 10852 - components: - - type: Transform - pos: 56.5,3.5000002 - parent: 8364 - - uid: 10872 - components: - - type: Transform - pos: 55.5,0.5 - parent: 8364 -- proto: d12Dice - entities: - - uid: 10854 - components: - - type: Transform - pos: 56.5,3.5000002 - parent: 8364 - - uid: 10874 - components: - - type: Transform - pos: 55.5,0.5 - parent: 8364 - proto: d20Dice entities: - uid: 6522 @@ -73610,16 +75097,6 @@ entities: - type: Transform pos: 12.5,11.5 parent: 8364 - - uid: 10855 - components: - - type: Transform - pos: 56.5,3.5000002 - parent: 8364 - - uid: 10875 - components: - - type: Transform - pos: 55.5,0.5 - parent: 8364 - uid: 11666 components: - type: Transform @@ -73627,16 +75104,6 @@ entities: parent: 8364 - proto: d4Dice entities: - - uid: 10869 - components: - - type: Transform - pos: 56.5,3.5000002 - parent: 8364 - - uid: 10876 - components: - - type: Transform - pos: 55.5,0.5 - parent: 8364 - uid: 11667 components: - type: Transform @@ -73654,16 +75121,6 @@ entities: - type: Transform pos: 58.5,15.5 parent: 8364 - - uid: 10870 - components: - - type: Transform - pos: 56.5,3.5000002 - parent: 8364 - - uid: 10877 - components: - - type: Transform - pos: 55.5,0.5 - parent: 8364 - uid: 26362 components: - type: Transform @@ -73691,20 +75148,24 @@ entities: parent: 8364 - proto: d8Dice entities: - - uid: 10871 + - uid: 11668 components: - type: Transform - pos: 56.5,3.5000002 + pos: 55.5,18.5 parent: 8364 - - uid: 10878 +- proto: DefaultStationBeaconAICore + entities: + - uid: 563 components: - type: Transform - pos: 55.5,0.5 + pos: -0.5,-15.5 parent: 8364 - - uid: 11668 +- proto: DefaultStationBeaconAIUpload + entities: + - uid: 984 components: - type: Transform - pos: 55.5,18.5 + pos: -0.5,-22.5 parent: 8364 - proto: DefaultStationBeaconAME entities: @@ -73811,10 +75272,10 @@ entities: parent: 8364 - proto: DefaultStationBeaconChapel entities: - - uid: 27716 + - uid: 5736 components: - type: Transform - pos: 69.5,-2.5 + pos: 69.5,-4.5 parent: 8364 - proto: DefaultStationBeaconChemistry entities: @@ -73963,6 +75424,13 @@ entities: - type: Transform pos: 70.5,-36.5 parent: 8364 +- proto: DefaultStationBeaconReporter + entities: + - uid: 3786 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 8364 - proto: DefaultStationBeaconRND entities: - uid: 27732 @@ -74005,10 +75473,10 @@ entities: parent: 8364 - proto: DefaultStationBeaconSingularity entities: - - uid: 27257 + - uid: 23069 components: - type: Transform - pos: -1.5,-73.5 + pos: -0.5,-73.5 parent: 8364 - proto: DefaultStationBeaconSolars entities: @@ -74039,13 +75507,6 @@ entities: - type: Transform pos: -6.5,-36.5 parent: 8364 -- proto: DefaultStationBeaconTEG - entities: - - uid: 27256 - components: - - type: Transform - pos: 15.5,-76.5 - parent: 8364 - proto: DefaultStationBeaconTelecoms entities: - uid: 27259 @@ -74140,6 +75601,18 @@ entities: - type: Physics canCollide: False bodyType: Static +- proto: DiceBag + entities: + - uid: 7046 + components: + - type: Transform + pos: 55.490345,0.6314087 + parent: 8364 + - uid: 7071 + components: + - type: Transform + pos: 56.42831,3.6334934 + parent: 8364 - proto: DiseaseDiagnoser entities: - uid: 18698 @@ -74191,12 +75664,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-21.5 parent: 8364 - - uid: 6287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-8.5 - parent: 8364 - uid: 6405 components: - type: Transform @@ -74255,6 +75722,17 @@ entities: - type: Transform pos: 46.5,3.5 parent: 8364 + - uid: 7226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-8.5 + parent: 8364 + - uid: 7231 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 8364 - uid: 8172 components: - type: Transform @@ -74534,17 +76012,6 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-9.5 parent: 8364 - - uid: 14514 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 8364 - - uid: 14515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-12.5 - parent: 8364 - uid: 14516 components: - type: Transform @@ -75095,11 +76562,6 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-31.5 parent: 8364 - - uid: 27808 - components: - - type: Transform - pos: 27.5,-68.5 - parent: 8364 - proto: DisposalJunction entities: - uid: 4660 @@ -75107,6 +76569,12 @@ entities: - type: Transform pos: 25.5,-35.5 parent: 8364 + - uid: 5855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 8364 - uid: 6128 components: - type: Transform @@ -75166,12 +76634,6 @@ entities: rot: 3.141592653589793 rad pos: 54.5,5.5 parent: 8364 - - uid: 15372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-12.5 - parent: 8364 - uid: 16827 components: - type: Transform @@ -77808,12 +79270,6 @@ entities: - type: Transform pos: -26.5,-11.5 parent: 8364 - - uid: 14546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 8364 - uid: 14558 components: - type: Transform @@ -82087,155 +83543,11 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-68.5 parent: 8364 - - uid: 27704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-78.5 - parent: 8364 - - uid: 27705 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-77.5 - parent: 8364 - - uid: 27706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-76.5 - parent: 8364 - - uid: 27744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-75.5 - parent: 8364 - - uid: 27762 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-74.5 - parent: 8364 - - uid: 27763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-73.5 - parent: 8364 - - uid: 27764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-72.5 - parent: 8364 - - uid: 27787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-71.5 - parent: 8364 - - uid: 27788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-70.5 - parent: 8364 - - uid: 27789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-69.5 - parent: 8364 - - uid: 27790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-68.5 - parent: 8364 - - uid: 27791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-68.5 - parent: 8364 - - uid: 27792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-68.5 - parent: 8364 - - uid: 27793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-68.5 - parent: 8364 - - uid: 27794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-68.5 - parent: 8364 - - uid: 27795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-68.5 - parent: 8364 - - uid: 27796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-68.5 - parent: 8364 - - uid: 27797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-68.5 - parent: 8364 - - uid: 27798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-68.5 - parent: 8364 - - uid: 27799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-68.5 - parent: 8364 - - uid: 27800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-68.5 - parent: 8364 - - uid: 27801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-68.5 - parent: 8364 - - uid: 27802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-68.5 - parent: 8364 - - uid: 27803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-68.5 - parent: 8364 - - uid: 27807 + - uid: 27869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-68.5 + rot: -1.5707963267948966 rad + pos: -25.5,-12.5 parent: 8364 - proto: DisposalRouter entities: @@ -82376,6 +83688,12 @@ entities: rot: 3.141592653589793 rad pos: -18.5,22.5 parent: 8364 + - uid: 7910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-13.5 + parent: 8364 - uid: 9246 components: - type: Transform @@ -82455,12 +83773,6 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,-8.5 parent: 8364 - - uid: 14513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-13.5 - parent: 8364 - uid: 14863 components: - type: Transform @@ -82637,18 +83949,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-71.5 parent: 8364 - - uid: 27703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-79.5 - parent: 8364 - - uid: 27804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-68.5 - parent: 8364 - proto: DisposalUnit entities: - uid: 1432 @@ -82666,6 +83966,11 @@ entities: - type: Transform pos: -30.5,-31.5 parent: 8364 + - uid: 5770 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 8364 - uid: 5908 components: - type: Transform @@ -82786,11 +84091,6 @@ entities: - type: Transform pos: -43.5,-9.5 parent: 8364 - - uid: 14512 - components: - - type: Transform - pos: -24.5,-13.5 - parent: 8364 - uid: 14557 components: - type: Transform @@ -82901,18 +84201,6 @@ entities: - type: Transform pos: 1.5,-71.5 parent: 8364 - - uid: 27702 - components: - - type: Transform - pos: 27.5,-79.5 - parent: 8364 - - uid: 27806 - components: - - type: MetaData - name: AI Core Chube - - type: Transform - pos: 11.5,-68.5 - parent: 8364 - uid: 27920 components: - type: Transform @@ -83114,10 +84402,17 @@ entities: parent: 8364 - proto: DrinkHotCoffee entities: - - uid: 27918 + - uid: 28153 components: - type: Transform - pos: 3.3560345,-11.363264 + pos: 2.4114609,-24.480486 + parent: 8364 +- proto: DrinkMug + entities: + - uid: 1382 + components: + - type: Transform + pos: -23.441877,-9.337173 parent: 8364 - proto: DrinkMugBlack entities: @@ -83721,6 +85016,35 @@ entities: rot: 1.5707963267948966 rad pos: 75.5,-11.5 parent: 8364 + - uid: 28209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 8364 + - uid: 28210 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 8364 + - uid: 28211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-24.5 + parent: 8364 + - uid: 28212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 8364 + - uid: 28213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 8364 - proto: EmergencyOxygenTank entities: - uid: 12451 @@ -83773,13 +85097,23 @@ entities: - uid: 12711 components: - type: Transform + anchored: False pos: -9.5,-62.5 parent: 8364 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - uid: 12712 components: - type: Transform + anchored: False pos: -9.5,-61.5 parent: 8364 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - uid: 17158 components: - type: Transform @@ -83903,11 +85237,6 @@ entities: parent: 8364 - proto: ExtinguisherCabinetFilled entities: - - uid: 835 - components: - - type: Transform - pos: 31.5,-106.5 - parent: 8364 - uid: 3693 components: - type: Transform @@ -84078,11 +85407,6 @@ entities: - type: Transform pos: -47.5,4.5 parent: 8364 - - uid: 22237 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 8364 - uid: 22238 components: - type: Transform @@ -84193,20 +85517,21 @@ entities: - type: Transform pos: 2.5,-46.5 parent: 8364 - - uid: 27183 + - uid: 25316 components: - type: Transform - pos: 25.5,-88.5 + pos: -35.5,-9.5 parent: 8364 - - uid: 27184 + - uid: 27577 components: - type: Transform - pos: 31.5,-88.5 + pos: 8.5,-33.5 parent: 8364 - - uid: 27577 + - uid: 28214 components: - type: Transform - pos: 8.5,-33.5 + rot: -1.5707963267948966 rad + pos: -4.5,-16.5 parent: 8364 - proto: FaxMachineBase entities: @@ -84259,6 +85584,13 @@ entities: parent: 8364 - type: FaxMachine name: Law Office + - uid: 19348 + components: + - type: Transform + pos: 12.5,32.5 + parent: 8364 + - type: FaxMachine + name: Security - uid: 21200 components: - type: Transform @@ -84305,6 +85637,11 @@ entities: name: Captain - proto: FigureSpawner entities: + - uid: 7074 + components: + - type: Transform + pos: 56.5,1.5 + parent: 8364 - uid: 11690 components: - type: Transform @@ -84317,11 +85654,6 @@ entities: parent: 8364 - proto: filingCabinet entities: - - uid: 537 - components: - - type: Transform - pos: -20.5,-9.5 - parent: 8364 - uid: 5523 components: - type: Transform @@ -84475,7 +85807,6 @@ entities: - 5511 - 5512 - 5513 - - 1479 - uid: 1907 components: - type: Transform @@ -84484,16 +85815,16 @@ entities: parent: 8364 - type: DeviceList devices: + - 5277 + - 16977 + - 23151 + - 10877 + - 27405 + - 27404 - 27403 - 5278 - - 5279 + - 16627 - 5264 - - 27404 - - 27405 - - 27406 - - 23151 - - 16977 - - 27489 - uid: 3213 components: - type: Transform @@ -84552,7 +85883,6 @@ entities: - 17087 - 26635 - 16853 - - 14486 - uid: 17071 components: - type: Transform @@ -84625,7 +85955,6 @@ entities: parent: 8364 - type: DeviceList devices: - - 22700 - 20899 - 20900 - 26036 @@ -84680,10 +86009,15 @@ entities: parent: 8364 - type: DeviceList devices: - - 22591 - 6917 - 9826 - 9825 + - 7277 + - 8080 + - 8110 + - 1652 + - 16943 + - 1672 - uid: 22592 components: - type: Transform @@ -84844,8 +86178,6 @@ entities: devices: - 22645 - 22646 - - 22647 - - 27233 - uid: 22654 components: - type: Transform @@ -84886,14 +86218,12 @@ entities: - 13385 - 22645 - 22646 - - 2940 - 14093 - 14208 - 14220 - 14094 - 11725 - 11719 - - 22658 - 13391 - 13390 - 13389 @@ -84914,7 +86244,6 @@ entities: - 14093 - 14208 - 14220 - - 22666 - 14094 - 11725 - 11719 @@ -84984,16 +86313,15 @@ entities: - 13378 - 13362 - 13363 - - 22690 - - 13391 - - 13390 - - 13389 - - 10521 - - 10523 - - 22691 - - 19992 - - 19991 - - 19993 + - 17600 + - 9450 + - 17602 + - 23089 + - 782 + - 23879 + - 26804 + - 26805 + - 26806 - uid: 22692 components: - type: Transform @@ -85001,18 +86329,16 @@ entities: parent: 8364 - type: DeviceList devices: - - 13380 - - 13379 - - 13378 - - 13362 - - 13363 - - 22690 - - 13391 - - 13390 - 13389 + - 13390 + - 13391 + - 26804 + - 26805 + - 26806 - 10521 - 10523 - - 22691 + - 26039 + - 26038 - uid: 22698 components: - type: Transform @@ -85024,7 +86350,6 @@ entities: - 13380 - 13379 - 13378 - - 22697 - 19992 - 19991 - 19993 @@ -85046,18 +86371,18 @@ entities: parent: 8364 - type: DeviceList devices: + - 13364 + - 5518 + - 5519 + - 6459 + - 13371 + - 13370 + - 13369 - 13365 - 13367 - 13368 - - 13369 - - 13370 - - 13371 - 22713 - - 5519 - - 5518 - - 6459 - - 5236 - - 5235 + - 23256 - uid: 22716 components: - type: Transform @@ -85069,7 +86394,6 @@ entities: - 13371 - 13370 - 13369 - - 22717 - 13362 - uid: 22724 components: @@ -85084,7 +86408,6 @@ entities: - 6488 - 6489 - 19883 - - 22725 - uid: 22727 components: - type: Transform @@ -85114,7 +86437,6 @@ entities: - 6463 - 6464 - 6467 - - 22731 - uid: 22962 components: - type: Transform @@ -85201,7 +86523,6 @@ entities: - 11600 - 11377 - 11603 - - 23939 - 23940 - uid: 25233 components: @@ -85240,8 +86561,6 @@ entities: - 7078 - 7180 - 7043 - - 25827 - - 25826 - 11722 - uid: 25832 components: @@ -85291,7 +86610,6 @@ entities: parent: 8364 - type: DeviceList devices: - - 22647 - 25964 - 25963 - 25958 @@ -85341,7 +86659,7 @@ entities: - 27403 - 27404 - 27405 - - 27406 + - 10877 - uid: 27487 components: - type: Transform @@ -85352,22 +86670,20 @@ entities: - 27403 - 27404 - 27405 - - 27406 - 23151 - 16977 - - 27489 - proto: FireAxeCabinetFilled entities: - - uid: 5782 + - uid: 17598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-9.5 + pos: 6.5,-45.5 parent: 8364 - - uid: 17598 + - uid: 25064 components: - type: Transform - pos: 6.5,-45.5 + rot: 3.141592653589793 rad + pos: -0.5,-9.5 parent: 8364 - proto: FireExtinguisher entities: @@ -85384,7 +86700,7 @@ entities: - uid: 20118 components: - type: Transform - pos: 76.5,-57.5 + pos: 78.444824,-56.4234 parent: 8364 - proto: FirelockEdge entities: @@ -85398,11 +86714,19 @@ entities: - type: Transform pos: 0.5,-32.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22589 + - 22590 - uid: 1672 components: - type: Transform pos: -1.5,-32.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22589 + - 22590 - uid: 5912 components: - type: Transform @@ -85421,12 +86745,18 @@ entities: rot: 3.141592653589793 rad pos: 9.5,16.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - uid: 13469 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,16.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - uid: 14853 components: - type: Transform @@ -85467,6 +86797,10 @@ entities: - type: Transform pos: -0.5,-32.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22589 + - 22590 - uid: 16960 components: - type: Transform @@ -85592,12 +86926,18 @@ entities: rot: 3.141592653589793 rad pos: 9.5,1.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - uid: 22632 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,1.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - uid: 22953 components: - type: Transform @@ -85609,30 +86949,47 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-8.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 - uid: 26036 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-9.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22694 - uid: 26037 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-8.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22694 - uid: 26038 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-9.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22692 + - 22693 - uid: 26039 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-8.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22692 + - 22693 - uid: 26635 components: - type: Transform @@ -85661,6 +87018,9 @@ entities: - type: Transform pos: 20.5,-23.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27964 - uid: 2940 components: - type: Transform @@ -85671,6 +87031,9 @@ entities: - type: Transform pos: -62.5,0.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25825 - uid: 2946 components: - type: Transform @@ -85696,56 +87059,90 @@ entities: - type: Transform pos: 52.5,-26.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27881 - uid: 5236 components: - type: Transform pos: 52.5,-27.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27881 - uid: 5264 components: - type: Transform pos: -8.5,-70.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 1907 + - 26707 + - 17159 - uid: 5277 components: - type: Transform pos: -18.5,-69.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 + - 1907 - uid: 5278 components: - type: Transform pos: -8.5,-68.5 parent: 8364 - - uid: 5279 - components: - - type: Transform - pos: -8.5,-69.5 - parent: 8364 + - type: DeviceNetwork + deviceLists: + - 1907 + - 26707 + - 17159 - uid: 5511 components: - type: Transform pos: 65.5,-48.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4329 - uid: 5512 components: - type: Transform pos: 66.5,-48.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4329 - uid: 5513 components: - type: Transform pos: 67.5,-48.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4329 - uid: 5518 components: - type: Transform pos: 65.5,-37.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22712 + - 4328 + - 4329 - uid: 5519 components: - type: Transform pos: 66.5,-37.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22712 + - 4328 + - 4329 - uid: 5546 components: - type: Transform @@ -85756,11 +87153,18 @@ entities: - type: Transform pos: 34.5,-28.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22670 - uid: 5548 components: - type: Transform pos: 25.5,-26.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27965 + - 291 - uid: 5753 components: - type: Transform @@ -85776,11 +87180,19 @@ entities: - type: Transform pos: 28.5,-28.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 291 + - 22670 - uid: 6211 components: - type: Transform pos: 28.5,-29.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 291 + - 22670 - uid: 6243 components: - type: Transform @@ -85796,46 +87208,75 @@ entities: - type: Transform pos: 67.5,-37.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22712 + - 4328 + - 4329 - uid: 6463 components: - type: Transform pos: 65.5,-42.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4329 - uid: 6464 components: - type: Transform pos: 66.5,-42.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4329 - uid: 6467 components: - type: Transform pos: 67.5,-42.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4329 - uid: 6468 components: - type: Transform pos: 76.5,-42.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 835 - uid: 6473 components: - type: Transform pos: 77.5,-42.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 835 - uid: 6474 components: - type: Transform pos: 78.5,-42.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 835 - uid: 6488 components: - type: Transform pos: 76.5,-38.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 835 - uid: 6489 components: - type: Transform pos: 77.5,-38.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 835 - uid: 6651 components: - type: Transform @@ -85901,11 +87342,17 @@ entities: - type: Transform pos: -52.5,-0.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25825 - uid: 7078 components: - type: Transform pos: -52.5,-2.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25825 - uid: 7140 components: - type: Transform @@ -85931,6 +87378,9 @@ entities: - type: Transform pos: -52.5,-1.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25825 - uid: 7252 components: - type: Transform @@ -85941,6 +87391,10 @@ entities: - type: Transform pos: 9.5,-31.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22589 + - 22590 - uid: 7357 components: - type: Transform @@ -85976,16 +87430,27 @@ entities: - type: Transform pos: 34.5,-29.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22670 - uid: 8080 components: - type: Transform pos: 9.5,-30.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22589 + - 22590 - uid: 8110 components: - type: Transform pos: 9.5,-29.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22589 + - 22590 - uid: 8199 components: - type: Transform @@ -86021,6 +87486,10 @@ entities: - type: Transform pos: 26.5,-26.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27965 + - 291 - uid: 9823 components: - type: Transform @@ -86061,11 +87530,29 @@ entities: - type: Transform pos: 47.5,-10.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22692 - uid: 10523 components: - type: Transform pos: 48.5,-10.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22692 + - uid: 10877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-71.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 1907 + - 27407 + - 23133 + - 17159 - uid: 11001 components: - type: Transform @@ -86116,16 +87603,25 @@ entities: - type: Transform pos: 35.5,-15.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 - uid: 11722 components: - type: Transform pos: -58.5,2.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25825 - uid: 11725 components: - type: Transform pos: 34.5,-15.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 - uid: 12064 components: - type: Transform @@ -86151,36 +87647,63 @@ entities: - type: Transform pos: 64.5,-23.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22712 - uid: 13365 components: - type: Transform pos: 65.5,-21.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22712 + - 4328 - uid: 13367 components: - type: Transform pos: 66.5,-21.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22712 + - 4328 - uid: 13368 components: - type: Transform pos: 67.5,-21.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22712 + - 4328 - uid: 13369 components: - type: Transform pos: 68.5,-22.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22712 + - 4328 - uid: 13370 components: - type: Transform pos: 68.5,-23.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22712 + - 4328 - uid: 13371 components: - type: Transform pos: 68.5,-24.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22712 + - 4328 - uid: 13378 components: - type: Transform @@ -86236,16 +87759,25 @@ entities: - type: Transform pos: 41.5,-12.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22692 - uid: 13390 components: - type: Transform pos: 41.5,-13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22692 - uid: 13391 components: - type: Transform pos: 41.5,-14.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22692 - uid: 13394 components: - type: Transform @@ -86271,11 +87803,17 @@ entities: - type: Transform pos: 25.5,-15.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 - uid: 14094 components: - type: Transform pos: 33.5,-15.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 - uid: 14126 components: - type: Transform @@ -86311,6 +87849,9 @@ entities: - type: Transform pos: -62.5,-5.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25825 - uid: 14174 components: - type: Transform @@ -86326,21 +87867,33 @@ entities: - type: Transform pos: 26.5,-15.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 - uid: 14220 components: - type: Transform pos: 27.5,-15.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 - uid: 14342 components: - type: Transform pos: -62.5,1.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25825 - uid: 14343 components: - type: Transform pos: -62.5,-4.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25825 - uid: 14556 components: - type: Transform @@ -86367,7 +87920,7 @@ entities: pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -32040.709 + secondsUntilStateChange: -68201.17 state: Closing - uid: 15010 components: @@ -86379,11 +87932,6 @@ entities: - type: Transform pos: 60.5,11.5 parent: 8364 - - uid: 15527 - components: - - type: Transform - pos: 72.5,4.5 - parent: 8364 - uid: 15566 components: - type: Transform @@ -86409,6 +87957,17 @@ entities: - type: Transform pos: 34.5,3.5 parent: 8364 + - uid: 16627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-69.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 1907 + - 26707 + - 17159 - uid: 16975 components: - type: Transform @@ -86424,6 +87983,10 @@ entities: - type: Transform pos: 8.5,-64.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 1907 + - 17159 - uid: 17717 components: - type: Transform @@ -86434,11 +87997,17 @@ entities: - type: Transform pos: 35.5,-26.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27965 - uid: 18682 components: - type: Transform pos: 36.5,-26.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27965 - uid: 18752 components: - type: Transform @@ -86494,6 +88063,9 @@ entities: - type: Transform pos: 78.5,-38.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 835 - uid: 19934 components: - type: Transform @@ -86504,16 +88076,27 @@ entities: - type: Transform pos: 21.5,-23.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27964 - uid: 21773 components: - type: Transform pos: 23.5,-25.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27964 + - 27965 - uid: 21774 components: - type: Transform pos: 23.5,-24.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27964 + - 27965 - uid: 21812 components: - type: Transform @@ -86609,11 +88192,17 @@ entities: - type: Transform pos: 22.5,-11.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 - uid: 22646 components: - type: Transform pos: 24.5,-11.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 - uid: 22687 components: - type: Transform @@ -86634,6 +88223,10 @@ entities: - type: Transform pos: 3.5,-64.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 1907 + - 17159 - uid: 25951 components: - type: Transform @@ -86664,51 +88257,54 @@ entities: - type: Transform pos: 28.5,-8.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 - uid: 25959 components: - type: Transform pos: 28.5,-7.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 - uid: 25960 components: - type: Transform pos: 28.5,-6.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 - uid: 25961 components: - type: Transform pos: 28.5,-5.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 - uid: 25962 components: - type: Transform pos: 28.5,-4.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 - uid: 25963 components: - type: Transform pos: 29.5,-8.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 - uid: 26031 components: - type: Transform pos: 45.5,8.5 parent: 8364 - - uid: 26032 - components: - - type: Transform - pos: 71.5,4.5 - parent: 8364 - - uid: 26033 - components: - - type: Transform - pos: 70.5,4.5 - parent: 8364 - - uid: 26034 - components: - - type: Transform - pos: 69.5,4.5 - parent: 8364 - uid: 26035 components: - type: Transform @@ -86829,39 +88425,61 @@ entities: - type: Transform pos: 55.5,-14.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22689 + - 22692 + - 22693 - uid: 26805 components: - type: Transform pos: 55.5,-13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22689 + - 22692 + - 22693 - uid: 26806 components: - type: Transform pos: 55.5,-12.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22689 + - 22692 + - 22693 - uid: 27403 components: - type: Transform pos: -7.5,-71.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 1907 + - 17159 + - 23133 - uid: 27404 components: - type: Transform pos: -6.5,-71.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 1907 + - 17159 + - 23133 - uid: 27405 components: - type: Transform pos: -5.5,-71.5 parent: 8364 - - uid: 27406 - components: - - type: Transform - pos: -4.5,-71.5 - parent: 8364 - - type: Door - secondsUntilStateChange: -23788.44 - state: Closing + - type: DeviceNetwork + deviceLists: + - 1907 + - 17159 + - 23133 - proto: Fireplace entities: - uid: 11559 @@ -86886,12 +88504,6 @@ entities: - type: Transform pos: -5.590146,-5.5357327 parent: 8364 - - uid: 12356 - components: - - type: Transform - rot: 0.00028195229242555797 rad - pos: -56.26376,3.5820982 - parent: 8364 - uid: 16300 components: - type: Transform @@ -86899,16 +88511,13 @@ entities: parent: 8364 - proto: FlashlightLantern entities: - - uid: 2017 - components: - - type: Transform - pos: 53.45759,-48.32746 - parent: 8364 - uid: 11756 components: - type: Transform - pos: 49.435802,16.306866 + pos: 49.481064,16.680466 parent: 8364 + - type: HandheldLight + toggleActionEntity: 16587 - type: ContainerContainer containers: cellslot_cell_container: !type:ContainerSlot @@ -86919,51 +88528,12 @@ entities: showEnts: False occludes: True ent: null - - uid: 11757 - components: - - type: Transform - pos: 48.529552,11.266704 - parent: 8364 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot + actions: !type:Container showEnts: False occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11758 - components: - - type: Transform - pos: 48.47014,7.514141 - parent: 8364 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11759 - components: - - type: Transform - pos: 66.53939,6.4304285 - parent: 8364 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null + ents: + - 16587 + - type: ActionsContainer - uid: 11760 components: - type: Transform @@ -86979,21 +88549,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 11761 - components: - - type: Transform - pos: 67.42922,18.532057 - parent: 8364 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 11762 components: - type: Transform @@ -87024,21 +88579,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 13848 - components: - - type: Transform - pos: -45.601074,22.357426 - parent: 8364 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 13851 components: - type: Transform @@ -87084,21 +88624,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 16451 - components: - - type: Transform - pos: -4.4961033,-45.400856 - parent: 8364 - - type: ContainerContainer - containers: - cellslot_cell_container: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 16744 components: - type: Transform @@ -87144,16 +88669,6 @@ entities: - type: Transform pos: -43.302475,5.7392464 parent: 8364 - - uid: 26783 - components: - - type: Transform - pos: 12.378976,32.716896 - parent: 8364 - - uid: 26784 - components: - - type: Transform - pos: 12.519601,32.51377 - parent: 8364 - uid: 26814 components: - type: Transform @@ -87740,6 +89255,18 @@ entities: - type: Transform pos: 34.5,12.5 parent: 8364 +- proto: FolderSpawner + entities: + - uid: 3825 + components: + - type: Transform + pos: -23.380865,-10.331876 + parent: 8364 + - uid: 6142 + components: + - type: Transform + pos: -22.531582,-12.47005 + parent: 8364 - proto: FoodBanana entities: - uid: 6983 @@ -87776,11 +89303,6 @@ entities: - type: Transform pos: 51.57733,-33.333336 parent: 8364 - - uid: 27155 - components: - - type: Transform - pos: 26.502972,-87.37317 - parent: 8364 - proto: FoodBoxDonut entities: - uid: 541 @@ -87913,8 +89435,7 @@ entities: - uid: 10943 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,3.5000002 + pos: 74.49744,3.4977798 parent: 8364 - uid: 20891 components: @@ -87971,7 +89492,7 @@ entities: - uid: 27917 components: - type: Transform - pos: 3.5477152,-12.389968 + pos: -3.6,-24.45 parent: 8364 - proto: GasAnalyzer entities: @@ -87991,7 +89512,7 @@ entities: pos: 12.5,-59.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17248 components: - type: MetaData @@ -88038,7 +89559,7 @@ entities: pos: 29.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - proto: GasMinerCarbonDioxide entities: - uid: 16807 @@ -88099,16 +89620,16 @@ entities: rot: -1.5707963267948966 rad pos: 72.5,-47.5 parent: 8364 -- proto: GasMixerFlipped +- proto: GasOutletInjector entities: - - uid: 27555 + - uid: 11752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-71.5 + rot: 3.141592653589793 rad + pos: 14.5,-83.5 parent: 8364 -- proto: GasOutletInjector - entities: + - type: AtmosPipeColor + color: '#947507FF' - uid: 15511 components: - type: Transform @@ -88145,14 +89666,12 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-64.5 parent: 8364 - - uid: 23110 + - uid: 23157 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-83.5 + pos: 22.5,-83.5 parent: 8364 - - type: AtmosPipeColor - color: '#947507FF' - proto: GasPassiveGate entities: - uid: 21381 @@ -88187,14 +89706,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-64.5 parent: 8364 - - uid: 16540 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-84.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 16760 components: - type: Transform @@ -88219,14 +89730,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 17031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-84.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 17222 components: - type: Transform @@ -88287,12 +89790,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-50.5 parent: 8364 - - uid: 27182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-94.5 - parent: 8364 - proto: GasPipeBend entities: - uid: 4 @@ -88310,22 +89807,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 2004 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-71.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 4140 components: - type: Transform @@ -88334,172 +89815,136 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4508 + - uid: 4230 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-79.5 + pos: 32.5,-75.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 4512 + color: '#03FCD3FF' + - uid: 4355 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-75.5 + rot: 1.5707963267948966 rad + pos: 29.5,-74.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4513 + - uid: 4357 components: - type: Transform - pos: 30.5,-72.5 + rot: -1.5707963267948966 rad + pos: 30.5,-78.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4518 + - uid: 4366 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-72.5 + pos: 0.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4554 + color: '#0055CCFF' + - uid: 4367 components: - type: Transform - pos: 32.5,-72.5 + rot: -1.5707963267948966 rad + pos: 1.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4555 + color: '#0055CCFF' + - uid: 4388 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-75.5 + pos: 32.5,-74.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4556 + - uid: 4401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-72.5 + pos: 73.5,-50.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4557 + color: '#990000FF' + - uid: 4402 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-75.5 + pos: 79.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4561 + color: '#0055CCFF' + - uid: 5202 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-75.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-75.5 + pos: 33.5,-33.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4563 + - uid: 5258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-80.5 + rot: -1.5707963267948966 rad + pos: 43.5,-42.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4572 + color: '#0055CCFF' + - uid: 5259 components: - type: Transform - pos: 28.5,-74.5 + rot: -1.5707963267948966 rad + pos: 44.5,-39.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4610 + color: '#0055CCFF' + - uid: 5379 components: - type: Transform - pos: 14.5,-72.5 + pos: 55.5,-1.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 4652 + - uid: 5381 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-72.5 + pos: 52.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 4657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4678 + - uid: 5382 components: - type: Transform - pos: 14.5,-80.5 + rot: 3.141592653589793 rad + pos: 53.5,-1.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 5202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-33.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 5258 + - uid: 5386 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-42.5 + pos: 58.5,-1.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-39.5 - parent: 8364 - - uid: 5284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-68.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 5317 + - uid: 5387 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-66.5 + pos: 56.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 5381 + color: '#0055CCFF' + - uid: 5388 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-8.5 + pos: 65.5,-9.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -88511,21 +89956,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5390 + - uid: 5393 components: - type: Transform - pos: 56.5,-9.5 + rot: 3.141592653589793 rad + pos: 65.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-8.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5595 components: - type: Transform @@ -88557,22 +89995,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-9.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 7228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-8.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7312 components: - type: Transform @@ -88798,7 +90220,7 @@ entities: pos: 40.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 10443 components: - type: Transform @@ -88807,138 +90229,130 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14489 + - uid: 11757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-60.5 + rot: 1.5707963267948966 rad + pos: 14.5,-71.5 parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 15341 + - uid: 12357 components: - type: Transform - pos: -1.5,-21.5 + rot: 3.141592653589793 rad + pos: 31.5,-78.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 15367 + color: '#03FCD3FF' + - uid: 12460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-21.5 + rot: -1.5707963267948966 rad + pos: 23.5,-85.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15502 + color: '#03FCD3FF' + - uid: 13066 components: - type: Transform - pos: 1.5,-47.5 + rot: 1.5707963267948966 rad + pos: 30.5,-77.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 15880 + color: '#03FCD3FF' + - uid: 13850 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-79.5 + pos: 28.5,-75.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 15881 + color: '#03FCD3FF' + - uid: 14489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-72.5 + rot: 3.141592653589793 rad + pos: 17.5,-60.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15890 + color: '#947507FF' + - uid: 15347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-78.5 + pos: 28.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 15892 + - uid: 15369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-78.5 + pos: 17.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 15898 + - uid: 15502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-71.5 + pos: 1.5,-47.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 16168 + color: '#990000FF' + - uid: 15527 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-20.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-75.5 + pos: 13.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16553 + color: '#990000FF' + - uid: 15898 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-75.5 + pos: 26.5,-71.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16554 + color: '#947507FF' + - uid: 15937 components: - type: Transform - pos: 34.5,-72.5 + rot: -1.5707963267948966 rad + pos: 32.5,-78.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 16555 + - uid: 16168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-72.5 + pos: -39.5,-20.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16879 + color: '#0055CCFF' + - uid: 16631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-71.5 + pos: 29.5,-76.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 16882 + color: '#03FCD3FF' + - uid: 16712 components: - type: Transform - pos: 35.5,-71.5 + rot: 1.5707963267948966 rad + pos: 19.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 16885 + - uid: 16737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-75.5 + rot: 3.141592653589793 rad + pos: 13.5,-85.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 16988 components: - type: Transform @@ -89030,6 +90444,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 17188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-68.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17203 components: - type: Transform @@ -89053,7 +90475,7 @@ entities: pos: 11.5,-59.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17255 components: - type: Transform @@ -89115,62 +90537,84 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17565 + - uid: 17425 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-74.5 + pos: -25.5,-69.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 17675 + color: '#990000FF' + - uid: 18600 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-85.5 + pos: 35.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 17704 + color: '#990000FF' + - uid: 18735 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-85.5 + pos: 77.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 18600 + color: '#990000FF' + - uid: 19247 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-32.5 + pos: 29.5,-35.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 18659 + color: '#03FCD3FF' + - uid: 19951 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-34.5 + pos: -21.5,-12.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 19247 + - uid: 20032 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-35.5 + pos: 22.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 20067 + color: '#0055CCFF' + - uid: 20060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-81.5 + pos: 26.5,14.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#0055CCFF' + - uid: 20126 + components: + - type: Transform + pos: 73.5,-9.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-8.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,1.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 20202 components: - type: Transform @@ -89178,14 +90622,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 20368 + - uid: 21348 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-41.5 + pos: 21.5,-10.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 21417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-52.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 21770 components: - type: Transform @@ -89202,22 +90654,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 22545 + - uid: 21995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-33.5 + rot: -1.5707963267948966 rad + pos: -5.5,16.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 22744 + color: '#990000FF' + - uid: 22545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-81.5 + rot: 1.5707963267948966 rad + pos: 29.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#03FCD3FF' - uid: 22780 components: - type: Transform @@ -89241,11 +90693,11 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 23008 + - uid: 23026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-53.5 + rot: 1.5707963267948966 rad + pos: 76.5,-13.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -89256,65 +90708,26 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-68.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23128 - components: - - type: Transform - pos: 8.5,-68.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-67.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23130 - components: - - type: Transform - pos: 9.5,-67.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-66.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23148 + - uid: 23109 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-67.5 + pos: 81.5,-13.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23149 + - uid: 23184 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-65.5 + pos: 23.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23150 + color: '#03FCD3FF' + - uid: 23193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-66.5 + pos: 7.5,-52.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -89408,6 +90821,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-55.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 23783 components: - type: Transform @@ -89416,14 +90837,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23899 + - uid: 23912 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.5,-14.5 + pos: 19.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#947507FF' - uid: 23983 components: - type: Transform @@ -89523,6 +90944,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 24162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-76.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 24262 components: - type: Transform @@ -89568,65 +91005,40 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-7.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24437 + - uid: 24431 components: - type: Transform - pos: 22.5,-6.5 + pos: 40.5,-22.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24438 + - uid: 24432 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-6.5 + pos: 36.5,-48.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24442 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24462 + - uid: 24450 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,3.5 + pos: 24.5,-10.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24476 + - uid: 24451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-9.5 + pos: 22.5,-10.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24598 + - uid: 24464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-25.5 + pos: 22.5,5.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -89646,14 +91058,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24603 + - uid: 24619 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-24.5 + rot: 1.5707963267948966 rad + pos: 36.5,-40.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24624 components: - type: Transform @@ -89662,76 +91074,91 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24634 + - uid: 24633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-24.5 + rot: 1.5707963267948966 rad + pos: 35.5,-46.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24635 + - uid: 24641 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-23.5 + pos: 19.5,-17.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24636 + - uid: 24660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-23.5 + rot: 3.141592653589793 rad + pos: 39.5,-28.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24638 + - uid: 24661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-22.5 + rot: 3.141592653589793 rad + pos: 40.5,-26.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24639 + - uid: 24675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-22.5 + pos: 28.5,-33.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24660 + - uid: 24723 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-28.5 + pos: 41.5,-31.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24661 + - uid: 24737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-26.5 + pos: 39.5,-32.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24723 + - uid: 24775 components: - type: Transform - pos: 41.5,-31.5 + rot: -1.5707963267948966 rad + pos: 48.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24737 + - uid: 24788 components: - type: Transform - pos: 39.5,-32.5 + rot: 3.141592653589793 rad + pos: 19.5,-34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,1.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 24813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-8.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 24837 components: - type: Transform @@ -89785,44 +91212,30 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24902 + - uid: 24969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-3.5 + rot: 3.141592653589793 rad + pos: 29.5,-78.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24905 + color: '#03FCD3FF' + - uid: 24971 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-3.5 + pos: 62.5,-9.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24906 + - uid: 24972 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-2.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24960 - components: - - type: Transform - pos: 69.5,1.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24961 - components: - - type: Transform - pos: 70.5,2.5 + pos: 61.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 25065 components: - type: Transform @@ -89845,22 +91258,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-50.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25200 + - uid: 25261 components: - type: Transform rot: 3.141592653589793 rad - pos: 65.5,-51.5 + pos: 17.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#947507FF' - uid: 25351 components: - type: Transform @@ -89893,6 +91298,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 25505 + components: + - type: Transform + pos: 79.5,-45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25561 components: - type: Transform @@ -89988,14 +91400,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-4.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 26043 components: - type: Transform @@ -90019,33 +91423,176 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 27180 + - uid: 26695 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-93.5 + pos: 29.5,-75.5 parent: 8364 - - uid: 27181 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 26697 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-93.5 + pos: 30.5,-75.5 parent: 8364 - - uid: 27240 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 26760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-79.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 26797 + components: + - type: Transform + pos: 31.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 26933 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-80.5 + pos: 21.5,-85.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 26957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,10.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27427 + - uid: 26964 components: - type: Transform - pos: 27.5,-68.5 + pos: -1.5,-24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-43.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27058 + components: + - type: Transform + pos: 32.5,-76.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 27169 + components: + - type: Transform + pos: -22.5,-73.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-76.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 27211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-73.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27658 + components: + - type: Transform + pos: 56.5,-36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-85.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-29.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 28148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28218 + components: + - type: Transform + pos: -13.5,-53.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-56.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 5316 @@ -90055,6 +91602,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 5732 + components: + - type: Transform + pos: 68.5,-9.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8876 components: - type: Transform @@ -90062,10 +91616,17 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 20264 + - uid: 13665 components: - type: Transform - pos: 65.5,-40.5 + pos: 70.5,-8.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17467 + components: + - type: Transform + pos: -7.5,-29.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -90076,24 +91637,45 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 23026 + - uid: 21997 components: - type: Transform - pos: 0.5,-55.5 + pos: 0.5,19.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23027 + - uid: 22975 components: - type: Transform - pos: -1.5,-56.5 + pos: -7.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23072 + components: + - type: Transform + pos: 5.5,-31.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23118 + - uid: 23126 components: - type: Transform - pos: 8.5,-66.5 + pos: 70.5,-24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23129 + components: + - type: Transform + pos: 67.5,-34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23209 + components: + - type: Transform + pos: -7.5,-53.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -90174,20 +91756,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24572 - components: - - type: Transform - pos: 35.5,-23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24625 - components: - - type: Transform - pos: 39.5,-24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24681 components: - type: Transform @@ -90216,13 +91784,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24780 - components: - - type: Transform - pos: 39.5,-45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24781 components: - type: Transform @@ -90265,20 +91826,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25150 - components: - - type: Transform - pos: 66.5,-34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25187 - components: - - type: Transform - pos: 66.5,-41.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25537 components: - type: Transform @@ -90307,13 +91854,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25786 - components: - - type: Transform - pos: 15.5,31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25787 components: - type: Transform @@ -90321,15 +91861,23 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26931 + - uid: 27974 components: - type: Transform - pos: 28.5,-91.5 + pos: 29.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - proto: GasPipeSensor entities: + - uid: 16635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-71.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 17381 components: - type: MetaData @@ -90344,19 +91892,6 @@ entities: currentLabel: Cryogenics - type: NameModifier baseName: gas pipe sensor - - uid: 19020 - components: - - type: MetaData - name: gas pipe sensor (TEG Mix) - - type: Transform - pos: 17.5,-58.5 - parent: 8364 - - type: AtmosPipeColor - color: '#947507FF' - - type: Label - currentLabel: TEG Mix - - type: NameModifier - baseName: gas pipe sensor - proto: GasPipeSensorDistribution entities: - uid: 10817 @@ -90376,23 +91911,23 @@ entities: parent: 8364 - proto: GasPipeSensorTEGCold entities: - - uid: 7418 + - uid: 4177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-72.5 + pos: 19.5,-75.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - proto: GasPipeSensorTEGHot entities: - - uid: 16396 + - uid: 13067 components: - type: Transform - pos: 14.5,-77.5 + rot: 3.141592653589793 rad + pos: 17.5,-77.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#947507FF' - proto: GasPipeSensorWaste entities: - uid: 16914 @@ -90485,6 +92020,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-73.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 750 components: - type: Transform @@ -90493,6 +92044,21 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-67.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 853 + components: + - type: Transform + pos: 14.5,-81.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 954 components: - type: Transform @@ -90521,6 +92087,13 @@ entities: - type: Transform pos: 15.5,-54.5 parent: 8364 + - uid: 1479 + components: + - type: Transform + pos: 13.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1617 components: - type: Transform @@ -90537,86 +92110,52 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 1643 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-60.5 - parent: 8364 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 3682 - components: - - type: Transform - pos: -7.5,-63.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3685 - components: - - type: Transform - pos: 15.5,-59.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-68.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 3771 - components: - - type: Transform - pos: 29.5,-74.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3772 + - uid: 1627 components: - type: Transform - pos: 33.5,-73.5 + rot: 3.141592653589793 rad + pos: 23.5,-83.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 3782 + - uid: 1643 components: - type: Transform - pos: 34.5,-73.5 + rot: -1.5707963267948966 rad + pos: 18.5,-60.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3783 + color: '#947507FF' + - uid: 2826 components: - type: Transform - pos: 33.5,-74.5 + rot: 3.141592653589793 rad + pos: 29.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3786 + color: '#990000FF' + - uid: 3602 components: - type: Transform - pos: 35.5,-74.5 + rot: 1.5707963267948966 rad + pos: 24.5,-79.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 3818 + - uid: 3682 components: - type: Transform - pos: 29.5,-73.5 + pos: -7.5,-63.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3819 + color: '#0055CCFF' + - uid: 3685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-71.5 + pos: 15.5,-59.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF1212FF' - uid: 3837 components: - type: Transform @@ -90633,14 +92172,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 3878 components: - type: Transform @@ -90735,14 +92266,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 4062 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-71.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 4073 components: - type: Transform @@ -90782,36 +92305,21 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-71.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-71.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4136 + - uid: 4139 components: - type: Transform - pos: 17.5,-83.5 + rot: 3.141592653589793 rad + pos: 15.5,-83.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 4147 components: - type: Transform pos: 11.5,-49.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4149 components: - type: Transform @@ -90876,213 +92384,346 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4498 + - uid: 4215 components: - type: Transform - pos: 3.5,-64.5 + pos: -2.5,-18.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 4501 + - uid: 4229 components: - type: Transform - pos: 17.5,-82.5 + pos: 13.5,-78.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4502 + color: '#990000FF' + - uid: 4232 components: - type: Transform - pos: 13.5,-82.5 + rot: 3.141592653589793 rad + pos: 19.5,-77.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 4509 + color: '#947507FF' + - uid: 4273 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-74.5 + pos: 76.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4510 + color: '#0055CCFF' + - uid: 4274 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-74.5 + pos: 77.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4521 + color: '#0055CCFF' + - uid: 4275 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-74.5 + pos: 75.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4530 + color: '#0055CCFF' + - uid: 4288 components: - type: Transform - pos: 32.5,-74.5 + rot: 1.5707963267948966 rad + pos: 72.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4531 + color: '#0055CCFF' + - uid: 4289 components: - type: Transform - pos: 31.5,-74.5 + rot: 1.5707963267948966 rad + pos: 73.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4533 + color: '#0055CCFF' + - uid: 4290 components: - type: Transform - pos: 31.5,-73.5 + rot: 1.5707963267948966 rad + pos: 74.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4534 + color: '#0055CCFF' + - uid: 4293 components: - type: Transform - pos: 30.5,-73.5 + rot: 1.5707963267948966 rad + pos: 78.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4535 + color: '#0055CCFF' + - uid: 4294 components: - type: Transform - pos: 32.5,-73.5 + rot: 1.5707963267948966 rad + pos: 69.5,-50.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4536 + color: '#990000FF' + - uid: 4295 components: - type: Transform - pos: 30.5,-74.5 + rot: 1.5707963267948966 rad + pos: 70.5,-50.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-50.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-50.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-52.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-52.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4358 + components: + - type: Transform + pos: 28.5,-78.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4537 + - uid: 4376 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4433 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-73.5 + pos: 78.5,-43.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 4538 + color: '#990000FF' + - uid: 4434 components: - type: Transform - pos: 15.5,-83.5 + rot: -1.5707963267948966 rad + pos: 74.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 4539 + color: '#990000FF' + - uid: 4435 components: - type: Transform - pos: 35.5,-72.5 + rot: -1.5707963267948966 rad + pos: 75.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4540 + color: '#990000FF' + - uid: 4436 components: - type: Transform - pos: 34.5,-74.5 + rot: -1.5707963267948966 rad + pos: 76.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4559 + color: '#990000FF' + - uid: 4437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4438 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-72.5 + pos: 78.5,-44.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 4560 + color: '#990000FF' + - uid: 4463 components: - type: Transform - pos: 16.5,-84.5 + pos: 76.5,-43.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 4564 + color: '#0055CCFF' + - uid: 4464 components: - type: Transform - pos: 15.5,-82.5 + pos: 76.5,-42.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 4565 + color: '#0055CCFF' + - uid: 4465 components: - type: Transform - pos: 14.5,-82.5 + pos: 76.5,-41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-80.5 parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 4566 + - uid: 4493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-74.5 + rot: 3.141592653589793 rad + pos: 21.5,-83.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4567 + - uid: 4498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-74.5 + pos: 3.5,-64.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4576 + color: '#990000FF' + - uid: 4501 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-74.5 + pos: 57.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' + - uid: 4502 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-81.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-13.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4555 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4577 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4612 components: - type: Transform - pos: 17.5,-79.5 + anchored: False + rot: -1.5707963267948966 rad + pos: 69.5,-45.5 + parent: 8364 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 4621 + components: + - type: Transform + pos: 67.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4648 + color: '#990000FF' + - uid: 4622 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-72.5 + pos: 25.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4650 + - uid: 4967 components: - type: Transform - pos: 16.5,-83.5 + rot: 3.141592653589793 rad + pos: 78.5,-42.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 4680 + color: '#990000FF' + - uid: 5009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-74.5 + pos: 76.5,-39.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4684 + color: '#0055CCFF' + - uid: 5010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-72.5 + pos: 76.5,-38.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' + - uid: 5015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-38.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5068 components: - type: Transform @@ -91147,6 +92788,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 75.5,-44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5203 components: - type: Transform @@ -91178,6 +92827,35 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5268 + components: + - type: Transform + pos: 14.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 5272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-75.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5274 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5279 + components: + - type: Transform + pos: 56.5,-8.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5280 components: - type: Transform @@ -91192,22 +92870,80 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 5392 + - uid: 5317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-9.5 + pos: 55.5,-3.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5318 + components: + - type: Transform + pos: 56.5,-7.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5393 + - uid: 5335 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5370 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5378 + components: + - type: Transform + pos: 56.5,-4.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5380 + components: + - type: Transform + pos: 56.5,-2.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5383 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,-8.5 + pos: 54.5,-1.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 5390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-12.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-8.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-9.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5394 components: - type: Transform @@ -91224,6 +92960,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-8.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5593 components: - type: Transform @@ -91286,56 +93030,149 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5988 + - uid: 5644 components: - type: Transform - pos: 0.5,-7.5 + rot: 3.141592653589793 rad + pos: 70.5,-9.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-9.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 6251 + - uid: 5729 components: - type: Transform - pos: 8.5,-65.5 + rot: 1.5707963267948966 rad + pos: 69.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6458 + - uid: 5733 components: - type: Transform - pos: 27.5,24.5 + rot: 3.141592653589793 rad + pos: 71.5,3.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-9.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6770 + - uid: 5756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-68.5 + pos: 68.5,-7.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 7041 + - uid: 5763 components: - type: Transform - pos: 69.5,-6.5 + pos: 68.5,-3.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 7056 + - uid: 5764 components: - type: Transform - pos: 70.5,-4.5 + pos: 68.5,-2.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5766 + components: + - type: Transform + pos: 68.5,-0.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-10.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7071 + - uid: 6088 components: - type: Transform - pos: 69.5,-7.5 + rot: 3.141592653589793 rad + pos: 70.5,-11.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6220 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6222 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6251 + components: + - type: Transform + pos: 8.5,-65.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6458 + components: + - type: Transform + pos: 27.5,24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-68.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 7056 + components: + - type: Transform + pos: 70.5,-4.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7072 components: - type: Transform @@ -91382,17 +93219,18 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 7114 + - uid: 7143 components: - type: Transform - pos: 69.5,-5.5 + pos: 70.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 7143 + color: '#0055CCFF' + - uid: 7154 components: - type: Transform - pos: 70.5,-5.5 + rot: -1.5707963267948966 rad + pos: 57.5,-9.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -91419,13 +93257,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7216 - components: - - type: Transform - pos: 69.5,-4.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7221 components: - type: Transform @@ -91440,13 +93271,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7226 - components: - - type: Transform - pos: 69.5,-8.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 7278 components: - type: Transform @@ -91619,6 +93443,45 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8118 + components: + - type: Transform + pos: 53.5,-0.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,11.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,17.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,16.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8216 components: - type: Transform @@ -91634,6 +93497,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8402 components: - type: Transform @@ -92314,6 +94185,46 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,10.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-76.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-79.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-73.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 12640 components: - type: Transform @@ -92322,37 +94233,123 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 13665 + - uid: 13419 components: - type: Transform - pos: 13.5,-83.5 + rot: 1.5707963267948966 rad + pos: 27.5,-73.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 13471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-68.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 14079 + - uid: 13474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-68.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-8.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13662 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-82.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13848 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-72.5 + pos: 20.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 14087 + - uid: 14075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14079 + components: + - type: Transform + pos: 14.5,-75.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14089 + components: + - type: Transform + pos: 14.5,-76.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 14090 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-72.5 + pos: 22.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 14088 + - uid: 14110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-71.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14116 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-74.5 + pos: 4.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 14195 components: - type: Transform @@ -92361,6 +94358,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 14209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14232 components: - type: Transform @@ -92372,32 +94377,162 @@ entities: - uid: 14288 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-8.5 + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-13.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,3.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,1.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-52.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14503 + components: + - type: Transform + pos: 67.5,-37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-81.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-73.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14515 + components: + - type: Transform + pos: 13.5,-76.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14564 + components: + - type: Transform + pos: 22.5,-81.5 + parent: 8364 + - uid: 14703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-73.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14916 + components: + - type: Transform + pos: 28.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-71.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-71.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15343 + components: + - type: Transform + pos: 15.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15340 + color: '#990000FF' + - uid: 15367 components: - type: Transform - pos: -1.5,-22.5 + pos: 32.5,-77.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 15342 + color: '#03FCD3FF' + - uid: 15372 components: - type: Transform - pos: -1.5,-23.5 + rot: -1.5707963267948966 rad + pos: 14.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 15345 + - uid: 15481 components: - type: Transform - pos: 0.5,-22.5 + pos: 13.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 15501 components: - type: Transform @@ -92417,77 +94552,89 @@ entities: - uid: 15543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-72.5 + pos: 14.5,-78.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15544 + color: '#947507FF' + - uid: 15546 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-76.5 + pos: 13.5,-75.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 15876 + - uid: 15877 components: - type: Transform - pos: 14.5,-84.5 + pos: 21.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 15877 + color: '#03FCD3FF' + - uid: 15878 components: - type: Transform - pos: 14.5,-74.5 + rot: -1.5707963267948966 rad + pos: 23.5,-73.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15887 + components: + - type: Transform + pos: 68.5,-5.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 15878 + - uid: 15888 components: - type: Transform - pos: 13.5,-74.5 + pos: 68.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 15879 + - uid: 15889 components: - type: Transform - pos: 13.5,-79.5 + pos: 68.5,-6.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 15882 + - uid: 15890 components: - type: Transform - pos: 16.5,-74.5 + pos: 68.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15883 + color: '#990000FF' + - uid: 15891 components: - type: Transform - pos: 13.5,-73.5 + rot: 1.5707963267948966 rad + pos: 69.5,-9.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 15889 + - uid: 15899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-72.5 + pos: 22.5,-82.5 + parent: 8364 + - uid: 15951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-84.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 15891 + - uid: 15979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-72.5 + rot: 3.141592653589793 rad + pos: 13.5,-83.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 16511 components: - type: Transform @@ -92504,6 +94651,29 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 16522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-82.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16590 + components: + - type: Transform + pos: 14.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 16601 components: - type: Transform @@ -92511,7 +94681,23 @@ entities: pos: 10.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 16629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-68.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 16720 components: - type: Transform @@ -92520,6 +94706,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 16723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-71.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 16741 components: - type: Transform @@ -92604,22 +94798,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#3AB334FF' - - uid: 16825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16880 + - uid: 16879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-72.5 + rot: 1.5707963267948966 rad + pos: 6.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 16888 components: - type: Transform @@ -92652,21 +94838,38 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16915 + - uid: 16936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-76.5 + rot: -1.5707963267948966 rad + pos: -8.5,-53.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16936 + color: '#0055CCFF' + - uid: 16953 components: - type: Transform - pos: 17.5,-77.5 + rot: -1.5707963267948966 rad + pos: -10.5,-53.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' + - uid: 16954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-53.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-66.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 16984 components: - type: Transform @@ -92694,7 +94897,8 @@ entities: - uid: 17002 components: - type: Transform - pos: 13.5,-76.5 + rot: 3.141592653589793 rad + pos: 3.5,-65.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -92753,28 +94957,70 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 17025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-66.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-68.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17028 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-77.5 + pos: 8.5,-69.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 17029 components: - type: Transform - pos: 17.5,-76.5 + rot: 1.5707963267948966 rad + pos: -4.5,-70.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 17030 components: - type: Transform - pos: 13.5,-77.5 + rot: 1.5707963267948966 rad + pos: -3.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-73.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-67.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 17045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17047 components: - type: Transform @@ -92817,10 +95063,43 @@ entities: - uid: 17057 components: - type: Transform - pos: 14.5,-83.5 + rot: 1.5707963267948966 rad + pos: -5.5,-70.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#0055CCFF' + - uid: 17061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-71.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-67.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17083 components: - type: Transform @@ -92836,13 +95115,21 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 17088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17091 components: - type: Transform pos: 11.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17092 components: - type: Transform @@ -92869,10 +95156,10 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-65.5 + pos: 0.5,-70.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 17115 components: - type: Transform @@ -93001,8 +95288,16 @@ entities: - uid: 17144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-66.5 + rot: 1.5707963267948966 rad + pos: 1.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-70.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -93017,11 +95312,11 @@ entities: - uid: 17166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-69.5 + rot: 1.5707963267948966 rad + pos: 1.5,-68.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 17171 components: - type: Transform @@ -93029,86 +95324,127 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-68.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-68.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17180 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-69.5 + pos: -10.5,-70.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17176 + - uid: 17181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-69.5 + rot: -1.5707963267948966 rad + pos: -11.5,-70.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17190 + - uid: 17182 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-67.5 + pos: -23.5,-69.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-70.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-68.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-69.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17209 components: - type: Transform pos: 11.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17210 components: - type: Transform pos: 11.5,-57.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17211 components: - type: Transform pos: 11.5,-58.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17212 components: - type: Transform - pos: 16.5,-82.5 + rot: -1.5707963267948966 rad + pos: -17.5,-70.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#0055CCFF' - uid: 17213 components: - type: Transform pos: 11.5,-53.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17214 components: - type: Transform pos: 11.5,-52.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17215 components: - type: Transform pos: 11.5,-51.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17216 components: - type: Transform pos: 11.5,-50.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17217 components: - type: Transform @@ -93117,6 +95453,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 17221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17228 components: - type: Transform @@ -93343,7 +95687,7 @@ entities: pos: 11.5,-54.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17336 components: - type: Transform @@ -93360,14 +95704,38 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-69.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-74.5 + rot: -1.5707963267948966 rad + pos: -19.5,-70.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' + - uid: 17424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17466 components: - type: Transform @@ -93376,6 +95744,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 17472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-31.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17521 components: - type: Transform @@ -93400,6 +95776,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17560 components: - type: Transform @@ -93411,10 +95795,19 @@ entities: - uid: 17564 components: - type: Transform - pos: 15.5,-80.5 + rot: -1.5707963267948966 rad + pos: -5.5,-29.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#0055CCFF' + - uid: 17565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17569 components: - type: Transform @@ -93446,14 +95839,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-65.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 17601 components: - type: Transform @@ -93478,22 +95863,78 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-10.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17702 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-71.5 + pos: 78.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#0055CCFF' + - uid: 17707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-5.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-11.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-9.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-7.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-9.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-71.5 + rot: 3.141592653589793 rad + pos: 77.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#990000FF' + - uid: 17802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-7.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17807 components: - type: Transform @@ -93542,10 +95983,19 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#3AB334FF' - - uid: 18404 + - uid: 18620 components: - type: Transform - pos: -3.5,-67.5 + rot: 3.141592653589793 rad + pos: 81.5,-11.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-7.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -93556,6 +96006,30 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 18681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-13.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-3.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-5.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19066 components: - type: Transform @@ -93564,6 +96038,50 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' + - uid: 19079 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19148 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19857 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19900 + components: + - type: Transform + pos: -58.5,0.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19936 components: - type: Transform @@ -93612,14 +96130,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19942 + - uid: 19953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-71.5 + rot: -1.5707963267948966 rad + pos: 4.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 19957 components: - type: Transform @@ -93628,14 +96146,38 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' + - uid: 20003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-30.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,12.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-12.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 20125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-71.5 + rot: 3.141592653589793 rad + pos: 81.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#0055CCFF' - uid: 20127 components: - type: Transform @@ -93644,6 +96186,21 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 20135 + components: + - type: Transform + pos: 68.5,0.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,1.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 20153 components: - type: Transform @@ -93667,6 +96224,115 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 20264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,2.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20279 + components: + - type: Transform + pos: 67.5,-25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20368 + components: + - type: Transform + pos: 67.5,-24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20859 + components: + - type: Transform + pos: 67.5,-29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20898 + components: + - type: Transform + pos: 67.5,-30.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-31.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21248 + components: + - type: Transform + pos: 67.5,-32.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21290 + components: + - type: Transform + pos: 67.5,-35.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21364 + components: + - type: Transform + pos: 67.5,-36.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21366 + components: + - type: Transform + pos: 67.5,-39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21370 + components: + - type: Transform + pos: 67.5,-40.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21371 + components: + - type: Transform + pos: 67.5,-42.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21380 + components: + - type: Transform + pos: 67.5,-47.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21382 components: - type: Transform @@ -93683,6 +96349,118 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-52.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-51.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-18.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21742 components: - type: Transform @@ -93691,6 +96469,76 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21763 + components: + - type: Transform + pos: 67.5,-48.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21798 + components: + - type: Transform + pos: 67.5,-46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22140 components: - type: Transform @@ -93699,6 +96547,93 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 22214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22539 + components: + - type: Transform + pos: 76.5,-40.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,-40.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-4.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-18.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-18.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-18.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-9.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-9.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-9.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 22735 components: - type: Transform @@ -93706,6 +96641,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 22738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-11.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22739 components: - type: Transform @@ -93727,14 +96670,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 22749 + - uid: 22746 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-76.5 + pos: 25.5,14.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#990000FF' - uid: 22760 components: - type: Transform @@ -93990,6 +96933,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 22817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,15.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22820 components: - type: Transform @@ -94054,6 +97005,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 22835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,13.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22836 components: - type: Transform @@ -94102,53 +97061,54 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 22916 + - uid: 22851 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-75.5 + pos: 25.5,17.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 22922 + color: '#990000FF' + - uid: 22856 components: - type: Transform - pos: 18.5,-82.5 + rot: 3.141592653589793 rad + pos: 23.5,16.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 22929 + color: '#0055CCFF' + - uid: 22858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-47.5 + rot: 3.141592653589793 rad + pos: 3.5,-72.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22930 + color: '#990000FF' + - uid: 22889 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-47.5 + pos: 8.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 22941 + color: '#990000FF' + - uid: 22929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-77.5 + rot: -1.5707963267948966 rad + pos: 8.5,-47.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 22944 + color: '#0055CCFF' + - uid: 22930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-78.5 + rot: -1.5707963267948966 rad + pos: 7.5,-47.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#0055CCFF' - uid: 22947 components: - type: Transform @@ -94202,27 +97162,11 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-52.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-52.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-53.5 + rot: 1.5707963267948966 rad + pos: 3.5,-70.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -94230,23 +97174,15 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-53.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-53.5 + pos: -15.5,-70.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23007 + - uid: 23010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-53.5 + rot: 3.141592653589793 rad + pos: 8.5,-67.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -94334,6 +97270,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-4.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 23028 components: - type: Transform @@ -94367,10 +97311,11 @@ entities: - uid: 23032 components: - type: Transform - pos: -1.5,-53.5 + rot: 1.5707963267948966 rad + pos: -6.5,-55.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 23033 components: - type: Transform @@ -94388,10 +97333,11 @@ entities: - uid: 23035 components: - type: Transform - pos: 0.5,-53.5 + rot: -1.5707963267948966 rad + pos: -7.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 23036 components: - type: Transform @@ -94565,11 +97511,27 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23072 + - uid: 23067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-53.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23068 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-56.5 + pos: 2.5,-68.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-68.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -94590,10 +97552,11 @@ entities: - uid: 23075 components: - type: Transform - pos: -7.5,-53.5 + rot: -1.5707963267948966 rad + pos: 1.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 23076 components: - type: Transform @@ -94626,10 +97589,10 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-55.5 + pos: -7.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 23081 components: - type: Transform @@ -94650,15 +97613,14 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-55.5 + pos: 3.5,21.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 23084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-55.5 + pos: 4.5,-34.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -94670,6 +97632,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 23091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-14.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 23092 components: - type: Transform @@ -94694,6 +97664,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-8.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 23103 components: - type: Transform @@ -94729,22 +97707,20 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23109 + - uid: 23110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-71.5 + pos: -1.5,-27.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 23111 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-79.5 + pos: 0.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#0055CCFF' - uid: 23113 components: - type: Transform @@ -94769,80 +97745,52 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-64.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-66.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23123 + - uid: 23118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-66.5 + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23124 + - uid: 23119 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-65.5 + pos: -9.5,-64.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23125 + - uid: 23120 components: - type: Transform - pos: 7.5,-66.5 + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23126 + - uid: 23127 components: - type: Transform - pos: 7.5,-67.5 + rot: -1.5707963267948966 rad + pos: 70.5,-22.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23131 + - uid: 23128 components: - type: Transform - pos: 8.5,-69.5 + pos: 67.5,-28.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23132 + - uid: 23130 components: - type: Transform - pos: 8.5,-70.5 + pos: 67.5,-49.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23134 - components: - - type: Transform - pos: 9.5,-69.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23135 - components: - - type: Transform - pos: 9.5,-70.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23136 components: - type: Transform @@ -94859,22 +97807,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-66.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-66.5 + rot: 3.141592653589793 rad + pos: 78.5,-39.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 23144 components: - type: Transform @@ -94891,62 +97831,21 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-65.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-67.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23155 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-71.5 + pos: 15.5,-84.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - uid: 23156 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-71.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-73.5 + pos: 14.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#947507FF' - uid: 23162 components: - type: Transform @@ -94971,46 +97870,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-74.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-73.5 + pos: 13.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 23178 components: - type: Transform @@ -95023,75 +97889,34 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 23184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-67.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-67.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-66.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-66.5 + pos: 55.5,-7.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - uid: 23188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-66.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-67.5 + rot: -1.5707963267948966 rad + pos: -16.5,-70.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - uid: 23191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-67.5 + rot: 3.141592653589793 rad + pos: -7.5,-69.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - uid: 23192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-67.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-67.5 + rot: 3.141592653589793 rad + pos: 81.5,-3.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -95135,6 +97960,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-56.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23205 components: - type: Transform @@ -95160,8 +97993,8 @@ entities: - uid: 23214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-69.5 + rot: 1.5707963267948966 rad + pos: 4.5,-70.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -95169,10 +98002,10 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-69.5 + pos: -24.5,-69.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 23216 components: - type: Transform @@ -95184,16 +98017,7 @@ entities: - uid: 23217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-68.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-69.5 + pos: 1.5,-18.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -95221,14 +98045,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-68.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23244 components: - type: Transform @@ -95253,91 +98069,51 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-68.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23248 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-68.5 + pos: 80.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 23249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-68.5 + rot: 3.141592653589793 rad + pos: 26.5,11.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23251 + color: '#0055CCFF' + - uid: 23252 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-69.5 + pos: 65.5,-12.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 23253 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-69.5 + pos: 70.5,-35.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - uid: 23254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-69.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-69.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-69.5 + rot: 1.5707963267948966 rad + pos: 68.5,-52.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - uid: 23257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-69.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-69.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-69.5 + rot: 1.5707963267948966 rad + pos: 74.5,-44.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -95587,14 +98363,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23317 components: - type: Transform @@ -95611,14 +98379,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23321 components: - type: Transform @@ -96935,22 +99695,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23539 components: - type: Transform @@ -97071,14 +99815,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23557 components: - type: Transform @@ -98065,6 +100801,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-69.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23722 components: - type: Transform @@ -98383,14 +101127,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23773 components: - type: Transform @@ -98399,22 +101135,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23776 components: - type: Transform @@ -98507,10 +101227,10 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-14.5 + pos: -11.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 23790 components: - type: Transform @@ -98551,6 +101271,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-69.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 23798 components: - type: Transform @@ -98591,14 +101319,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23804 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-14.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23806 components: - type: Transform @@ -98698,8 +101418,7 @@ entities: - uid: 23820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-14.5 + pos: 1.5,-19.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -98731,7 +101450,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,-14.5 + pos: -2.5,-29.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -98751,14 +101470,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-12.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23829 components: - type: Transform @@ -98783,14 +101494,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-12.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23833 components: - type: Transform @@ -98895,14 +101598,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-12.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23850 components: - type: Transform @@ -98986,8 +101681,8 @@ entities: - uid: 23864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-12.5 + rot: 3.141592653589793 rad + pos: 77.5,-4.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -99055,14 +101750,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-14.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23877 components: - type: Transform @@ -99079,14 +101766,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-14.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23880 components: - type: Transform @@ -99127,11 +101806,18 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23887 + - uid: 23886 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,-12.5 + pos: 69.5,-35.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23887 + components: + - type: Transform + pos: 67.5,-33.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -99146,8 +101832,7 @@ entities: - uid: 23889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-12.5 + pos: 67.5,-26.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -99218,48 +101903,14 @@ entities: - uid: 23901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-14.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23902 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-13.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-11.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-11.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23906 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-10.5 + pos: 67.5,-44.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23908 + - uid: 23907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-8.5 + pos: -5.5,-72.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -99267,95 +101918,23 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 78.5,-10.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-9.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-7.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-7.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-6.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-5.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-6.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-5.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-4.5 + pos: 21.5,-82.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#03FCD3FF' - uid: 23920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-3.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-4.5 + rot: -1.5707963267948966 rad + pos: 58.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23922 + - uid: 23921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-3.5 + rot: -1.5707963267948966 rad + pos: 59.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -99407,46 +101986,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23931 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23932 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23951 components: - type: Transform @@ -100148,14 +102687,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24079 components: - type: Transform @@ -100180,38 +102711,49 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 24082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-71.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 24088 components: - type: Transform pos: 4.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24089 components: - type: Transform pos: 4.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24090 components: - type: Transform - pos: 4.5,-34.5 + rot: 3.141592653589793 rad + pos: -19.5,-70.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - uid: 24091 components: - type: Transform - pos: 5.5,-30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24092 - components: - - type: Transform - pos: 5.5,-31.5 + rot: 1.5707963267948966 rad + pos: 77.5,-44.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -100221,19 +102763,35 @@ entities: pos: 5.5,-32.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 24094 components: - type: Transform pos: 5.5,-33.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 24095 components: - type: Transform pos: 5.5,-34.5 parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-37.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-37.5 + parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24100 @@ -100660,6 +103218,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 24173 + components: + - type: Transform + pos: 70.5,-25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 24175 components: - type: Transform @@ -100687,38 +103252,27 @@ entities: - uid: 24182 components: - type: Transform - pos: 0.5,-8.5 + rot: 3.141592653589793 rad + pos: -20.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24183 components: - type: Transform - pos: 0.5,-9.5 + rot: 3.141592653589793 rad + pos: -20.5,-71.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24184 components: - type: Transform - pos: 0.5,-10.5 + rot: 3.141592653589793 rad + pos: -19.5,-72.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24185 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24186 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24190 components: - type: Transform @@ -100909,8 +103463,8 @@ entities: - uid: 24223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-13.5 + rot: 3.141592653589793 rad + pos: 52.5,-36.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -101012,6 +103566,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 24246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-38.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 24247 components: - type: Transform @@ -101270,8 +103832,7 @@ entities: - uid: 24301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-4.5 + pos: 48.5,-5.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -101657,14 +104218,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24384 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,14.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24385 components: - type: Transform @@ -101681,22 +104234,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24387 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,14.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,14.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24389 components: - type: Transform @@ -101729,14 +104266,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,9.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24394 components: - type: Transform @@ -101745,14 +104274,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24395 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,9.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24396 components: - type: Transform @@ -101761,14 +104282,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,14.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24402 components: - type: Transform @@ -101925,174 +104438,171 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-10.5 + pos: 48.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24429 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-9.5 + pos: 21.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24431 + color: '#990000FF' + - uid: 24430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-8.5 + rot: -1.5707963267948966 rad + pos: 36.5,-22.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24432 + - uid: 24436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-8.5 + pos: 21.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24440 + color: '#990000FF' + - uid: 24437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-4.5 + pos: 26.5,-6.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24441 + - uid: 24438 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-6.5 + pos: 28.5,-7.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24443 + - uid: 24439 components: - type: Transform - pos: 25.5,-6.5 + rot: 1.5707963267948966 rad + pos: 27.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24444 + color: '#990000FF' + - uid: 24440 components: - type: Transform - pos: 25.5,-5.5 + rot: -1.5707963267948966 rad + pos: 27.5,-10.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 24442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 24445 components: - type: Transform - pos: 20.5,-5.5 + rot: 3.141592653589793 rad + pos: 21.5,-3.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - uid: 24446 components: - type: Transform - pos: 20.5,-4.5 + rot: 3.141592653589793 rad + pos: 29.5,-5.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - uid: 24447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-4.5 + rot: 3.141592653589793 rad + pos: 22.5,-3.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24448 components: - type: Transform - pos: 21.5,-3.5 + rot: 3.141592653589793 rad + pos: 22.5,4.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24449 components: - type: Transform - pos: 20.5,-3.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24450 - components: - - type: Transform - pos: 20.5,-2.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24451 - components: - - type: Transform - pos: 21.5,-2.5 + rot: 3.141592653589793 rad + pos: 22.5,3.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24452 components: - type: Transform - pos: 21.5,-1.5 + rot: 3.141592653589793 rad + pos: 22.5,2.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24453 components: - type: Transform - pos: 20.5,-1.5 + rot: 3.141592653589793 rad + pos: 22.5,1.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24454 components: - type: Transform - pos: 20.5,-0.5 + rot: 3.141592653589793 rad + pos: 22.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24455 components: - type: Transform - pos: 20.5,0.5 + rot: 3.141592653589793 rad + pos: 22.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24456 components: - type: Transform + rot: 3.141592653589793 rad pos: 21.5,-0.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 24457 components: - type: Transform pos: 21.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 24458 components: - type: Transform pos: 21.5,1.5 parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24459 - components: - - type: Transform - pos: 20.5,1.5 - parent: 8364 - type: AtmosPipeColor color: '#990000FF' - uid: 24460 components: - type: Transform - pos: 20.5,2.5 + rot: 1.5707963267948966 rad + pos: 22.5,-7.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -102102,28 +104612,27 @@ entities: pos: 21.5,2.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 24465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-10.5 + pos: 21.5,-6.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 24466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-10.5 + rot: -1.5707963267948966 rad + pos: 28.5,-4.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-10.5 + rot: -1.5707963267948966 rad + pos: 27.5,-4.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -102131,146 +104640,95 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-10.5 + pos: 24.5,-1.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-10.5 + rot: -1.5707963267948966 rad + pos: 29.5,-4.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-9.5 + rot: 3.141592653589793 rad + pos: 22.5,-2.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24472 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-9.5 + pos: 23.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24473 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-9.5 + pos: 24.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-9.5 + rot: -1.5707963267948966 rad + pos: 25.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-9.5 + pos: 26.5,-9.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24479 + - uid: 24476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-8.5 + pos: 26.5,-7.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-8.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-7.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24482 + - uid: 24477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-7.5 + pos: 26.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24483 + - uid: 24480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-6.5 + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-6.5 + rot: -1.5707963267948966 rad + pos: 37.5,-22.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - uid: 24485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-5.5 + rot: -1.5707963267948966 rad + pos: 39.5,-22.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-5.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24487 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-4.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24488 components: - type: Transform @@ -102473,13 +104931,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24524 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24525 components: - type: Transform @@ -102700,10 +105151,11 @@ entities: - uid: 24560 components: - type: Transform - pos: 35.5,-22.5 + rot: 1.5707963267948966 rad + pos: 40.5,-19.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24561 components: - type: Transform @@ -102823,6 +105275,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 24584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-19.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 24589 components: - type: Transform @@ -102980,30 +105440,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24619 + - uid: 24618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-22.5 + pos: 36.5,-41.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24620 components: - type: Transform @@ -103031,11 +105474,10 @@ entities: - uid: 24623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-23.5 + pos: 41.5,-49.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24626 components: - type: Transform @@ -103055,10 +105497,11 @@ entities: - uid: 24628 components: - type: Transform - pos: 39.5,-23.5 + rot: 1.5707963267948966 rad + pos: 37.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 24629 components: - type: Transform @@ -103080,45 +105523,51 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24632 + - uid: 24637 components: - type: Transform - pos: 39.5,-19.5 + pos: 43.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24633 + color: '#990000FF' + - uid: 24639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-24.5 + rot: 1.5707963267948966 rad + pos: 45.5,-4.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24640 + - uid: 24642 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-22.5 + pos: 48.5,-6.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24641 + - uid: 24643 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24645 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,-21.5 + pos: 19.5,-19.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24642 + - uid: 24646 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-21.5 + pos: 19.5,-18.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24647 components: - type: Transform @@ -103257,13 +105706,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24675 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24676 components: - type: Transform @@ -103400,30 +105842,44 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24702 + - uid: 24703 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-33.5 + pos: 20.5,-34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24704 + components: + - type: Transform + pos: 21.5,-9.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24703 + - uid: 24705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-34.5 + rot: 3.141592653589793 rad + pos: 21.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24704 + color: '#990000FF' + - uid: 24707 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-33.5 + pos: 25.5,-7.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 24711 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 24713 components: - type: Transform @@ -103448,14 +105904,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24717 components: - type: Transform @@ -103527,13 +105975,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24729 - components: - - type: Transform - pos: 35.5,-28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24730 components: - type: Transform @@ -103765,8 +106206,7 @@ entities: - uid: 24771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-40.5 + pos: 25.5,-28.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -103786,11 +106226,11 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24774 + - uid: 24778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-39.5 + rot: 3.141592653589793 rad + pos: 43.5,-5.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -103801,46 +106241,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-49.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-49.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24786 + - uid: 24780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-49.5 + rot: 3.141592653589793 rad + pos: 21.5,-5.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24787 + color: '#990000FF' + - uid: 24784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-49.5 + rot: 3.141592653589793 rad + pos: 19.5,-20.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-48.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24789 components: - type: Transform @@ -103849,22 +106265,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24792 components: - type: Transform @@ -104017,6 +106417,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 24814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-7.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 24817 components: - type: Transform @@ -104350,16 +106758,16 @@ entities: - uid: 24888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-8.5 + rot: 1.5707963267948966 rad + pos: 23.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-7.5 + rot: 1.5707963267948966 rad + pos: 20.5,-1.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -104371,13 +106779,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24893 + - uid: 24891 components: - type: Transform - pos: 44.5,-7.5 + rot: 3.141592653589793 rad + pos: 29.5,-1.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 24894 components: - type: Transform @@ -104385,46 +106794,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-5.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-6.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24897 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-5.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-4.5 + pos: 29.5,0.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 24899 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-4.5 + rot: 1.5707963267948966 rad + pos: 46.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 24900 components: - type: Transform @@ -104457,27 +106842,11 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-3.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-3.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24910 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-3.5 + pos: 36.5,-46.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -104505,54 +106874,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-9.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-8.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-8.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24925 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-8.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24926 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-9.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-8.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24932 components: - type: Transform @@ -104617,18 +106938,33 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24940 + - uid: 24942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-8.5 + pos: 0.5,-25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24943 + components: + - type: Transform + pos: -1.5,-25.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 24950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 24951 components: - type: Transform - pos: 69.5,-2.5 + rot: 3.141592653589793 rad + pos: -2.5,-17.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -104649,7 +106985,8 @@ entities: - uid: 24954 components: - type: Transform - pos: 69.5,-1.5 + rot: -1.5707963267948966 rad + pos: 60.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -104663,10 +107000,11 @@ entities: - uid: 24956 components: - type: Transform - pos: 69.5,0.5 + rot: 1.5707963267948966 rad + pos: 26.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#03FCD3FF' - uid: 24957 components: - type: Transform @@ -104699,11 +107037,11 @@ entities: - uid: 24963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,1.5 + rot: 1.5707963267948966 rad + pos: 30.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#03FCD3FF' - uid: 24964 components: - type: Transform @@ -104728,6 +107066,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 24973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-82.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 25006 components: - type: Transform @@ -104890,13 +107236,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25046 - components: - - type: Transform - pos: 66.5,-24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25047 components: - type: Transform @@ -104929,14 +107268,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25051 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-22.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25052 components: - type: Transform @@ -105009,22 +107340,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25063 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-22.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-22.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25067 components: - type: Transform @@ -105041,21 +107356,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25074 - components: - - type: Transform - pos: 66.5,-25.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25077 + - uid: 25072 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-26.5 + pos: 1.5,-16.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 25078 components: - type: Transform @@ -105119,13 +107427,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25087 - components: - - type: Transform - pos: 66.5,-28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25088 components: - type: Transform @@ -105133,13 +107434,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25089 - components: - - type: Transform - pos: 66.5,-29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25090 components: - type: Transform @@ -105147,27 +107441,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25091 - components: - - type: Transform - pos: 66.5,-30.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25092 - components: - - type: Transform - pos: 65.5,-31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25093 - components: - - type: Transform - pos: 66.5,-31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25095 components: - type: Transform @@ -105427,11 +107700,10 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25147 + - uid: 25146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-33.5 + pos: 68.5,-4.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -105499,14 +107771,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25159 components: - type: Transform @@ -105523,13 +107787,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25161 - components: - - type: Transform - pos: 66.5,-35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25162 components: - type: Transform @@ -105537,13 +107794,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25163 - components: - - type: Transform - pos: 66.5,-36.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25172 components: - type: Transform @@ -105560,14 +107810,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-39.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25175 components: - type: Transform @@ -105608,14 +107850,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-46.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25182 components: - type: Transform @@ -105624,78 +107858,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-37.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-38.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-39.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-42.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-43.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-44.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-46.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25193 + - uid: 25187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-47.5 + rot: -1.5707963267948966 rad + pos: 58.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 25194 components: - type: Transform @@ -105704,22 +107874,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-48.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-49.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25197 components: - type: Transform @@ -105736,38 +107890,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25203 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-50.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25205 components: - type: Transform @@ -105776,14 +107898,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25209 components: - type: Transform @@ -105800,14 +107914,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25212 components: - type: Transform @@ -105816,14 +107922,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25214 components: - type: Transform @@ -105832,14 +107930,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25216 components: - type: Transform @@ -105848,14 +107938,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25218 components: - type: Transform @@ -105864,58 +107946,18 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-40.5 + pos: 14.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#947507FF' - uid: 25227 components: - type: Transform - pos: 58.5,-40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-45.5 + rot: 3.141592653589793 rad + pos: 52.5,-40.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -105927,38 +107969,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-45.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25252 components: - type: Transform @@ -107025,14 +109035,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,16.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25454 components: - type: Transform @@ -107065,14 +109067,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,16.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25459 components: - type: Transform @@ -107249,14 +109243,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25496 components: - type: Transform @@ -107321,22 +109307,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25505 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,21.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25507 components: - type: Transform @@ -108374,6 +110344,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-34.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25785 components: - type: Transform @@ -108382,27 +110360,27 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25788 + - uid: 25786 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,32.5 + rot: 1.5707963267948966 rad + pos: 45.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25789 + - uid: 25788 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,33.5 + pos: 15.5,32.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25790 + - uid: 25789 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,34.5 + pos: 15.5,33.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -108565,14 +110543,29 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25966 + - uid: 25988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-79.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 26018 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-80.5 + pos: -2.5,-16.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#990000FF' + - uid: 26019 + components: + - type: Transform + pos: 70.5,-26.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 26041 components: - type: Transform @@ -108612,22 +110605,29 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 26082 + - uid: 26089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-73.5 + rot: 3.141592653589793 rad + pos: 26.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 26383 + components: + - type: Transform + pos: 70.5,-27.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26089 + - uid: 26389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-70.5 + rot: 1.5707963267948966 rad + pos: -18.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#990000FF' - uid: 26621 components: - type: Transform @@ -108636,46 +110636,46 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26676 + - uid: 26646 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-73.5 + pos: -2.5,-15.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26677 + color: '#990000FF' + - uid: 26671 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-72.5 + pos: 1.5,-15.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26678 + - uid: 26676 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-71.5 + pos: -7.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26679 + - uid: 26677 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-70.5 + pos: -7.5,-72.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26680 + - uid: 26678 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-72.5 + pos: -7.5,-71.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 26681 components: - type: Transform @@ -108700,22 +110700,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 26685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 26686 components: - type: Transform @@ -108748,492 +110732,549 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26690 + - uid: 26692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-73.5 + pos: 29.5,-77.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 26691 + color: '#03FCD3FF' + - uid: 26696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-73.5 + rot: -1.5707963267948966 rad + pos: 16.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26921 + - uid: 26712 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-81.5 + pos: 23.5,-81.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26922 + color: '#03FCD3FF' + - uid: 26802 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-82.5 + pos: 14.5,-82.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26923 + color: '#947507FF' + - uid: 26803 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-83.5 + pos: 28.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 26928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,10.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26924 + - uid: 26941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 26958 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-84.5 + pos: 25.5,10.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26926 + color: '#990000FF' + - uid: 26966 components: - type: Transform - pos: 28.5,-86.5 + rot: -1.5707963267948966 rad + pos: 57.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26927 + color: '#990000FF' + - uid: 26998 components: - type: Transform - pos: 28.5,-87.5 + rot: 3.141592653589793 rad + pos: 61.5,-7.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26928 + color: '#990000FF' + - uid: 27016 components: - type: Transform - pos: 28.5,-88.5 + rot: -1.5707963267948966 rad + pos: 71.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26929 + color: '#990000FF' + - uid: 27017 components: - type: Transform - pos: 28.5,-89.5 + rot: -1.5707963267948966 rad + pos: 70.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26930 + color: '#990000FF' + - uid: 27018 components: - type: Transform - pos: 28.5,-90.5 + pos: 55.5,-4.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26933 + color: '#990000FF' + - uid: 27024 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-93.5 + pos: 15.5,-81.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26934 + color: '#990000FF' + - uid: 27157 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-94.5 + pos: 54.5,-13.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26935 + color: '#990000FF' + - uid: 27158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-95.5 + pos: 54.5,-15.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26936 + color: '#990000FF' + - uid: 27159 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-96.5 + pos: 54.5,-14.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26937 + color: '#990000FF' + - uid: 27160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-97.5 + pos: 54.5,-16.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26938 + color: '#990000FF' + - uid: 27161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-98.5 + pos: 73.5,-29.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26939 + color: '#990000FF' + - uid: 27162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-99.5 + pos: 73.5,-24.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26940 + color: '#990000FF' + - uid: 27163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-100.5 + pos: 70.5,-28.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26941 + - uid: 27164 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-101.5 + pos: 73.5,-23.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26942 + color: '#990000FF' + - uid: 27170 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-102.5 + pos: -20.5,-75.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26943 + - uid: 27171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-103.5 + pos: -26.5,-74.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26944 + - uid: 27196 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-104.5 + pos: 56.5,-38.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26945 + - uid: 27200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-105.5 + pos: 73.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26947 + color: '#990000FF' + - uid: 27203 components: - type: Transform - pos: 28.5,-107.5 + pos: 70.5,-29.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26948 + - uid: 27208 components: - type: Transform - pos: 28.5,-108.5 + rot: -1.5707963267948966 rad + pos: -21.5,-74.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26952 + - uid: 27209 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-91.5 + pos: -25.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26953 + - uid: 27258 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-91.5 + pos: -24.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26954 + - uid: 27277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-91.5 + rot: -1.5707963267948966 rad + pos: -20.5,-75.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26955 + color: '#990000FF' + - uid: 27307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-91.5 + pos: 73.5,-26.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26956 + color: '#990000FF' + - uid: 27308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-91.5 + pos: 73.5,-25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-35.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26957 + - uid: 27382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-91.5 + pos: 52.5,-15.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27179 + - uid: 27383 components: - type: Transform - pos: 22.5,-92.5 + pos: 73.5,-27.5 parent: 8364 - - uid: 27258 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27384 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-79.5 + rot: -1.5707963267948966 rad + pos: 71.5,-35.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27289 + - uid: 27389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-78.5 + rot: -1.5707963267948966 rad + pos: 72.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27290 + color: '#990000FF' + - uid: 27406 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-77.5 + pos: 54.5,-17.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27307 + color: '#990000FF' + - uid: 27413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-76.5 + pos: 52.5,-16.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27308 + - uid: 27426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-75.5 + rot: 1.5707963267948966 rad + pos: 55.5,-36.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27311 + - uid: 27427 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-74.5 + pos: 52.5,-35.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27380 + color: '#990000FF' + - uid: 27486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-73.5 + rot: 1.5707963267948966 rad + pos: 53.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27413 + color: '#990000FF' + - uid: 27548 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-72.5 + rot: -1.5707963267948966 rad + pos: -21.5,-75.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27418 + color: '#990000FF' + - uid: 27550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-70.5 + rot: 1.5707963267948966 rad + pos: -23.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27425 + - uid: 27650 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-71.5 + pos: 52.5,-17.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27426 + - uid: 27762 + components: + - type: Transform + pos: 14.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27847 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-69.5 + pos: 62.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27486 + - uid: 27848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-68.5 + rot: 3.141592653589793 rad + pos: 62.5,-7.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27529 + - uid: 27937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-68.5 + rot: 1.5707963267948966 rad + pos: 46.5,-8.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27530 + - uid: 27938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-68.5 + rot: 3.141592653589793 rad + pos: 47.5,-3.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27531 + color: '#990000FF' + - uid: 27940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-68.5 + pos: 48.5,-7.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27532 + - uid: 27943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-68.5 + rot: 1.5707963267948966 rad + pos: 47.5,-4.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27548 + - uid: 27946 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-74.5 + pos: 20.5,-25.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 27549 + color: '#990000FF' + - uid: 27950 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-68.5 + pos: 26.5,-29.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27550 + - uid: 27951 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-68.5 + pos: 35.5,-29.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27552 + - uid: 27952 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-68.5 + pos: 34.5,-29.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27564 + - uid: 27953 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-68.5 + pos: 33.5,-29.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27618 + - uid: 27954 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-68.5 + pos: 34.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27619 + color: '#990000FF' + - uid: 27955 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-68.5 + pos: 33.5,-28.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27620 + color: '#990000FF' + - uid: 27956 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-68.5 + pos: 32.5,-29.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27621 + - uid: 27957 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-68.5 + pos: 31.5,-29.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27622 + - uid: 27975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-68.5 + rot: 3.141592653589793 rad + pos: 29.5,-8.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27623 + color: '#990000FF' + - uid: 27976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-68.5 + rot: 3.141592653589793 rad + pos: 29.5,-9.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 27624 + color: '#990000FF' + - uid: 28196 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-68.5 + pos: 6.5,-31.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-55.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28225 + components: + - type: Transform + pos: -12.5,-54.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27625 + - uid: 28226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-68.5 + pos: -12.5,-52.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 28228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-54.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-52.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-54.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 1 @@ -109250,6 +111291,27 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 834 + components: + - type: Transform + pos: 72.5,-22.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 844 + components: + - type: Transform + pos: 60.5,-39.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 849 + components: + - type: Transform + pos: 2.5,21.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 953 components: - type: Transform @@ -109273,14 +111335,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 3860 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3998 components: - type: Transform @@ -109297,14 +111351,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4052 + - uid: 4110 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-74.5 + pos: 15.5,-71.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#947507FF' - uid: 4145 components: - type: Transform @@ -109312,44 +111366,86 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 4173 + - uid: 4260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-78.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4327 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-80.5 + pos: 67.5,-50.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 4485 + - uid: 4462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-68.5 + rot: 3.141592653589793 rad + pos: 78.5,-45.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4541 + color: '#990000FF' + - uid: 4538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,9.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4540 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-78.5 + pos: 26.5,13.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 5240 + color: '#0055CCFF' + - uid: 4549 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-78.5 + pos: 1.5,-22.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' + - uid: 4615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-46.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5261 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-39.5 parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-5.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-12.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7306 components: - type: Transform @@ -109389,6 +111485,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 8203 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8524 components: - type: Transform @@ -109497,6 +111600,53 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,7.5 parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10875 + components: + - type: Transform + pos: 68.5,1.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,2.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 14087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-78.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-67.5 + parent: 8364 - type: AtmosPipeColor color: '#990000FF' - uid: 14212 @@ -109507,19 +111657,43 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15494 + - uid: 14486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-55.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14504 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-58.5 + pos: 65.5,-39.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15546 + color: '#0055CCFF' + - uid: 14513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-80.5 + pos: 14.5,-58.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' @@ -109531,6 +111705,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 15883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-8.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 16134 components: - type: Transform @@ -109562,15 +111752,62 @@ entities: pos: 11.5,-48.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16830 + color: '#990000FF' + - uid: 16624 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-69.5 + pos: 3.5,-68.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16628 + components: + - type: Transform + pos: -20.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-70.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-52.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-53.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-53.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 16915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-56.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 16990 components: - type: Transform @@ -109585,22 +111822,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 17025 + - uid: 17031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-53.5 + rot: 3.141592653589793 rad + pos: 8.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-52.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 17042 components: - type: Transform @@ -109617,20 +111846,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 17063 - components: - - type: Transform - pos: 15.5,-79.5 - parent: 8364 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 17064 + - uid: 17062 components: - type: Transform - pos: 19.5,-71.5 + rot: 1.5707963267948966 rad + pos: 3.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#990000FF' - uid: 17112 components: - type: Transform @@ -109646,14 +111869,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 17149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-65.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 17160 components: - type: Transform @@ -109662,22 +111877,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 17183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-69.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17221 + - uid: 17190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-75.5 + rot: -1.5707963267948966 rad + pos: -19.5,-69.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 17261 components: - type: Transform @@ -109700,14 +111907,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17467 + - uid: 17468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-67.5 + rot: 3.141592653589793 rad + pos: -5.5,-31.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 17559 components: - type: Transform @@ -109726,8 +111933,14 @@ entities: - uid: 17570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-75.5 + pos: 7.5,-29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17589 + components: + - type: Transform + pos: 23.5,-12.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -109738,6 +111951,21 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-14.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17592 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17605 components: - type: Transform @@ -109745,19 +111973,72 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17607 + components: + - type: Transform + pos: 52.5,-14.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17661 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-14.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-14.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17673 + components: + - type: Transform + pos: 69.5,-12.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17676 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-85.5 + pos: 71.5,-14.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' - - uid: 17870 + color: '#0055CCFF' + - uid: 17766 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-33.5 + pos: 81.5,-6.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-10.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-6.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -109769,13 +112050,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18735 + - uid: 18395 components: - type: Transform - pos: 7.5,-65.5 + rot: 1.5707963267948966 rad + pos: 28.5,-34.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 18404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,-10.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19101 components: - type: Transform @@ -109784,10 +112074,43 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 20185 + - uid: 19580 components: - type: Transform - pos: 76.5,-14.5 + rot: -1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-4.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,9.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,14.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-9.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -109807,6 +112130,20 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 20280 + components: + - type: Transform + pos: 67.5,-22.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20327 + components: + - type: Transform + pos: 73.5,-22.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 20884 components: - type: Transform @@ -109822,6 +112159,38 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-40.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-43.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 21383 components: - type: Transform @@ -109830,19 +112199,67 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 22556 + - uid: 21385 components: - type: Transform rot: 3.141592653589793 rad - pos: 76.5,-12.5 + pos: 69.5,-52.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-24.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 22557 + - uid: 21525 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-12.5 + pos: 19.5,-25.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-41.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-38.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-44.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-22.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-14.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -109861,6 +112278,29 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 22970 + components: + - type: Transform + pos: -59.5,0.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-53.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-14.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 23017 components: - type: Transform @@ -109917,56 +112357,66 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23069 + - uid: 23121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-55.5 + rot: 1.5707963267948966 rad + pos: 6.5,-13.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23070 + - uid: 23124 components: - type: Transform - pos: -7.5,-56.5 + rot: 1.5707963267948966 rad + pos: 66.5,-22.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23071 + - uid: 23125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-27.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23132 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-55.5 + pos: -6.5,-74.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23182 + - uid: 23186 components: - type: Transform - pos: 0.5,-66.5 + pos: 18.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 23183 + color: '#947507FF' + - uid: 23202 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-67.5 + pos: -1.5,-56.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23228 + color: '#990000FF' + - uid: 23211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-44.5 + rot: 3.141592653589793 rad + pos: 3.5,-74.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23252 + - uid: 23228 components: - type: Transform - pos: -13.5,-68.5 + rot: -1.5707963267948966 rad + pos: 5.5,-44.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -110171,21 +112621,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23407 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,0.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23415 - components: - - type: Transform - pos: -59.5,-4.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23423 components: - type: Transform @@ -110305,33 +112740,11 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23533 - components: - - type: Transform - pos: -2.5,-29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23536 - components: - - type: Transform - pos: 5.5,-29.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-29.5 + rot: 1.5707963267948966 rad + pos: 56.5,-5.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -110566,13 +112979,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23721 - components: - - type: Transform - pos: 0.5,19.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23728 components: - type: Transform @@ -110628,13 +113034,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23772 - components: - - type: Transform - pos: 4.5,-31.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 23782 components: - type: Transform @@ -110657,17 +113056,17 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23797 + - uid: 23802 components: - type: Transform - pos: 31.5,-12.5 + pos: 26.5,-12.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23802 + - uid: 23804 components: - type: Transform - pos: 26.5,-12.5 + pos: -4.5,-68.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -110703,6 +113102,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 23832 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 23835 components: - type: Transform @@ -110741,14 +113147,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-14.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23860 components: - type: Transform @@ -110778,53 +113176,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23885 - components: - - type: Transform - pos: 65.5,-12.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-14.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-8.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23911 + - uid: 23902 components: - type: Transform rot: -1.5707963267948966 rad - pos: 76.5,-9.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 23928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-27.5 + pos: 67.5,-31.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 23957 components: - type: Transform @@ -110927,13 +113286,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24162 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24164 components: - type: Transform @@ -110949,13 +113301,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24173 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24174 components: - type: Transform @@ -110964,14 +113309,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24199 components: - type: Transform @@ -111153,33 +113490,90 @@ entities: - type: AtmosPipeColor color: '#990000FF' - uid: 24428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-2.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,31.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24463 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-10.5 + pos: 22.5,-1.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24430 + - uid: 24478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-10.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24479 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-9.5 + pos: 21.5,-7.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24433 + - uid: 24481 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-7.5 + pos: 30.5,-4.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-18.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-22.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24439 + - uid: 24486 components: - type: Transform - pos: 24.5,-7.5 + rot: -1.5707963267948966 rad + pos: 35.5,-23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-24.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-23.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -111202,8 +113596,8 @@ entities: - uid: 24523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-17.5 + rot: 1.5707963267948966 rad + pos: 39.5,-19.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -111254,6 +113648,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 24598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 24611 components: - type: Transform @@ -111262,19 +113664,43 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24618 + - uid: 24616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-23.5 + rot: -1.5707963267948966 rad + pos: 35.5,-28.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24637 + - uid: 24617 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,-23.5 + pos: 36.5,-29.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-45.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-8.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-7.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -111282,7 +113708,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-28.5 + pos: 15.5,34.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -111309,6 +113735,21 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 24702 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-23.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 24739 components: - type: Transform @@ -111349,14 +113790,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24783 + - uid: 24786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-49.5 + rot: 1.5707963267948966 rad + pos: 38.5,-18.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 24821 components: - type: Transform @@ -111403,37 +113844,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-8.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-5.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-8.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24929 - components: - - type: Transform - pos: 73.5,-9.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25026 components: - type: Transform @@ -111450,14 +113860,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-22.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25042 components: - type: Transform @@ -111466,30 +113868,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-24.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-22.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25073 components: - type: Transform @@ -111506,14 +113884,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-27.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25117 components: - type: Transform @@ -111552,30 +113922,30 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25146 + - uid: 25191 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-32.5 + pos: 65.5,-44.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 25179 + color: '#0055CCFF' + - uid: 25232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-45.5 + rot: 3.141592653589793 rad + pos: 29.5,-14.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' - - uid: 25191 + color: '#0055CCFF' + - uid: 25246 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-44.5 + pos: -19.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 25344 components: - type: Transform @@ -111799,58 +114169,73 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26673 + - uid: 26945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-73.5 + rot: 1.5707963267948966 rad + pos: -2.5,-22.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26674 + - uid: 26975 components: - type: Transform - pos: -6.5,-74.5 + rot: -1.5707963267948966 rad + pos: -20.5,-74.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26675 + - uid: 26986 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-73.5 + pos: 31.5,-12.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26920 + - uid: 27168 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-80.5 + pos: -19.5,-75.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 26925 + color: '#990000FF' + - uid: 27554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-85.5 + rot: 3.141592653589793 rad + pos: -14.5,-70.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26932 + - uid: 27564 + components: + - type: Transform + pos: -12.5,-68.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27942 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-92.5 + pos: 48.5,-4.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26946 + - uid: 28217 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-106.5 + pos: -14.5,-53.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-53.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -111873,7 +114258,7 @@ entities: pos: 39.5,8.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 3798 components: - type: Transform @@ -111892,6 +114277,20 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-47.5 parent: 8364 + - uid: 4259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-75.5 + parent: 8364 + - uid: 4625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-78.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 5596 components: - type: Transform @@ -111911,8 +114310,23 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,7.5 parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-78.5 + parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 14546 + components: + - type: Transform + pos: 21.5,-76.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 15045 components: - type: Transform @@ -111958,6 +114372,12 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' + - uid: 16153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-74.5 + parent: 8364 - uid: 16330 components: - type: Transform @@ -111971,22 +114391,20 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 17571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-73.5 - parent: 8364 - uid: 18298 components: - type: Transform pos: 43.5,-38.5 parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 18299 components: - type: Transform pos: 44.5,-38.5 parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19162 components: - type: Transform @@ -112006,38 +114424,6 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,-48.5 parent: 8364 - - uid: 20069 - components: - - type: Transform - pos: 18.5,-76.5 - parent: 8364 - - uid: 20070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-75.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 20124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-75.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20135 - components: - - type: Transform - pos: 12.5,-76.5 - parent: 8364 - - uid: 20136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-73.5 - parent: 8364 - uid: 20802 components: - type: Transform @@ -112110,29 +114496,13 @@ entities: rot: -1.5707963267948966 rad pos: 78.5,-39.5 parent: 8364 - - uid: 27178 - components: - - type: Transform - pos: 22.5,-91.5 - parent: 8364 - - uid: 27551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-72.5 - parent: 8364 - - uid: 27553 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-71.5 - parent: 8364 - - uid: 27554 + - uid: 25041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-71.5 + pos: 15.5,-76.5 parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPressurePump entities: - uid: 3993 @@ -112178,7 +114548,7 @@ entities: pos: 40.5,6.5 parent: 8364 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 13813 components: - type: Transform @@ -112278,20 +114648,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 20066 - components: - - type: Transform - pos: 12.5,-77.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 20068 - components: - - type: Transform - pos: 18.5,-77.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 22840 components: - type: Transform @@ -112305,6 +114661,15 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 23247 + components: + - type: MetaData + name: TEG Supply + - type: Transform + pos: 17.5,-58.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 25004 components: - type: Transform @@ -112324,16 +114689,21 @@ entities: pos: 33.5,-34.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 26081 + color: '#0055CCFF' + - uid: 27140 components: - - type: MetaData - name: Mix to TEG - type: Transform - pos: 17.5,-57.5 + pos: 15.5,-77.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' + color: '#990000FF' + - uid: 27152 + components: + - type: Transform + pos: 21.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasThermoMachineFreezer entities: - uid: 3805 @@ -112354,22 +114724,11 @@ entities: - type: Transform pos: 38.5,0.5 parent: 8364 - - uid: 20859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-73.5 - parent: 8364 - uid: 21274 components: - type: Transform pos: 57.5,-29.5 parent: 8364 - - uid: 21406 - components: - - type: Transform - pos: 70.5,-47.5 - parent: 8364 - uid: 22565 components: - type: Transform @@ -112380,6 +114739,18 @@ entities: - type: Transform pos: 18.5,-50.5 parent: 8364 + - uid: 23169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-47.5 + parent: 8364 + - uid: 23177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-75.5 + parent: 8364 - proto: GasThermoMachineHeater entities: - uid: 3803 @@ -112388,6 +114759,12 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-41.5 parent: 8364 + - uid: 12428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-74.5 + parent: 8364 - uid: 17695 components: - type: Transform @@ -112398,97 +114775,78 @@ entities: - type: Transform pos: 12.5,-51.5 parent: 8364 - - uid: 20858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-73.5 - parent: 8364 - - uid: 21405 + - uid: 23171 components: - type: Transform + rot: 3.141592653589793 rad pos: 74.5,-47.5 parent: 8364 - proto: GasValve entities: - - uid: 17062 + - uid: 4231 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-71.5 + pos: 20.5,-80.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor - color: '#947507FF' - - uid: 17339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-56.5 - parent: 8364 - - type: GasValve - open: False - - uid: 17707 + color: '#03FCD3FF' + - uid: 13407 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-78.5 + pos: 23.5,-80.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor - color: '#947507FF' - - uid: 17719 + color: '#03FCD3FF' + - uid: 15721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-78.5 + pos: 19.5,-78.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor color: '#947507FF' - - uid: 17766 + - uid: 16550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-81.5 + pos: 17.5,-78.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 17775 + color: '#947507FF' + - uid: 16633 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-81.5 + pos: 13.5,-80.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 17781 + color: '#990000FF' + - uid: 16697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-81.5 + rot: -1.5707963267948966 rad + pos: 24.5,-71.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor - color: '#990000FF' - - uid: 18758 + color: '#947507FF' + - uid: 17339 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-81.5 + pos: 15.5,-56.5 parent: 8364 - type: GasValve open: False - - type: AtmosPipeColor - color: '#990000FF' - uid: 22843 components: - type: MetaData @@ -112499,20 +114857,93 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 23185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-80.5 + parent: 8364 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#990000FF' - uid: 25002 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-41.5 parent: 8364 + - type: GasValve + open: False - uid: 25003 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-39.5 parent: 8364 + - type: GasValve + open: False - proto: GasVentPump entities: + - uid: 747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-70.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22588 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 824 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28154 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4404 + components: + - type: Transform + pos: 79.5,-51.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22954 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4461 + components: + - type: Transform + pos: 69.5,-51.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22954 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4536 + components: + - type: Transform + pos: 81.5,-2.5 + parent: 8364 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4546 components: - type: Transform @@ -112521,22 +114952,68 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5382 + - uid: 5463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-10.5 + pos: 65.5,-7.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22699 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5462 + - uid: 5735 components: - type: Transform - pos: -15.5,-68.5 + pos: 70.5,4.5 parent: 8364 - type: DeviceNetwork deviceLists: - - 26707 + - 22701 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 5769 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-6.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22694 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-10.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22694 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-5.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22703 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7282 @@ -112563,6 +115040,17 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8150 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8909 components: - type: Transform @@ -112610,19 +115098,54 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14562 + - uid: 11761 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,-18.5 + pos: 66.5,-40.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15344 + - uid: 14124 + components: + - type: Transform + pos: -6.5,-69.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 17159 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-53.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 18773 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-73.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26908 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14562 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-21.5 + pos: 66.5,-18.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -112634,7 +115157,7 @@ entities: parent: 8364 - type: DeviceNetwork deviceLists: - - 22970 + - 19344 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16399 @@ -112645,18 +115168,54 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17123 + - uid: 16625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-61.5 + rot: 3.141592653589793 rad + pos: -59.5,-0.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25825 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17188 + - uid: 16882 components: - type: Transform - pos: -1.5,-66.5 + rot: -1.5707963267948966 rad + pos: 5.5,-53.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 17778 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-53.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28227 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17043 + components: + - type: Transform + pos: 6.5,-69.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 17159 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-61.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -112668,6 +115227,16 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17600 + components: + - type: Transform + pos: 57.5,-13.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22689 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 18741 components: - type: Transform @@ -112684,79 +115253,96 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22458 + - uid: 19169 components: - type: Transform - pos: 1.5,0.5 + pos: -59.5,-3.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25825 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22696 + - uid: 19952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-12.5 + rot: 3.141592653589793 rad + pos: 4.5,-35.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22950 + - uid: 20029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-46.5 + rot: -1.5707963267948966 rad + pos: 7.5,-13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22612 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22952 + color: '#0055CCFF' + - uid: 20068 components: - type: Transform - pos: 16.5,-40.5 + rot: -1.5707963267948966 rad + pos: 27.5,13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8150 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 23011 + color: '#0055CCFF' + - uid: 22458 components: - type: Transform - pos: 9.5,-52.5 + pos: 1.5,0.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23068 + - uid: 22731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-56.5 + pos: 58.5,0.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22703 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23089 + - uid: 22748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-55.5 + pos: 23.5,18.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8249 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23090 + - uid: 22950 components: - type: Transform - pos: -7.5,-51.5 + rot: 1.5707963267948966 rad + pos: 9.5,-46.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23091 + color: '#0335FCFF' + - uid: 22952 components: - type: Transform - pos: -6.5,-54.5 + pos: 16.5,-40.5 parent: 8364 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 23121 + color: '#0335FCFF' + - uid: 23090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-66.5 + pos: -7.5,-51.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28227 - type: AtmosPipeColor color: '#0055CCFF' - uid: 23146 @@ -112767,23 +115353,35 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23179 + - uid: 23218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-73.5 + rot: 3.141592653589793 rad + pos: -7.5,-30.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22589 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23258 + components: + - type: Transform + pos: 0.5,20.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23938 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23261 + - uid: 23259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-69.5 + pos: -6.5,-73.5 parent: 8364 - type: DeviceNetwork deviceLists: - - 22588 + - 23133 - type: AtmosPipeColor color: '#0055CCFF' - uid: 23279 @@ -112818,20 +115416,35 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23946 + - uid: 23876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-26.5 + pos: 36.5,-13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 23947 + - uid: 23879 + components: + - type: Transform + pos: 71.5,-13.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22689 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23905 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-30.5 + pos: -4.5,16.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25517 - type: AtmosPipeColor color: '#0055CCFF' - uid: 23949 @@ -112919,14 +115532,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-11.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24085 components: - type: Transform @@ -112943,12 +115548,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24096 + - uid: 24092 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-35.5 + pos: 76.5,-37.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 835 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24098 @@ -112989,14 +115596,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24187 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-11.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24216 components: - type: Transform @@ -113005,14 +115604,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24220 components: - type: Transform @@ -113045,19 +115636,15 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24246 - components: - - type: Transform - pos: 78.5,-2.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24291 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,6.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24292 @@ -113066,6 +115653,9 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,9.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24293 @@ -113074,6 +115664,9 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,12.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24294 @@ -113082,6 +115675,9 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,15.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24299 @@ -113135,6 +115731,9 @@ entities: - type: Transform pos: 12.5,14.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24370 @@ -113142,6 +115741,9 @@ entities: - type: Transform pos: 16.5,14.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24376 @@ -113149,14 +115751,9 @@ entities: - type: Transform pos: 19.5,12.5 parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 24400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,14.5 - parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8150 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24419 @@ -113175,12 +115772,26 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24463 + - uid: 24444 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,3.5 + pos: 28.5,-10.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,5.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24493 @@ -113205,55 +115816,75 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24583 + - uid: 24572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-17.5 + rot: -1.5707963267948966 rad + pos: 42.5,-19.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 3087 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24584 + - uid: 24583 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-17.5 + pos: 33.5,-17.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24585 + - uid: 24588 components: - type: Transform - pos: 29.5,-13.5 + pos: 29.5,-24.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27965 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24588 + - uid: 24603 components: - type: Transform - pos: 29.5,-24.5 + pos: 19.5,-33.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25915 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24599 + - uid: 24634 components: - type: Transform - pos: 19.5,-20.5 + rot: 3.141592653589793 rad + pos: 35.5,-47.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 24632 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24643 + - uid: 24638 components: - type: Transform - pos: 42.5,-20.5 + pos: 47.5,-7.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22655 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24645 + - uid: 24644 components: - type: Transform - pos: 39.5,-18.5 + rot: -1.5707963267948966 rad + pos: 20.5,-17.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22661 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24671 @@ -113271,14 +115902,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-28.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24706 components: - type: Transform @@ -113287,14 +115910,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 24745 components: - type: Transform @@ -113311,43 +115926,52 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24775 + - uid: 24776 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-40.5 + pos: 40.5,-41.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24776 + - uid: 24783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-41.5 + rot: -1.5707963267948966 rad + pos: 26.5,-18.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22665 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24811 + - uid: 24787 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-46.5 + pos: 27.5,-29.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 291 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24812 + - uid: 24790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-46.5 + rot: 3.141592653589793 rad + pos: 36.5,-42.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 24812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24813 + - uid: 24811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-49.5 + rot: -1.5707963267948966 rad + pos: 44.5,-46.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -113397,25 +116021,28 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24914 + - uid: 24893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-8.5 + pos: 39.5,-17.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 3087 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24920 + - uid: 24905 components: - type: Transform - pos: 47.5,-13.5 + rot: 3.141592653589793 rad + pos: 30.5,-5.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 24921 + - uid: 24920 components: - type: Transform - pos: 67.5,-13.5 + pos: 47.5,-13.5 parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' @@ -113463,6 +116090,9 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-26.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27881 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25132 @@ -113495,14 +116125,9 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,-35.5 parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-35.5 - parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23899 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25168 @@ -113511,6 +116136,9 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-33.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4328 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25170 @@ -113519,37 +116147,9 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-25.5 parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-51.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-40.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25242 - components: - - type: Transform - pos: 56.5,-39.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-44.5 - parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4328 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25276 @@ -113592,26 +116192,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25315 - components: - - type: Transform - pos: -59.5,1.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 25316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-5.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25325 components: - type: Transform pos: -60.5,4.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 19773 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25336 @@ -113628,6 +116216,9 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-11.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 19344 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25367 @@ -113636,6 +116227,9 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,-5.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 19344 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25376 @@ -113729,14 +116323,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 25486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,15.5 - parent: 8364 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 25488 components: - type: Transform @@ -113891,12 +116477,36 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26692 + - uid: 25859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,-44.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 835 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26051 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-75.5 + pos: -26.5,-75.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25225 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26691 + components: + - type: Transform + pos: 62.5,-6.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22703 - type: AtmosPipeColor color: '#0055CCFF' - uid: 26693 @@ -113915,71 +116525,278 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26949 + - uid: 26959 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 3656 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26973 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-109.5 + pos: 52.5,-18.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22706 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26950 + - uid: 26987 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-106.5 + pos: 66.5,-46.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4329 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26951 + - uid: 27197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-40.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27150 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-76.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25225 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-35.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22721 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-30.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22715 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27531 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27879 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-92.5 + pos: 54.5,-36.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27150 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26958 + - uid: 27933 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-91.5 + pos: 14.5,34.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 24766 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26959 + - uid: 27941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-91.5 + rot: 1.5707963267948966 rad + pos: 44.5,-4.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22655 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26960 + - uid: 27945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-26.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27964 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27965 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27959 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22670 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27966 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-85.5 + pos: 25.5,-1.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 26961 + - uid: 27992 components: - type: Transform - pos: 28.5,-79.5 + pos: 21.5,-13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 27233 + - uid: 28205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-7.5 + rot: 3.141592653589793 rad + pos: 7.5,-30.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22589 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28223 + components: + - type: Transform + pos: -12.5,-51.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28227 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-55.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28227 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber entities: + - uid: 279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-10.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-74.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26704 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-51.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22954 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-10.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22694 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-0.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25825 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-51.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22954 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4547 components: - type: Transform @@ -113988,22 +116805,57 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 5383 + - uid: 4557 components: - type: Transform - pos: 57.5,-7.5 + rot: -1.5707963267948966 rad + pos: -1.5,-22.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28154 - type: AtmosPipeColor color: '#990000FF' - - uid: 5463 + - uid: 4565 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 5769 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5730 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-69.5 + pos: 65.5,-10.5 parent: 8364 - type: DeviceNetwork deviceLists: - - 26707 + - 22699 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5748 + components: + - type: Transform + pos: 71.5,4.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22701 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-5.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22703 - type: AtmosPipeColor color: '#990000FF' - uid: 7284 @@ -114035,6 +116887,16 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 8142 + components: + - type: Transform + pos: 53.5,0.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22703 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8953 components: - type: Transform @@ -114051,6 +116913,17 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 14117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-69.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 17159 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14226 components: - type: Transform @@ -114059,26 +116932,29 @@ entities: parent: 8364 - type: DeviceNetwork deviceLists: - - 22970 + - 19344 - type: AtmosPipeColor color: '#990000FF' - - uid: 15347 + - uid: 15346 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-21.5 + pos: 66.5,-38.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4329 - type: AtmosPipeColor color: '#990000FF' - - uid: 16789 + - uid: 16626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-68.5 + rot: -1.5707963267948966 rad + pos: 6.5,-67.5 parent: 8364 - type: DeviceNetwork deviceLists: - - 22588 + - 17159 - type: AtmosPipeColor color: '#990000FF' - uid: 16832 @@ -114088,6 +116964,17 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 16880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-53.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 17778 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17122 components: - type: Transform @@ -114096,12 +116983,36 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 17187 + - uid: 17208 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-67.5 + pos: -25.5,-70.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22588 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17571 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22589 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22689 - type: AtmosPipeColor color: '#990000FF' - uid: 17630 @@ -114111,11 +117022,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 19123 + - uid: 20066 components: - type: Transform - pos: 28.5,-32.5 + pos: 27.5,10.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8150 - type: AtmosPipeColor color: '#990000FF' - uid: 20132 @@ -114126,6 +117040,61 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 20289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-23.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22715 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-31.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4328 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-23.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4328 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,16.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25517 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-73.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23133 + - type: AtmosPipeColor + color: '#990000FF' - uid: 22459 components: - type: Transform @@ -114133,12 +117102,24 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 22695 + - uid: 22690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-12.5 + pos: -58.5,-3.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25825 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22747 + components: + - type: Transform + pos: 25.5,18.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8249 - type: AtmosPipeColor color: '#990000FF' - uid: 22778 @@ -114171,59 +117152,83 @@ entities: pos: 11.5,-47.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23010 + color: '#990000FF' + - uid: 23071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-52.5 + pos: -5.5,-30.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22589 - type: AtmosPipeColor color: '#990000FF' - - uid: 23067 + - uid: 23086 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-57.5 + pos: 31.5,-13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 - type: AtmosPipeColor color: '#990000FF' - - uid: 23086 + - uid: 23087 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-57.5 + pos: 38.5,-13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 - type: AtmosPipeColor color: '#990000FF' - - uid: 23087 + - uid: 23088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-56.5 + pos: -5.5,-51.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28227 - type: AtmosPipeColor color: '#990000FF' - - uid: 23088 + - uid: 23089 components: - type: Transform - pos: -5.5,-51.5 + rot: 3.141592653589793 rad + pos: 69.5,-13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22689 - type: AtmosPipeColor color: '#990000FF' - - uid: 23120 + - uid: 23122 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-65.5 + pos: 78.5,-6.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22694 - type: AtmosPipeColor color: '#990000FF' - - uid: 23177 + - uid: 23123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-74.5 + pos: 77.5,-2.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-35.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -114251,19 +117256,47 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 23941 + - uid: 23316 + components: + - type: Transform + pos: 78.5,-37.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 835 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-53.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 18773 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23856 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-27.5 + pos: 11.5,-13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22612 - type: AtmosPipeColor color: '#990000FF' - - uid: 23948 + - uid: 23906 components: - type: Transform - pos: 1.5,-30.5 + rot: 1.5707963267948966 rad + pos: 1.5,-74.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26703 - type: AtmosPipeColor color: '#990000FF' - uid: 23950 @@ -114343,14 +117376,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24084 components: - type: Transform @@ -114367,14 +117392,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-35.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24099 components: - type: Transform @@ -114415,14 +117432,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24188 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24219 components: - type: Transform @@ -114431,14 +117440,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-13.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24239 components: - type: Transform @@ -114463,19 +117464,15 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24245 - components: - - type: Transform - pos: 76.5,-2.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24295 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,14.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - type: AtmosPipeColor color: '#990000FF' - uid: 24296 @@ -114484,6 +117481,9 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,11.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - type: AtmosPipeColor color: '#990000FF' - uid: 24297 @@ -114492,6 +117492,9 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,8.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - type: AtmosPipeColor color: '#990000FF' - uid: 24298 @@ -114500,6 +117503,9 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,5.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - type: AtmosPipeColor color: '#990000FF' - uid: 24300 @@ -114547,6 +117553,9 @@ entities: - type: Transform pos: 13.5,14.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - type: AtmosPipeColor color: '#990000FF' - uid: 24372 @@ -114554,6 +117563,9 @@ entities: - type: Transform pos: 17.5,14.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 6646 - type: AtmosPipeColor color: '#990000FF' - uid: 24373 @@ -114570,6 +117582,9 @@ entities: rot: 3.141592653589793 rad pos: 19.5,9.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8150 - type: AtmosPipeColor color: '#990000FF' - uid: 24401 @@ -114578,6 +117593,9 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,9.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 8150 - type: AtmosPipeColor color: '#990000FF' - uid: 24421 @@ -114596,26 +117614,25 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24436 + - uid: 24441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-7.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24464 - components: - - type: Transform - pos: 20.5,3.5 + pos: 18.5,-1.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 - type: AtmosPipeColor color: '#990000FF' - - uid: 24494 + - uid: 24462 components: - type: Transform - pos: 29.5,-1.5 + pos: 21.5,3.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22641 - type: AtmosPipeColor color: '#990000FF' - uid: 24506 @@ -114633,6 +117650,16 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 24524 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 3087 + - type: AtmosPipeColor + color: '#990000FF' - uid: 24581 components: - type: Transform @@ -114649,41 +117676,43 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-13.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 24587 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-24.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27965 - type: AtmosPipeColor color: '#990000FF' - - uid: 24610 + - uid: 24599 components: - type: Transform - pos: 20.5,-20.5 + rot: 1.5707963267948966 rad + pos: 21.5,-33.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25915 - type: AtmosPipeColor color: '#990000FF' - - uid: 24644 + - uid: 24610 components: - type: Transform - pos: 41.5,-20.5 + pos: 20.5,-20.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24646 + - uid: 24635 components: - type: Transform - pos: 38.5,-18.5 + pos: 36.5,-47.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 24632 - type: AtmosPipeColor color: '#990000FF' - uid: 24673 @@ -114710,20 +117739,26 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24711 + - uid: 24712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-33.5 + rot: -1.5707963267948966 rad + pos: 27.5,-28.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 291 - type: AtmosPipeColor color: '#990000FF' - - uid: 24712 + - uid: 24729 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-28.5 + pos: 41.5,-23.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27965 - type: AtmosPipeColor color: '#990000FF' - uid: 24747 @@ -114750,28 +117785,26 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24778 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-39.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24814 + - uid: 24785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-48.5 + rot: -1.5707963267948966 rad + pos: 42.5,-18.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 3087 - type: AtmosPipeColor color: '#990000FF' - uid: 24815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-45.5 + rot: 3.141592653589793 rad + pos: 28.5,-35.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 3263 - type: AtmosPipeColor color: '#990000FF' - uid: 24816 @@ -114829,34 +117862,48 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24916 + - uid: 24895 components: - type: Transform - pos: 47.5,-0.5 + rot: -1.5707963267948966 rad + pos: 30.5,-7.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24917 + - uid: 24896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-39.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 24812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24898 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-5.5 + pos: 30.5,1.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22649 - type: AtmosPipeColor color: '#990000FF' - - uid: 24918 + - uid: 24916 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-13.5 + pos: 47.5,-0.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 24919 + - uid: 24918 components: - type: Transform rot: 3.141592653589793 rad - pos: 65.5,-13.5 + pos: 46.5,-13.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -114884,18 +117931,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25071 + - uid: 25054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-23.5 + rot: 3.141592653589793 rad + pos: 79.5,-46.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 835 - type: AtmosPipeColor color: '#990000FF' - - uid: 25072 + - uid: 25071 components: - type: Transform - pos: 70.5,-21.5 + rot: -1.5707963267948966 rad + pos: 77.5,-23.5 parent: 8364 - type: AtmosPipeColor color: '#990000FF' @@ -114928,6 +117979,9 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-27.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27881 - type: AtmosPipeColor color: '#990000FF' - uid: 25143 @@ -114944,61 +117998,20 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,-34.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23899 - type: AtmosPipeColor color: '#990000FF' - - uid: 25167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-34.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-32.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-23.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-50.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-41.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25241 - components: - - type: Transform - pos: 58.5,-39.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25261 + - uid: 25231 components: - type: Transform rot: -1.5707963267948966 rad - pos: 74.5,-45.5 + pos: 5.5,-73.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26908 - type: AtmosPipeColor color: '#990000FF' - uid: 25290 @@ -115033,29 +118046,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25317 - components: - - type: Transform - pos: -58.5,-4.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 25318 - components: - - type: MetaData - name: air scrubber - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,0.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - - type: Label - uid: 25324 components: - type: Transform pos: -57.5,4.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 19773 - type: AtmosPipeColor color: '#990000FF' - uid: 25337 @@ -115072,6 +118070,9 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-5.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 19344 - type: AtmosPipeColor color: '#990000FF' - uid: 25365 @@ -115080,6 +118081,9 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-11.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 19344 - type: AtmosPipeColor color: '#990000FF' - uid: 25377 @@ -115152,14 +118156,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 25479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,15.5 - parent: 8364 - - type: AtmosPipeColor - color: '#990000FF' - uid: 25480 components: - type: Transform @@ -115191,6 +118187,16 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' + - uid: 25506 + components: + - type: Transform + pos: 73.5,-33.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22721 + - type: AtmosPipeColor + color: '#990000FF' - uid: 25516 components: - type: Transform @@ -115349,59 +118355,239 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#990000FF' - - uid: 26695 + - uid: 25986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-73.5 + pos: 61.5,-6.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22703 - type: AtmosPipeColor color: '#990000FF' - - uid: 26696 + - uid: 26032 components: - type: Transform - pos: -6.5,-72.5 + rot: 3.141592653589793 rad + pos: -12.5,-69.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 - type: AtmosPipeColor color: '#990000FF' - - uid: 26697 + - uid: 26034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-76.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25225 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26674 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 3656 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,20.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 23938 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-44.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 4329 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27198 + components: + - type: Transform + pos: 54.5,-40.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27150 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-30.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22715 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27274 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-73.5 + pos: -22.5,-75.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 25225 - type: AtmosPipeColor color: '#990000FF' -- proto: GasVolumePump - entities: - - uid: 4577 + - uid: 27875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-34.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27150 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-18.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22706 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-7.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22655 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-4.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22655 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-26.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 27964 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27960 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-74.5 + pos: 32.5,-28.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22670 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 19073 + color: '#990000FF' + - uid: 27991 components: - type: Transform - pos: 16.5,-73.5 + rot: 3.141592653589793 rad + pos: 23.5,-13.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 22659 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 19953 + color: '#990000FF' + - uid: 28222 + components: + - type: Transform + pos: -6.5,-55.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28227 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28230 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-73.5 + pos: -14.5,-55.5 + parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28227 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28231 + components: + - type: Transform + pos: -14.5,-51.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 28227 - type: AtmosPipeColor color: '#990000FF' - - uid: 20006 +- proto: GasVolumePump + entities: + - uid: 4204 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-81.5 + pos: 17.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-79.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16964 + components: + - type: Transform + pos: 19.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 23158 + components: + - type: Transform + pos: 14.5,-72.5 parent: 8364 - type: AtmosPipeColor color: '#947507FF' @@ -115466,13 +118652,11 @@ entities: parent: 8364 - proto: GravityGenerator entities: - - uid: 17040 + - uid: 25226 components: - type: Transform - pos: -0.5,-20.5 + pos: -24.5,-75.5 parent: 8364 - - type: PointLight - radius: 175.75 - proto: Grille entities: - uid: 95 @@ -116049,11 +119233,6 @@ entities: - type: Transform pos: 65.5,24.5 parent: 8364 - - uid: 984 - components: - - type: Transform - pos: -3.5,-25.5 - parent: 8364 - uid: 996 components: - type: Transform @@ -116491,6 +119670,12 @@ entities: - type: Transform pos: 8.5,-44.5 parent: 8364 + - uid: 1676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-82.5 + parent: 8364 - uid: 1679 components: - type: Transform @@ -117423,11 +120608,6 @@ entities: - type: Transform pos: 63.5,-63.5 parent: 8364 - - uid: 3152 - components: - - type: Transform - pos: 62.5,-70.5 - parent: 8364 - uid: 3153 components: - type: Transform @@ -117828,36 +121008,6 @@ entities: - type: Transform pos: -30.5,-75.5 parent: 8364 - - uid: 3653 - components: - - type: Transform - pos: -27.5,-74.5 - parent: 8364 - - uid: 3654 - components: - - type: Transform - pos: -26.5,-74.5 - parent: 8364 - - uid: 3655 - components: - - type: Transform - pos: -25.5,-74.5 - parent: 8364 - - uid: 3656 - components: - - type: Transform - pos: -24.5,-74.5 - parent: 8364 - - uid: 3657 - components: - - type: Transform - pos: -23.5,-74.5 - parent: 8364 - - uid: 3695 - components: - - type: Transform - pos: 27.5,-71.5 - parent: 8364 - uid: 3697 components: - type: Transform @@ -117888,11 +121038,6 @@ entities: - type: Transform pos: 25.5,-62.5 parent: 8364 - - uid: 3834 - components: - - type: Transform - pos: 27.5,-69.5 - parent: 8364 - uid: 3845 components: - type: Transform @@ -118064,6 +121209,12 @@ entities: - type: Transform pos: -15.5,-71.5 parent: 8364 + - uid: 4045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-82.5 + parent: 8364 - uid: 4064 components: - type: Transform @@ -118199,195 +121350,207 @@ entities: - type: Transform pos: 9.5,-64.5 parent: 8364 - - uid: 4201 - components: - - type: Transform - pos: 30.5,-81.5 - parent: 8364 - - uid: 4202 - components: - - type: Transform - pos: 30.5,-80.5 - parent: 8364 - - uid: 4204 - components: - - type: Transform - pos: 30.5,-78.5 - parent: 8364 - - uid: 4205 - components: - - type: Transform - pos: 30.5,-77.5 - parent: 8364 - - uid: 4206 + - uid: 4135 components: - type: Transform - pos: 29.5,-77.5 + rot: 3.141592653589793 rad + pos: 20.5,-82.5 parent: 8364 - - uid: 4207 + - uid: 4234 components: - type: Transform - pos: 28.5,-77.5 + rot: 3.141592653589793 rad + pos: 14.5,-82.5 parent: 8364 - - uid: 4208 + - uid: 4235 components: - type: Transform - pos: 27.5,-77.5 + rot: 1.5707963267948966 rad + pos: 36.5,-94.5 parent: 8364 - - uid: 4209 + - uid: 4236 components: - type: Transform - pos: 26.5,-77.5 + rot: 1.5707963267948966 rad + pos: 36.5,-93.5 parent: 8364 - - uid: 4210 + - uid: 4237 components: - type: Transform - pos: 26.5,-78.5 + rot: 1.5707963267948966 rad + pos: 36.5,-92.5 parent: 8364 - - uid: 4211 + - uid: 4238 components: - type: Transform - pos: 26.5,-79.5 + rot: 1.5707963267948966 rad + pos: 34.5,-92.5 parent: 8364 - - uid: 4215 + - uid: 4239 components: - type: Transform - pos: 26.5,-81.5 + rot: 1.5707963267948966 rad + pos: 33.5,-92.5 parent: 8364 - - uid: 4418 + - uid: 4240 components: - type: Transform - pos: 29.5,-95.5 + rot: 1.5707963267948966 rad + pos: 32.5,-92.5 parent: 8364 - - uid: 4419 + - uid: 4241 components: - type: Transform - pos: 29.5,-96.5 + rot: 3.141592653589793 rad + pos: 23.5,-82.5 parent: 8364 - - uid: 4420 + - uid: 4247 components: - type: Transform - pos: 29.5,-97.5 + rot: 1.5707963267948966 rad + pos: 31.5,-92.5 parent: 8364 - - uid: 4421 + - uid: 4263 components: - type: Transform - pos: 29.5,-98.5 + rot: 1.5707963267948966 rad + pos: 25.5,-92.5 parent: 8364 - - uid: 4422 + - uid: 4266 components: - type: Transform - pos: 29.5,-99.5 + rot: 1.5707963267948966 rad + pos: 30.5,-92.5 parent: 8364 - - uid: 4423 + - uid: 4267 components: - type: Transform - pos: 29.5,-100.5 + rot: 1.5707963267948966 rad + pos: 35.5,-92.5 parent: 8364 - - uid: 4424 + - uid: 4268 components: - type: Transform - pos: 29.5,-101.5 + rot: 1.5707963267948966 rad + pos: 24.5,-92.5 parent: 8364 - - uid: 4425 + - uid: 4270 components: - type: Transform - pos: 29.5,-102.5 + rot: 1.5707963267948966 rad + pos: 29.5,-92.5 parent: 8364 - - uid: 4426 + - uid: 4356 components: - type: Transform - pos: 29.5,-103.5 + rot: 3.141592653589793 rad + pos: 15.5,-82.5 parent: 8364 - - uid: 4430 + - uid: 4379 components: - type: Transform - pos: 33.5,-107.5 + rot: 3.141592653589793 rad + pos: 18.5,-86.5 parent: 8364 - - uid: 4431 + - uid: 4380 components: - type: Transform - pos: 33.5,-108.5 + pos: 27.5,-79.5 parent: 8364 - - uid: 4433 + - uid: 4394 components: - type: Transform - pos: 27.5,-103.5 + rot: 1.5707963267948966 rad + pos: 28.5,-92.5 parent: 8364 - - uid: 4434 + - uid: 4395 components: - type: Transform - pos: 27.5,-102.5 + rot: 1.5707963267948966 rad + pos: 27.5,-92.5 parent: 8364 - - uid: 4435 + - uid: 4396 components: - type: Transform - pos: 27.5,-101.5 + rot: 1.5707963267948966 rad + pos: 26.5,-92.5 parent: 8364 - - uid: 4436 + - uid: 4397 components: - type: Transform - pos: 27.5,-100.5 + rot: 1.5707963267948966 rad + pos: 23.5,-92.5 parent: 8364 - - uid: 4437 + - uid: 4398 components: - type: Transform - pos: 27.5,-99.5 + rot: 1.5707963267948966 rad + pos: 21.5,-93.5 parent: 8364 - - uid: 4438 + - uid: 4399 components: - type: Transform - pos: 27.5,-98.5 + rot: 1.5707963267948966 rad + pos: 21.5,-92.5 parent: 8364 - - uid: 4439 + - uid: 4400 components: - type: Transform - pos: 27.5,-97.5 + rot: 1.5707963267948966 rad + pos: 22.5,-92.5 parent: 8364 - - uid: 4440 + - uid: 4405 components: - type: Transform - pos: 27.5,-96.5 + rot: 3.141592653589793 rad + pos: -24.5,-85.5 parent: 8364 - - uid: 4441 + - uid: 4407 components: - type: Transform - pos: 27.5,-95.5 + rot: 3.141592653589793 rad + pos: -25.5,-85.5 parent: 8364 - - uid: 4442 + - uid: 4410 components: - type: Transform - pos: 23.5,-108.5 + rot: 3.141592653589793 rad + pos: -25.5,-84.5 parent: 8364 - - uid: 4443 + - uid: 4425 components: - type: Transform - pos: 23.5,-107.5 + rot: 1.5707963267948966 rad + pos: 21.5,-92.5 parent: 8364 - - uid: 4444 + - uid: 4456 components: - type: Transform - pos: 30.5,-107.5 + rot: 3.141592653589793 rad + pos: -26.5,-84.5 parent: 8364 - - uid: 4445 + - uid: 4475 components: - type: Transform - pos: 29.5,-107.5 + pos: 27.5,-81.5 parent: 8364 - - uid: 4446 + - uid: 4497 components: - type: Transform - pos: 27.5,-107.5 + rot: -1.5707963267948966 rad + pos: 27.5,-74.5 parent: 8364 - - uid: 4447 + - uid: 4500 components: - type: Transform - pos: 26.5,-107.5 + rot: -1.5707963267948966 rad + pos: 27.5,-69.5 parent: 8364 - - uid: 4497 + - uid: 4503 components: - type: Transform - pos: 26.5,-80.5 + rot: -1.5707963267948966 rad + pos: 27.5,-73.5 parent: 8364 - uid: 4511 components: @@ -118544,11 +121707,6 @@ entities: - type: Transform pos: -21.5,-89.5 parent: 8364 - - uid: 4615 - components: - - type: Transform - pos: -21.5,-88.5 - parent: 8364 - uid: 4616 components: - type: Transform @@ -118559,91 +121717,6 @@ entities: - type: Transform pos: -22.5,-87.5 parent: 8364 - - uid: 4629 - components: - - type: Transform - pos: -19.5,-77.5 - parent: 8364 - - uid: 4630 - components: - - type: Transform - pos: -19.5,-78.5 - parent: 8364 - - uid: 4631 - components: - - type: Transform - pos: -19.5,-79.5 - parent: 8364 - - uid: 4632 - components: - - type: Transform - pos: -19.5,-80.5 - parent: 8364 - - uid: 4633 - components: - - type: Transform - pos: -19.5,-81.5 - parent: 8364 - - uid: 4634 - components: - - type: Transform - pos: -19.5,-82.5 - parent: 8364 - - uid: 4635 - components: - - type: Transform - pos: -19.5,-83.5 - parent: 8364 - - uid: 4636 - components: - - type: Transform - pos: -19.5,-84.5 - parent: 8364 - - uid: 4637 - components: - - type: Transform - pos: -20.5,-84.5 - parent: 8364 - - uid: 4638 - components: - - type: Transform - pos: -21.5,-84.5 - parent: 8364 - - uid: 4639 - components: - - type: Transform - pos: -21.5,-83.5 - parent: 8364 - - uid: 4640 - components: - - type: Transform - pos: -21.5,-82.5 - parent: 8364 - - uid: 4641 - components: - - type: Transform - pos: -21.5,-81.5 - parent: 8364 - - uid: 4642 - components: - - type: Transform - pos: -21.5,-80.5 - parent: 8364 - - uid: 4643 - components: - - type: Transform - pos: -21.5,-79.5 - parent: 8364 - - uid: 4644 - components: - - type: Transform - pos: -21.5,-78.5 - parent: 8364 - - uid: 4645 - components: - - type: Transform - pos: -21.5,-77.5 - parent: 8364 - uid: 4685 components: - type: Transform @@ -119194,11 +122267,6 @@ entities: - type: Transform pos: 1.5,42.5 parent: 8364 - - uid: 4949 - components: - - type: Transform - pos: 0.5,42.5 - parent: 8364 - uid: 4950 components: - type: Transform @@ -119224,6 +122292,12 @@ entities: - type: Transform pos: 20.5,34.5 parent: 8364 + - uid: 4961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-83.5 + parent: 8364 - uid: 5000 components: - type: Transform @@ -119737,7 +122811,8 @@ entities: - uid: 5271 components: - type: Transform - pos: -4.5,-17.5 + rot: 3.141592653589793 rad + pos: 16.5,-82.5 parent: 8364 - uid: 5275 components: @@ -119789,11 +122864,6 @@ entities: - type: Transform pos: 2.5,-20.5 parent: 8364 - - uid: 5769 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 8364 - uid: 5778 components: - type: Transform @@ -119804,16 +122874,6 @@ entities: - type: Transform pos: -0.5,-79.5 parent: 8364 - - uid: 5882 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 8364 - - uid: 5883 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 8364 - uid: 5913 components: - type: Transform @@ -119839,11 +122899,6 @@ entities: - type: Transform pos: 2.5,-93.5 parent: 8364 - - uid: 6767 - components: - - type: Transform - pos: -5.5,-93.5 - parent: 8364 - uid: 6771 components: - type: Transform @@ -120520,20 +123575,27 @@ entities: - type: Transform pos: 17.5,-6.5 parent: 8364 - - uid: 8078 + - uid: 8107 components: - type: Transform - pos: -5.5,-18.5 + pos: -14.5,-15.5 parent: 8364 - - uid: 8079 + - uid: 8117 components: - type: Transform - pos: -5.5,-19.5 + rot: -1.5707963267948966 rad + pos: 27.5,-68.5 parent: 8364 - - uid: 8107 + - uid: 8121 components: - type: Transform - pos: -14.5,-15.5 + rot: -1.5707963267948966 rad + pos: 27.5,-72.5 + parent: 8364 + - uid: 8144 + components: + - type: Transform + pos: 25.5,-68.5 parent: 8364 - uid: 8276 components: @@ -120962,6 +124024,12 @@ entities: - type: Transform pos: 67.5,3.5 parent: 8364 + - uid: 10854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-94.5 + parent: 8364 - uid: 10867 components: - type: Transform @@ -120982,11 +124050,6 @@ entities: - type: Transform pos: 25.5,-69.5 parent: 8364 - - uid: 11574 - components: - - type: Transform - pos: 25.5,-68.5 - parent: 8364 - uid: 11591 components: - type: Transform @@ -121142,20 +124205,15 @@ entities: - type: Transform pos: -2.5,-65.5 parent: 8364 - - uid: 15343 - components: - - type: Transform - pos: -1.5,-23.5 - parent: 8364 - - uid: 15346 + - uid: 15431 components: - type: Transform - pos: -2.5,-23.5 + pos: -29.5,-26.5 parent: 8364 - - uid: 15431 + - uid: 15876 components: - type: Transform - pos: -29.5,-26.5 + pos: 27.5,-80.5 parent: 8364 - uid: 16131 components: @@ -121178,6 +124236,11 @@ entities: - type: Transform pos: 7.5,-58.5 parent: 8364 + - uid: 16630 + components: + - type: Transform + pos: -22.5,-83.5 + parent: 8364 - uid: 16659 components: - type: Transform @@ -121328,46 +124391,26 @@ entities: - type: Transform pos: -13.5,-77.5 parent: 8364 - - uid: 17172 + - uid: 17175 components: - type: Transform - pos: 27.5,-74.5 + pos: -19.5,-85.5 parent: 8364 - - uid: 17174 - components: - - type: Transform - pos: 26.5,-75.5 - parent: 8364 - - uid: 17175 + - uid: 17176 components: - type: Transform - pos: 25.5,-75.5 + pos: -20.5,-85.5 parent: 8364 - uid: 17178 components: - type: Transform - pos: 27.5,-68.5 + pos: -22.5,-82.5 parent: 8364 - uid: 17179 components: - type: Transform pos: 27.5,-67.5 parent: 8364 - - uid: 17180 - components: - - type: Transform - pos: 24.5,-75.5 - parent: 8364 - - uid: 17181 - components: - - type: Transform - pos: 23.5,-75.5 - parent: 8364 - - uid: 17182 - components: - - type: Transform - pos: 21.5,-75.5 - parent: 8364 - uid: 17191 components: - type: Transform @@ -121423,26 +124466,11 @@ entities: - type: Transform pos: 12.5,-63.5 parent: 8364 - - uid: 17468 - components: - - type: Transform - pos: 27.5,-73.5 - parent: 8364 - uid: 17469 components: - type: Transform pos: 27.5,-66.5 parent: 8364 - - uid: 17591 - components: - - type: Transform - pos: 27.5,-72.5 - parent: 8364 - - uid: 17592 - components: - - type: Transform - pos: 22.5,-75.5 - parent: 8364 - uid: 17629 components: - type: Transform @@ -122010,6 +125038,12 @@ entities: - type: Transform pos: 42.5,-1.5 parent: 8364 + - uid: 22714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-71.5 + parent: 8364 - uid: 22832 components: - type: Transform @@ -122130,6 +125164,11 @@ entities: - type: Transform pos: 10.5,-52.5 parent: 8364 + - uid: 23007 + components: + - type: Transform + pos: -22.5,-81.5 + parent: 8364 - uid: 23051 components: - type: Transform @@ -122176,6 +125215,109 @@ entities: - type: Transform pos: 17.5,-51.5 parent: 8364 + - uid: 24005 + components: + - type: Transform + pos: -21.5,-75.5 + parent: 8364 + - uid: 24078 + components: + - type: Transform + pos: -21.5,-74.5 + parent: 8364 + - uid: 24185 + components: + - type: Transform + pos: -21.5,-77.5 + parent: 8364 + - uid: 24186 + components: + - type: Transform + pos: -21.5,-73.5 + parent: 8364 + - uid: 24224 + components: + - type: Transform + pos: 38.5,-86.5 + parent: 8364 + - uid: 24245 + components: + - type: Transform + pos: 39.5,-86.5 + parent: 8364 + - uid: 24387 + components: + - type: Transform + pos: -21.5,-88.5 + parent: 8364 + - uid: 24393 + components: + - type: Transform + pos: -11.5,-83.5 + parent: 8364 + - uid: 24397 + components: + - type: Transform + pos: -15.5,-81.5 + parent: 8364 + - uid: 24400 + components: + - type: Transform + pos: -16.5,-81.5 + parent: 8364 + - uid: 24902 + components: + - type: Transform + pos: 62.5,-71.5 + parent: 8364 + - uid: 24921 + components: + - type: Transform + pos: -12.5,-81.5 + parent: 8364 + - uid: 24922 + components: + - type: Transform + pos: -11.5,-81.5 + parent: 8364 + - uid: 24924 + components: + - type: Transform + pos: -16.5,-83.5 + parent: 8364 + - uid: 24929 + components: + - type: Transform + pos: 0.5,44.5 + parent: 8364 + - uid: 24944 + components: + - type: Transform + pos: -5.5,-93.5 + parent: 8364 + - uid: 24976 + components: + - type: Transform + pos: 0.5,42.5 + parent: 8364 + - uid: 25230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-94.5 + parent: 8364 + - uid: 25245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-94.5 + parent: 8364 + - uid: 25249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-94.5 + parent: 8364 - uid: 25699 components: - type: Transform @@ -122221,11 +125363,6 @@ entities: - type: Transform pos: 8.5,29.5 parent: 8364 - - uid: 25897 - components: - - type: Transform - pos: 2.5,-25.5 - parent: 8364 - uid: 25903 components: - type: Transform @@ -122271,6 +125408,21 @@ entities: - type: Transform pos: 12.5,-28.5 parent: 8364 + - uid: 26384 + components: + - type: Transform + pos: 37.5,-87.5 + parent: 8364 + - uid: 26386 + components: + - type: Transform + pos: 38.5,-87.5 + parent: 8364 + - uid: 26387 + components: + - type: Transform + pos: 39.5,-85.5 + parent: 8364 - uid: 26472 components: - type: Transform @@ -122606,20 +125758,80 @@ entities: - type: Transform pos: 5.5,-93.5 parent: 8364 - - uid: 26760 + - uid: 26880 components: - type: Transform - pos: -10.5,-83.5 + pos: 70.5,-0.5 parent: 8364 - - uid: 26880 + - uid: 26950 components: - type: Transform - pos: 70.5,-0.5 + rot: 1.5707963267948966 rad + pos: 22.5,-94.5 parent: 8364 - - uid: 27274 + - uid: 26988 components: - type: Transform - pos: 0.5,44.5 + pos: -15.5,-83.5 + parent: 8364 + - uid: 27179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-94.5 + parent: 8364 + - uid: 27184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-94.5 + parent: 8364 + - uid: 27185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-94.5 + parent: 8364 + - uid: 27186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-94.5 + parent: 8364 + - uid: 27187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-94.5 + parent: 8364 + - uid: 27192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-94.5 + parent: 8364 + - uid: 27193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-94.5 + parent: 8364 + - uid: 27194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-94.5 + parent: 8364 + - uid: 27195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-94.5 + parent: 8364 + - uid: 27206 + components: + - type: Transform + pos: -21.5,-82.5 parent: 8364 - uid: 27275 components: @@ -122631,6 +125843,11 @@ entities: - type: Transform pos: 2.5,44.5 parent: 8364 + - uid: 27532 + components: + - type: Transform + pos: -19.5,-84.5 + parent: 8364 - uid: 27611 components: - type: Transform @@ -122646,35 +125863,56 @@ entities: - type: Transform pos: 86.5,-2.5 parent: 8364 - - uid: 27855 + - uid: 27763 components: - type: Transform - pos: 33.5,-80.5 + rot: 3.141592653589793 rad + pos: 21.5,-82.5 + parent: 8364 + - uid: 27791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-82.5 + parent: 8364 + - uid: 27792 + components: + - type: Transform + pos: -12.5,-83.5 + parent: 8364 + - uid: 27793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-82.5 parent: 8364 - uid: 27856 components: - type: Transform - pos: 32.5,-80.5 + pos: 27.5,-78.5 parent: 8364 - - uid: 27857 + - uid: 27926 components: - type: Transform - pos: 31.5,-80.5 + pos: 60.5,-69.5 parent: 8364 - - uid: 27858 + - uid: 27990 components: - type: Transform - pos: 31.5,-78.5 + rot: 1.5707963267948966 rad + pos: 34.5,-94.5 parent: 8364 - - uid: 27859 + - uid: 28143 components: - type: Transform - pos: 32.5,-78.5 + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 parent: 8364 - - uid: 27860 + - uid: 28147 components: - type: Transform - pos: 33.5,-78.5 + rot: 1.5707963267948966 rad + pos: 3.5,-24.5 parent: 8364 - proto: GrilleBroken entities: @@ -122803,6 +126041,24 @@ entities: - type: Transform pos: 9.5,-89.5 parent: 8364 + - uid: 24388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-83.5 + parent: 8364 + - uid: 24585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-85.5 + parent: 8364 + - uid: 24919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-82.5 + parent: 8364 - uid: 26534 components: - type: Transform @@ -122878,6 +126134,18 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,44.5 parent: 8364 + - uid: 27764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-81.5 + parent: 8364 + - uid: 27812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-83.5 + parent: 8364 - proto: GunSafeDisabler entities: - uid: 6253 @@ -122918,11 +126186,12 @@ entities: - type: Transform pos: 2.5,37.5 parent: 8364 -- proto: Gyroscope +- proto: GyroscopeUnanchored entities: - - uid: 12460 + - uid: 25012 components: - type: Transform + rot: 1.5707963267948966 rad pos: -65.5,15.5 parent: 8364 - proto: Handcuffs @@ -122957,13 +126226,6 @@ entities: - type: Transform pos: 3.5,23.5 parent: 8364 -- proto: HandheldHealthAnalyzer - entities: - - uid: 21715 - components: - - type: Transform - pos: 63.429848,12.47963 - parent: 8364 - proto: HandLabeler entities: - uid: 561 @@ -123035,63 +126297,46 @@ entities: parent: 8364 - proto: HeatExchanger entities: - - uid: 4529 + - uid: 4173 components: - type: Transform - pos: 35.5,-73.5 + rot: -1.5707963267948966 rad + pos: 22.5,-85.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 17607 + - uid: 24960 components: - type: Transform - pos: 15.5,-84.5 + rot: -1.5707963267948966 rad + pos: 31.5,-75.5 parent: 8364 - type: AtmosPipeColor - color: '#947507FF' -- proto: Hemostat - entities: - - uid: 13776 + color: '#03FCD3FF' + - uid: 26849 components: - type: Transform - pos: -52.5,7.5 + rot: -1.5707963267948966 rad + pos: 14.5,-85.5 parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' +- proto: Hemostat + entities: - uid: 21263 components: - type: Transform rot: 0.000406441162340343 rad pos: 52.576862,-22.263298 parent: 8364 -- proto: HighSecCaptainLocked - entities: - - uid: 5737 - components: - - type: MetaData - name: Captain Chunnel - - type: Transform - pos: -0.5,-17.5 - parent: 8364 - proto: HighSecCommandLocked entities: - - uid: 862 - components: - - type: Transform - pos: 28.5,-104.5 - parent: 8364 - - uid: 876 - components: - - type: Transform - pos: 30.5,-91.5 - parent: 8364 - - uid: 901 - components: - - type: Transform - pos: 26.5,-91.5 - parent: 8364 - - uid: 5335 + - uid: 4287 components: + - type: MetaData + name: Gravity Generator - type: Transform - pos: -0.5,-9.5 + pos: -21.5,-76.5 parent: 8364 - uid: 8140 components: @@ -123105,10 +126350,12 @@ entities: - type: Transform pos: -11.5,-36.5 parent: 8364 - - uid: 18620 + - uid: 26963 components: + - type: MetaData + name: AI Core - type: Transform - pos: -0.5,-23.5 + pos: -0.5,-18.5 parent: 8364 - proto: HolofanProjector entities: @@ -123122,40 +126369,19 @@ entities: - type: Transform pos: 10.513089,-49.606483 parent: 8364 -- proto: HolopadAiBackupPower - entities: - - uid: 28123 - components: - - type: Transform - pos: 33.5,-91.5 - parent: 8364 - proto: HolopadAiCore entities: - - uid: 28124 - components: - - type: Transform - pos: 28.5,-108.5 - parent: 8364 -- proto: HolopadAiEntrance - entities: - - uid: 28122 - components: - - type: Transform - pos: 28.5,-80.5 - parent: 8364 -- proto: HolopadAiMain - entities: - - uid: 28099 + - uid: 27840 components: - type: Transform - pos: 28.5,-85.5 + pos: -0.5,-17.5 parent: 8364 - proto: HolopadAiUpload entities: - - uid: 19079 + - uid: 27824 components: - type: Transform - pos: -0.5,-13.5 + pos: -0.5,-22.5 parent: 8364 - proto: HolopadCargoBay entities: @@ -123276,13 +126502,6 @@ entities: - type: Transform pos: 16.5,-56.5 parent: 8364 -- proto: HolopadEngineeringAtmosTeg - entities: - - uid: 28090 - components: - - type: Transform - pos: 15.5,-73.5 - parent: 8364 - proto: HolopadEngineeringBreakroom entities: - uid: 28086 @@ -123304,10 +126523,10 @@ entities: parent: 8364 - proto: HolopadEngineeringMain entities: - - uid: 28143 + - uid: 27529 components: - type: Transform - pos: -2.5,-69.5 + pos: -3.5,-69.5 parent: 8364 - proto: HolopadEngineeringPower entities: @@ -123377,7 +126596,7 @@ entities: - uid: 28125 components: - type: Transform - pos: -42.5,3.5 + pos: -41.5,3.5 parent: 8364 - proto: HolopadMedicalChemistry entities: @@ -123451,10 +126670,10 @@ entities: parent: 8364 - proto: HolopadScienceFront entities: - - uid: 28112 + - uid: 233 components: - type: Transform - pos: 72.5,-20.5 + pos: 70.5,-19.5 parent: 8364 - proto: HolopadScienceRobotics entities: @@ -123556,10 +126775,10 @@ entities: parent: 8364 - proto: HolopadServiceBar entities: - - uid: 28147 + - uid: 24443 components: - type: Transform - pos: 30.5,-5.5 + pos: 30.5,-6.5 parent: 8364 - proto: HolopadServiceBotany entities: @@ -123570,7 +126789,7 @@ entities: parent: 8364 - proto: HolopadServiceChapel entities: - - uid: 28110 + - uid: 3771 components: - type: Transform pos: 69.5,-5.5 @@ -123610,6 +126829,13 @@ entities: - type: Transform pos: 59.5,-8.5 parent: 8364 +- proto: HolopadServiceNewsroom + entities: + - uid: 4572 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 8364 - proto: HospitalCurtainsOpen entities: - uid: 2213 @@ -123914,12 +127140,6 @@ entities: parent: 8364 - proto: IntercomAll entities: - - uid: 4955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-15.5 - parent: 8364 - uid: 5526 components: - type: Transform @@ -123932,6 +127152,23 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-19.5 parent: 8364 + - uid: 27818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 8364 + - uid: 27833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 8364 + - uid: 27836 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 8364 - proto: IntercomCommand entities: - uid: 8390 @@ -124158,11 +127395,6 @@ entities: parent: 8364 - proto: KitchenMicrowave entities: - - uid: 594 - components: - - type: Transform - pos: 26.5,-86.5 - parent: 8364 - uid: 2585 components: - type: Transform @@ -124595,7 +127827,7 @@ entities: - uid: 21214 components: - type: Transform - pos: 60.5,-17.5 + pos: 60.50045,-17.347412 parent: 8364 - proto: Lighter entities: @@ -124609,7 +127841,7 @@ entities: - uid: 14425 components: - type: Transform - pos: -28.5,-5.5 + pos: -28.5095,-5.350807 parent: 8364 - proto: LockableButtonChiefMedicalOfficer entities: @@ -125975,6 +129207,28 @@ entities: - 0 - 0 - 0 +- proto: LootSpawnerIndustrial + entities: + - uid: 7041 + components: + - type: Transform + pos: 40.5,-72.5 + parent: 8364 + - uid: 11157 + components: + - type: Transform + pos: 48.5,7.5 + parent: 8364 + - uid: 24978 + components: + - type: Transform + pos: -4.5,-45.5 + parent: 8364 + - uid: 27030 + components: + - type: Transform + pos: 48.5,11.5 + parent: 8364 - proto: LootSpawnerIndustrialFluff entities: - uid: 1255 @@ -125982,6 +129236,153 @@ entities: - type: Transform pos: -41.5,-12.5 parent: 8364 + - uid: 6925 + components: + - type: Transform + pos: -3.5,-53.5 + parent: 8364 + - uid: 11750 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 8364 + - uid: 25981 + components: + - type: Transform + pos: -57.5,3.5 + parent: 8364 + - uid: 26920 + components: + - type: Transform + pos: -23.5,-77.5 + parent: 8364 +- proto: LootSpawnerMaterialsHighValue + entities: + - uid: 26927 + components: + - type: Transform + pos: 43.5,-62.5 + parent: 8364 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 6393 + components: + - type: Transform + pos: -53.5,7.5 + parent: 8364 + - uid: 25013 + components: + - type: Transform + pos: 63.5,12.5 + parent: 8364 +- proto: LootSpawnerRoboticsBorgModule + entities: + - uid: 25179 + components: + - type: Transform + pos: 63.5,-20.5 + parent: 8364 +- proto: LootSpawnerScienceMajor + entities: + - uid: 6246 + components: + - type: Transform + pos: 58.5,-49.5 + parent: 8364 + - uid: 6311 + components: + - type: Transform + pos: 74.5,-30.5 + parent: 8364 + - uid: 14112 + components: + - type: Transform + pos: 56.5,-35.5 + parent: 8364 + - uid: 15105 + components: + - type: Transform + pos: 74.5,-19.5 + parent: 8364 + - uid: 23009 + components: + - type: Transform + pos: 74.5,-50.5 + parent: 8364 + - uid: 25174 + components: + - type: Transform + pos: 63.5,-21.5 + parent: 8364 + - uid: 28186 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 8364 +- proto: LootSpawnerScienceMinor + entities: + - uid: 6247 + components: + - type: Transform + pos: 60.5,-19.5 + parent: 8364 + - uid: 16546 + components: + - type: Transform + pos: 78.5,-50.5 + parent: 8364 + - uid: 17906 + components: + - type: Transform + pos: 81.5,-23.5 + parent: 8364 + - uid: 22977 + components: + - type: Transform + pos: 61.5,-39.5 + parent: 8364 + - uid: 23183 + components: + - type: Transform + pos: 85.5,-40.5 + parent: 8364 + - uid: 25161 + components: + - type: Transform + pos: 88.5,-27.5 + parent: 8364 + - uid: 25169 + components: + - type: Transform + pos: 80.5,-44.5 + parent: 8364 + - uid: 25171 + components: + - type: Transform + pos: 80.5,-46.5 + parent: 8364 + - uid: 26921 + components: + - type: Transform + pos: 59.5,-51.5 + parent: 8364 + - uid: 26923 + components: + - type: Transform + pos: 51.5,-43.5 + parent: 8364 + - uid: 27036 + components: + - type: Transform + pos: 85.5,-36.5 + parent: 8364 +- proto: LootSpawnerSecurity + entities: + - uid: 10878 + components: + - type: Transform + pos: -56.5,3.5 + parent: 8364 - proto: MachineAnomalyGenerator entities: - uid: 21980 @@ -126066,11 +129467,6 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-12.5 parent: 8364 - - uid: 27189 - components: - - type: Transform - pos: 33.5,-85.5 - parent: 8364 - proto: MachineFrameDestroyed entities: - uid: 13768 @@ -126198,21 +129594,128 @@ entities: - type: Transform pos: -41.5,-7.5 parent: 8364 + - uid: 6219 + components: + - type: Transform + pos: 85.5,-53.5 + parent: 8364 + - uid: 11094 + components: + - type: Transform + pos: 53.5,-48.5 + parent: 8364 - uid: 16149 components: - type: Transform pos: -43.5,-11.5 parent: 8364 + - uid: 24917 + components: + - type: Transform + pos: 65.5,-72.5 + parent: 8364 + - uid: 25046 + components: + - type: Transform + pos: -53.5,5.5 + parent: 8364 + - uid: 25950 + components: + - type: Transform + pos: 76.5,-56.5 + parent: 8364 - uid: 26554 components: - type: Transform pos: -8.5,53.5 parent: 8364 + - uid: 26608 + components: + - type: Transform + pos: 58.5,-62.5 + parent: 8364 + - uid: 26627 + components: + - type: Transform + pos: 59.5,-49.5 + parent: 8364 - uid: 26633 components: - type: Transform pos: -4.5,-48.5 parent: 8364 + - uid: 26852 + components: + - type: Transform + pos: 58.5,-51.5 + parent: 8364 + - uid: 26875 + components: + - type: Transform + pos: 66.5,-64.5 + parent: 8364 + - uid: 26926 + components: + - type: Transform + pos: -57.5,17.5 + parent: 8364 + - uid: 26929 + components: + - type: Transform + pos: -58.5,13.5 + parent: 8364 + - uid: 26993 + components: + - type: Transform + pos: -54.5,11.5 + parent: 8364 + - uid: 27233 + components: + - type: Transform + pos: 70.5,-66.5 + parent: 8364 + - uid: 27928 + components: + - type: Transform + pos: 67.5,-59.5 + parent: 8364 +- proto: MaintenanceInsulsSpawner + entities: + - uid: 6312 + components: + - type: Transform + pos: 46.5,13.5 + parent: 8364 + - uid: 13852 + components: + - type: Transform + pos: -42.5,1.5 + parent: 8364 + - uid: 14433 + components: + - type: Transform + pos: 43.5,-73.5 + parent: 8364 + - uid: 14437 + components: + - type: Transform + pos: 70.5,12.5 + parent: 8364 + - uid: 14565 + components: + - type: Transform + pos: -48.5,1.5 + parent: 8364 + - uid: 16208 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 8364 + - uid: 16209 + components: + - type: Transform + pos: 47.5,-66.5 + parent: 8364 - proto: MaintenancePlantSpawner entities: - uid: 27525 @@ -126237,11 +129740,36 @@ entities: parent: 8364 - proto: MaintenanceToolSpawner entities: + - uid: 101 + components: + - type: Transform + pos: 49.5,11.5 + parent: 8364 + - uid: 4504 + components: + - type: Transform + pos: 66.5,-65.5 + parent: 8364 + - uid: 4539 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 8364 - uid: 4727 components: - type: Transform pos: -21.5,12.5 parent: 8364 + - uid: 7038 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 8364 + - uid: 11574 + components: + - type: Transform + pos: -45.5,22.5 + parent: 8364 - uid: 14239 components: - type: Transform @@ -126257,6 +129785,56 @@ entities: - type: Transform pos: -36.5,-48.5 parent: 8364 + - uid: 23407 + components: + - type: Transform + pos: 47.5,-67.5 + parent: 8364 + - uid: 26567 + components: + - type: Transform + pos: 35.5,-63.5 + parent: 8364 + - uid: 26922 + components: + - type: Transform + pos: -46.5,2.5 + parent: 8364 + - uid: 26925 + components: + - type: Transform + pos: 47.5,11.5 + parent: 8364 + - uid: 27031 + components: + - type: Transform + pos: -45.5,21.5 + parent: 8364 + - uid: 27034 + components: + - type: Transform + pos: -34.5,-63.5 + parent: 8364 + - uid: 27929 + components: + - type: Transform + pos: 84.5,-55.5 + parent: 8364 + - uid: 27984 + components: + - type: Transform + pos: -42.5,5.5 + parent: 8364 + - uid: 27985 + components: + - type: Transform + pos: -40.5,5.5 + parent: 8364 + - uid: 27987 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 8364 - proto: MaintenanceWeaponSpawner entities: - uid: 13816 @@ -126269,6 +129847,11 @@ entities: - type: Transform pos: -30.5,-72.5 parent: 8364 + - uid: 27986 + components: + - type: Transform + pos: -52.5,7.5 + parent: 8364 - proto: MaterialCloth entities: - uid: 5868 @@ -126466,7 +130049,7 @@ entities: - uid: 21418 components: - type: Transform - pos: 80.5,-47.5 + pos: 79.55894,-47.360077 parent: 8364 - proto: MedkitToxinFilled entities: @@ -126503,6 +130086,13 @@ entities: rot: 0.0004530529258772731 rad pos: 74.7369,-19.349794 parent: 8364 +- proto: MicrophoneInstrument + entities: + - uid: 3819 + components: + - type: Transform + pos: -21.513838,-9.389294 + parent: 8364 - proto: Mirror entities: - uid: 6260 @@ -127029,6 +130619,36 @@ entities: - type: Transform pos: 52.5,7.5 parent: 8364 + - uid: 4541 + components: + - type: Transform + pos: 68.5,9.5 + parent: 8364 + - uid: 10603 + components: + - type: Transform + pos: -27.5,-52.5 + parent: 8364 + - uid: 10852 + components: + - type: Transform + pos: 81.5,-40.5 + parent: 8364 + - uid: 22764 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 8364 + - uid: 22770 + components: + - type: Transform + pos: 12.5,4.5 + parent: 8364 + - uid: 22921 + components: + - type: Transform + pos: -21.5,6.5 + parent: 8364 - proto: Multitool entities: - uid: 5623 @@ -127076,31 +130696,11 @@ entities: - type: Transform pos: -5.398419,-57.63227 parent: 8364 - - uid: 19348 - components: - - type: Transform - pos: 47.523952,-66.25797 - parent: 8364 - - uid: 20050 - components: - - type: Transform - pos: 88.5,-27.5 - parent: 8364 - - uid: 21228 - components: - - type: Transform - pos: 61.5,-19.5 - parent: 8364 - uid: 21442 components: - type: Transform pos: 78.5,-62.5 parent: 8364 - - uid: 27195 - components: - - type: Transform - pos: 33.528397,-88.48169 - parent: 8364 - proto: NitrogenCanister entities: - uid: 3026 @@ -127168,6 +130768,13 @@ entities: - type: Transform pos: -13.5,9.5 parent: 8364 +- proto: NitrogenTankFilled + entities: + - uid: 27177 + components: + - type: Transform + pos: 26.471306,-83.42229 + parent: 8364 - proto: NitrousOxideTankFilled entities: - uid: 21342 @@ -127187,7 +130794,7 @@ entities: - uid: 27913 components: - type: Transform - pos: -4.5442195,-11.268198 + pos: 2.3979688,-23.426868 parent: 8364 - proto: NuclearBomb entities: @@ -127208,7 +130815,7 @@ entities: - uid: 27916 components: - type: Transform - pos: 3.6621494,-11.814552 + pos: 2.429234,-24.146116 parent: 8364 - proto: OperatingTable entities: @@ -127376,42 +130983,35 @@ entities: - type: MetaData name: empty tank - type: Transform - pos: 79.5,-43.5 - parent: 8364 - - uid: 21420 - components: - - type: MetaData - name: empty tank - - type: Transform - pos: 79.5,-43.5 - parent: 8364 - - uid: 21421 - components: - - type: MetaData - name: empty tank - - type: Transform - pos: 79.5,-43.5 - parent: 8364 - - uid: 21422 - components: - - type: MetaData - name: empty tank - - type: Transform - pos: 79.5,-43.5 - parent: 8364 - - uid: 21423 - components: - - type: MetaData - name: empty tank - - type: Transform - pos: 79.5,-43.5 + pos: 79.485985,-43.45112 parent: 8364 + - type: GasTank + toggleActionEntity: 25167 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 25167 - proto: OxygenTankFilled entities: - uid: 20121 components: - type: Transform - pos: 76.5,-57.5 + pos: 78.58031,-56.4234 + parent: 8364 + - type: GasTank + toggleActionEntity: 25181 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 25181 + - uid: 27619 + components: + - type: Transform + pos: 26.61721,-83.45356 parent: 8364 - proto: PackPaperRollingFilters entities: @@ -127488,7 +131088,7 @@ entities: - uid: 27911 components: - type: Transform - pos: -4.443845,-11.67473 + pos: -3.5,-24.2 parent: 8364 - proto: Paper entities: @@ -127522,6 +131122,16 @@ entities: - type: Transform pos: 28.395426,-19.487911 parent: 8364 + - uid: 3826 + components: + - type: Transform + pos: -23.660736,-9.733283 + parent: 8364 + - uid: 4564 + components: + - type: Transform + pos: -23.441877,-9.858369 + parent: 8364 - uid: 5681 components: - type: Transform @@ -127802,12 +131412,12 @@ entities: - uid: 14336 components: - type: Transform - pos: -34.361294,-5.4555216 + pos: -34.544052,-5.335971 parent: 8364 - uid: 14337 components: - type: Transform - pos: -34.18942,-5.6742716 + pos: -34.398148,-5.5236015 parent: 8364 - uid: 14372 components: @@ -127944,16 +131554,6 @@ entities: - type: Transform pos: 69.5,-34.5 parent: 8364 - - uid: 27173 - components: - - type: Transform - pos: 26.502972,-105.49065 - parent: 8364 - - uid: 27174 - components: - - type: Transform - pos: 26.502972,-105.49065 - parent: 8364 - uid: 27767 components: - type: Transform @@ -127979,6 +131579,13 @@ entities: - type: Transform pos: 35.5,-6.5 parent: 8364 +- proto: PaperBin10 + entities: + - uid: 7228 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 8364 - proto: PaperBin5 entities: - uid: 5319 @@ -128097,7 +131704,7 @@ entities: - uid: 19346 components: - type: Transform - pos: 47.258327,-66.86735 + pos: 47.57956,-67.045586 parent: 8364 - uid: 21446 components: @@ -128152,6 +131759,11 @@ entities: - type: Transform pos: 6.7796197,-15.189568 parent: 8364 + - uid: 5771 + components: + - type: Transform + pos: -21.937536,-13.335235 + parent: 8364 - uid: 8461 components: - type: Transform @@ -128298,11 +131910,6 @@ entities: - type: Transform pos: 69.5,-34.5 parent: 8364 - - uid: 27176 - components: - - type: Transform - pos: 26.706097,-106.16252 - parent: 8364 - proto: PercentileDie entities: - uid: 898 @@ -128310,16 +131917,6 @@ entities: - type: Transform pos: 57.5,20.5 parent: 8364 - - uid: 10853 - components: - - type: Transform - pos: 56.5,3.5000002 - parent: 8364 - - uid: 10873 - components: - - type: Transform - pos: 55.5,0.5 - parent: 8364 - proto: PersonalAI entities: - uid: 4068 @@ -128366,11 +131963,6 @@ entities: - type: Transform pos: -8.522932,-51.390182 parent: 8364 - - uid: 27209 - components: - - type: Transform - pos: 27.481524,-83.38469 - parent: 8364 - uid: 27227 components: - type: Transform @@ -128561,10 +132153,10 @@ entities: parent: 8364 - proto: PlayerStationAi entities: - - uid: 16590 + - uid: 27979 components: - type: Transform - pos: 28.5,-111.5 + pos: -0.5,-14.5 parent: 8364 - proto: PlushieBee entities: @@ -128587,11 +132179,6 @@ entities: - type: Transform pos: 44.578045,-62.22757 parent: 8364 - - uid: 21798 - components: - - type: Transform - pos: -22.362862,-11.265691 - parent: 8364 - proto: PlushieRGBee entities: - uid: 5880 @@ -128697,6 +132284,11 @@ entities: - type: Transform pos: -26.5,-71.5 parent: 8364 + - uid: 27832 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 8364 - proto: PortableGeneratorSuperPacman entities: - uid: 18732 @@ -128704,11 +132296,6 @@ entities: - type: Transform pos: -26.5,-70.5 parent: 8364 - - uid: 26962 - components: - - type: Transform - pos: 34.5,-92.5 - parent: 8364 - proto: PortableGeneratorSuperPacmanMachineCircuitboard entities: - uid: 19880 @@ -128718,11 +132305,6 @@ entities: parent: 8364 - proto: PortableScrubber entities: - - uid: 746 - components: - - type: Transform - pos: 23.5,-95.5 - parent: 8364 - uid: 6475 components: - type: Transform @@ -128793,11 +132375,6 @@ entities: - type: Transform pos: 14.5,-40.5 parent: 8364 - - uid: 27152 - components: - - type: Transform - pos: 22.5,-91.5 - parent: 8364 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - uid: 6612 @@ -129052,11 +132629,6 @@ entities: - type: Transform pos: -6.5,-3.5 parent: 8364 - - uid: 21764 - components: - - type: Transform - pos: -19.5,-9.5 - parent: 8364 - uid: 21972 components: - type: Transform @@ -129067,11 +132639,6 @@ entities: - type: Transform pos: 5.5,-23.5 parent: 8364 - - uid: 27650 - components: - - type: Transform - pos: 9.5,-28.5 - parent: 8364 - proto: PosterLegitNoERP entities: - uid: 26559 @@ -129183,13 +132750,6 @@ entities: - type: Transform pos: -7.5,40.5 parent: 8364 -- proto: PosterLegitVacation - entities: - - uid: 10703 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 8364 - proto: PosterLegitWorkForAFuture entities: - uid: 2386 @@ -129204,11 +132764,6 @@ entities: parent: 8364 - proto: PottedPlant0 entities: - - uid: 9450 - components: - - type: Transform - pos: -23.5,-9.5 - parent: 8364 - uid: 26870 components: - type: Transform @@ -129386,13 +132941,6 @@ entities: - type: Transform pos: 37.493153,-34.77379 parent: 8364 -- proto: PottedPlant6 - entities: - - uid: 27156 - components: - - type: Transform - pos: 27.518597,-87.763794 - parent: 8364 - proto: PottedPlant8 entities: - uid: 14099 @@ -129775,11 +133323,6 @@ entities: - type: Transform pos: -12.5,2.5 parent: 8364 - - uid: 27196 - components: - - type: Transform - pos: 32.5,-88.5 - parent: 8364 - uid: 27396 components: - type: Transform @@ -129847,12 +133390,30 @@ entities: rot: 3.141592653589793 rad pos: 60.5,-37.5 parent: 8364 + - uid: 2257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 + parent: 8364 - uid: 3215 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-28.5 parent: 8364 + - uid: 3613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-17.5 + parent: 8364 + - uid: 4556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 8364 - uid: 5244 components: - type: Transform @@ -129908,14 +133469,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5696 components: - type: Transform @@ -129924,13 +133477,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5748 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5946 components: - type: Transform @@ -130032,18 +133578,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 8364 - - uid: 7911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 8364 - uid: 7914 components: - type: Transform @@ -130535,14 +134069,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,14.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12438 components: - type: Transform @@ -130899,21 +134425,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 13066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-31.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13067 - components: - - type: Transform - pos: -1.5,-29.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 13068 components: - type: Transform @@ -131055,21 +134566,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 14507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-13.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14565 - components: - - type: Transform - pos: -57.5,-7.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 14771 components: - type: Transform @@ -131137,11 +134633,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,-23.5 parent: 8364 - - uid: 15450 - components: - - type: Transform - pos: -30.5,-18.5 - parent: 8364 - uid: 16343 components: - type: Transform @@ -131488,12 +134979,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 18395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-30.5 - parent: 8364 - uid: 18397 components: - type: Transform @@ -131658,23 +135143,13 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-22.5 + pos: -3.5,-12.5 parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 19956 components: - type: Transform pos: 2.5,-59.5 parent: 8364 - - uid: 20060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 20137 components: - type: Transform @@ -131932,13 +135407,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 21766 - components: - - type: Transform - pos: 5.5,-29.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 21771 components: - type: Transform @@ -132029,13 +135497,34 @@ entities: - type: Transform pos: 21.5,-71.5 parent: 8364 - - uid: 25864 + - uid: 25204 components: - type: Transform - pos: 30.5,-27.5 + pos: -9.5,-21.5 + parent: 8364 + - uid: 25211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-31.5 + parent: 8364 + - uid: 25219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 8364 + - uid: 25790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-29.5 + parent: 8364 + - uid: 25827 + components: + - type: Transform + pos: -32.5,-18.5 parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 25867 components: - type: Transform @@ -132124,23 +135613,11 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-27.5 parent: 8364 - - uid: 26103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-81.5 - parent: 8364 - uid: 26105 components: - type: Transform pos: 15.5,-70.5 parent: 8364 - - uid: 26106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-76.5 - parent: 8364 - uid: 26368 components: - type: Transform @@ -132277,70 +135754,65 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-67.5 parent: 8364 - - uid: 27163 + - uid: 26984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-101.5 + rot: -1.5707963267948966 rad + pos: -19.5,-76.5 parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27164 + - uid: 26992 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-97.5 + pos: -26.5,-76.5 parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27165 + - uid: 26994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-97.5 + pos: -24.5,-73.5 parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27166 + - uid: 27020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-13.5 + parent: 8364 + - uid: 27142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-81.5 + parent: 8364 + - uid: 27147 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-101.5 + pos: 16.5,-85.5 parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27169 + - uid: 27148 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-109.5 + pos: 26.5,-76.5 parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27170 + - uid: 27153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-109.5 + rot: 3.141592653589793 rad + pos: 24.5,-81.5 parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27171 + - uid: 27154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-114.5 + rot: 3.141592653589793 rad + pos: 12.5,-81.5 parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27172 + - uid: 27155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-114.5 + rot: 1.5707963267948966 rad + pos: 20.5,-85.5 parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 27254 components: - type: Transform @@ -132367,12 +135839,54 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-68.5 + pos: 2.5,-12.5 parent: 8364 - - uid: 27883 + - uid: 27922 components: - type: Transform - pos: 19.5,-68.5 + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 8364 + - uid: 27923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-30.5 + parent: 8364 + - uid: 27924 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 8364 + - uid: 28152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 8364 + - uid: 28187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-24.5 + parent: 8364 + - uid: 28188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-24.5 + parent: 8364 + - uid: 28204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 8364 + - uid: 28207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-31.5 parent: 8364 - proto: PoweredlightExterior entities: @@ -132477,40 +135991,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 16626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-100.5 - parent: 8364 - - uid: 16627 - components: - - type: Transform - pos: 24.5,-119.5 - parent: 8364 - - uid: 16628 - components: - - type: Transform - pos: 32.5,-119.5 - parent: 8364 - - uid: 16629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-100.5 - parent: 8364 - - uid: 16632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-112.5 - parent: 8364 - - uid: 16633 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-112.5 - parent: 8364 - uid: 17476 components: - type: Transform @@ -132583,6 +136063,12 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 + - uid: 27156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-76.5 + parent: 8364 - proto: PoweredSmallLight entities: - uid: 650 @@ -132605,12 +136091,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-11.5 parent: 8364 - - uid: 1676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-85.5 - parent: 8364 - uid: 1875 components: - type: Transform @@ -133019,6 +136499,12 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 + - uid: 12641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 8364 - uid: 13140 components: - type: Transform @@ -133473,12 +136959,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 16892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-75.5 - parent: 8364 - uid: 16893 components: - type: Transform @@ -133807,6 +137287,17 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-47.5 parent: 8364 + - uid: 24906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-11.5 + parent: 8364 + - uid: 25213 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 8364 - uid: 25883 components: - type: Transform @@ -133821,19 +137312,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 26104 - components: - - type: Transform - anchored: False - rot: 3.141592653589793 rad - pos: 18.5,-86.5 - parent: 8364 - - uid: 26107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-83.5 - parent: 8364 - uid: 26364 components: - type: Transform @@ -133882,67 +137360,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 - - uid: 27157 - components: - - type: Transform - pos: 29.5,-83.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-87.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-90.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-90.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-90.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-81.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27167 - components: - - type: Transform - pos: 26.5,-105.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 27168 - components: - - type: Transform - pos: 30.5,-105.5 - parent: 8364 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 27459 components: - type: Transform @@ -133966,6 +137383,18 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-34.5 parent: 8364 + - uid: 27620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-84.5 + parent: 8364 + - uid: 27622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-85.5 + parent: 8364 - uid: 27626 components: - type: Transform @@ -133988,32 +137417,40 @@ entities: - type: Transform pos: 85.5,-5.5 parent: 8364 - - uid: 27867 + - uid: 27859 components: - type: Transform - pos: 23.5,-95.5 + rot: -1.5707963267948966 rad + pos: -18.5,-82.5 parent: 8364 - - uid: 27868 + - uid: 27932 components: - type: Transform - pos: 33.5,-95.5 + rot: 3.141592653589793 rad + pos: -55.5,-11.5 parent: 8364 - - uid: 27869 + - uid: 28140 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 8364 + - uid: 28195 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-106.5 + pos: -0.5,-15.5 parent: 8364 - - uid: 27870 + - uid: 28197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-106.5 + rot: -1.5707963267948966 rad + pos: 0.5,-27.5 parent: 8364 - - uid: 27871 + - uid: 28198 components: - type: Transform - pos: 32.5,-79.5 + rot: 1.5707963267948966 rad + pos: -1.5,-27.5 parent: 8364 - proto: PoweredSmallLightEmpty entities: @@ -134033,20 +137470,22 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 -- proto: Protolathe +- proto: PoweredWarmSmallLight entities: - - uid: 17802 + - uid: 27930 components: - type: Transform - pos: 2.5,-53.5 + rot: -1.5707963267948966 rad + pos: -57.5,-3.5 parent: 8364 - - type: MaterialStorage - materialWhiteList: - - Steel - - Glass - - Plastic - - Wood - - Gold + - uid: 27931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-0.5 + parent: 8364 +- proto: Protolathe + entities: - uid: 21191 components: - type: Transform @@ -134102,21 +137541,6 @@ entities: - type: Transform pos: -5.5,-57.5 parent: 8364 - - uid: 646 - components: - - type: Transform - pos: 26.5,-87.5 - parent: 8364 - - uid: 647 - components: - - type: Transform - pos: 29.5,-83.5 - parent: 8364 - - uid: 747 - components: - - type: Transform - pos: 33.5,-95.5 - parent: 8364 - uid: 1060 components: - type: Transform @@ -134143,6 +137567,28 @@ entities: - type: Transform pos: 55.5,-51.5 parent: 8364 + - uid: 3869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-27.5 + parent: 8364 + - uid: 4233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-77.5 + parent: 8364 + - uid: 4370 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 8364 + - uid: 4576 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 8364 - uid: 4579 components: - type: Transform @@ -134158,6 +137604,11 @@ entities: - type: Transform pos: 44.5,-40.5 parent: 8364 + - uid: 6218 + components: + - type: Transform + pos: 78.5,-56.5 + parent: 8364 - uid: 6265 components: - type: Transform @@ -134168,6 +137619,11 @@ entities: - type: Transform pos: 20.5,19.5 parent: 8364 + - uid: 6392 + components: + - type: Transform + pos: 66.5,-64.5 + parent: 8364 - uid: 8570 components: - type: Transform @@ -134528,11 +137984,6 @@ entities: - type: Transform pos: 88.5,-27.5 parent: 8364 - - uid: 20119 - components: - - type: Transform - pos: 76.5,-57.5 - parent: 8364 - uid: 20123 components: - type: Transform @@ -134598,6 +138049,12 @@ entities: - type: Transform pos: 10.5,-49.5 parent: 8364 + - uid: 24198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 86.5,-42.5 + parent: 8364 - uid: 25993 components: - type: Transform @@ -134608,11 +138065,21 @@ entities: - type: Transform pos: -17.5,51.5 parent: 8364 + - uid: 26576 + components: + - type: Transform + pos: 35.5,-63.5 + parent: 8364 - uid: 26632 components: - type: Transform pos: -4.5,-48.5 parent: 8364 + - uid: 26675 + components: + - type: Transform + pos: 58.5,-62.5 + parent: 8364 - uid: 26770 components: - type: Transform @@ -134623,15 +138090,38 @@ entities: - type: Transform pos: -10.5,7.5 parent: 8364 - - uid: 27153 + - uid: 26876 components: - type: Transform - pos: 23.5,-88.5 + pos: 66.5,-65.5 parent: 8364 - - uid: 27154 + - uid: 26980 + components: + - type: Transform + pos: 80.5,-56.5 + parent: 8364 + - uid: 27059 components: - type: Transform - pos: 34.5,-90.5 + rot: 1.5707963267948966 rad + pos: 86.5,-40.5 + parent: 8364 + - uid: 27176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-83.5 + parent: 8364 + - uid: 27553 + components: + - type: Transform + pos: 11.5,-78.5 + parent: 8364 + - uid: 27819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-27.5 parent: 8364 - uid: 28132 components: @@ -134697,11 +138187,6 @@ entities: - type: Transform pos: 3.5,23.5 parent: 8364 - - uid: 12354 - components: - - type: Transform - pos: -56.5,3.5000002 - parent: 8364 - uid: 15394 components: - type: Transform @@ -134727,11 +138212,6 @@ entities: - type: Transform pos: 5.934936,-62.500313 parent: 8364 - - uid: 27211 - components: - - type: Transform - pos: 29.481524,-83.494064 - parent: 8364 - proto: Railing entities: - uid: 425 @@ -134860,18 +138340,18 @@ entities: parent: 8364 - proto: RandomArtifactSpawner entities: - - uid: 13419 + - uid: 25983 components: - type: Transform pos: 78.5,-29.5 parent: 8364 - - uid: 25988 +- proto: RandomArtifactSpawner20 + entities: + - uid: 16825 components: - type: Transform - pos: 80.5,-29.5 + pos: 82.5,-30.5 parent: 8364 -- proto: RandomArtifactSpawner20 - entities: - uid: 20637 components: - type: Transform @@ -134887,6 +138367,16 @@ entities: - type: Transform pos: -39.5,-22.5 parent: 8364 + - uid: 25984 + components: + - type: Transform + pos: 80.5,-29.5 + parent: 8364 + - uid: 27418 + components: + - type: Transform + pos: 71.5,-39.5 + parent: 8364 - proto: RandomBoard entities: - uid: 5724 @@ -134929,6 +138419,11 @@ entities: - type: Transform pos: -10.5,-33.5 parent: 8364 + - uid: 28185 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 8364 - proto: RandomDrinkGlass entities: - uid: 5207 @@ -134953,6 +138448,16 @@ entities: parent: 8364 - proto: RandomDrinkSoda entities: + - uid: 7092 + components: + - type: Transform + pos: 55.5,1.5 + parent: 8364 + - uid: 7114 + components: + - type: Transform + pos: 56.5,1.5 + parent: 8364 - uid: 20690 components: - type: Transform @@ -135009,6 +138514,11 @@ entities: - type: Transform pos: 61.5,-44.5 parent: 8364 + - uid: 4261 + components: + - type: Transform + pos: 84.5,-51.5 + parent: 8364 - uid: 6613 components: - type: Transform @@ -135019,6 +138529,21 @@ entities: - type: Transform pos: 16.5,16.5 parent: 8364 + - uid: 7062 + components: + - type: Transform + pos: 53.5,3.5 + parent: 8364 + - uid: 7073 + components: + - type: Transform + pos: 59.5,0.5 + parent: 8364 + - uid: 7153 + components: + - type: Transform + pos: 52.5,0.5 + parent: 8364 - uid: 9618 components: - type: Transform @@ -135194,11 +138719,6 @@ entities: - type: Transform pos: 83.5,-56.5 parent: 8364 - - uid: 22313 - components: - - type: Transform - pos: 83.5,-53.5 - parent: 8364 - uid: 22314 components: - type: Transform @@ -135269,6 +138789,17 @@ entities: - type: Transform pos: 44.5,9.5 parent: 8364 + - uid: 25186 + components: + - type: Transform + pos: 59.5,3.5 + parent: 8364 + - uid: 25200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-28.5 + parent: 8364 - uid: 26565 components: - type: Transform @@ -135328,6 +138859,11 @@ entities: - type: Transform pos: 58.5,-42.5 parent: 8364 + - uid: 4567 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 8364 - uid: 8469 components: - type: Transform @@ -135483,6 +139019,18 @@ entities: - type: Transform pos: -6.5,-28.5 parent: 8364 + - uid: 25199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-28.5 + parent: 8364 + - uid: 25220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-22.5 + parent: 8364 - uid: 25844 components: - type: Transform @@ -135578,6 +139126,29 @@ entities: - type: Transform pos: 17.5,-8.5 parent: 8364 + - uid: 28149 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 8364 + - uid: 28208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-19.5 + parent: 8364 +- proto: RandomSmokables + entities: + - uid: 14111 + components: + - type: Transform + pos: 86.44438,-40.36994 + parent: 8364 + - uid: 25242 + components: + - type: Transform + pos: 86.65282,-42.37133 + parent: 8364 - proto: RandomSnacks entities: - uid: 20688 @@ -135844,6 +139415,11 @@ entities: - type: Transform pos: -46.5,17.5 parent: 8364 + - uid: 14147 + components: + - type: Transform + pos: -61.5,-15.5 + parent: 8364 - uid: 14603 components: - type: Transform @@ -135862,7 +139438,7 @@ entities: - uid: 14606 components: - type: Transform - pos: -19.5,-0.5 + pos: -30.5,-12.5 parent: 8364 - uid: 14607 components: @@ -135904,6 +139480,11 @@ entities: - type: Transform pos: -58.5,-20.5 parent: 8364 + - uid: 15106 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 8364 - uid: 15611 components: - type: Transform @@ -136044,6 +139625,21 @@ entities: - type: Transform pos: -12.5,47.5 parent: 8364 + - uid: 28237 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 8364 + - uid: 28238 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 8364 + - uid: 28239 + components: + - type: Transform + pos: -61.5,-16.5 + parent: 8364 - proto: RandomSpawner100 entities: - uid: 2249 @@ -136073,6 +139669,18 @@ entities: - type: Transform pos: -55.5,-1.5 parent: 8364 +- proto: RandomVendingClothing + entities: + - uid: 25864 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 8364 + - uid: 27038 + components: + - type: Transform + pos: 22.5,15.5 + parent: 8364 - proto: RandomVendingDrinks entities: - uid: 1604 @@ -136115,6 +139723,11 @@ entities: - type: Transform pos: -44.5,-4.5 parent: 8364 + - uid: 27037 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 8364 - proto: RandomVendingSnacks entities: - uid: 2939 @@ -136730,6 +140343,11 @@ entities: - type: Transform pos: -68.5,18.5 parent: 8364 + - uid: 595 + components: + - type: Transform + pos: 27.5,-81.5 + parent: 8364 - uid: 596 components: - type: Transform @@ -136748,6 +140366,12 @@ entities: rot: -1.5707963267948966 rad pos: -68.5,7.5 parent: 8364 + - uid: 646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-82.5 + parent: 8364 - uid: 658 components: - type: Transform @@ -137191,16 +140815,6 @@ entities: - type: Transform pos: -33.5,-32.5 parent: 8364 - - uid: 1627 - components: - - type: Transform - pos: 27.5,-74.5 - parent: 8364 - - uid: 1644 - components: - - type: Transform - pos: 26.5,-75.5 - parent: 8364 - uid: 1653 components: - type: Transform @@ -137409,7 +141023,7 @@ entities: - uid: 2528 components: - type: Transform - pos: 38.5,-49.5 + pos: 62.5,-71.5 parent: 8364 - uid: 2550 components: @@ -137956,11 +141570,6 @@ entities: - type: Transform pos: 60.5,-70.5 parent: 8364 - - uid: 3087 - components: - - type: Transform - pos: 62.5,-70.5 - parent: 8364 - uid: 3088 components: - type: Transform @@ -138436,31 +142045,6 @@ entities: - type: Transform pos: -32.5,-70.5 parent: 8364 - - uid: 3630 - components: - - type: Transform - pos: -27.5,-74.5 - parent: 8364 - - uid: 3631 - components: - - type: Transform - pos: -26.5,-74.5 - parent: 8364 - - uid: 3632 - components: - - type: Transform - pos: -25.5,-74.5 - parent: 8364 - - uid: 3633 - components: - - type: Transform - pos: -24.5,-74.5 - parent: 8364 - - uid: 3634 - components: - - type: Transform - pos: -23.5,-74.5 - parent: 8364 - uid: 3674 components: - type: Transform @@ -138746,175 +142330,43 @@ entities: - type: Transform pos: 86.5,-14.5 parent: 8364 - - uid: 4137 - components: - - type: Transform - pos: -34.5,-29.5 - parent: 8364 - - uid: 4177 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 8364 - - uid: 4455 - components: - - type: Transform - pos: 29.5,-103.5 - parent: 8364 - - uid: 4456 - components: - - type: Transform - pos: 29.5,-102.5 - parent: 8364 - - uid: 4457 - components: - - type: Transform - pos: 29.5,-101.5 - parent: 8364 - - uid: 4458 - components: - - type: Transform - pos: 29.5,-100.5 - parent: 8364 - - uid: 4459 - components: - - type: Transform - pos: 29.5,-99.5 - parent: 8364 - - uid: 4460 - components: - - type: Transform - pos: 29.5,-98.5 - parent: 8364 - - uid: 4461 - components: - - type: Transform - pos: 29.5,-97.5 - parent: 8364 - - uid: 4463 - components: - - type: Transform - pos: 29.5,-96.5 - parent: 8364 - - uid: 4464 - components: - - type: Transform - pos: 29.5,-95.5 - parent: 8364 - - uid: 4465 - components: - - type: Transform - pos: 27.5,-95.5 - parent: 8364 - - uid: 4466 - components: - - type: Transform - pos: 27.5,-96.5 - parent: 8364 - - uid: 4467 - components: - - type: Transform - pos: 27.5,-97.5 - parent: 8364 - - uid: 4468 - components: - - type: Transform - pos: 27.5,-98.5 - parent: 8364 - - uid: 4469 - components: - - type: Transform - pos: 27.5,-99.5 - parent: 8364 - - uid: 4470 - components: - - type: Transform - pos: 27.5,-100.5 - parent: 8364 - - uid: 4471 - components: - - type: Transform - pos: 27.5,-101.5 - parent: 8364 - - uid: 4472 - components: - - type: Transform - pos: 27.5,-102.5 - parent: 8364 - - uid: 4473 - components: - - type: Transform - pos: 27.5,-103.5 - parent: 8364 - - uid: 4474 - components: - - type: Transform - pos: 30.5,-107.5 - parent: 8364 - - uid: 4475 - components: - - type: Transform - pos: 29.5,-107.5 - parent: 8364 - - uid: 4476 - components: - - type: Transform - pos: 27.5,-107.5 - parent: 8364 - - uid: 4477 - components: - - type: Transform - pos: 26.5,-107.5 - parent: 8364 - - uid: 4483 - components: - - type: Transform - pos: 30.5,-81.5 - parent: 8364 - - uid: 4484 - components: - - type: Transform - pos: 30.5,-80.5 - parent: 8364 - - uid: 4486 - components: - - type: Transform - pos: 30.5,-78.5 - parent: 8364 - - uid: 4487 + - uid: 4107 components: - type: Transform - pos: 30.5,-77.5 + rot: 3.141592653589793 rad + pos: 14.5,-82.5 parent: 8364 - - uid: 4488 + - uid: 4136 components: - type: Transform - pos: 29.5,-77.5 + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 parent: 8364 - - uid: 4489 + - uid: 4137 components: - type: Transform - pos: 28.5,-77.5 + pos: -34.5,-29.5 parent: 8364 - - uid: 4490 + - uid: 4201 components: - type: Transform - pos: 27.5,-77.5 + pos: -21.5,-77.5 parent: 8364 - - uid: 4491 + - uid: 4202 components: - type: Transform - pos: 26.5,-77.5 + pos: -21.5,-74.5 parent: 8364 - - uid: 4492 + - uid: 4300 components: - type: Transform - pos: 26.5,-78.5 + pos: -21.5,-75.5 parent: 8364 - - uid: 4493 + - uid: 4426 components: - type: Transform - pos: 26.5,-79.5 + rot: 3.141592653589793 rad + pos: 20.5,-82.5 parent: 8364 - uid: 4523 components: @@ -138991,16 +142443,6 @@ entities: - type: Transform pos: -16.5,34.5 parent: 8364 - - uid: 5200 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 8364 - - uid: 5201 - components: - - type: Transform - pos: 26.5,-81.5 - parent: 8364 - uid: 5233 components: - type: Transform @@ -139016,21 +142458,6 @@ entities: - type: Transform pos: 23.5,-34.5 parent: 8364 - - uid: 5268 - components: - - type: Transform - pos: -1.5,-23.5 - parent: 8364 - - uid: 5732 - components: - - type: Transform - pos: -3.5,-25.5 - parent: 8364 - - uid: 5768 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 8364 - uid: 5826 components: - type: Transform @@ -139041,21 +142468,11 @@ entities: - type: Transform pos: -5.5,40.5 parent: 8364 - - uid: 6529 - components: - - type: Transform - pos: 26.5,-80.5 - parent: 8364 - uid: 6533 components: - type: Transform pos: 25.5,16.5 parent: 8364 - - uid: 6908 - components: - - type: Transform - pos: 2.5,-25.5 - parent: 8364 - uid: 6949 components: - type: Transform @@ -139666,6 +143083,12 @@ entities: - type: Transform pos: -18.5,-19.5 parent: 8364 + - uid: 8079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-72.5 + parent: 8364 - uid: 8088 components: - type: Transform @@ -139686,6 +143109,12 @@ entities: - type: Transform pos: -14.5,-13.5 parent: 8364 + - uid: 8111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-74.5 + parent: 8364 - uid: 8131 components: - type: Transform @@ -140231,6 +143660,12 @@ entities: - type: Transform pos: -10.5,5.5 parent: 8364 + - uid: 12258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-82.5 + parent: 8364 - uid: 12260 components: - type: Transform @@ -140241,6 +143676,12 @@ entities: - type: Transform pos: -68.5,17.5 parent: 8364 + - uid: 12459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-82.5 + parent: 8364 - uid: 12485 components: - type: Transform @@ -140258,11 +143699,6 @@ entities: - type: Transform pos: 27.5,-67.5 parent: 8364 - - uid: 12678 - components: - - type: Transform - pos: 27.5,-68.5 - parent: 8364 - uid: 12681 components: - type: Transform @@ -140323,31 +143759,11 @@ entities: - type: Transform pos: -38.5,13.5 parent: 8364 - - uid: 13407 - components: - - type: Transform - pos: 27.5,-69.5 - parent: 8364 - uid: 13433 components: - type: Transform pos: -51.5,15.5 parent: 8364 - - uid: 13661 - components: - - type: Transform - pos: 27.5,-71.5 - parent: 8364 - - uid: 13662 - components: - - type: Transform - pos: 27.5,-72.5 - parent: 8364 - - uid: 13663 - components: - - type: Transform - pos: 27.5,-73.5 - parent: 8364 - uid: 14137 components: - type: Transform @@ -140413,6 +143829,18 @@ entities: - type: Transform pos: 6.5,-28.5 parent: 8364 + - uid: 15882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-68.5 + parent: 8364 + - uid: 15969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 8364 - uid: 16354 components: - type: Transform @@ -140433,6 +143861,24 @@ entities: - type: Transform pos: 2.5,-77.5 parent: 8364 + - uid: 16731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-82.5 + parent: 8364 + - uid: 16735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-82.5 + parent: 8364 + - uid: 16777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-82.5 + parent: 8364 - uid: 16837 components: - type: Transform @@ -140468,11 +143914,6 @@ entities: - type: Transform pos: 2.5,-41.5 parent: 8364 - - uid: 17088 - components: - - type: Transform - pos: 14.5,-82.5 - parent: 8364 - uid: 17093 components: - type: Transform @@ -140483,16 +143924,6 @@ entities: - type: Transform pos: 7.5,-45.5 parent: 8364 - - uid: 17156 - components: - - type: Transform - pos: 15.5,-82.5 - parent: 8364 - - uid: 17159 - components: - - type: Transform - pos: 16.5,-82.5 - parent: 8364 - uid: 17205 components: - type: Transform @@ -140505,21 +143936,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-43.5 parent: 8364 - - uid: 17207 - components: - - type: Transform - pos: 13.5,-82.5 - parent: 8364 - - uid: 17208 - components: - - type: Transform - pos: 17.5,-82.5 - parent: 8364 - - uid: 17365 - components: - - type: Transform - pos: 18.5,-82.5 - parent: 8364 - uid: 17455 components: - type: Transform @@ -140530,16 +143946,6 @@ entities: - type: Transform pos: 4.5,-46.5 parent: 8364 - - uid: 17661 - components: - - type: Transform - pos: 23.5,-75.5 - parent: 8364 - - uid: 17662 - components: - - type: Transform - pos: 25.5,-75.5 - parent: 8364 - uid: 17787 components: - type: Transform @@ -140560,11 +143966,6 @@ entities: - type: Transform pos: -2.5,-65.5 parent: 8364 - - uid: 19148 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 8364 - uid: 19163 components: - type: Transform @@ -140645,11 +144046,6 @@ entities: - type: Transform pos: 61.5,-56.5 parent: 8364 - - uid: 20003 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 8364 - uid: 20055 components: - type: Transform @@ -140732,16 +144128,6 @@ entities: - type: Transform pos: 13.5,-26.5 parent: 8364 - - uid: 21995 - components: - - type: Transform - pos: -4.5,-17.5 - parent: 8364 - - uid: 21996 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 8364 - uid: 22013 components: - type: Transform @@ -140792,15 +144178,28 @@ entities: - type: Transform pos: 86.5,-10.5 parent: 8364 - - uid: 22573 + - uid: 22574 components: - type: Transform - pos: 21.5,-75.5 + pos: 25.5,-65.5 parent: 8364 - - uid: 22574 + - uid: 22696 components: - type: Transform - pos: 25.5,-65.5 + rot: -1.5707963267948966 rad + pos: 27.5,-71.5 + parent: 8364 + - uid: 22697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-73.5 + parent: 8364 + - uid: 22700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-69.5 parent: 8364 - uid: 22745 components: @@ -140878,10 +144277,11 @@ entities: - type: Transform pos: -18.5,-68.5 parent: 8364 - - uid: 23171 + - uid: 23159 components: - type: Transform - pos: 24.5,-75.5 + rot: 3.141592653589793 rad + pos: 18.5,-86.5 parent: 8364 - uid: 23172 components: @@ -140893,11 +144293,6 @@ entities: - type: Transform pos: -7.5,-66.5 parent: 8364 - - uid: 23209 - components: - - type: Transform - pos: 22.5,-75.5 - parent: 8364 - uid: 23220 components: - type: Transform @@ -140928,6 +144323,22 @@ entities: - type: Transform pos: 9.5,-64.5 parent: 8364 + - uid: 23917 + components: + - type: Transform + pos: -21.5,-82.5 + parent: 8364 + - uid: 24774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-49.5 + parent: 8364 + - uid: 25183 + components: + - type: Transform + pos: -21.5,-73.5 + parent: 8364 - uid: 25735 components: - type: Transform @@ -140943,6 +144354,11 @@ entities: - type: Transform pos: -14.5,37.5 parent: 8364 + - uid: 26008 + components: + - type: Transform + pos: -19.5,-84.5 + parent: 8364 - uid: 26064 components: - type: Transform @@ -140993,35 +144409,25 @@ entities: - type: Transform pos: -8.5,-64.5 parent: 8364 - - uid: 27849 - components: - - type: Transform - pos: 33.5,-78.5 - parent: 8364 - - uid: 27850 - components: - - type: Transform - pos: 32.5,-78.5 - parent: 8364 - - uid: 27851 + - uid: 26997 components: - type: Transform - pos: 31.5,-78.5 + pos: 27.5,-78.5 parent: 8364 - - uid: 27852 + - uid: 27066 components: - type: Transform - pos: 31.5,-80.5 + pos: 27.5,-79.5 parent: 8364 - - uid: 27853 + - uid: 27858 components: - type: Transform - pos: 32.5,-80.5 + pos: 27.5,-80.5 parent: 8364 - - uid: 27854 + - uid: 27925 components: - type: Transform - pos: 33.5,-80.5 + pos: 60.5,-69.5 parent: 8364 - proto: RemoteSignaller entities: @@ -141078,7 +144484,7 @@ entities: - uid: 22443 components: - type: Transform - pos: 3.4364183,-14.443886 + pos: -3.5,-23.2 parent: 8364 - proto: RobustHarvestChemistryBottle entities: @@ -141157,6 +144563,16 @@ entities: parent: 8364 - proto: Screen entities: + - uid: 3657 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 8364 + - uid: 4368 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 8364 - uid: 27738 components: - type: Transform @@ -141252,38 +144668,42 @@ entities: - type: Transform pos: -14.5,-11.5 parent: 8364 -- proto: Screwdriver - entities: - - uid: 2261 + - uid: 28189 components: - type: Transform - pos: 59.397083,-51.321266 + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 parent: 8364 - - uid: 12258 + - uid: 28190 components: - type: Transform - pos: -46.457306,2.9827793 + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 parent: 8364 - - uid: 15395 + - uid: 28191 components: - type: Transform - pos: -22.5,-29.5 + rot: -1.5707963267948966 rad + pos: -2.5,-25.5 parent: 8364 - - uid: 16302 + - uid: 28192 components: - type: Transform - rot: 0.00013372956891544163 rad - pos: -8.435265,-33.26435 + rot: -1.5707963267948966 rad + pos: 1.5,-25.5 parent: 8364 - - uid: 21416 +- proto: Screwdriver + entities: + - uid: 15395 components: - type: Transform - pos: 79.5,-47.5 + pos: -22.5,-29.5 parent: 8364 - - uid: 27210 + - uid: 16302 components: - type: Transform - pos: 29.559649,-83.400314 + rot: 0.00013372956891544163 rad + pos: -8.435265,-33.26435 parent: 8364 - uid: 27482 components: @@ -141361,20 +144781,20 @@ entities: parent: 8364 - proto: SheetGlass entities: - - uid: 1194 + - uid: 1152 components: - type: Transform - pos: -51.52255,-5.0715327 + pos: -32.98726,-18.506897 parent: 8364 - - uid: 11044 + - uid: 1194 components: - type: Transform pos: -51.52255,-5.0715327 parent: 8364 - - uid: 11754 + - uid: 11044 components: - type: Transform - pos: 47.405727,11.349856 + pos: -51.52255,-5.0715327 parent: 8364 - uid: 11755 components: @@ -141396,11 +144816,6 @@ entities: - type: Transform pos: -65.69919,13.123488 parent: 8364 - - uid: 13850 - components: - - type: Transform - pos: -45.29138,21.721916 - parent: 8364 - uid: 14442 components: - type: Transform @@ -141421,12 +144836,6 @@ entities: - type: Transform pos: 9.439449,-60.01837 parent: 8364 - - uid: 19343 - components: - - type: Transform - rot: -0.0007233519572764635 rad - pos: 47.73502,-67.92985 - parent: 8364 - uid: 21176 components: - type: Transform @@ -141449,11 +144858,6 @@ entities: parent: 8364 - proto: SheetPlasma entities: - - uid: 21620 - components: - - type: Transform - pos: 43.53589,-62.501984 - parent: 8364 - uid: 26768 components: - type: Transform @@ -141520,6 +144924,11 @@ entities: - type: Transform pos: -2.4544196,39.606735 parent: 8364 + - uid: 19207 + components: + - type: Transform + pos: -32.507854,-18.48605 + parent: 8364 - proto: SheetRGlass entities: - uid: 12441 @@ -141532,11 +144941,6 @@ entities: - type: Transform pos: -28.390247,-52.707314 parent: 8364 - - uid: 19344 - components: - - type: Transform - pos: 47.289577,-67.7736 - parent: 8364 - uid: 21445 components: - type: Transform @@ -141554,6 +144958,11 @@ entities: - type: Transform pos: -51.5538,-4.6965327 parent: 8364 + - uid: 4062 + components: + - type: Transform + pos: 11.496125,-77.3825 + parent: 8364 - uid: 4698 components: - type: Transform @@ -141564,11 +144973,6 @@ entities: - type: Transform pos: -2.4700446,39.637985 parent: 8364 - - uid: 11752 - components: - - type: Transform - pos: 47.796352,11.724856 - parent: 8364 - uid: 11753 components: - type: Transform @@ -141600,11 +145004,6 @@ entities: - type: Transform pos: -38.48763,24.440645 parent: 8364 - - uid: 13849 - components: - - type: Transform - pos: -45.69763,21.378166 - parent: 8364 - uid: 14443 components: - type: Transform @@ -141633,7 +145032,7 @@ entities: - uid: 19345 components: - type: Transform - pos: 47.711452,-67.03922 + pos: 47.4545,-67.76483 parent: 8364 - uid: 21177 components: @@ -141643,7 +145042,7 @@ entities: - uid: 21232 components: - type: Transform - pos: 60.36629,-23.555044 + pos: 60.529095,-23.40065 parent: 8364 - uid: 21444 components: @@ -141675,6 +145074,11 @@ entities: - type: Transform pos: 9.423824,-59.471497 parent: 8364 + - uid: 25317 + components: + - type: Transform + pos: -33.45624,-18.48605 + parent: 8364 - proto: SheetUranium entities: - uid: 27557 @@ -141727,10 +145131,15 @@ entities: parent: 8364 - proto: ShuttersNormal entities: - - uid: 741 + - uid: 8814 components: - type: Transform - pos: 31.5,-84.5 + pos: -31.5,-17.5 + parent: 8364 + - uid: 9243 + components: + - type: Transform + pos: -30.5,-17.5 parent: 8364 - uid: 11334 components: @@ -142044,15 +145453,6 @@ entities: - type: Transform pos: -1.5,-72.5 parent: 8364 -- proto: ShuttersWindow - entities: - - uid: 1416 - components: - - type: MetaData - name: Warehouse Shutters - - type: Transform - pos: -31.5,-17.5 - parent: 8364 - proto: ShuttersWindowOpen entities: - uid: 8644 @@ -142256,13 +145656,34 @@ entities: parent: 8364 - proto: SignAi entities: - - uid: 742 + - uid: 26944 components: - type: Transform - pos: 10.5,-67.5 + pos: 0.5,-18.5 + parent: 8364 +- proto: SignAiUpload + entities: + - uid: 26942 + components: + - type: Transform + pos: -1.5,-28.5 parent: 8364 - proto: SignalButton entities: + - uid: 1644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-86.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 4205: + - Pressed: Toggle + 3542: + - Pressed: Toggle + 25091: + - Pressed: Toggle - uid: 1910 components: - type: Transform @@ -142289,6 +145710,8 @@ entities: - Pressed: Toggle - uid: 2468 components: + - type: MetaData + name: Blast Doors - type: Transform pos: 70.5,-38.5 parent: 8364 @@ -142336,6 +145759,34 @@ entities: linkedPorts: 3535: - Pressed: Toggle + - uid: 4249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-82.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 25091: + - Pressed: Toggle + 3542: + - Pressed: Toggle + 4205: + - Pressed: Toggle + - uid: 4250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-82.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 13849: + - Pressed: Toggle + 3605: + - Pressed: Toggle + 15544: + - Pressed: Toggle - uid: 5222 components: - type: Transform @@ -142371,15 +145822,6 @@ entities: linkedPorts: 9923: - Pressed: Toggle - - uid: 5370 - components: - - type: Transform - pos: 81.5,-26.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 5373: - - Pressed: Toggle - uid: 5478 components: - type: Transform @@ -142480,18 +145922,29 @@ entities: - Pressed: Toggle 6099: - Pressed: Toggle - - uid: 17472 + - uid: 11984 components: - type: Transform - pos: 6.5,-76.5 + rot: 3.141592653589793 rad + pos: -32.5,-17.5 parent: 8364 - type: DeviceLinkSource linkedPorts: - 5798: + 8814: - Pressed: Toggle - 9379: + 9243: - Pressed: Toggle - 4704: + - uid: 16830 + components: + - type: MetaData + name: Blast Door + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,-26.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 5373: - Pressed: Toggle - uid: 17685 components: @@ -142526,6 +145979,17 @@ entities: - Pressed: Toggle 18326: - Pressed: Toggle + - uid: 19172 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 8814: + - Pressed: Toggle + 9243: + - Pressed: Toggle - uid: 19856 components: - type: Transform @@ -142583,21 +146047,6 @@ entities: - Pressed: Toggle 19932: - Pressed: Toggle - - uid: 20126 - components: - - type: Transform - pos: 19.5,-82.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 20133: - - Pressed: Toggle - 20134: - - Pressed: Toggle - 26646: - - Pressed: Toggle - 17676: - - Pressed: Toggle - uid: 20896 components: - type: Transform @@ -142611,9 +146060,12 @@ entities: - Pressed: Toggle 5590: - Pressed: Toggle - - uid: 22835 + - uid: 22220 components: + - type: MetaData + name: Collector Blast Doors - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-76.5 parent: 8364 - type: DeviceLinkSource @@ -142624,28 +146076,6 @@ entities: - Pressed: Toggle 10835: - Pressed: Toggle - - uid: 26670 - components: - - type: Transform - pos: 2.5,-75.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 26668: - - Pressed: Toggle - 26669: - - Pressed: Toggle - - uid: 26671 - components: - - type: Transform - pos: -3.5,-75.5 - parent: 8364 - - type: DeviceLinkSource - linkedPorts: - 26666: - - Pressed: Toggle - 26667: - - Pressed: Toggle - uid: 26795 components: - type: Transform @@ -142671,9 +146101,12 @@ entities: - Pressed: Toggle 26793: - Pressed: Toggle - - uid: 27389 + - uid: 26932 components: + - type: MetaData + name: Radiation Shutters - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-71.5 parent: 8364 - type: DeviceLinkSource @@ -142686,6 +146119,82 @@ entities: - Pressed: Toggle 3868: - Pressed: Toggle + - uid: 26934 + components: + - type: MetaData + name: PA Blast Doors + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-75.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 26666: + - Pressed: Toggle + 26667: + - Pressed: Toggle + - uid: 26935 + components: + - type: MetaData + name: Collector Blast Doors + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-76.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 5798: + - Pressed: Toggle + 9379: + - Pressed: Toggle + 4704: + - Pressed: Toggle + - uid: 26936 + components: + - type: MetaData + name: PA Blast Doors + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-75.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 26668: + - Pressed: Toggle + 26669: + - Pressed: Toggle + - uid: 26937 + components: + - type: MetaData + name: Radiation Shutters + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-71.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 3868: + - Pressed: Toggle + 3875: + - Pressed: Toggle + 3788: + - Pressed: Toggle + 3789: + - Pressed: Toggle + - uid: 27744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-86.5 + parent: 8364 + - type: DeviceLinkSource + linkedPorts: + 15544: + - Pressed: Toggle + 3605: + - Pressed: Toggle + 13849: + - Pressed: Toggle - proto: SignalButtonDirectional entities: - uid: 4213 @@ -142716,6 +146225,8 @@ entities: - Pressed: Toggle - uid: 10732 components: + - type: MetaData + name: Shutters - type: Transform pos: 8.5,-19.5 parent: 8364 @@ -142935,20 +146446,15 @@ entities: parent: 8364 - proto: SignCryogenicsMed entities: - - uid: 24722 - components: - - type: Transform - pos: 38.5,-33.5 - parent: 8364 - - uid: 27383 + - uid: 14702 components: - type: Transform - pos: 27.5,-75.5 + pos: 27.5,-76.5 parent: 8364 - - uid: 27384 + - uid: 24722 components: - type: Transform - pos: 27.5,-70.5 + pos: 38.5,-33.5 parent: 8364 - proto: SignDangerMed entities: @@ -143259,6 +146765,11 @@ entities: - type: Transform pos: 43.5,4.5 parent: 8364 + - uid: 3655 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 8364 - uid: 7264 components: - type: Transform @@ -143279,10 +146790,10 @@ entities: - type: Transform pos: -19.5,-36.5 parent: 8364 - - uid: 17048 + - uid: 15971 components: - type: Transform - pos: -3.5,-23.5 + pos: -2.5,-10.5 parent: 8364 - uid: 18691 components: @@ -143381,11 +146892,6 @@ entities: - type: Transform pos: 68.5,-38.5 parent: 8364 - - uid: 27382 - components: - - type: Transform - pos: 12.5,-82.5 - parent: 8364 - proto: SignFlammableMed entities: - uid: 27386 @@ -143395,10 +146901,10 @@ entities: parent: 8364 - proto: SignGravity entities: - - uid: 5871 + - uid: 4299 components: - type: Transform - pos: -1.5,-28.5 + pos: -20.5,-71.5 parent: 8364 - proto: SignHead entities: @@ -143520,6 +147026,14 @@ entities: - type: Transform pos: 42.5,-21.5 parent: 8364 +- proto: SignNews + entities: + - uid: 3821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 8364 - proto: SignNosmoking entities: - uid: 5229 @@ -143565,21 +147079,6 @@ entities: parent: 8364 - proto: SignRadiationMed entities: - - uid: 17041 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 8364 - - uid: 17043 - components: - - type: Transform - pos: 1.5,-27.5 - parent: 8364 - - uid: 17045 - components: - - type: Transform - pos: -2.5,-27.5 - parent: 8364 - uid: 19068 components: - type: Transform @@ -143789,25 +147288,17 @@ entities: - type: Transform pos: -9.5,5.5 parent: 8364 - - uid: 27185 - components: - - type: Transform - pos: 30.5,-82.5 - parent: 8364 - - uid: 27186 - components: - - type: Transform - pos: 26.5,-82.5 - parent: 8364 - - uid: 27187 + - uid: 28215 components: - type: Transform - pos: 26.5,-93.5 + rot: -1.5707963267948966 rad + pos: 0.5,-25.5 parent: 8364 - - uid: 27188 + - uid: 28216 components: - type: Transform - pos: 30.5,-93.5 + rot: -1.5707963267948966 rad + pos: -1.5,-25.5 parent: 8364 - proto: SignSecureSmall entities: @@ -143878,6 +147369,11 @@ entities: parent: 8364 - proto: SignSpace entities: + - uid: 12261 + components: + - type: Transform + pos: 63.5,-69.5 + parent: 8364 - uid: 17810 components: - type: Transform @@ -143943,11 +147439,6 @@ entities: - type: Transform pos: 48.5,-66.5 parent: 8364 - - uid: 21525 - components: - - type: Transform - pos: 62.5,-69.5 - parent: 8364 - uid: 21530 components: - type: Transform @@ -144048,8 +147539,11 @@ entities: - uid: 18597 components: - type: Transform + anchored: False pos: -13.5,-65.5 parent: 8364 + - type: Physics + bodyType: Dynamic - proto: Sink entities: - uid: 1878 @@ -144306,11 +147800,6 @@ entities: parent: 8364 - proto: SMESBasic entities: - - uid: 865 - components: - - type: Transform - pos: 28.5,-113.5 - parent: 8364 - uid: 9461 components: - type: MetaData @@ -144354,28 +147843,39 @@ entities: - uid: 17835 components: - type: Transform + anchored: False pos: -9.5,-66.5 parent: 8364 + - type: Physics + bodyType: Dynamic - uid: 18565 components: - type: Transform + anchored: False pos: -9.5,-65.5 parent: 8364 + - type: Physics + bodyType: Dynamic - uid: 22090 components: - type: Transform pos: -22.5,-71.5 parent: 8364 - - uid: 26964 + - uid: 25206 components: + - type: MetaData + name: AI Core SMES - type: Transform - pos: 34.5,-91.5 + pos: -1.5,-11.5 parent: 8364 - uid: 27765 components: - type: Transform + anchored: False pos: -9.5,-64.5 parent: 8364 + - type: Physics + bodyType: Dynamic - proto: SMESMachineCircuitboard entities: - uid: 12457 @@ -145999,6 +149499,16 @@ entities: parent: 8364 - proto: SpawnPointBorg entities: + - uid: 25093 + components: + - type: Transform + pos: 59.5,-21.5 + parent: 8364 + - uid: 27149 + components: + - type: Transform + pos: 62.5,-21.5 + parent: 8364 - uid: 27671 components: - type: Transform @@ -146130,6 +149640,11 @@ entities: parent: 8364 - proto: SpawnPointJanitor entities: + - uid: 5858 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 8364 - uid: 27566 components: - type: Transform @@ -146309,6 +149824,13 @@ entities: - type: Transform pos: -32.5,-26.5 parent: 8364 +- proto: SpawnPointReporter + entities: + - uid: 28070 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 8364 - proto: SpawnPointResearchAssistant entities: - uid: 18629 @@ -146460,12 +149982,12 @@ entities: - type: Transform pos: 5.5,-55.5 parent: 8364 - - uid: 21469 + - uid: 26952 components: - type: Transform pos: 5.5,-57.5 parent: 8364 - - uid: 22817 + - uid: 26953 components: - type: Transform pos: 5.5,-56.5 @@ -146581,6 +150103,13 @@ entities: - type: Transform pos: 24.48325,-36.395668 parent: 8364 +- proto: SprayPainter + entities: + - uid: 27555 + components: + - type: Transform + pos: 11.456799,-78.42873 + parent: 8364 - proto: StasisBed entities: - uid: 1881 @@ -146600,31 +150129,29 @@ entities: parent: 8364 - proto: StationAiUploadComputer entities: - - uid: 3539 + - uid: 6144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-14.5 + pos: 0.5,-20.5 parent: 8364 - - uid: 6123 + - uid: 27013 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-14.5 + pos: -1.5,-20.5 parent: 8364 - proto: StationAnchor entities: - - uid: 15979 + - uid: 26382 components: - type: Transform - pos: -20.5,-74.5 + pos: -19.5,-82.5 parent: 8364 - proto: StationEfficiencyCircuitBoard entities: - uid: 27536 components: - type: Transform - pos: -4.631007,-12.460042 + pos: 2.5469437,-23.688269 parent: 8364 - proto: StationMap entities: @@ -146849,16 +150376,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,7.5 parent: 8364 - - uid: 11158 - components: - - type: Transform - pos: 64.5,7.5 - parent: 8364 - - uid: 11159 - components: - - type: Transform - pos: 64.5,6.5 - parent: 8364 - uid: 13512 components: - type: Transform @@ -146959,6 +150476,12 @@ entities: rot: 3.141592653589793 rad pos: 65.5,-4.5 parent: 8364 + - uid: 24977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.522638,-77.22648 + parent: 8364 - uid: 26417 components: - type: Transform @@ -147109,6 +150632,16 @@ entities: - type: Transform pos: 9.5,-42.5 parent: 8364 + - uid: 4385 + components: + - type: Transform + pos: 26.5,-78.5 + parent: 8364 + - uid: 4624 + components: + - type: Transform + pos: 26.5,-77.5 + parent: 8364 - uid: 21424 components: - type: Transform @@ -147183,19 +150716,19 @@ entities: loadingNetworkDemand: 260.0401 currentSupply: 260.0401 supplyRampPosition: 260.0401 - - uid: 5893 + - uid: 4458 components: - type: MetaData - name: Command Substation + name: Gravity & Anchor Substation - type: Transform - pos: -10.5,-19.5 + pos: -20.5,-72.5 parent: 8364 - - uid: 6246 + - uid: 5893 components: - type: MetaData - name: Gravity Substation + name: Command Substation - type: Transform - pos: 1.5,-24.5 + pos: -10.5,-19.5 parent: 8364 - uid: 6715 components: @@ -147260,10 +150793,12 @@ entities: loadingNetworkDemand: 225.0009 currentSupply: 225.0009 supplyRampPosition: 225.0009 - - uid: 21385 + - uid: 24940 components: + - type: MetaData + name: AI Core Substation - type: Transform - pos: 24.5,-112.5 + pos: 0.5,-11.5 parent: 8364 - uid: 25700 components: @@ -147284,11 +150819,6 @@ entities: - type: Transform pos: 8.5,-78.5 parent: 8364 - - uid: 26963 - components: - - type: Transform - pos: 34.5,-89.5 - parent: 8364 - proto: SubstationMachineCircuitboard entities: - uid: 12456 @@ -147472,17 +151002,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Vault - - uid: 298 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-23.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Office - uid: 299 components: - type: Transform @@ -147559,28 +151078,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Drone Storage - - uid: 16635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Upload - - uid: 16712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-16.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Tunnel - uid: 17153 components: - type: Transform @@ -147614,212 +151111,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: EVA Supply - - uid: 21763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Grav Gen - - uid: 26849 - components: - - type: Transform - pos: 29.5,-81.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Airlock - - uid: 26852 - components: - - type: Transform - pos: 29.5,-87.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Monitor Station - - uid: 26875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-90.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Entrance - - uid: 26876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-92.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Closet - - uid: 26877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-92.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Power - - uid: 26878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-99.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Ext NW - - uid: 27197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-99.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Ext NE - - uid: 27198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-112.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Core E - - uid: 27199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-112.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Core W - - uid: 27200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-105.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Core Door - - uid: 27202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-100.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Walkup - - uid: 27203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-119.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Ext SE - - uid: 27204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-119.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Ext SW - - uid: 27205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-112.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Ext W - - uid: 27206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-112.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Ext E - - uid: 27207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-84.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Closet - - uid: 27208 - components: - - type: Transform - pos: 24.5,-86.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Ext N - - uid: 27236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-85.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Ext - uid: 27657 components: - type: Transform @@ -147831,62 +151122,39 @@ entities: - SurveillanceCameraCommand nameSet: True id: Show Room - - uid: 27879 + - uid: 28199 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-68.5 + pos: -1.5,-17.5 parent: 8364 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Chube - - uid: 27880 + id: AI Core - South + - uid: 28200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-68.5 + rot: 1.5707963267948966 rad + pos: 1.5,-22.5 parent: 8364 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Chube - - uid: 27881 + id: AI Upload + - uid: 28201 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-68.5 + pos: -1.5,-26.5 parent: 8364 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Chube - - uid: 27884 + id: AI Entrance Airlock + - uid: 28202 components: - type: Transform - pos: 28.5,-115.5 + rot: 3.141592653589793 rad + pos: 1.5,-11.5 parent: 8364 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: AI Core Core S + id: AI Core - North - proto: SurveillanceCameraEngineering entities: - - uid: 101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-68.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES Bank - uid: 122 components: - type: Transform @@ -147920,6 +151188,14 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Canister Storage + - uid: 7216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-81.5 + parent: 8364 + - type: SurveillanceCamera + id: Station Anchor - uid: 14221 components: - type: Transform @@ -147973,17 +151249,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: 'Solars SW ' - - uid: 16625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-60.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Solars SW Airlock - uid: 16802 components: - type: Transform @@ -148016,28 +151281,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Lobby - - uid: 16983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-75.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG East - - uid: 17072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-76.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG West - uid: 17382 components: - type: Transform @@ -148049,17 +151292,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Telecomms - - uid: 17426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-72.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Anchor Room - uid: 17692 components: - type: Transform @@ -148082,6 +151314,14 @@ entities: - SurveillanceCameraEngineering nameSet: True id: AME Room + - uid: 19205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-62.5 + parent: 8364 + - type: SurveillanceCamera + id: Solars SW Door - uid: 21346 components: - type: Transform @@ -148200,78 +151440,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmo Tank 4 - - uid: 21364 - components: - - type: Transform - pos: 21.5,-66.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmo Tank Air - - uid: 21365 - components: - - type: Transform - pos: 17.5,-66.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmo Tank Oxy - - uid: 21366 - components: - - type: Transform - pos: 13.5,-66.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmo Tank Nitro - - uid: 21367 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-78.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Cage Airlock - - uid: 21368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-80.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Cage North - - uid: 21370 - components: - - type: Transform - pos: 13.5,-81.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Teg Burn Chamber - - uid: 21371 - components: - - type: Transform - pos: 25.5,-74.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Teg cooling loop - uid: 22987 components: - type: Transform @@ -148294,6 +151462,14 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Front Desk + - uid: 26589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-69.5 + parent: 8364 + - type: SurveillanceCamera + id: Solars SE Door - uid: 26613 components: - type: Transform @@ -148305,6 +151481,13 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Break Room + - uid: 27289 + components: + - type: MetaData + name: Gravity Generator + - type: Transform + pos: -24.5,-77.5 + parent: 8364 - uid: 27420 components: - type: Transform @@ -148459,17 +151642,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Bar - - uid: 291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Bathroom - uid: 292 components: - type: Transform @@ -148502,17 +151674,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Gameroom - - uid: 16777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-29.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Grav - uid: 16778 components: - type: Transform @@ -148655,17 +151816,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Closet - - uid: 16973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-10.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Hall Office - uid: 16974 components: - type: Transform @@ -148999,6 +152149,14 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Library + - uid: 28203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-29.5 + parent: 8364 + - type: SurveillanceCamera + id: Hall Outside AI - proto: SurveillanceCameraMedical entities: - uid: 234 @@ -149043,17 +152201,6 @@ entities: - SurveillanceCameraMedical nameSet: True id: Medbay Storage - - uid: 279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-27.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Emergency Room - uid: 280 components: - type: Transform @@ -149174,6 +152321,14 @@ entities: - SurveillanceCameraMedical nameSet: True id: Dissection + - uid: 24909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-27.5 + parent: 8364 + - type: SurveillanceCamera + id: Emergency Room - uid: 27201 components: - type: Transform @@ -149327,17 +152482,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Toxins - - uid: 226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-33.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: RD's Room - uid: 227 components: - type: Transform @@ -149391,6 +152535,21 @@ entities: - SurveillanceCameraScience nameSet: True id: Sci Inside + - uid: 27001 + components: + - type: Transform + pos: 72.5,-37.5 + parent: 8364 + - type: SurveillanceCamera + id: RD's Room + - uid: 27002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-20.5 + parent: 8364 + - type: SurveillanceCamera + id: Robotics - uid: 27219 components: - type: Transform @@ -149555,17 +152714,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Armory Exterior - - uid: 233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-20.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Robotics - uid: 293 components: - type: Transform @@ -149926,6 +153074,13 @@ entities: - SurveillanceCameraService nameSet: True id: Botany Backroom + - uid: 27000 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 8364 + - type: SurveillanceCamera + id: Newsroom - uid: 27582 components: - type: Transform @@ -150016,12 +153171,10 @@ entities: - uid: 16786 components: - type: Transform - pos: -30.5,-16.5 + rot: 1.5707963267948966 rad + pos: -29.5,-13.5 parent: 8364 - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True id: Cargo Bay Closet - uid: 16787 components: @@ -150052,6 +153205,26 @@ entities: - type: Transform pos: -15.5,-55.5 parent: 8364 +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 27860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 8364 + - type: SurveillanceCamera + id: Newsroom +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 10703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-10.5 + parent: 8364 + - type: SurveillanceCamera + id: Field Camera - proto: Syringe entities: - uid: 4594 @@ -150070,26 +153243,6 @@ entities: tags: [] - proto: Table entities: - - uid: 151 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 8364 - - uid: 662 - components: - - type: Transform - pos: 27.5,-83.5 - parent: 8364 - - uid: 688 - components: - - type: Transform - pos: 26.5,-86.5 - parent: 8364 - - uid: 701 - components: - - type: Transform - pos: 30.5,-87.5 - parent: 8364 - uid: 1499 components: - type: Transform @@ -150165,11 +153318,6 @@ entities: - type: Transform pos: 18.5,-17.5 parent: 8364 - - uid: 3281 - components: - - type: Transform - pos: -4.5,-14.5 - parent: 8364 - uid: 3687 components: - type: Transform @@ -150246,16 +153394,6 @@ entities: - type: Transform pos: 4.5,11.5 parent: 8364 - - uid: 5729 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 8364 - - uid: 5730 - components: - - type: Transform - pos: 3.5,-14.5 - parent: 8364 - uid: 5741 components: - type: Transform @@ -150366,11 +153504,6 @@ entities: - type: Transform pos: 37.5,-16.5 parent: 8364 - - uid: 8160 - components: - - type: Transform - pos: 3.5,-12.5 - parent: 8364 - uid: 8443 components: - type: Transform @@ -150857,11 +153990,6 @@ entities: - type: Transform pos: -35.5,-31.5 parent: 8364 - - uid: 14920 - components: - - type: Transform - pos: -4.5,-11.5 - parent: 8364 - uid: 14946 components: - type: Transform @@ -150932,11 +154060,6 @@ entities: - type: Transform pos: -31.5,-31.5 parent: 8364 - - uid: 15338 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 8364 - uid: 15420 components: - type: Transform @@ -151139,11 +154262,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-54.5 parent: 8364 - - uid: 17061 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 8364 - uid: 17146 components: - type: Transform @@ -151550,11 +154668,6 @@ entities: - type: Transform pos: 6.5,32.5 parent: 8364 - - uid: 22553 - components: - - type: Transform - pos: -30.5,-18.5 - parent: 8364 - uid: 22585 components: - type: Transform @@ -151591,6 +154704,16 @@ entities: - type: Transform pos: 6.5,-61.5 parent: 8364 + - uid: 23415 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 8364 + - uid: 25826 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 8364 - uid: 25874 components: - type: Transform @@ -151651,16 +154774,6 @@ entities: - type: Transform pos: 59.5,-39.5 parent: 8364 - - uid: 27191 - components: - - type: Transform - pos: 32.5,-88.5 - parent: 8364 - - uid: 27192 - components: - - type: Transform - pos: 33.5,-88.5 - parent: 8364 - uid: 27376 components: - type: Transform @@ -152052,16 +155165,6 @@ entities: parent: 8364 - proto: TableReinforced entities: - - uid: 828 - components: - - type: Transform - pos: 26.5,-105.5 - parent: 8364 - - uid: 834 - components: - - type: Transform - pos: 26.5,-106.5 - parent: 8364 - uid: 1610 components: - type: Transform @@ -152449,6 +155552,11 @@ entities: - type: Transform pos: 2.5,-43.5 parent: 8364 + - uid: 25217 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 8364 - uid: 26827 components: - type: Transform @@ -152469,6 +155577,21 @@ entities: - type: Transform pos: -10.5,3.5 parent: 8364 + - uid: 26962 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 8364 + - uid: 27825 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 8364 + - uid: 27828 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 8364 - proto: TableReinforcedGlass entities: - uid: 3167 @@ -152523,11 +155646,21 @@ entities: - type: Transform pos: 18.5,-6.5 parent: 8364 + - uid: 3818 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 8364 - uid: 4077 components: - type: Transform pos: -9.5,-15.5 parent: 8364 + - uid: 4566 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 8364 - uid: 5333 components: - type: Transform @@ -152608,11 +155741,29 @@ entities: - type: Transform pos: -11.5,-21.5 parent: 8364 + - uid: 5789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 8364 + - uid: 5827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 8364 - uid: 5867 components: - type: Transform pos: -9.5,-27.5 parent: 8364 + - uid: 6123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 8364 - uid: 6389 components: - type: Transform @@ -152703,6 +155854,11 @@ entities: - type: Transform pos: 12.5,-27.5 parent: 8364 + - uid: 7087 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 8364 - uid: 8392 components: - type: Transform @@ -152823,11 +155979,6 @@ entities: - type: Transform pos: 19.5,-6.5 parent: 8364 - - uid: 10548 - components: - - type: Transform - pos: 57.5,-7.5 - parent: 8364 - uid: 10661 components: - type: Transform @@ -153038,26 +156189,6 @@ entities: - type: Transform pos: -9.5,-14.5 parent: 8364 - - uid: 14090 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 8364 - - uid: 14109 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 8364 - - uid: 14112 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 8364 - - uid: 14124 - components: - - type: Transform - pos: -22.5,-11.5 - parent: 8364 - uid: 14347 components: - type: Transform @@ -153173,6 +156304,12 @@ entities: - type: Transform pos: -10.5,-13.5 parent: 8364 + - uid: 23219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 8364 - uid: 25679 components: - type: Transform @@ -153234,26 +156371,26 @@ entities: parent: 8364 - proto: TegCenter entities: - - uid: 5009 + - uid: 4052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-75.5 + rot: 1.5707963267948966 rad + pos: 18.5,-76.5 parent: 8364 - proto: TegCirculator entities: - - uid: 5010 + - uid: 27023 components: - type: Transform - pos: 16.5,-75.5 + rot: 3.141592653589793 rad + pos: 17.5,-76.5 parent: 8364 - type: PointLight color: '#FF3300FF' - - uid: 27658 + - uid: 27025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-75.5 + pos: 19.5,-76.5 parent: 8364 - type: PointLight color: '#FF3300FF' @@ -153264,11 +156401,6 @@ entities: - type: Transform pos: 53.5,-31.5 parent: 8364 - - uid: 16619 - components: - - type: Transform - pos: 32.5,-112.5 - parent: 8364 - uid: 27333 components: - type: Transform @@ -153490,19 +156622,19 @@ entities: - type: Transform pos: 5.5,-79.5 parent: 8364 -- proto: Thruster +- proto: ThrusterUnanchored entities: - - uid: 12429 + - uid: 27027 components: - type: Transform pos: -67.5,15.5 parent: 8364 - - uid: 12458 + - uid: 27028 components: - type: Transform pos: -67.5,13.5 parent: 8364 - - uid: 12459 + - uid: 27029 components: - type: Transform pos: -67.5,14.5 @@ -153659,21 +156791,11 @@ entities: - type: Transform pos: 49.5,16.5 parent: 8364 - - uid: 11751 - components: - - type: Transform - pos: 48.5,11.5 - parent: 8364 - uid: 12254 components: - type: Transform pos: -46.5,2.5 parent: 8364 - - uid: 13847 - components: - - type: Transform - pos: -45.5,22.5 - parent: 8364 - uid: 15977 components: - type: Transform @@ -153693,7 +156815,7 @@ entities: - uid: 21227 components: - type: Transform - pos: 61.5,-19.5 + pos: 61.706764,-19.34575 parent: 8364 - uid: 21234 components: @@ -153710,11 +156832,6 @@ entities: - type: Transform pos: -3.614934,9.66169 parent: 8364 - - uid: 27194 - components: - - type: Transform - pos: 34.60652,-90.48169 - parent: 8364 - proto: ToolboxEmergency entities: - uid: 14294 @@ -153775,11 +156892,6 @@ entities: - type: Transform pos: 46.5,13.5 parent: 8364 - - uid: 11750 - components: - - type: Transform - pos: 49.5,11.5 - parent: 8364 - uid: 12252 components: - type: Transform @@ -153800,11 +156912,6 @@ entities: - type: Transform pos: -28.5,-34.5 parent: 8364 - - uid: 15975 - components: - - type: Transform - pos: -34.5,-63.5 - parent: 8364 - uid: 15976 components: - type: Transform @@ -153840,11 +156947,6 @@ entities: - type: Transform pos: -12.5005455,3.5448246 parent: 8364 - - uid: 27193 - components: - - type: Transform - pos: 34.48152,-90.32544 - parent: 8364 - uid: 27401 components: - type: Transform @@ -153855,6 +156957,13 @@ entities: - type: Transform pos: 7.435697,-65.321434 parent: 8364 +- proto: ToyAi + entities: + - uid: 5871 + components: + - type: Transform + pos: 11.47881,-68.392944 + parent: 8364 - proto: ToyAmongPequeno entities: - uid: 27450 @@ -153976,11 +157085,6 @@ entities: parent: 8364 - proto: trayScanner entities: - - uid: 2389 - components: - - type: Transform - pos: 51.56124,-43.44272 - parent: 8364 - uid: 12266 components: - type: Transform @@ -154215,6 +157319,18 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,2.5 parent: 8364 +- proto: Urn + entities: + - uid: 10873 + components: + - type: Transform + pos: 74.51828,2.7055633 + parent: 8364 + - uid: 10874 + components: + - type: Transform + pos: 74.51828,1.7257164 + parent: 8364 - proto: Vaccinator entities: - uid: 18702 @@ -154380,7 +157496,7 @@ entities: - type: Transform pos: 21.5,15.5 parent: 8364 - - uid: 16208 + - uid: 25880 components: - type: Transform pos: -38.5,-4.5 @@ -154429,11 +157545,6 @@ entities: - type: Transform pos: 7.5,0.5 parent: 8364 - - uid: 14564 - components: - - type: Transform - pos: -18.5,-10.5 - parent: 8364 - proto: VendingMachineCondiments entities: - uid: 6958 @@ -154737,18 +157848,6 @@ entities: - type: Transform pos: 34.5,-33.5 parent: 8364 -- proto: VendingMachineWinter - entities: - - uid: 2826 - components: - - type: Transform - pos: -39.5,-4.5 - parent: 8364 - - uid: 27533 - components: - - type: Transform - pos: 22.5,15.5 - parent: 8364 - proto: VendingMachineYouTool entities: - uid: 12245 @@ -155007,6 +158106,12 @@ entities: - type: Transform pos: -4.5,4.5 parent: 8364 + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-11.5 + parent: 8364 - uid: 178 components: - type: Transform @@ -155288,11 +158393,6 @@ entities: rot: -1.5707963267948966 rad pos: -76.5,-2.5 parent: 8364 - - uid: 570 - components: - - type: Transform - pos: 30.5,-83.5 - parent: 8364 - uid: 585 components: - type: Transform @@ -155319,11 +158419,6 @@ entities: - type: Transform pos: -65.5,7.5 parent: 8364 - - uid: 591 - components: - - type: Transform - pos: 34.5,-84.5 - parent: 8364 - uid: 597 components: - type: Transform @@ -155478,16 +158573,6 @@ entities: - type: Transform pos: 45.5,16.5 parent: 8364 - - uid: 738 - components: - - type: Transform - pos: 30.5,-92.5 - parent: 8364 - - uid: 739 - components: - - type: Transform - pos: 26.5,-92.5 - parent: 8364 - uid: 740 components: - type: Transform @@ -155523,6 +158608,12 @@ entities: - type: Transform pos: -26.5,11.5 parent: 8364 + - uid: 854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-73.5 + parent: 8364 - uid: 875 components: - type: Transform @@ -155593,6 +158684,12 @@ entities: - type: Transform pos: 50.5,18.5 parent: 8364 + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-16.5 + parent: 8364 - uid: 925 components: - type: Transform @@ -157719,6 +160816,11 @@ entities: - type: Transform pos: 75.5,-26.5 parent: 8364 + - uid: 2389 + components: + - type: Transform + pos: 27.5,-82.5 + parent: 8364 - uid: 2408 components: - type: Transform @@ -157927,7 +161029,7 @@ entities: - uid: 2832 components: - type: Transform - pos: -1.5,-17.5 + pos: 24.5,-84.5 parent: 8364 - uid: 2862 components: @@ -159086,45 +162188,17 @@ entities: - type: Transform pos: -22.5,-72.5 parent: 8364 - - uid: 3601 - components: - - type: Transform - pos: -21.5,-72.5 - parent: 8364 - - uid: 3602 - components: - - type: Transform - pos: -21.5,-71.5 - parent: 8364 - - uid: 3604 - components: - - type: Transform - pos: -20.5,-71.5 - parent: 8364 - - uid: 3605 - components: - - type: Transform - pos: -19.5,-76.5 - parent: 8364 - - uid: 3606 - components: - - type: Transform - pos: -18.5,-71.5 - parent: 8364 - uid: 3610 components: - type: Transform - pos: -21.5,-67.5 + rot: 3.141592653589793 rad + pos: -4.5,-15.5 parent: 8364 - uid: 3612 components: - type: Transform - pos: -21.5,-66.5 - parent: 8364 - - uid: 3613 - components: - - type: Transform - pos: -21.5,-65.5 + rot: 3.141592653589793 rad + pos: -4.5,-17.5 parent: 8364 - uid: 3614 components: @@ -159169,12 +162243,14 @@ entities: - uid: 3659 components: - type: Transform - pos: -22.5,-74.5 + rot: 3.141592653589793 rad + pos: 3.5,-17.5 parent: 8364 - uid: 3660 components: - type: Transform - pos: -22.5,-76.5 + rot: 3.141592653589793 rad + pos: -4.5,-16.5 parent: 8364 - uid: 3664 components: @@ -159199,37 +162275,24 @@ entities: - uid: 3670 components: - type: Transform - pos: -22.5,-73.5 - parent: 8364 - - uid: 3671 - components: - - type: Transform - pos: -18.5,-72.5 - parent: 8364 - - uid: 3672 - components: - - type: Transform - pos: -18.5,-73.5 - parent: 8364 - - uid: 3673 - components: - - type: Transform - pos: -22.5,-75.5 + rot: 3.141592653589793 rad + pos: 3.5,-16.5 parent: 8364 - uid: 3688 components: - type: Transform pos: 84.5,-60.5 parent: 8364 - - uid: 3698 + - uid: 3695 components: - type: Transform - pos: 0.5,-65.5 + rot: 3.141592653589793 rad + pos: 3.5,-15.5 parent: 8364 - - uid: 3701 + - uid: 3698 components: - type: Transform - pos: 12.5,-82.5 + pos: 0.5,-65.5 parent: 8364 - uid: 3706 components: @@ -159381,18 +162444,6 @@ entities: - type: Transform pos: -9.5,-77.5 parent: 8364 - - uid: 3824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-82.5 - parent: 8364 - - uid: 3825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-85.5 - parent: 8364 - uid: 3830 components: - type: Transform @@ -159441,27 +162492,28 @@ entities: - uid: 3854 components: - type: Transform - pos: 20.5,-79.5 + rot: 3.141592653589793 rad + pos: 3.5,-12.5 parent: 8364 - uid: 3859 components: - type: Transform pos: 7.5,-79.5 parent: 8364 - - uid: 3867 + - uid: 3865 components: - type: Transform - pos: -16.5,-71.5 + pos: -1.5,-25.5 parent: 8364 - - uid: 3870 + - uid: 3867 components: - type: Transform - pos: 20.5,-70.5 + pos: -4.5,-25.5 parent: 8364 - - uid: 3873 + - uid: 3870 components: - type: Transform - pos: 20.5,-80.5 + pos: 20.5,-70.5 parent: 8364 - uid: 3895 components: @@ -159650,11 +162702,21 @@ entities: - type: Transform pos: 67.5,-70.5 parent: 8364 + - uid: 4005 + components: + - type: Transform + pos: 24.5,-83.5 + parent: 8364 - uid: 4028 components: - type: Transform pos: 23.5,-59.5 parent: 8364 + - uid: 4031 + components: + - type: Transform + pos: 17.5,-82.5 + parent: 8364 - uid: 4033 components: - type: Transform @@ -159678,7 +162740,7 @@ entities: - uid: 4041 components: - type: Transform - pos: -17.5,-71.5 + pos: 19.5,-83.5 parent: 8364 - uid: 4043 components: @@ -159690,11 +162752,6 @@ entities: - type: Transform pos: 10.5,-50.5 parent: 8364 - - uid: 4045 - components: - - type: Transform - pos: 20.5,-81.5 - parent: 8364 - uid: 4053 components: - type: Transform @@ -159713,14 +162770,7 @@ entities: - uid: 4105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-87.5 - parent: 8364 - - uid: 4110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-87.5 + pos: 26.5,-82.5 parent: 8364 - uid: 4114 components: @@ -159832,12 +162882,6 @@ entities: - type: Transform pos: 15.5,-67.5 parent: 8364 - - uid: 4139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-87.5 - parent: 8364 - uid: 4142 components: - type: Transform @@ -160048,6 +163092,24 @@ entities: - type: Transform pos: 26.5,-45.5 parent: 8364 + - uid: 4206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-13.5 + parent: 8364 + - uid: 4208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 8364 + - uid: 4209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-16.5 + parent: 8364 - uid: 4216 components: - type: Transform @@ -160088,6 +163150,11 @@ entities: - type: Transform pos: 73.5,-65.5 parent: 8364 + - uid: 4224 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 8364 - uid: 4225 components: - type: Transform @@ -160103,67 +163170,6 @@ entities: - type: Transform pos: 78.5,-65.5 parent: 8364 - - uid: 4229 - components: - - type: Transform - pos: 25.5,-87.5 - parent: 8364 - - uid: 4230 - components: - - type: Transform - pos: 25.5,-88.5 - parent: 8364 - - uid: 4231 - components: - - type: Transform - pos: 26.5,-88.5 - parent: 8364 - - uid: 4232 - components: - - type: Transform - pos: 27.5,-88.5 - parent: 8364 - - uid: 4233 - components: - - type: Transform - pos: 29.5,-88.5 - parent: 8364 - - uid: 4234 - components: - - type: Transform - pos: 30.5,-88.5 - parent: 8364 - - uid: 4235 - components: - - type: Transform - pos: 31.5,-88.5 - parent: 8364 - - uid: 4236 - components: - - type: Transform - pos: 31.5,-87.5 - parent: 8364 - - uid: 4237 - components: - - type: Transform - pos: 32.5,-87.5 - parent: 8364 - - uid: 4238 - components: - - type: Transform - pos: 33.5,-87.5 - parent: 8364 - - uid: 4239 - components: - - type: Transform - pos: 34.5,-87.5 - parent: 8364 - - uid: 4241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-87.5 - parent: 8364 - uid: 4243 components: - type: Transform @@ -160174,936 +163180,49 @@ entities: - type: Transform pos: 64.5,-58.5 parent: 8364 - - uid: 4247 - components: - - type: Transform - pos: 22.5,-88.5 - parent: 8364 - - uid: 4248 - components: - - type: Transform - pos: 22.5,-87.5 - parent: 8364 - - uid: 4249 - components: - - type: Transform - pos: 23.5,-87.5 - parent: 8364 - - uid: 4250 - components: - - type: Transform - pos: 24.5,-87.5 - parent: 8364 - - uid: 4251 - components: - - type: Transform - pos: 21.5,-89.5 - parent: 8364 - - uid: 4252 - components: - - type: Transform - pos: 21.5,-90.5 - parent: 8364 - - uid: 4253 - components: - - type: Transform - pos: 21.5,-91.5 - parent: 8364 - - uid: 4255 - components: - - type: Transform - pos: 26.5,-94.5 - parent: 8364 - - uid: 4256 - components: - - type: Transform - pos: 22.5,-93.5 - parent: 8364 - - uid: 4258 - components: - - type: Transform - pos: 22.5,-94.5 - parent: 8364 - - uid: 4259 - components: - - type: Transform - pos: 21.5,-92.5 - parent: 8364 - - uid: 4260 - components: - - type: Transform - pos: 21.5,-93.5 - parent: 8364 - - uid: 4261 - components: - - type: Transform - pos: 26.5,-90.5 - parent: 8364 - - uid: 4262 - components: - - type: Transform - pos: 26.5,-89.5 - parent: 8364 - - uid: 4263 - components: - - type: Transform - pos: 26.5,-93.5 - parent: 8364 - - uid: 4264 - components: - - type: Transform - pos: 21.5,-88.5 - parent: 8364 - - uid: 4265 - components: - - type: Transform - pos: 34.5,-88.5 - parent: 8364 - - uid: 4266 - components: - - type: Transform - pos: 35.5,-88.5 - parent: 8364 - - uid: 4267 - components: - - type: Transform - pos: 35.5,-89.5 - parent: 8364 - - uid: 4268 - components: - - type: Transform - pos: 35.5,-90.5 - parent: 8364 - - uid: 4270 - components: - - type: Transform - pos: 35.5,-91.5 - parent: 8364 - - uid: 4271 - components: - - type: Transform - pos: 35.5,-92.5 - parent: 8364 - - uid: 4272 - components: - - type: Transform - pos: 35.5,-93.5 - parent: 8364 - - uid: 4273 - components: - - type: Transform - pos: 34.5,-93.5 - parent: 8364 - - uid: 4274 - components: - - type: Transform - pos: 34.5,-94.5 - parent: 8364 - - uid: 4277 - components: - - type: Transform - pos: 30.5,-89.5 - parent: 8364 - - uid: 4278 - components: - - type: Transform - pos: 30.5,-90.5 - parent: 8364 - - uid: 4279 - components: - - type: Transform - pos: 30.5,-94.5 - parent: 8364 - - uid: 4280 - components: - - type: Transform - pos: 30.5,-93.5 - parent: 8364 - - uid: 4281 - components: - - type: Transform - pos: 29.5,-94.5 - parent: 8364 - - uid: 4282 - components: - - type: Transform - pos: 27.5,-94.5 - parent: 8364 - - uid: 4283 - components: - - type: Transform - pos: 32.5,-118.5 - parent: 8364 - - uid: 4284 - components: - - type: Transform - pos: 32.5,-117.5 - parent: 8364 - - uid: 4285 - components: - - type: Transform - pos: 32.5,-116.5 - parent: 8364 - - uid: 4286 - components: - - type: Transform - pos: 31.5,-118.5 - parent: 8364 - - uid: 4287 - components: - - type: Transform - pos: 31.5,-117.5 - parent: 8364 - - uid: 4288 - components: - - type: Transform - pos: 31.5,-116.5 - parent: 8364 - - uid: 4289 - components: - - type: Transform - pos: 30.5,-118.5 - parent: 8364 - - uid: 4290 - components: - - type: Transform - pos: 30.5,-117.5 - parent: 8364 - - uid: 4291 - components: - - type: Transform - pos: 30.5,-116.5 - parent: 8364 - - uid: 4292 - components: - - type: Transform - pos: 29.5,-118.5 - parent: 8364 - - uid: 4293 - components: - - type: Transform - pos: 29.5,-117.5 - parent: 8364 - - uid: 4294 - components: - - type: Transform - pos: 29.5,-116.5 - parent: 8364 - - uid: 4295 - components: - - type: Transform - pos: 28.5,-118.5 - parent: 8364 - - uid: 4296 - components: - - type: Transform - pos: 28.5,-117.5 - parent: 8364 - - uid: 4297 - components: - - type: Transform - pos: 28.5,-116.5 - parent: 8364 - - uid: 4298 - components: - - type: Transform - pos: 27.5,-118.5 - parent: 8364 - - uid: 4299 - components: - - type: Transform - pos: 27.5,-117.5 - parent: 8364 - - uid: 4300 - components: - - type: Transform - pos: 27.5,-116.5 - parent: 8364 - - uid: 4301 - components: - - type: Transform - pos: 26.5,-118.5 - parent: 8364 - - uid: 4302 - components: - - type: Transform - pos: 26.5,-117.5 - parent: 8364 - - uid: 4303 - components: - - type: Transform - pos: 26.5,-116.5 - parent: 8364 - - uid: 4304 - components: - - type: Transform - pos: 25.5,-118.5 - parent: 8364 - - uid: 4305 - components: - - type: Transform - pos: 25.5,-117.5 - parent: 8364 - - uid: 4306 - components: - - type: Transform - pos: 25.5,-116.5 - parent: 8364 - - uid: 4307 - components: - - type: Transform - pos: 24.5,-118.5 - parent: 8364 - - uid: 4308 - components: - - type: Transform - pos: 24.5,-117.5 - parent: 8364 - - uid: 4309 - components: - - type: Transform - pos: 24.5,-116.5 - parent: 8364 - - uid: 4310 - components: - - type: Transform - pos: 33.5,-117.5 - parent: 8364 - - uid: 4311 - components: - - type: Transform - pos: 33.5,-116.5 - parent: 8364 - - uid: 4312 - components: - - type: Transform - pos: 33.5,-115.5 - parent: 8364 - - uid: 4313 - components: - - type: Transform - pos: 33.5,-114.5 - parent: 8364 - - uid: 4314 - components: - - type: Transform - pos: 33.5,-113.5 - parent: 8364 - - uid: 4315 - components: - - type: Transform - pos: 33.5,-112.5 - parent: 8364 - - uid: 4316 - components: - - type: Transform - pos: 33.5,-111.5 - parent: 8364 - - uid: 4317 - components: - - type: Transform - pos: 33.5,-110.5 - parent: 8364 - - uid: 4318 - components: - - type: Transform - pos: 33.5,-109.5 - parent: 8364 - - uid: 4319 - components: - - type: Transform - pos: 34.5,-116.5 - parent: 8364 - - uid: 4320 - components: - - type: Transform - pos: 34.5,-115.5 - parent: 8364 - - uid: 4321 - components: - - type: Transform - pos: 34.5,-114.5 - parent: 8364 - - uid: 4322 + - uid: 4276 components: - type: Transform - pos: 34.5,-113.5 + rot: 3.141592653589793 rad + pos: -26.5,-78.5 parent: 8364 - uid: 4323 components: - type: Transform - pos: 34.5,-112.5 + rot: 1.5707963267948966 rad + pos: -27.5,-74.5 parent: 8364 - uid: 4324 components: - type: Transform - pos: 34.5,-111.5 - parent: 8364 - - uid: 4325 - components: - - type: Transform - pos: 34.5,-110.5 + rot: 1.5707963267948966 rad + pos: -27.5,-77.5 parent: 8364 - uid: 4326 components: - type: Transform - pos: 34.5,-109.5 - parent: 8364 - - uid: 4327 - components: - - type: Transform - pos: 34.5,-108.5 - parent: 8364 - - uid: 4328 - components: - - type: Transform - pos: 34.5,-107.5 - parent: 8364 - - uid: 4329 - components: - - type: Transform - pos: 34.5,-106.5 - parent: 8364 - - uid: 4330 - components: - - type: Transform - pos: 34.5,-105.5 - parent: 8364 - - uid: 4331 - components: - - type: Transform - pos: 34.5,-104.5 - parent: 8364 - - uid: 4332 - components: - - type: Transform - pos: 34.5,-103.5 - parent: 8364 - - uid: 4333 - components: - - type: Transform - pos: 34.5,-102.5 - parent: 8364 - - uid: 4334 - components: - - type: Transform - pos: 33.5,-102.5 - parent: 8364 - - uid: 4335 - components: - - type: Transform - pos: 33.5,-101.5 - parent: 8364 - - uid: 4336 - components: - - type: Transform - pos: 33.5,-100.5 - parent: 8364 - - uid: 4337 - components: - - type: Transform - pos: 33.5,-99.5 - parent: 8364 - - uid: 4338 - components: - - type: Transform - pos: 33.5,-98.5 - parent: 8364 - - uid: 4339 - components: - - type: Transform - pos: 33.5,-97.5 - parent: 8364 - - uid: 4340 - components: - - type: Transform - pos: 34.5,-97.5 - parent: 8364 - - uid: 4341 - components: - - type: Transform - pos: 34.5,-96.5 - parent: 8364 - - uid: 4342 - components: - - type: Transform - pos: 34.5,-95.5 - parent: 8364 - - uid: 4343 - components: - - type: Transform - pos: 32.5,-115.5 - parent: 8364 - - uid: 4344 - components: - - type: Transform - pos: 32.5,-114.5 - parent: 8364 - - uid: 4345 - components: - - type: Transform - pos: 32.5,-113.5 - parent: 8364 - - uid: 4346 - components: - - type: Transform - pos: 24.5,-115.5 - parent: 8364 - - uid: 4347 - components: - - type: Transform - pos: 24.5,-114.5 - parent: 8364 - - uid: 4348 - components: - - type: Transform - pos: 24.5,-113.5 - parent: 8364 - - uid: 4349 - components: - - type: Transform - pos: 23.5,-117.5 - parent: 8364 - - uid: 4350 - components: - - type: Transform - pos: 23.5,-116.5 - parent: 8364 - - uid: 4351 - components: - - type: Transform - pos: 23.5,-115.5 - parent: 8364 - - uid: 4352 - components: - - type: Transform - pos: 23.5,-114.5 - parent: 8364 - - uid: 4353 - components: - - type: Transform - pos: 23.5,-113.5 - parent: 8364 - - uid: 4354 - components: - - type: Transform - pos: 23.5,-112.5 - parent: 8364 - - uid: 4355 - components: - - type: Transform - pos: 23.5,-111.5 - parent: 8364 - - uid: 4356 - components: - - type: Transform - pos: 23.5,-110.5 - parent: 8364 - - uid: 4357 - components: - - type: Transform - pos: 23.5,-109.5 - parent: 8364 - - uid: 4358 - components: - - type: Transform - pos: 22.5,-116.5 - parent: 8364 - - uid: 4359 - components: - - type: Transform - pos: 22.5,-115.5 - parent: 8364 - - uid: 4360 - components: - - type: Transform - pos: 22.5,-114.5 - parent: 8364 - - uid: 4361 - components: - - type: Transform - pos: 22.5,-113.5 - parent: 8364 - - uid: 4362 - components: - - type: Transform - pos: 22.5,-112.5 - parent: 8364 - - uid: 4363 - components: - - type: Transform - pos: 22.5,-111.5 - parent: 8364 - - uid: 4364 - components: - - type: Transform - pos: 22.5,-110.5 - parent: 8364 - - uid: 4365 - components: - - type: Transform - pos: 22.5,-109.5 - parent: 8364 - - uid: 4366 - components: - - type: Transform - pos: 22.5,-108.5 - parent: 8364 - - uid: 4367 - components: - - type: Transform - pos: 22.5,-107.5 - parent: 8364 - - uid: 4368 - components: - - type: Transform - pos: 22.5,-106.5 - parent: 8364 - - uid: 4369 - components: - - type: Transform - pos: 22.5,-105.5 - parent: 8364 - - uid: 4370 - components: - - type: Transform - pos: 22.5,-104.5 - parent: 8364 - - uid: 4371 - components: - - type: Transform - pos: 22.5,-103.5 - parent: 8364 - - uid: 4372 - components: - - type: Transform - pos: 22.5,-102.5 - parent: 8364 - - uid: 4373 - components: - - type: Transform - pos: 23.5,-102.5 - parent: 8364 - - uid: 4374 - components: - - type: Transform - pos: 23.5,-101.5 - parent: 8364 - - uid: 4375 - components: - - type: Transform - pos: 23.5,-100.5 - parent: 8364 - - uid: 4376 - components: - - type: Transform - pos: 23.5,-99.5 - parent: 8364 - - uid: 4377 - components: - - type: Transform - pos: 23.5,-98.5 - parent: 8364 - - uid: 4378 - components: - - type: Transform - pos: 23.5,-97.5 - parent: 8364 - - uid: 4379 - components: - - type: Transform - pos: 22.5,-97.5 - parent: 8364 - - uid: 4380 - components: - - type: Transform - pos: 22.5,-96.5 - parent: 8364 - - uid: 4381 - components: - - type: Transform - pos: 22.5,-95.5 - parent: 8364 - - uid: 4382 - components: - - type: Transform - pos: 31.5,-95.5 - parent: 8364 - - uid: 4383 - components: - - type: Transform - pos: 31.5,-96.5 - parent: 8364 - - uid: 4384 - components: - - type: Transform - pos: 31.5,-97.5 - parent: 8364 - - uid: 4385 - components: - - type: Transform - pos: 31.5,-98.5 + pos: -21.5,-72.5 parent: 8364 - uid: 4386 components: - type: Transform pos: 64.5,-59.5 parent: 8364 - - uid: 4387 - components: - - type: Transform - pos: 31.5,-100.5 - parent: 8364 - - uid: 4388 - components: - - type: Transform - pos: 31.5,-101.5 - parent: 8364 - - uid: 4389 - components: - - type: Transform - pos: 31.5,-102.5 - parent: 8364 - - uid: 4390 - components: - - type: Transform - pos: 31.5,-103.5 - parent: 8364 - - uid: 4391 - components: - - type: Transform - pos: 31.5,-104.5 - parent: 8364 - - uid: 4392 - components: - - type: Transform - pos: 31.5,-105.5 - parent: 8364 - - uid: 4393 - components: - - type: Transform - pos: 31.5,-106.5 - parent: 8364 - - uid: 4394 - components: - - type: Transform - pos: 31.5,-107.5 - parent: 8364 - - uid: 4395 - components: - - type: Transform - pos: 32.5,-104.5 - parent: 8364 - - uid: 4396 - components: - - type: Transform - pos: 32.5,-105.5 - parent: 8364 - - uid: 4397 - components: - - type: Transform - pos: 32.5,-106.5 - parent: 8364 - - uid: 4398 - components: - - type: Transform - pos: 32.5,-107.5 - parent: 8364 - - uid: 4399 - components: - - type: Transform - pos: 32.5,-108.5 - parent: 8364 - - uid: 4400 - components: - - type: Transform - pos: 24.5,-104.5 - parent: 8364 - - uid: 4401 - components: - - type: Transform - pos: 24.5,-105.5 - parent: 8364 - - uid: 4402 - components: - - type: Transform - pos: 24.5,-106.5 - parent: 8364 - - uid: 4403 - components: - - type: Transform - pos: 24.5,-107.5 - parent: 8364 - - uid: 4404 - components: - - type: Transform - pos: 24.5,-108.5 - parent: 8364 - - uid: 4405 - components: - - type: Transform - pos: 25.5,-107.5 - parent: 8364 - - uid: 4406 - components: - - type: Transform - pos: 25.5,-106.5 - parent: 8364 - - uid: 4407 - components: - - type: Transform - pos: 25.5,-105.5 - parent: 8364 - - uid: 4408 - components: - - type: Transform - pos: 25.5,-104.5 - parent: 8364 - - uid: 4409 - components: - - type: Transform - pos: 25.5,-103.5 - parent: 8364 - - uid: 4410 - components: - - type: Transform - pos: 25.5,-102.5 - parent: 8364 - - uid: 4411 - components: - - type: Transform - pos: 25.5,-101.5 - parent: 8364 - - uid: 4412 - components: - - type: Transform - pos: 25.5,-100.5 - parent: 8364 - uid: 4413 components: - type: Transform pos: 59.5,-63.5 parent: 8364 - - uid: 4414 - components: - - type: Transform - pos: 25.5,-98.5 - parent: 8364 - - uid: 4415 - components: - - type: Transform - pos: 25.5,-97.5 - parent: 8364 - - uid: 4416 - components: - - type: Transform - pos: 25.5,-96.5 - parent: 8364 - - uid: 4417 - components: - - type: Transform - pos: 25.5,-95.5 - parent: 8364 - - uid: 4427 - components: - - type: Transform - pos: 30.5,-104.5 - parent: 8364 - - uid: 4428 - components: - - type: Transform - pos: 29.5,-104.5 - parent: 8364 - uid: 4429 components: - type: Transform - pos: 27.5,-104.5 + pos: 16.5,-86.5 parent: 8364 - - uid: 4432 - components: - - type: Transform - pos: 26.5,-104.5 - parent: 8364 - - uid: 4448 - components: - - type: Transform - pos: 29.5,-111.5 - parent: 8364 - - uid: 4449 - components: - - type: Transform - pos: 29.5,-112.5 - parent: 8364 - - uid: 4450 - components: - - type: Transform - pos: 29.5,-113.5 - parent: 8364 - - uid: 4451 - components: - - type: Transform - pos: 27.5,-111.5 - parent: 8364 - - uid: 4452 - components: - - type: Transform - pos: 27.5,-112.5 - parent: 8364 - - uid: 4453 - components: - - type: Transform - pos: 27.5,-113.5 - parent: 8364 - - uid: 4454 - components: - - type: Transform - pos: 28.5,-112.5 - parent: 8364 - - uid: 4462 - components: - - type: Transform - pos: 32.5,-111.5 - parent: 8364 - - uid: 4478 - components: - - type: Transform - pos: 32.5,-110.5 - parent: 8364 - - uid: 4479 - components: - - type: Transform - pos: 32.5,-109.5 - parent: 8364 - - uid: 4480 - components: - - type: Transform - pos: 24.5,-111.5 - parent: 8364 - - uid: 4481 - components: - - type: Transform - pos: 24.5,-110.5 - parent: 8364 - - uid: 4482 - components: - - type: Transform - pos: 24.5,-109.5 - parent: 8364 - - uid: 4500 - components: - - type: Transform - pos: 20.5,-82.5 - parent: 8364 - - uid: 4503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-87.5 - parent: 8364 - - uid: 4504 + - uid: 4457 components: - type: Transform - pos: 1.5,-64.5 + rot: 3.141592653589793 rad + pos: -24.5,-84.5 parent: 8364 - uid: 4505 components: @@ -161140,20 +163259,23 @@ entities: - type: Transform pos: 7.5,-76.5 parent: 8364 - - uid: 4549 + - uid: 4551 components: - type: Transform - pos: 20.5,-78.5 + rot: 3.141592653589793 rad + pos: 3.5,-11.5 parent: 8364 - - uid: 4550 + - uid: 4559 components: - type: Transform - pos: 20.5,-76.5 + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 parent: 8364 - - uid: 4551 + - uid: 4560 components: - type: Transform - pos: 20.5,-77.5 + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 parent: 8364 - uid: 4580 components: @@ -161205,46 +163327,6 @@ entities: - type: Transform pos: -20.5,-88.5 parent: 8364 - - uid: 4621 - components: - - type: Transform - pos: -20.5,-77.5 - parent: 8364 - - uid: 4622 - components: - - type: Transform - pos: -20.5,-78.5 - parent: 8364 - - uid: 4623 - components: - - type: Transform - pos: -20.5,-79.5 - parent: 8364 - - uid: 4624 - components: - - type: Transform - pos: -20.5,-80.5 - parent: 8364 - - uid: 4625 - components: - - type: Transform - pos: -20.5,-81.5 - parent: 8364 - - uid: 4626 - components: - - type: Transform - pos: -20.5,-82.5 - parent: 8364 - - uid: 4627 - components: - - type: Transform - pos: -20.5,-83.5 - parent: 8364 - - uid: 4628 - components: - - type: Transform - pos: -20.5,-76.5 - parent: 8364 - uid: 4647 components: - type: Transform @@ -161530,11 +163612,6 @@ entities: - type: Transform pos: -29.5,-75.5 parent: 8364 - - uid: 4834 - components: - - type: Transform - pos: -28.5,-74.5 - parent: 8364 - uid: 4835 components: - type: Transform @@ -161640,55 +163717,11 @@ entities: - type: Transform pos: -39.5,-42.5 parent: 8364 - - uid: 4935 - components: - - type: Transform - pos: 33.5,-83.5 - parent: 8364 - - uid: 4936 - components: - - type: Transform - pos: 32.5,-83.5 - parent: 8364 - - uid: 4937 - components: - - type: Transform - pos: 31.5,-83.5 - parent: 8364 - - uid: 4939 - components: - - type: Transform - pos: 30.5,-82.5 - parent: 8364 - - uid: 4940 - components: - - type: Transform - pos: 29.5,-82.5 - parent: 8364 - - uid: 4941 - components: - - type: Transform - pos: 27.5,-82.5 - parent: 8364 - - uid: 4942 - components: - - type: Transform - pos: 26.5,-82.5 - parent: 8364 - - uid: 4943 - components: - - type: Transform - pos: 34.5,-86.5 - parent: 8364 - uid: 4944 components: - type: Transform - pos: 34.5,-83.5 - parent: 8364 - - uid: 4953 - components: - - type: Transform - pos: 34.5,-86.5 + rot: 3.141592653589793 rad + pos: -25.5,-83.5 parent: 8364 - uid: 4954 components: @@ -161700,40 +163733,11 @@ entities: - type: Transform pos: 26.5,34.5 parent: 8364 - - uid: 4959 - components: - - type: Transform - pos: 34.5,-85.5 - parent: 8364 - uid: 4960 components: - type: Transform - pos: 25.5,-86.5 - parent: 8364 - - uid: 4961 - components: - - type: Transform - pos: 25.5,-85.5 - parent: 8364 - - uid: 4962 - components: - - type: Transform - pos: 25.5,-84.5 - parent: 8364 - - uid: 4963 - components: - - type: Transform - pos: 25.5,-83.5 - parent: 8364 - - uid: 4964 - components: - - type: Transform - pos: 25.5,-82.5 - parent: 8364 - - uid: 4965 - components: - - type: Transform - pos: 24.5,-82.5 + rot: 3.141592653589793 rad + pos: -24.5,-83.5 parent: 8364 - uid: 4974 components: @@ -161795,25 +163799,15 @@ entities: - type: Transform pos: 36.5,-70.5 parent: 8364 - - uid: 5015 - components: - - type: Transform - pos: -21.5,-76.5 - parent: 8364 - uid: 5110 components: - type: Transform pos: 18.5,31.5 parent: 8364 - - uid: 5197 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 8364 - - uid: 5198 + - uid: 5240 components: - type: Transform - pos: 2.5,-24.5 + pos: 37.5,-85.5 parent: 8364 - uid: 5245 components: @@ -161835,16 +163829,6 @@ entities: - type: Transform pos: 2.5,-22.5 parent: 8364 - - uid: 5273 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 8364 - - uid: 5274 - components: - - type: Transform - pos: 2.5,-26.5 - parent: 8364 - uid: 5501 components: - type: Transform @@ -161885,36 +163869,11 @@ entities: - type: Transform pos: -15.5,1.5 parent: 8364 - - uid: 5701 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 8364 - uid: 5705 components: - type: Transform pos: -2.5,-28.5 parent: 8364 - - uid: 5735 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 8364 - - uid: 5756 - components: - - type: Transform - pos: -3.5,-26.5 - parent: 8364 - - uid: 5764 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 8364 - - uid: 5770 - components: - - type: Transform - pos: -3.5,-17.5 - parent: 8364 - uid: 5785 components: - type: Transform @@ -161925,10 +163884,10 @@ entities: - type: Transform pos: -2.5,-26.5 parent: 8364 - - uid: 5864 + - uid: 5874 components: - type: Transform - pos: -4.5,-15.5 + pos: 12.5,-68.5 parent: 8364 - uid: 5881 components: @@ -161950,40 +163909,27 @@ entities: - type: Transform pos: 4.5,-14.5 parent: 8364 - - uid: 6026 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 8364 - uid: 6085 components: - type: Transform pos: 4.5,-19.5 parent: 8364 - - uid: 6100 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 8364 - - uid: 6222 - components: - - type: Transform - pos: -3.5,-24.5 - parent: 8364 - - uid: 6247 + - uid: 6095 components: - type: Transform - pos: -3.5,-23.5 + rot: 1.5707963267948966 rad + pos: -27.5,-78.5 parent: 8364 - - uid: 6311 + - uid: 6097 components: - type: Transform - pos: -10.5,-81.5 + rot: 1.5707963267948966 rad + pos: -27.5,-75.5 parent: 8364 - - uid: 6312 + - uid: 6100 components: - type: Transform - pos: -10.5,-82.5 + pos: -5.5,-20.5 parent: 8364 - uid: 6313 components: @@ -162005,16 +163951,6 @@ entities: - type: Transform pos: -10.5,-89.5 parent: 8364 - - uid: 6393 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 8364 - - uid: 6394 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 8364 - uid: 6453 components: - type: Transform @@ -162100,6 +164036,11 @@ entities: - type: Transform pos: 81.5,-55.5 parent: 8364 + - uid: 7217 + components: + - type: Transform + pos: 24.5,-86.5 + parent: 8364 - uid: 7275 components: - type: Transform @@ -162831,11 +164772,6 @@ entities: - type: Transform pos: -3.5,10.5 parent: 8364 - - uid: 8045 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 8364 - uid: 8046 components: - type: Transform @@ -162876,11 +164812,6 @@ entities: - type: Transform pos: 23.5,-20.5 parent: 8364 - - uid: 8076 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 8364 - uid: 8081 components: - type: Transform @@ -162956,11 +164887,6 @@ entities: - type: Transform pos: -14.5,-16.5 parent: 8364 - - uid: 8111 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 8364 - uid: 8112 components: - type: Transform @@ -163051,21 +164977,6 @@ entities: - type: Transform pos: -5.5,-14.5 parent: 8364 - - uid: 8147 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 8364 - - uid: 8148 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 8364 - - uid: 8149 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 8364 - uid: 8151 components: - type: Transform @@ -163081,11 +164992,6 @@ entities: - type: Transform pos: -5.5,-17.5 parent: 8364 - - uid: 8159 - components: - - type: Transform - pos: -2.5,-17.5 - parent: 8364 - uid: 8166 components: - type: Transform @@ -163311,16 +165217,6 @@ entities: - type: Transform pos: 1.5,-9.5 parent: 8364 - - uid: 8247 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 8364 - - uid: 8249 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 8364 - uid: 8250 components: - type: Transform @@ -163849,11 +165745,6 @@ entities: - type: Transform pos: 5.5,-27.5 parent: 8364 - - uid: 9457 - components: - - type: Transform - pos: 61.5,-70.5 - parent: 8364 - uid: 9535 components: - type: Transform @@ -164159,6 +166050,16 @@ entities: - type: Transform pos: 25.5,-70.5 parent: 8364 + - uid: 13776 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 8364 + - uid: 13780 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 8364 - uid: 14095 components: - type: Transform @@ -164179,15 +166080,16 @@ entities: - type: Transform pos: -42.5,-21.5 parent: 8364 - - uid: 14209 + - uid: 14447 components: - type: Transform - pos: 2.5,-17.5 + pos: -17.5,-67.5 parent: 8364 - - uid: 14447 + - uid: 14512 components: - type: Transform - pos: -17.5,-67.5 + rot: 3.141592653589793 rad + pos: 27.5,-75.5 parent: 8364 - uid: 14648 components: @@ -164229,6 +166131,16 @@ entities: - type: Transform pos: -33.5,-23.5 parent: 8364 + - uid: 15489 + components: + - type: Transform + pos: 27.5,-85.5 + parent: 8364 + - uid: 15491 + components: + - type: Transform + pos: 27.5,-76.5 + parent: 8364 - uid: 15545 components: - type: Transform @@ -164264,51 +166176,37 @@ entities: - type: Transform pos: -20.5,-64.5 parent: 8364 - - uid: 15885 + - uid: 15881 components: - type: Transform - pos: -8.5,-75.5 + pos: 27.5,-77.5 parent: 8364 - uid: 15886 components: - type: Transform - pos: -8.5,-73.5 - parent: 8364 - - uid: 15887 - components: - - type: Transform - pos: -8.5,-72.5 - parent: 8364 - - uid: 15888 - components: - - type: Transform - pos: -8.5,-71.5 + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 parent: 8364 - - uid: 15899 + - uid: 15975 components: - type: Transform - pos: 13.5,-87.5 + pos: -4.5,-22.5 parent: 8364 - - uid: 16207 + - uid: 16623 components: - type: Transform - pos: -9.5,-71.5 + pos: 26.5,-85.5 parent: 8364 - - uid: 16697 + - uid: 16632 components: - type: Transform - pos: 27.5,-75.5 + pos: 27.5,-83.5 parent: 8364 - uid: 16709 components: - type: Transform pos: 28.5,-61.5 parent: 8364 - - uid: 16710 - components: - - type: Transform - pos: 27.5,-70.5 - parent: 8364 - uid: 16782 components: - type: Transform @@ -164414,6 +166312,11 @@ entities: - type: Transform pos: -17.5,-77.5 parent: 8364 + - uid: 17174 + components: + - type: Transform + pos: -20.5,-80.5 + parent: 8364 - uid: 17297 components: - type: Transform @@ -164615,6 +166518,11 @@ entities: - type: Transform pos: -29.5,-23.5 parent: 8364 + - uid: 19942 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 8364 - uid: 19944 components: - type: Transform @@ -164640,25 +166548,45 @@ entities: - type: Transform pos: -16.5,-77.5 parent: 8364 - - uid: 19951 + - uid: 19983 components: - type: Transform - pos: -10.5,-71.5 + pos: -7.5,42.5 parent: 8364 - - uid: 19952 + - uid: 19997 components: - type: Transform - pos: 20.5,-75.5 + pos: -4.5,42.5 parent: 8364 - - uid: 19983 + - uid: 20006 components: - type: Transform - pos: -7.5,42.5 + rot: -1.5707963267948966 rad + pos: -0.5,-9.5 parent: 8364 - - uid: 19997 + - uid: 20015 components: - type: Transform - pos: -4.5,42.5 + rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 8364 + - uid: 20016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 8364 + - uid: 20017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 8364 + - uid: 20024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 parent: 8364 - uid: 20143 components: @@ -164825,24 +166753,6 @@ entities: - type: Transform pos: 17.5,-21.5 parent: 8364 - - uid: 22738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-87.5 - parent: 8364 - - uid: 22746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-87.5 - parent: 8364 - - uid: 22748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-87.5 - parent: 8364 - uid: 22751 components: - type: Transform @@ -164868,11 +166778,6 @@ entities: - type: Transform pos: -3.5,-76.5 parent: 8364 - - uid: 22851 - components: - - type: Transform - pos: -18.5,-75.5 - parent: 8364 - uid: 22852 components: - type: Transform @@ -164889,25 +166794,36 @@ entities: - type: Transform pos: -3.5,-65.5 parent: 8364 - - uid: 23201 + - uid: 23148 components: - type: Transform - pos: -18.5,-77.5 + pos: 20.5,-86.5 parent: 8364 - - uid: 23202 + - uid: 23149 components: - type: Transform - pos: -18.5,-76.5 + pos: 19.5,-86.5 parent: 8364 - - uid: 23207 + - uid: 23165 components: - type: Transform - pos: 27.5,-59.5 + rot: 1.5707963267948966 rad + pos: 22.5,-93.5 parent: 8364 - - uid: 23219 + - uid: 23170 components: - type: Transform - pos: 12.5,-84.5 + pos: 17.5,-83.5 + parent: 8364 + - uid: 23201 + components: + - type: Transform + pos: -18.5,-77.5 + parent: 8364 + - uid: 23207 + components: + - type: Transform + pos: 27.5,-59.5 parent: 8364 - uid: 23237 components: @@ -164919,6 +166835,56 @@ entities: - type: Transform pos: 23.5,-70.5 parent: 8364 + - uid: 23558 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 8364 + - uid: 23771 + components: + - type: Transform + pos: -18.5,-79.5 + parent: 8364 + - uid: 23911 + components: + - type: Transform + pos: 11.5,-82.5 + parent: 8364 + - uid: 23915 + components: + - type: Transform + pos: -21.5,-81.5 + parent: 8364 + - uid: 23916 + components: + - type: Transform + pos: -10.5,-82.5 + parent: 8364 + - uid: 23918 + components: + - type: Transform + pos: -18.5,-84.5 + parent: 8364 + - uid: 23919 + components: + - type: Transform + pos: -21.5,-84.5 + parent: 8364 + - uid: 24395 + components: + - type: Transform + pos: -25.5,-78.5 + parent: 8364 + - uid: 24586 + components: + - type: Transform + pos: -17.5,-81.5 + parent: 8364 + - uid: 24687 + components: + - type: Transform + pos: -17.5,-80.5 + parent: 8364 - uid: 24689 components: - type: Transform @@ -164934,6 +166900,91 @@ entities: - type: Transform pos: 35.5,-37.5 parent: 8364 + - uid: 24908 + components: + - type: Transform + pos: 61.5,-69.5 + parent: 8364 + - uid: 24925 + components: + - type: Transform + pos: -11.5,-82.5 + parent: 8364 + - uid: 24945 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 8364 + - uid: 24948 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 8364 + - uid: 24975 + components: + - type: Transform + pos: -10.5,-83.5 + parent: 8364 + - uid: 25045 + components: + - type: Transform + pos: 12.5,-84.5 + parent: 8364 + - uid: 25076 + components: + - type: Transform + pos: 37.5,-86.5 + parent: 8364 + - uid: 25147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-12.5 + parent: 8364 + - uid: 25185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-76.5 + parent: 8364 + - uid: 25189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-93.5 + parent: 8364 + - uid: 25221 + components: + - type: Transform + pos: 17.5,-86.5 + parent: 8364 + - uid: 25228 + components: + - type: Transform + pos: -18.5,-80.5 + parent: 8364 + - uid: 25229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-93.5 + parent: 8364 + - uid: 25248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-93.5 + parent: 8364 + - uid: 25250 + components: + - type: Transform + pos: 24.5,-82.5 + parent: 8364 + - uid: 25260 + components: + - type: Transform + pos: 17.5,-85.5 + parent: 8364 - uid: 25667 components: - type: Transform @@ -165019,11 +167070,25 @@ entities: - type: Transform pos: 33.5,-44.5 parent: 8364 - - uid: 26051 + - uid: 26000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-86.5 + pos: -21.5,-80.5 + parent: 8364 + - uid: 26003 + components: + - type: Transform + pos: -12.5,-82.5 + parent: 8364 + - uid: 26007 + components: + - type: Transform + pos: -20.5,-84.5 + parent: 8364 + - uid: 26017 + components: + - type: Transform + pos: -21.5,-83.5 parent: 8364 - uid: 26059 components: @@ -165040,11 +167105,6 @@ entities: - type: Transform pos: 33.5,-42.5 parent: 8364 - - uid: 26065 - components: - - type: Transform - pos: 11.5,-84.5 - parent: 8364 - uid: 26067 components: - type: Transform @@ -165055,6 +167115,11 @@ entities: - type: Transform pos: 1.5,-50.5 parent: 8364 + - uid: 26385 + components: + - type: Transform + pos: 38.5,-85.5 + parent: 8364 - uid: 26583 components: - type: Transform @@ -165220,6 +167285,28 @@ entities: - type: Transform pos: 1.5,-93.5 parent: 8364 + - uid: 26798 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 8364 + - uid: 26799 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 8364 + - uid: 26800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 8364 + - uid: 26801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 8364 - uid: 26821 components: - type: Transform @@ -165275,10 +167362,273 @@ entities: - type: Transform pos: 9.5,-84.5 parent: 8364 - - uid: 27805 + - uid: 26938 components: - type: Transform - pos: 12.5,-68.5 + rot: -1.5707963267948966 rad + pos: 27.5,-70.5 + parent: 8364 + - uid: 26940 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 8364 + - uid: 26960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-93.5 + parent: 8364 + - uid: 26985 + components: + - type: Transform + pos: 10.5,-68.5 + parent: 8364 + - uid: 26990 + components: + - type: Transform + pos: 12.5,-82.5 + parent: 8364 + - uid: 26991 + components: + - type: Transform + pos: -10.5,-81.5 + parent: 8364 + - uid: 27026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-93.5 + parent: 8364 + - uid: 27043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 8364 + - uid: 27047 + components: + - type: Transform + pos: -23.5,-78.5 + parent: 8364 + - uid: 27053 + components: + - type: Transform + pos: -21.5,-78.5 + parent: 8364 + - uid: 27057 + components: + - type: Transform + pos: -22.5,-78.5 + parent: 8364 + - uid: 27067 + components: + - type: Transform + pos: 19.5,-85.5 + parent: 8364 + - uid: 27068 + components: + - type: Transform + pos: 12.5,-85.5 + parent: 8364 + - uid: 27080 + components: + - type: Transform + pos: 12.5,-83.5 + parent: 8364 + - uid: 27146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-93.5 + parent: 8364 + - uid: 27165 + components: + - type: Transform + pos: -20.5,-78.5 + parent: 8364 + - uid: 27166 + components: + - type: Transform + pos: -20.5,-79.5 + parent: 8364 + - uid: 27180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-93.5 + parent: 8364 + - uid: 27290 + components: + - type: Transform + pos: -18.5,-78.5 + parent: 8364 + - uid: 27618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-93.5 + parent: 8364 + - uid: 27621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-93.5 + parent: 8364 + - uid: 27623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-93.5 + parent: 8364 + - uid: 27624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-93.5 + parent: 8364 + - uid: 27625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-93.5 + parent: 8364 + - uid: 27702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-93.5 + parent: 8364 + - uid: 27706 + components: + - type: Transform + pos: 25.5,-85.5 + parent: 8364 + - uid: 27788 + components: + - type: Transform + pos: -24.5,-78.5 + parent: 8364 + - uid: 27789 + components: + - type: Transform + pos: -16.5,-82.5 + parent: 8364 + - uid: 27790 + components: + - type: Transform + pos: -17.5,-82.5 + parent: 8364 + - uid: 27813 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 8364 + - uid: 27815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 8364 + - uid: 27817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 8364 + - uid: 27820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 8364 + - uid: 27821 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 8364 + - uid: 27822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 8364 + - uid: 27826 + components: + - type: Transform + pos: -17.5,-83.5 + parent: 8364 + - uid: 27827 + components: + - type: Transform + pos: -17.5,-84.5 + parent: 8364 + - uid: 27829 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 8364 + - uid: 27831 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 8364 + - uid: 27834 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 8364 + - uid: 27837 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 8364 + - uid: 27838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 8364 + - uid: 27839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 8364 + - uid: 27851 + components: + - type: Transform + pos: 12.5,-86.5 + parent: 8364 + - uid: 27853 + components: + - type: Transform + pos: 24.5,-85.5 + parent: 8364 + - uid: 27857 + components: + - type: Transform + pos: 19.5,-82.5 + parent: 8364 + - uid: 27983 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 8364 + - uid: 28150 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 8364 + - uid: 28151 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 8364 + - uid: 28182 + components: + - type: Transform + pos: 0.5,-25.5 parent: 8364 - proto: WallShuttle entities: @@ -167566,11 +169916,6 @@ entities: - type: Transform pos: -25.5,-14.5 parent: 8364 - - uid: 1382 - components: - - type: Transform - pos: -19.5,-10.5 - parent: 8364 - uid: 1383 components: - type: Transform @@ -167701,21 +170046,11 @@ entities: - type: Transform pos: -33.5,-17.5 parent: 8364 - - uid: 1409 - components: - - type: Transform - pos: -32.5,-17.5 - parent: 8364 - uid: 1410 components: - type: Transform pos: -29.5,-17.5 parent: 8364 - - uid: 1411 - components: - - type: Transform - pos: -30.5,-17.5 - parent: 8364 - uid: 1412 components: - type: Transform @@ -169566,11 +171901,6 @@ entities: - type: Transform pos: 83.5,-55.5 parent: 8364 - - uid: 2905 - components: - - type: Transform - pos: 83.5,-53.5 - parent: 8364 - uid: 2907 components: - type: Transform @@ -169616,11 +171946,6 @@ entities: - type: Transform pos: 77.5,-58.5 parent: 8364 - - uid: 2928 - components: - - type: Transform - pos: 77.5,-56.5 - parent: 8364 - uid: 2929 components: - type: Transform @@ -170321,6 +172646,12 @@ entities: - type: Transform pos: -2.5,-50.5 parent: 8364 + - uid: 3783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 8364 - uid: 3912 components: - type: Transform @@ -170386,35 +172717,10 @@ entities: - type: Transform pos: -19.5,-38.5 parent: 8364 - - uid: 4224 - components: - - type: Transform - pos: 26.5,-83.5 - parent: 8364 - - uid: 4240 - components: - - type: Transform - pos: 31.5,-86.5 - parent: 8364 - - uid: 4254 - components: - - type: Transform - pos: 25.5,-94.5 - parent: 8364 - - uid: 4257 - components: - - type: Transform - pos: 23.5,-94.5 - parent: 8364 - - uid: 4275 + - uid: 4390 components: - type: Transform - pos: 33.5,-94.5 - parent: 8364 - - uid: 4276 - components: - - type: Transform - pos: 31.5,-94.5 + pos: 84.5,-50.5 parent: 8364 - uid: 4656 components: @@ -171796,6 +174102,11 @@ entities: - type: Transform pos: -18.5,-32.5 parent: 8364 + - uid: 8078 + components: + - type: Transform + pos: 84.5,-53.5 + parent: 8364 - uid: 8082 components: - type: Transform @@ -172302,6 +174613,11 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-13.5 parent: 8364 + - uid: 14109 + components: + - type: Transform + pos: 84.5,-51.5 + parent: 8364 - uid: 14194 components: - type: Transform @@ -173158,6 +175474,62 @@ entities: - type: Transform pos: 17.5,-5.5 parent: 8364 + - uid: 26783 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 8364 + - uid: 27045 + components: + - type: Transform + pos: -21.5,-71.5 + parent: 8364 + - uid: 27046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-71.5 + parent: 8364 + - uid: 27048 + components: + - type: Transform + pos: -18.5,-71.5 + parent: 8364 + - uid: 27049 + components: + - type: Transform + pos: -21.5,-67.5 + parent: 8364 + - uid: 27050 + components: + - type: Transform + pos: -21.5,-66.5 + parent: 8364 + - uid: 27051 + components: + - type: Transform + pos: -21.5,-65.5 + parent: 8364 + - uid: 27055 + components: + - type: Transform + pos: -18.5,-72.5 + parent: 8364 + - uid: 27056 + components: + - type: Transform + pos: -18.5,-73.5 + parent: 8364 + - uid: 27062 + components: + - type: Transform + pos: -16.5,-71.5 + parent: 8364 + - uid: 27064 + components: + - type: Transform + pos: -17.5,-71.5 + parent: 8364 - uid: 27614 components: - type: Transform @@ -173178,6 +175550,56 @@ entities: - type: Transform pos: 85.5,-12.5 parent: 8364 + - uid: 27716 + components: + - type: Transform + pos: 1.5,-64.5 + parent: 8364 + - uid: 27841 + components: + - type: Transform + pos: -8.5,-75.5 + parent: 8364 + - uid: 27842 + components: + - type: Transform + pos: -8.5,-73.5 + parent: 8364 + - uid: 27843 + components: + - type: Transform + pos: -8.5,-72.5 + parent: 8364 + - uid: 27844 + components: + - type: Transform + pos: -8.5,-71.5 + parent: 8364 + - uid: 27846 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 8364 + - uid: 27849 + components: + - type: Transform + pos: -10.5,-71.5 + parent: 8364 + - uid: 27854 + components: + - type: Transform + pos: -18.5,-75.5 + parent: 8364 + - uid: 27855 + components: + - type: Transform + pos: -18.5,-76.5 + parent: 8364 + - uid: 27862 + components: + - type: Transform + pos: 77.5,-56.5 + parent: 8364 - proto: WallSolidRust entities: - uid: 1703 @@ -173546,6 +175968,13 @@ entities: showEnts: False occludes: True ent: null +- proto: WardrobeFormal + entities: + - uid: 3782 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 8364 - proto: WardrobeGreenFilled entities: - uid: 13887 @@ -174149,15 +176578,15 @@ entities: - type: Transform pos: 20.5,8.5 parent: 8364 - - uid: 9428 + - uid: 7911 components: - type: Transform - pos: -10.5,15.5 + pos: -23.5,-13.5 parent: 8364 - - uid: 14110 + - uid: 9428 components: - type: Transform - pos: -20.5,-13.5 + pos: -10.5,15.5 parent: 8364 - uid: 21129 components: @@ -174166,11 +176595,6 @@ entities: parent: 8364 - proto: WaterTankFull entities: - - uid: 782 - components: - - type: Transform - pos: 23.5,-96.5 - parent: 8364 - uid: 1381 components: - type: Transform @@ -174512,7 +176936,7 @@ entities: - uid: 21236 components: - type: Transform - pos: 61.5,-19.5 + pos: 61.373264,-19.199818 parent: 8364 - proto: WelderIndustrial entities: @@ -174523,21 +176947,16 @@ entities: parent: 8364 - proto: WeldingFuelTankFull entities: - - uid: 781 + - uid: 4387 components: - type: Transform - pos: 33.5,-96.5 + pos: 26.5,-76.5 parent: 8364 - uid: 8487 components: - type: Transform pos: 18.5,18.5 parent: 8364 - - uid: 11157 - components: - - type: Transform - pos: 65.5,6.5 - parent: 8364 - uid: 11683 components: - type: Transform @@ -174648,6 +177067,11 @@ entities: - type: Transform pos: -7.5,-77.5 parent: 8364 + - uid: 27872 + components: + - type: Transform + pos: 65.5,6.5 + parent: 8364 - proto: Windoor entities: - uid: 2030 @@ -174655,12 +177079,6 @@ entities: - type: Transform pos: 58.5,-49.5 parent: 8364 - - uid: 5755 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 8364 - uid: 6249 components: - type: MetaData @@ -174701,12 +177119,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-2.5 parent: 8364 - - uid: 8146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-14.5 - parent: 8364 - uid: 8608 components: - type: MetaData @@ -175014,17 +177426,10 @@ entities: parent: 8364 - proto: WindoorSecureCommandLocked entities: - - uid: 844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-110.5 - parent: 8364 - - uid: 10706 + - uid: 6394 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-14.5 + pos: 0.5,-20.5 parent: 8364 - uid: 15490 components: @@ -175032,11 +177437,15 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-18.5 parent: 8364 - - uid: 31746 + - uid: 24941 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-14.5 + pos: -1.5,-20.5 + parent: 8364 + - uid: 27823 + components: + - type: Transform + pos: -0.5,-15.5 parent: 8364 - proto: WindoorSecureEngineeringLocked entities: @@ -176072,30 +178481,6 @@ entities: rot: 3.141592653589793 rad pos: -54.5,16.5 parent: 8364 - - uid: 847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-110.5 - parent: 8364 - - uid: 849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-110.5 - parent: 8364 - - uid: 852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-110.5 - parent: 8364 - - uid: 853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-110.5 - parent: 8364 - uid: 1921 components: - type: Transform @@ -176125,28 +178510,17 @@ entities: - type: Transform pos: 35.5,-68.5 parent: 8364 - - uid: 3536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 8364 - - uid: 3540 + - uid: 4374 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-14.5 + pos: 0.5,-20.5 parent: 8364 - - uid: 3541 - components: - - type: Transform - pos: -4.5,-14.5 - parent: 8364 - - uid: 3542 + - uid: 4375 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-14.5 + pos: 0.5,-20.5 parent: 8364 - uid: 4841 components: @@ -176174,51 +178548,6 @@ entities: - type: Transform pos: 6.5,-24.5 parent: 8364 - - uid: 5733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-14.5 - parent: 8364 - - uid: 5736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-14.5 - parent: 8364 - - uid: 5740 - components: - - type: Transform - pos: 3.5,-14.5 - parent: 8364 - - uid: 6122 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 8364 - - uid: 6142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-14.5 - parent: 8364 - - uid: 6143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 8364 - - uid: 6144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-14.5 - parent: 8364 - - uid: 6224 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 8364 - uid: 7034 components: - type: Transform @@ -176564,6 +178893,12 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-19.5 parent: 8364 + - uid: 23913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 8364 - uid: 24434 components: - type: Transform @@ -176669,6 +179004,24 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-18.5 parent: 8364 + - uid: 28122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-20.5 + parent: 8364 + - uid: 28123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 8364 + - uid: 28124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 8364 - proto: Wirecutter entities: - uid: 11686 @@ -176676,11 +179029,6 @@ entities: - type: Transform pos: 70.5,12.5 parent: 8364 - - uid: 12268 - components: - - type: Transform - pos: -42.44495,5.5643377 - parent: 8364 - uid: 16303 components: - type: Transform @@ -176724,6 +179072,11 @@ entities: - type: Transform pos: 44.39694,-40.48777 parent: 8364 + - uid: 5856 + components: + - type: Transform + pos: -21.510796,-9.406136 + parent: 8364 - uid: 6882 components: - type: Transform @@ -176744,16 +179097,6 @@ entities: - type: Transform pos: -44.5,14.5 parent: 8364 - - uid: 12262 - components: - - type: Transform - pos: -40.403015,5.626782 - parent: 8364 - - uid: 13780 - components: - - type: Transform - pos: -52.5,7.5 - parent: 8364 - uid: 14178 components: - type: Transform @@ -176764,11 +179107,6 @@ entities: - type: Transform pos: -21.530937,-40.42064 parent: 8364 - - uid: 15971 - components: - - type: Transform - pos: -25.576,-43.60518 - parent: 8364 - uid: 19199 components: - type: Transform @@ -176784,16 +179122,6 @@ entities: - type: Transform pos: 65.5,-53.5 parent: 8364 - - uid: 21417 - components: - - type: Transform - pos: 79.5,-47.5 - parent: 8364 - - uid: 27177 - components: - - type: Transform - pos: 33.549847,-95.50195 - parent: 8364 - uid: 27483 components: - type: Transform diff --git a/Resources/Prototypes/Maps/box.yml b/Resources/Prototypes/Maps/box.yml index 9020d71043e..37314df1304 100644 --- a/Resources/Prototypes/Maps/box.yml +++ b/Resources/Prototypes/Maps/box.yml @@ -25,6 +25,7 @@ Janitor: [ 2, 2 ] Chaplain: [ 1, 1 ] Librarian: [ 1, 1 ] + Reporter: [ 1, 1 ] ServiceWorker: [ 2, 2 ] #engineering ChiefEngineer: [ 1, 1 ] From 39c17379029488f7639f9179f359fff6c25ae5ce Mon Sep 17 00:00:00 2001 From: "Ignaz \"Ian\" Kraft" Date: Thu, 23 Jan 2025 11:08:40 +0100 Subject: [PATCH 078/103] pluralize the job name in the contra description (#34559) * pluralize the job name in the contra description * pluralization specific to contraband descriptions --- Content.Shared/Contraband/ContrabandSystem.cs | 4 ++-- Resources/Locale/en-US/contraband/contraband-severity.ftl | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Contraband/ContrabandSystem.cs b/Content.Shared/Contraband/ContrabandSystem.cs index 811ea535675..48055fc3de6 100644 --- a/Content.Shared/Contraband/ContrabandSystem.cs +++ b/Content.Shared/Contraband/ContrabandSystem.cs @@ -56,8 +56,8 @@ private void OnExamined(Entity ent, ref ExaminedEvent args) using (args.PushGroup(nameof(ContrabandComponent))) { // TODO shouldn't department prototypes have a localized name instead of just using the ID for this? - var localizedDepartments = ent.Comp.AllowedDepartments.Select(p => Loc.GetString($"department-{p.Id}")); - var localizedJobs = ent.Comp.AllowedJobs.Select(p => _proto.Index(p).LocalizedName); + var localizedDepartments = ent.Comp.AllowedDepartments.Select(p => Loc.GetString("contraband-department-plural", ("department", Loc.GetString($"department-{p.Id}")))); + var localizedJobs = ent.Comp.AllowedJobs.Select(p => Loc.GetString("contraband-job-plural", ("job", _proto.Index(p).LocalizedName))); var severity = _proto.Index(ent.Comp.Severity); if (severity.ShowDepartmentsAndJobs) diff --git a/Resources/Locale/en-US/contraband/contraband-severity.ftl b/Resources/Locale/en-US/contraband/contraband-severity.ftl index 303cb7c1d51..68bb11930a0 100644 --- a/Resources/Locale/en-US/contraband/contraband-severity.ftl +++ b/Resources/Locale/en-US/contraband/contraband-severity.ftl @@ -7,3 +7,6 @@ contraband-examine-text-Syndicate = [color=crimson]This item is highly illegal S contraband-examine-text-avoid-carrying-around = [color=red][italic]You probably want to avoid visibly carrying this around without a good reason.[/italic][/color] contraband-examine-text-in-the-clear = [color=green][italic]You should be in the clear to visibly carry this around.[/italic][/color] + +contraband-department-plural = {$department} +contraband-job-plural = {MAKEPLURAL($job)} From f186838544c051d7549edf157a909be491574c60 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 23 Jan 2025 10:09:47 +0000 Subject: [PATCH 079/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 65bd89413c6..f3a66ebd983 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: ScarKy0 - changes: - - message: Arrival Screens now show time again. - type: Fix - id: 7341 - time: '2024-09-10T19:08:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32037 - author: themias changes: - message: The Justice Helm can now only be crafted using a security helmet. @@ -3894,3 +3887,10 @@ id: 7840 time: '2025-01-23T06:02:50.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34589 +- author: Ian321 + changes: + - message: Job specific contraband descriptions are now grammatically sound. + type: Fix + id: 7841 + time: '2025-01-23T10:08:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34559 From 68b0dfbc026a07aad2bf3f07d1052f92f899ea31 Mon Sep 17 00:00:00 2001 From: Fildrance Date: Thu, 23 Jan 2025 15:16:58 +0300 Subject: [PATCH 080/103] Feature/make radial menu great again (#32653) * it works! kinda * so it works now * minor cleanup * central button now is useful too * more cleanup * minor cleanup * more cleanup * refactor: migrated code from toolbox (as it was rejected as too specific) * feat: moved border drawing for radial menu into RadialMenuTextureButton. Radial menu position setting into was moved to OverrideArrange to not being called on every frame * refactor: major reworks! * renamed DrawBagleSector to DrawAnnulusSector * Remove strange indexing * Regularize math * refactor: re-orienting segment elements to be Y-mirrored * refactor: extracted radial menu radius multiplier property, changed color pallet for radial menu button * refactor: removed icon backgrounds on textures used in current radial menu buttons with sectors, RadialContainer Radius renamed and now actually changed control radius. * refactor: in RadialMenuTextureButtonWithSector all sector colors are converted to and from sRGB in property getter-setters * refactor: renamed srgb to include Srgb suffix so devs gonna see that its srgb clearly * fix: enabled any functional keys pressed when pushing radial menu buttons * fix: radial menu sector now scales with UIScale * fix: accept only one event when clicking on radial menu ContextualButton * fix: now radial menu buttons accepts only click/alt-click, now clicks outside menu closes menu always --------- Co-authored-by: pa.pecherskij Co-authored-by: Eoin Mcloughlin --- Content.Client/Chat/UI/EmotesMenu.xaml | 22 +- Content.Client/Chat/UI/EmotesMenu.xaml.cs | 3 +- .../Ghost/GhostRoleRadioMenu.xaml.cs | 3 +- Content.Client/RCD/RCDMenu.xaml | 32 +- Content.Client/RCD/RCDMenu.xaml.cs | 12 +- .../Silicons/StationAi/StationAiMenu.xaml | 4 +- .../Silicons/StationAi/StationAiMenu.xaml.cs | 3 +- .../UserInterface/Controls/RadialContainer.cs | 100 +++- .../UserInterface/Controls/RadialMenu.cs | 467 ++++++++++++++++-- 9 files changed, 548 insertions(+), 98 deletions(-) diff --git a/Content.Client/Chat/UI/EmotesMenu.xaml b/Content.Client/Chat/UI/EmotesMenu.xaml index cc4d5bb77e9..845b6316171 100644 --- a/Content.Client/Chat/UI/EmotesMenu.xaml +++ b/Content.Client/Chat/UI/EmotesMenu.xaml @@ -1,4 +1,4 @@ - - - + + - - + + - - + + - + - + - + - + diff --git a/Content.Client/Chat/UI/EmotesMenu.xaml.cs b/Content.Client/Chat/UI/EmotesMenu.xaml.cs index f3b7837f21a..80daa405a68 100644 --- a/Content.Client/Chat/UI/EmotesMenu.xaml.cs +++ b/Content.Client/Chat/UI/EmotesMenu.xaml.cs @@ -50,7 +50,6 @@ public EmotesMenu() var button = new EmoteMenuButton { - StyleClasses = { "RadialMenuButton" }, SetSize = new Vector2(64f, 64f), ToolTip = Loc.GetString(emote.Name), ProtoId = emote.ID, @@ -106,7 +105,7 @@ private void AddEmoteClickAction(RadialContainer container) } -public sealed class EmoteMenuButton : RadialMenuTextureButton +public sealed class EmoteMenuButton : RadialMenuTextureButtonWithSector { public ProtoId ProtoId { get; set; } } diff --git a/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs b/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs index 3897b1b949c..1b65eac6ed9 100644 --- a/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs +++ b/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs @@ -51,7 +51,6 @@ private void RefreshUI() var button = new GhostRoleRadioMenuButton() { - StyleClasses = { "RadialMenuButton" }, SetSize = new Vector2(64, 64), ToolTip = Loc.GetString(ghostRoleProto.Name), ProtoId = ghostRoleProto.ID, @@ -100,7 +99,7 @@ private void AddGhostRoleRadioMenuButtonOnClickActions(Control control) } } -public sealed class GhostRoleRadioMenuButton : RadialMenuTextureButton +public sealed class GhostRoleRadioMenuButton : RadialMenuTextureButtonWithSector { public ProtoId ProtoId { get; set; } } diff --git a/Content.Client/RCD/RCDMenu.xaml b/Content.Client/RCD/RCDMenu.xaml index b3d5367a5fd..d8ab0ac8f4c 100644 --- a/Content.Client/RCD/RCDMenu.xaml +++ b/Content.Client/RCD/RCDMenu.xaml @@ -11,37 +11,37 @@ - - + + - - + + - - + + - - + + - - + + - + - + - + - + - + - + diff --git a/Content.Client/RCD/RCDMenu.xaml.cs b/Content.Client/RCD/RCDMenu.xaml.cs index f0d27d6b1fb..7ea9894e41e 100644 --- a/Content.Client/RCD/RCDMenu.xaml.cs +++ b/Content.Client/RCD/RCDMenu.xaml.cs @@ -74,7 +74,6 @@ public void Refresh() var button = new RCDMenuButton() { - StyleClasses = { "RadialMenuButton" }, SetSize = new Vector2(64f, 64f), ToolTip = tooltip, ProtoId = protoId, @@ -99,9 +98,7 @@ public void Refresh() // is visible in the main radial container (as these all start with Visible = false) foreach (var child in main.Children) { - var castChild = child as RadialMenuTextureButton; - - if (castChild is not RadialMenuTextureButton) + if (child is not RadialMenuTextureButton castChild) continue; if (castChild.TargetLayer == proto.Category) @@ -169,12 +166,7 @@ private void AddRCDMenuButtonOnClickActions(Control control) } } -public sealed class RCDMenuButton : RadialMenuTextureButton +public sealed class RCDMenuButton : RadialMenuTextureButtonWithSector { public ProtoId ProtoId { get; set; } - - public RCDMenuButton() - { - - } } diff --git a/Content.Client/Silicons/StationAi/StationAiMenu.xaml b/Content.Client/Silicons/StationAi/StationAiMenu.xaml index d56fc832898..cfa0b93234e 100644 --- a/Content.Client/Silicons/StationAi/StationAiMenu.xaml +++ b/Content.Client/Silicons/StationAi/StationAiMenu.xaml @@ -1,4 +1,4 @@ - - + diff --git a/Content.Client/Silicons/StationAi/StationAiMenu.xaml.cs b/Content.Client/Silicons/StationAi/StationAiMenu.xaml.cs index b152f5ead8b..a536d911f3c 100644 --- a/Content.Client/Silicons/StationAi/StationAiMenu.xaml.cs +++ b/Content.Client/Silicons/StationAi/StationAiMenu.xaml.cs @@ -54,7 +54,6 @@ private void BuildButtons() // TODO: This radial boilerplate is quite annoying var button = new StationAiMenuButton(action.Event) { - StyleClasses = { "RadialMenuButton" }, SetSize = new Vector2(64f, 64f), ToolTip = action.Tooltip != null ? Loc.GetString(action.Tooltip) : null, }; @@ -121,7 +120,7 @@ private void UpdatePosition() } } -public sealed class StationAiMenuButton(BaseStationAiAction action) : RadialMenuTextureButton +public sealed class StationAiMenuButton(BaseStationAiAction action) : RadialMenuTextureButtonWithSector { public BaseStationAiAction Action = action; } diff --git a/Content.Client/UserInterface/Controls/RadialContainer.cs b/Content.Client/UserInterface/Controls/RadialContainer.cs index be9b8817a06..72555aab5f3 100644 --- a/Content.Client/UserInterface/Controls/RadialContainer.cs +++ b/Content.Client/UserInterface/Controls/RadialContainer.cs @@ -1,4 +1,3 @@ -using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; using System.Linq; using System.Numerics; @@ -8,6 +7,11 @@ namespace Content.Client.UserInterface.Controls; [Virtual] public class RadialContainer : LayoutContainer { + /// + /// Increment of radius per child element to be rendered. + /// + private const float RadiusIncrement = 5f; + /// /// Specifies the anglular range, in radians, in which child elements will be placed. /// The first value denotes the angle at which the first element is to be placed, and @@ -49,10 +53,30 @@ public Vector2 AngularRange public RAlignment RadialAlignment { get; set; } = RAlignment.Clockwise; /// - /// Determines how far from the radial container's center that its child elements will be placed + /// Radial menu radius determines how far from the radial container's center its child elements will be placed. + /// To correctly display dynamic amount of elements control actually resizes depending on amount of child buttons, + /// but uses this property as base value for final radius calculation. /// [ViewVariables(VVAccess.ReadWrite)] - public float Radius { get; set; } = 100f; + public float InitialRadius { get; set; } = 100f; + + /// + /// Radial menu radius determines how far from the radial container's center its child elements will be placed. + /// This is dynamically calculated (based on child button count) radius, result of and + /// multiplied by currently visible child button count. + /// + [ViewVariables(VVAccess.ReadOnly)] + public float CalculatedRadius { get; private set; } + + /// + /// Determines radial menu button sectors inner radius, is a multiplier of . + /// + public float InnerRadiusMultiplier { get; set; } = 0.5f; + + /// + /// Determines radial menu button sectors outer radius, is a multiplier of . + /// + public float OuterRadiusMultiplier { get; set; } = 1.5f; /// /// Sets whether the container should reserve a space on the layout for child which are not currently visible @@ -67,37 +91,74 @@ public RadialContainer() { } - - protected override void Draw(DrawingHandleScreen handle) + + /// + protected override Vector2 ArrangeOverride(Vector2 finalSize) { - - const float baseRadius = 100f; - const float radiusIncrement = 5f; - - var children = ReserveSpaceForHiddenChildren ? Children : Children.Where(x => x.Visible); + var children = ReserveSpaceForHiddenChildren + ? Children + : Children.Where(x => x.Visible); + var childCount = children.Count(); - - // Add padding from the center at higher child counts so they don't overlap. - Radius = baseRadius + (childCount * radiusIncrement); + + // Add padding from the center at higher child counts so they don't overlap. + CalculatedRadius = InitialRadius + (childCount * RadiusIncrement); + + var isAntiClockwise = RadialAlignment == RAlignment.AntiClockwise; // Determine the size of the arc, accounting for clockwise and anti-clockwise arrangements var arc = AngularRange.Y - AngularRange.X; - arc = (arc < 0) ? MathF.Tau + arc : arc; - arc = (RadialAlignment == RAlignment.AntiClockwise) ? MathF.Tau - arc : arc; + arc = arc < 0 + ? MathF.Tau + arc + : arc; + arc = isAntiClockwise + ? MathF.Tau - arc + : arc; // Account for both circular arrangements and arc-based arrangements - var childMod = MathHelper.CloseTo(arc, MathF.Tau, 0.01f) ? 0 : 1; + var childMod = MathHelper.CloseTo(arc, MathF.Tau, 0.01f) + ? 0 + : 1; // Determine the separation between child elements var sepAngle = arc / (childCount - childMod); - sepAngle *= (RadialAlignment == RAlignment.AntiClockwise) ? -1f : 1f; + sepAngle *= isAntiClockwise + ? -1f + : 1f; + + var controlCenter = finalSize * 0.5f; // Adjust the positions of all the child elements - foreach (var (i, child) in children.Select((x, i) => (i, x))) + var query = children.Select((x, index) => (index, x)); + foreach (var (childIndex, child) in query) { - var position = new Vector2(Radius * MathF.Sin(AngularRange.X + sepAngle * i) + Width / 2f - child.Width / 2f, -Radius * MathF.Cos(AngularRange.X + sepAngle * i) + Height / 2f - child.Height / 2f); + const float angleOffset = MathF.PI * 0.5f; + + var targetAngleOfChild = AngularRange.X + sepAngle * (childIndex + 0.5f) + angleOffset; + + // flooring values for snapping float values to physical grid - + // it prevents gaps and overlapping between different button segments + var position = new Vector2( + MathF.Floor(CalculatedRadius * MathF.Cos(targetAngleOfChild)), + MathF.Floor(-CalculatedRadius * MathF.Sin(targetAngleOfChild)) + ) + controlCenter - child.DesiredSize * 0.5f + Position; + SetPosition(child, position); + + // radial menu buttons with sector need to also know in which sector and around which point + // they should be rendered, how much space sector should should take etc. + if (child is IRadialMenuItemWithSector tb) + { + tb.AngleSectorFrom = sepAngle * childIndex; + tb.AngleSectorTo = sepAngle * (childIndex + 1); + tb.AngleOffset = angleOffset; + tb.InnerRadius = CalculatedRadius * InnerRadiusMultiplier; + tb.OuterRadius = CalculatedRadius * OuterRadiusMultiplier; + tb.ParentCenter = controlCenter; + } } + + return base.ArrangeOverride(finalSize); } /// @@ -109,4 +170,5 @@ public enum RAlignment : byte Clockwise, AntiClockwise, } + } diff --git a/Content.Client/UserInterface/Controls/RadialMenu.cs b/Content.Client/UserInterface/Controls/RadialMenu.cs index 5f56ad7f866..1b7f07aa2cc 100644 --- a/Content.Client/UserInterface/Controls/RadialMenu.cs +++ b/Content.Client/UserInterface/Controls/RadialMenu.cs @@ -3,6 +3,9 @@ using Robust.Client.UserInterface.CustomControls; using System.Linq; using System.Numerics; +using Content.Shared.Input; +using Robust.Client.Graphics; +using Robust.Shared.Input; namespace Content.Client.UserInterface.Controls; @@ -12,11 +15,16 @@ public class RadialMenu : BaseWindow /// /// Contextual button used to traverse through previous layers of the radial menu /// - public TextureButton? ContextualButton { get; set; } + public RadialMenuContextualCentralTextureButton ContextualButton { get; } + + /// + /// Button that represents outer area of menu (closes menu on outside clicks). + /// + public RadialMenuOuterAreaButton MenuOuterAreaButton { get; } /// /// Set a style class to be applied to the contextual button when it is set to move the user back through previous layers of the radial menu - /// + /// public string? BackButtonStyleClass { get @@ -52,7 +60,7 @@ public string? CloseButtonStyleClass } } - private List _path = new(); + private readonly List _path = new(); private string? _backButtonStyleClass; private string? _closeButtonStyleClass; @@ -60,8 +68,8 @@ public string? CloseButtonStyleClass /// A free floating menu which enables the quick display of one or more radial containers /// /// - /// Only one radial container is visible at a time (each container forming a separate 'layer' within - /// the menu), along with a contextual button at the menu center, which will either return the user + /// Only one radial container is visible at a time (each container forming a separate 'layer' within + /// the menu), along with a contextual button at the menu center, which will either return the user /// to the previous layer or close the menu if there are no previous layers left to traverse. /// To create a functional radial menu, simply parent one or more named radial containers to it, /// and populate the radial containers with RadialMenuButtons. Setting the TargetLayer field of these @@ -78,23 +86,56 @@ public RadialMenu() } // Auto generate a contextual button for moving back through visited layers - ContextualButton = new TextureButton() + ContextualButton = new RadialMenuContextualCentralTextureButton { HorizontalAlignment = HAlignment.Center, VerticalAlignment = VAlignment.Center, SetSize = new Vector2(64f, 64f), }; + MenuOuterAreaButton = new RadialMenuOuterAreaButton(); ContextualButton.OnButtonUp += _ => ReturnToPreviousLayer(); + MenuOuterAreaButton.OnButtonUp += _ => Close(); AddChild(ContextualButton); + AddChild(MenuOuterAreaButton); // Hide any further add children, unless its promoted to the active layer - OnChildAdded += child => child.Visible = (GetCurrentActiveLayer() == child); + OnChildAdded += child => + { + child.Visible = GetCurrentActiveLayer() == child; + SetupContextualButtonData(child); + }; + } + + private void SetupContextualButtonData(Control child) + { + if (child is RadialContainer { Visible: true } container) + { + var parentCenter = MinSize * 0.5f; + ContextualButton.ParentCenter = parentCenter; + MenuOuterAreaButton.ParentCenter = parentCenter; + ContextualButton.InnerRadius = container.CalculatedRadius * container.InnerRadiusMultiplier; + MenuOuterAreaButton.OuterRadius = container.CalculatedRadius * container.OuterRadiusMultiplier; + } + } + + /// + protected override Vector2 ArrangeOverride(Vector2 finalSize) + { + var result = base.ArrangeOverride(finalSize); + + var currentLayer = GetCurrentActiveLayer(); + if (currentLayer != null) + { + SetupContextualButtonData(currentLayer); + } + + return result; } private Control? GetCurrentActiveLayer() { - var children = Children.Where(x => x != ContextualButton); + var children = Children.Where(x => x != ContextualButton && x != MenuOuterAreaButton); if (!children.Any()) return null; @@ -116,7 +157,7 @@ public bool TryToMoveToNewLayer(string newLayer) foreach (var child in Children) { - if (child == ContextualButton) + if (child == ContextualButton || child == MenuOuterAreaButton) continue; // Hide layers which are not of interest @@ -129,6 +170,7 @@ public bool TryToMoveToNewLayer(string newLayer) else { child.Visible = true; + SetupContextualButtonData(child); result = true; } } @@ -158,7 +200,7 @@ public void ReturnToPreviousLayer() // Hide all children except the contextual button foreach (var child in Children) { - if (child != ContextualButton) + if (child != ContextualButton && child != MenuOuterAreaButton) child.Visible = false; } @@ -172,25 +214,104 @@ public void ReturnToPreviousLayer() } } +/// +/// Base class for radial menu buttons. Excludes all actions except clicks and alt-clicks +/// from interactions. +/// +[Virtual] +public class RadialMenuTextureButtonBase : TextureButton +{ + /// + protected RadialMenuTextureButtonBase() + { + EnableAllKeybinds = true; + } + + /// + protected override void KeyBindUp(GUIBoundKeyEventArgs args) + { + if (args.Function == EngineKeyFunctions.UIClick + || args.Function == ContentKeyFunctions.AltActivateItemInWorld) + base.KeyBindUp(args); + } +} + +/// +/// Special button for closing radial menu or going back between radial menu levels. +/// Is looking like just but considers whole space around +/// itself (til radial menu buttons) as itself in case of clicking. But this 'effect' +/// works only if control have parent, and ActiveContainer property is set. +/// Also considers all space outside of radial menu buttons as itself for clicking. +/// +public sealed class RadialMenuContextualCentralTextureButton : RadialMenuTextureButtonBase +{ + public float InnerRadius { get; set; } + + public Vector2? ParentCenter { get; set; } + + /// + protected override bool HasPoint(Vector2 point) + { + if (ParentCenter == null) + { + return base.HasPoint(point); + } + + var distSquared = (point + Position - ParentCenter.Value).LengthSquared(); + + var innerRadiusSquared = InnerRadius * InnerRadius; + + // comparing to squared values is faster then making sqrt + return distSquared < innerRadiusSquared; + } +} + +/// +/// Menu button for outer area of radial menu (covers everything 'outside'). +/// +public sealed class RadialMenuOuterAreaButton : RadialMenuTextureButtonBase +{ + public float OuterRadius { get; set; } + + public Vector2? ParentCenter { get; set; } + + /// + protected override bool HasPoint(Vector2 point) + { + if (ParentCenter == null) + { + return base.HasPoint(point); + } + + var distSquared = (point + Position - ParentCenter.Value).LengthSquared(); + + var outerRadiusSquared = OuterRadius * OuterRadius; + + // comparing to squared values is faster, then making sqrt + return distSquared > outerRadiusSquared; + } +} + [Virtual] -public class RadialMenuButton : Button +public class RadialMenuTextureButton : RadialMenuTextureButtonBase { /// - /// Upon clicking this button the radial menu will transition to the named layer + /// Upon clicking this button the radial menu will be moved to the named layer /// - public string? TargetLayer { get; set; } + public string TargetLayer { get; set; } = string.Empty; /// - /// A simple button that can move the user to a different layer within a radial menu + /// A simple texture button that can move the user to a different layer within a radial menu /// - public RadialMenuButton() + public RadialMenuTextureButton() { + EnableAllKeybinds = true; OnButtonUp += OnClicked; } private void OnClicked(ButtonEventArgs args) { - if (TargetLayer == null || TargetLayer == string.Empty) + if (TargetLayer == string.Empty) return; var parent = FindParentMultiLayerContainer(this); @@ -205,51 +326,329 @@ private void OnClicked(ButtonEventArgs args) { foreach (var ancestor in control.GetSelfAndLogicalAncestors()) { - if (ancestor is RadialMenu) - return ancestor as RadialMenu; + if (ancestor is RadialMenu menu) + return menu; } return null; } } +public interface IRadialMenuItemWithSector +{ + /// + /// Angle in radian where button sector should start. + /// + public float AngleSectorFrom { set; } + + /// + /// Angle in radian where button sector should end. + /// + public float AngleSectorTo { set; } + + /// + /// Outer radius for drawing segment and pointer detection. + /// + public float OuterRadius { set; } + + /// + /// Outer radius for drawing segment and pointer detection. + /// + public float InnerRadius { set; } + + /// + /// Offset in radian by which menu button should be rotated. + /// + public float AngleOffset { set; } + + /// + /// Coordinates of center in parent component - button container. + /// + public Vector2 ParentCenter { set; } +} + [Virtual] -public class RadialMenuTextureButton : TextureButton +public class RadialMenuTextureButtonWithSector : RadialMenuTextureButton, IRadialMenuItemWithSector { + private Vector2[]? _sectorPointsForDrawing; + + private float _angleSectorFrom; + private float _angleSectorTo; + private float _outerRadius; + private float _innerRadius; + private float _angleOffset; + + private bool _isWholeCircle; + private Vector2? _parentCenter; + + private Color _backgroundColorSrgb = Color.ToSrgb(new Color(70, 73, 102, 128)); + private Color _hoverBackgroundColorSrgb = Color.ToSrgb(new Color(87, 91, 127, 128)); + private Color _borderColorSrgb = Color.ToSrgb(new Color(173, 216, 230, 70)); + private Color _hoverBorderColorSrgb = Color.ToSrgb(new Color(87, 91, 127, 128)); + /// - /// Upon clicking this button the radial menu will be moved to the named layer + /// Marker, that control should render border of segment. Is false by default. /// - public string TargetLayer { get; set; } = string.Empty; + /// + /// By default color of border is same as color of background. Use + /// and to change it. + /// + public bool DrawBorder { get; set; } = false; + + /// + /// Marker, that control should render background of all sector. Is true by default. + /// + public bool DrawBackground { get; set; } = true; + + /// + /// Marker, that control should render separator lines. + /// Separator lines are used to visually separate sector of radial menu items. + /// Is true by default + /// + public bool DrawSeparators { get; set; } = true; + + /// + /// Color of background in non-hovered state. Accepts RGB color, works with sRGB for DrawPrimitive internally. + /// + public Color BackgroundColor + { + get => Color.FromSrgb(_backgroundColorSrgb); + set => _backgroundColorSrgb = Color.ToSrgb(value); + } + + /// + /// Color of background in hovered state. Accepts RGB color, works with sRGB for DrawPrimitive internally. + /// + public Color HoverBackgroundColor + { + get => Color.FromSrgb(_hoverBackgroundColorSrgb); + set => _hoverBackgroundColorSrgb = Color.ToSrgb(value); + } + + /// + /// Color of button border. Accepts RGB color, works with sRGB for DrawPrimitive internally. + /// + public Color BorderColor + { + get => Color.FromSrgb(_borderColorSrgb); + set => _borderColorSrgb = Color.ToSrgb(value); + } + + /// + /// Color of button border when button is hovered. Accepts RGB color, works with sRGB for DrawPrimitive internally. + /// + public Color HoverBorderColor + { + get => Color.FromSrgb(_hoverBorderColorSrgb); + set => _hoverBorderColorSrgb = Color.ToSrgb(value); + } + + /// + /// Color of separator lines. + /// Separator lines are used to visually separate sector of radial menu items. + /// + public Color SeparatorColor { get; set; } = new Color(128, 128, 128, 128); + + /// + float IRadialMenuItemWithSector.AngleSectorFrom + { + set + { + _angleSectorFrom = value; + _isWholeCircle = IsWholeCircle(value, _angleSectorTo); + } + } + + /// + float IRadialMenuItemWithSector.AngleSectorTo + { + set + { + _angleSectorTo = value; + _isWholeCircle = IsWholeCircle(_angleSectorFrom, value); + } + } + + /// + float IRadialMenuItemWithSector.OuterRadius { set => _outerRadius = value; } + + /// + float IRadialMenuItemWithSector.InnerRadius { set => _innerRadius = value; } + + /// + public float AngleOffset { set => _angleOffset = value; } + + /// + Vector2 IRadialMenuItemWithSector.ParentCenter { set => _parentCenter = value; } /// /// A simple texture button that can move the user to a different layer within a radial menu /// - public RadialMenuTextureButton() + public RadialMenuTextureButtonWithSector() { - OnButtonUp += OnClicked; } - private void OnClicked(ButtonEventArgs args) + /// + protected override void Draw(DrawingHandleScreen handle) { - if (TargetLayer == string.Empty) + base.Draw(handle); + + if (_parentCenter == null) + { return; + } - var parent = FindParentMultiLayerContainer(this); + // draw sector where space that button occupies actually is + var containerCenter = (_parentCenter.Value - Position) * UIScale; - if (parent == null) - return; + var angleFrom = _angleSectorFrom + _angleOffset; + var angleTo = _angleSectorTo + _angleOffset; + if (DrawBackground) + { + var segmentColor = DrawMode == DrawModeEnum.Hover + ? _hoverBackgroundColorSrgb + : _backgroundColorSrgb; - parent.TryToMoveToNewLayer(TargetLayer); + DrawAnnulusSector(handle, containerCenter, _innerRadius * UIScale, _outerRadius * UIScale, angleFrom, angleTo, segmentColor); + } + + if (DrawBorder) + { + var borderColor = DrawMode == DrawModeEnum.Hover + ? _hoverBorderColorSrgb + : _borderColorSrgb; + DrawAnnulusSector(handle, containerCenter, _innerRadius * UIScale, _outerRadius * UIScale, angleFrom, angleTo, borderColor, false); + } + + if (!_isWholeCircle && DrawSeparators) + { + DrawSeparatorLines(handle, containerCenter, _innerRadius * UIScale, _outerRadius * UIScale, angleFrom, angleTo, SeparatorColor); + } } - private RadialMenu? FindParentMultiLayerContainer(Control control) + /// + protected override bool HasPoint(Vector2 point) { - foreach (var ancestor in control.GetSelfAndLogicalAncestors()) + if (_parentCenter == null) { - if (ancestor is RadialMenu) - return ancestor as RadialMenu; + return base.HasPoint(point); } - return null; + var outerRadiusSquared = _outerRadius * _outerRadius; + var innerRadiusSquared = _innerRadius * _innerRadius; + + var distSquared = (point + Position - _parentCenter.Value).LengthSquared(); + var isInRadius = distSquared < outerRadiusSquared && distSquared > innerRadiusSquared; + if (!isInRadius) + { + return false; + } + + // difference from the center of the parent to the `point` + var pointFromParent = point + Position - _parentCenter.Value; + + // Flip Y to get from ui coordinates to natural coordinates + var angle = MathF.Atan2(-pointFromParent.Y, pointFromParent.X) - _angleOffset; + if (angle < 0) + { + // atan2 range is -pi->pi, while angle sectors are + // 0->2pi, so remap the result into that range + angle = MathF.PI * 2 + angle; + } + + var isInAngle = angle >= _angleSectorFrom && angle < _angleSectorTo; + return isInAngle; + } + + /// + /// Draw segment between two concentrated circles from and to certain angles. + /// + /// Drawing handle, to which rendering should be delegated. + /// Point where circle center should be. + /// Radius of internal circle. + /// Radius of external circle. + /// Angle in radian, from which sector should start. + /// Angle in radian, from which sector should start. + /// Color for drawing. + /// Should figure be filled, or have only border. + private void DrawAnnulusSector( + DrawingHandleScreen drawingHandleScreen, + Vector2 center, + float radiusInner, + float radiusOuter, + float angleSectorFrom, + float angleSectorTo, + Color color, + bool filled = true + ) + { + const float minimalSegmentSize = MathF.Tau / 128f; + + var requestedSegmentSize = angleSectorTo - angleSectorFrom; + var segmentCount = (int)(requestedSegmentSize / minimalSegmentSize) + 1; + var anglePerSegment = requestedSegmentSize / (segmentCount - 1); + + var bufferSize = segmentCount * 2; + if (_sectorPointsForDrawing == null || _sectorPointsForDrawing.Length != bufferSize) + { + _sectorPointsForDrawing ??= new Vector2[bufferSize]; + } + + for (var i = 0; i < segmentCount; i++) + { + var angle = angleSectorFrom + anglePerSegment * i; + + // Flip Y to get from ui coordinates to natural coordinates + var unitPos = new Vector2(MathF.Cos(angle), -MathF.Sin(angle)); + var outerPoint = center + unitPos * radiusOuter; + var innerPoint = center + unitPos * radiusInner; + if (filled) + { + // to make filled sector we need to create strip from triangles + _sectorPointsForDrawing[i * 2] = outerPoint; + _sectorPointsForDrawing[i * 2 + 1] = innerPoint; + } + else + { + // to make border of sector we need points ordered as sequences on radius + _sectorPointsForDrawing[i] = outerPoint; + _sectorPointsForDrawing[bufferSize - 1 - i] = innerPoint; + } + } + + var type = filled + ? DrawPrimitiveTopology.TriangleStrip + : DrawPrimitiveTopology.LineStrip; + drawingHandleScreen.DrawPrimitives(type, _sectorPointsForDrawing, color); + } + + private static void DrawSeparatorLines( + DrawingHandleScreen drawingHandleScreen, + Vector2 center, + float radiusInner, + float radiusOuter, + float angleSectorFrom, + float angleSectorTo, + Color color + ) + { + var fromPoint = new Angle(-angleSectorFrom).RotateVec(Vector2.UnitX); + drawingHandleScreen.DrawLine( + center + fromPoint * radiusOuter, + center + fromPoint * radiusInner, + color + ); + + var toPoint = new Angle(-angleSectorTo).RotateVec(Vector2.UnitX); + drawingHandleScreen.DrawLine( + center + toPoint * radiusOuter, + center + toPoint * radiusInner, + color + ); + } + + private static bool IsWholeCircle(float angleSectorFrom, float angleSectorTo) + { + return new Angle(angleSectorFrom).EqualsApprox(new Angle(angleSectorTo)); } } From 713d4515d689b9984640e5fbab944c0a730b4c6a Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 23 Jan 2025 12:18:05 +0000 Subject: [PATCH 081/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index f3a66ebd983..2a1349a4e2d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: The Justice Helm can now only be crafted using a security helmet. - type: Fix - id: 7342 - time: '2024-09-10T19:08:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32042 - author: TurboTrackerss14 changes: - message: Gas tank explosions ("max caps") have a reduced range on WizDen servers @@ -3894,3 +3887,10 @@ id: 7841 time: '2025-01-23T10:08:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34559 +- author: Fildrance, SaphireLattice, eoineoineoin + changes: + - message: Radial menu UIs have been updated for readability. + type: Tweak + id: 7842 + time: '2025-01-23T12:16:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32653 From 9bd8b8950bd8e6bf2b590e199e3aaa2cf5cc890f Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Fri, 24 Jan 2025 01:01:18 +1200 Subject: [PATCH 082/103] Return Drozd full-auto and semi-auto firing modes (#34604) return drozd full auto and firerate, arrange available modes in alphabetical order --- .../Entities/Objects/Weapons/Guns/SMGs/smgs.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml index d23e34a1ecb..6d768f67bea 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml @@ -106,9 +106,9 @@ maxAngle: 32 shotsPerBurst: 5 availableModes: - - SemiAuto - Burst - FullAuto + - SemiAuto soundGunshot: path: /Audio/Weapons/Guns/Gunshots/c-20r.ogg - type: ChamberMagazineAmmoProvider @@ -142,13 +142,14 @@ - type: Gun minAngle: 21 maxAngle: 32 - fireRate: 12 + fireRate: 6 burstFireRate: 12 - selectedMode: Burst soundGunshot: path: /Audio/Weapons/Guns/Gunshots/atreides.ogg availableModes: - - Burst + - Burst + - FullAuto + - SemiAuto shotsPerBurst: 3 burstCooldown: 0.25 - type: ItemSlots @@ -258,9 +259,9 @@ burstCooldown: 0.2 burstFireRate: 7 availableModes: - - SemiAuto - Burst - FullAuto + - SemiAuto - type: ItemSlots slots: gun_magazine: From bc5812dd7b0663a5ca2f6234b26aa93373bb114f Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 23 Jan 2025 13:02:29 +0000 Subject: [PATCH 083/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 2a1349a4e2d..fabbd512c30 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: TurboTrackerss14 - changes: - - message: Gas tank explosions ("max caps") have a reduced range on WizDen servers - until they can be reworked into a proper game mechanic. - type: Remove - id: 7343 - time: '2024-09-10T22:05:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31437 - author: Boaz1111 changes: - message: Researching Advanced Atmospherics now requires Atmospherics to be researched. @@ -3894,3 +3886,10 @@ id: 7842 time: '2025-01-23T12:16:59.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32653 +- author: K-Dynamic + changes: + - message: The Drozd SMG can now fire in full-auto, burst or semi-auto + type: Tweak + id: 7843 + time: '2025-01-23T13:01:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34604 From 033f8444baa9719b8f48f62b3516aea8adc4ebc3 Mon Sep 17 00:00:00 2001 From: "Ignaz \"Ian\" Kraft" Date: Thu, 23 Jan 2025 15:01:45 +0100 Subject: [PATCH 084/103] added missing allowed department to the restricted severity (#34558) * added missing allow job to the base restricted severity * no need to make a list * no more linq in ContrabandTest * less nesting in ContrabandTest --- .../Tests/ContrabandTest.cs | 41 +++++++++++++++++++ .../Entities/Objects/base_contraband.yml | 1 + 2 files changed, 42 insertions(+) create mode 100644 Content.IntegrationTests/Tests/ContrabandTest.cs diff --git a/Content.IntegrationTests/Tests/ContrabandTest.cs b/Content.IntegrationTests/Tests/ContrabandTest.cs new file mode 100644 index 00000000000..ebd6afa7efe --- /dev/null +++ b/Content.IntegrationTests/Tests/ContrabandTest.cs @@ -0,0 +1,41 @@ +using Content.Shared.Contraband; +using Robust.Shared.GameObjects; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests; + +[TestFixture] +public sealed class ContrabandTest +{ + [Test] + public async Task EntityShowDepartmentsAndJobs() + { + await using var pair = await PoolManager.GetServerClient(); + var client = pair.Client; + var protoMan = client.ResolveDependency(); + var componentFactory = client.ResolveDependency(); + + await client.WaitAssertion(() => + { + foreach (var proto in protoMan.EnumeratePrototypes()) + { + if (proto.Abstract || pair.IsTestPrototype(proto)) + continue; + + if (!proto.TryGetComponent(out var contraband, componentFactory)) + continue; + + Assert.That(protoMan.TryIndex(contraband.Severity, out var severity, false), + @$"{proto.ID} has a ContrabandComponent with a unknown severity."); + + if (!severity.ShowDepartmentsAndJobs) + continue; + + Assert.That(contraband.AllowedDepartments.Count + contraband.AllowedJobs.Count, Is.Not.EqualTo(0), + @$"{proto.ID} has a ContrabandComponent with ShowDepartmentsAndJobs but no allowed departments or jobs."); + } + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Resources/Prototypes/Entities/Objects/base_contraband.yml b/Resources/Prototypes/Entities/Objects/base_contraband.yml index 84df2f8b37e..72178088077 100644 --- a/Resources/Prototypes/Entities/Objects/base_contraband.yml +++ b/Resources/Prototypes/Entities/Objects/base_contraband.yml @@ -29,6 +29,7 @@ components: - type: Contraband severity: Restricted + allowedDepartments: [ Security ] # one department restricted contraband - type: entity From b248921972787039121acd6c24ba5aa3b50c0221 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 23 Jan 2025 14:02:51 +0000 Subject: [PATCH 085/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index fabbd512c30..aba006b00f2 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Boaz1111 - changes: - - message: Researching Advanced Atmospherics now requires Atmospherics to be researched. - type: Tweak - id: 7344 - time: '2024-09-10T22:19:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32048 - author: DiposableCrewmember42 changes: - message: Fixed Revenant ability cost checks. Revenants can no longer spam abilities @@ -3893,3 +3886,10 @@ id: 7843 time: '2025-01-23T13:01:20.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34604 +- author: Ian321 + changes: + - message: Restricted contraband now gets displayed correctly. + type: Fix + id: 7844 + time: '2025-01-23T14:01:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34558 From 8af001e44ba1735f82d85a8c11b7d3cbc6236f1d Mon Sep 17 00:00:00 2001 From: lastPechkin Date: Thu, 23 Jan 2025 23:07:53 +0300 Subject: [PATCH 086/103] [Maps] Terminal update (#2948) --- .../Maps/Corvax/Misc/corvax_terminal.yml | 3731 ++++++++--------- 1 file changed, 1802 insertions(+), 1929 deletions(-) diff --git a/Resources/Maps/Corvax/Misc/corvax_terminal.yml b/Resources/Maps/Corvax/Misc/corvax_terminal.yml index 1ac5a52fea3..e63e21a745e 100644 --- a/Resources/Maps/Corvax/Misc/corvax_terminal.yml +++ b/Resources/Maps/Corvax/Misc/corvax_terminal.yml @@ -1625,41 +1625,25 @@ entities: version: 2 data: tiles: - -4,-4: - 0: 62540 - -5,-4: - 0: 32768 - -4,-2: - 1: 65535 - -5,-2: - 1: 60608 - -4,-1: - 1: 65535 - -5,-1: - 1: 52974 - -4,0: - 1: 255 + -3,-3: + 0: 8192 + 1: 2184 -3,-4: - 0: 12847 - 1: 2048 + 1: 2056 -3,-2: - 1: 48056 + 1: 34952 -3,-1: - 1: 48127 + 1: 32904 -3,-5: - 0: 4383 - -3,-3: - 0: 8465 - 1: 2184 - -3,0: - 1: 32907 - 0: 4096 + 1: 32768 -2,-3: 1: 2039 -2,-2: 1: 63351 -2,-1: - 1: 30719 + 1: 28927 + -3,0: + 1: 32904 -2,-4: 1: 3310 -2,0: @@ -1689,53 +1673,33 @@ entities: 0,0: 1: 61695 0,1: - 1: 62719 + 1: 255 -1,1: 1: 29439 - 0,2: - 1: 65535 - 0,3: - 1: 4095 - 0,4: - 0: 11810 1,1: - 1: 53487 - 1,2: - 1: 4573 - 1,3: - 1: 3551 + 1: 49391 1,0: 1: 61166 - 1,4: - 0: 61713 1,-1: 1: 61183 + 1,2: + 1: 204 2,0: 1: 65535 2,1: 1: 63487 2,2: 1: 2047 - 2,3: - 1: 4095 2,-1: 1: 65535 - 2,4: - 0: 61713 3,0: 1: 16179 3,1: 1: 4147 3,2: 1: 17 - 0: 35016 - 3,3: - 1: 273 - 0: 35976 3,-1: 1: 16179 - 3,4: - 0: 63897 4,0: 1: 256 0,-5: @@ -1748,7 +1712,6 @@ entities: 1: 61166 1,-5: 1: 57344 - 0: 14 2,-4: 1: 40412 2,-3: @@ -1771,64 +1734,34 @@ entities: 1: 4096 4,-1: 1: 256 - -5,0: - 1: 12 - 0: 32768 - -4,1: - 0: 20224 - -5,1: - 0: 2297 - -4,2: - 0: 196 -3,1: - 0: 8977 1: 136 - -3,2: - 0: 8946 - -3,3: - 0: 738 -2,1: 1: 49279 -2,2: - 0: 16 1: 49344 -2,3: - 0: 16 1: 49344 -2,4: 1: 12 - 0: 17408 -1,2: 1: 30583 -1,3: 1: 29303 -1,4: 1: 7 - 0: 17408 - 0,-8: - 0: 8944 - -1,-8: - 0: 240 0,-7: 1: 8704 - 0: 130 -1,-7: 1: 43520 0,-6: 1: 65522 -1,-6: 1: 65530 - 1,-8: - 0: 18192 - 1,-7: - 0: 17652 - 1,-6: - 0: 14 - 2,-7: - 0: 16 - 1: 52360 2,-6: 1: 61164 + 2,-7: + 1: 52360 2,-8: 1: 34944 3,-7: @@ -1837,47 +1770,10 @@ entities: 1: 4593 4,-6: 1: 16 - -3,-7: - 0: 4596 - -3,-6: - 0: 4383 - -3,-8: - 0: 19456 - -2,-8: - 0: 35312 - -2,-7: - 0: 56 - 1: 34816 -2,-6: 1: 61160 - -6,-2: - 0: 7974 - -6,-1: - 0: 61713 - -6,0: - 0: 50274 - -6,-3: - 0: 19584 - -5,-3: - 0: 2207 - -6,1: - 0: 8 - -2,5: - 0: 228 - -1,5: - 0: 8820 - -1,6: - 0: 59942 - 0,5: - 1: 13056 - 0: 130 - 0,6: - 1: 3 - 0: 62472 - 1,5: - 0: 4369 - 1,6: - 0: 4369 + -2,-7: + 1: 34816 uniqueMixes: - volume: 2500 immutable: True @@ -1927,12 +1823,12 @@ entities: parent: 2 - type: DeviceList devices: - - 890 - - 872 - - 588 - - 593 - - 585 - - 586 + - 894 + - 876 + - 592 + - 597 + - 589 + - 590 - uid: 4 components: - type: Transform @@ -1946,13 +1842,13 @@ entities: parent: 2 - type: DeviceList devices: - - 878 - - 895 - - 877 - - 876 - - 894 - - 893 - - 588 + - 882 + - 899 + - 881 + - 880 + - 898 + - 897 + - 592 - uid: 6 components: - type: Transform @@ -1960,18 +1856,18 @@ entities: parent: 2 - type: DeviceList devices: - - 587 - - 579 - - 592 - - 888 - - 871 - - 881 + - 591 + - 583 + - 596 + - 892 + - 875 + - 885 + - 877 + - 900 - 873 - - 896 - - 869 - - 577 - - 879 - - 897 + - 581 + - 883 + - 901 - uid: 7 components: - type: Transform @@ -1980,19 +1876,19 @@ entities: parent: 2 - type: DeviceList devices: - - 863 - - 882 - - 875 - - 892 - - 891 - - 874 - - 589 - - 592 - - 590 - - 591 - - 593 + - 867 - 886 - - 866 + - 879 + - 896 + - 895 + - 878 + - 593 + - 596 + - 594 + - 595 + - 597 + - 890 + - 870 - uid: 8 components: - type: Transform @@ -2001,9 +1897,9 @@ entities: parent: 2 - type: DeviceList devices: - - 885 - - 862 - - 586 + - 889 + - 866 + - 590 - uid: 9 components: - type: Transform @@ -2012,22 +1908,22 @@ entities: parent: 2 - type: DeviceList devices: - - 889 - - 870 - - 887 - - 867 - - 868 + - 893 + - 874 + - 891 + - 871 + - 872 + - 888 + - 869 - 884 - - 865 - - 880 - - 579 - - 590 - - 591 - - 585 - - 584 - - 581 - 583 - - 582 + - 594 + - 595 + - 589 + - 588 + - 585 + - 587 + - 586 - 41 - proto: Airlock entities: @@ -2114,131 +2010,118 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,4.5 parent: 2 -- proto: AirlockExternalGlassAtmosphericsLocked +- proto: AirlockExternal entities: - uid: 23 components: - type: Transform pos: 15.5,-14.5 parent: 2 - - type: ContainerFill - containers: - board: [ DoorElectronicsCentralCommand ] - missingComponents: - - RCDDeconstructable - - Damageable - - Destructible + - type: DoorBolt + boltsDown: True + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 916: + - DoorStatus: InputA - uid: 24 components: - type: Transform - rot: 1.5707963267948966 rad pos: 15.5,2.5 parent: 2 - - type: ContainerFill - containers: - board: [ DoorElectronicsCentralCommand ] - missingComponents: - - RCDDeconstructable - - Damageable - - Destructible + - type: DoorBolt + boltsDown: True + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 918: + - DoorStatus: InputB - uid: 25 components: - type: Transform - pos: 15.5,-8.5 + pos: 15.5,-22.5 parent: 2 - - type: ContainerFill - containers: - board: [ DoorElectronicsCentralCommand ] - missingComponents: - - RCDDeconstructable - - Damageable - - Destructible + - type: DoorBolt + boltsDown: True + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 915: + - DoorStatus: InputA - uid: 26 components: - type: Transform pos: 15.5,-1.5 parent: 2 - - type: ContainerFill - containers: - board: [ DoorElectronicsCentralCommand ] - missingComponents: - - RCDDeconstructable - - Damageable - - Destructible + - type: DoorBolt + boltsDown: True + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 919: + - DoorStatus: InputB - uid: 27 components: - type: Transform - pos: 11.5,-26.5 + pos: 15.5,-8.5 parent: 2 - - type: ContainerFill - containers: - board: [ DoorElectronicsCentralCommand ] - missingComponents: - - RCDDeconstructable - - Damageable - - Destructible + - type: DoorBolt + boltsDown: True + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 920: + - DoorStatus: InputA - uid: 28 components: - type: Transform - pos: 15.5,-22.5 + pos: 11.5,-26.5 parent: 2 - - type: ContainerFill - containers: - board: [ DoorElectronicsCentralCommand ] - missingComponents: - - RCDDeconstructable - - Damageable - - Destructible + - type: DoorBolt + boltsDown: True + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 917: + - DoorStatus: InputA - proto: AirlockExternalShuttleLocked entities: - uid: 29 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-22.5 + pos: 16.5,2.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 28: - - DockStatus: AutoClose - 1050: - - DoorStatus: Trigger - missingComponents: - - RCDDeconstructable - - Damageable - - Destructible + 918: + - DockStatus: InputA - uid: 30 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-14.5 + pos: 16.5,-22.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 23: - - DockStatus: AutoClose - 1049: - - DoorStatus: Trigger - missingComponents: - - RCDDeconstructable - - Damageable - - Destructible + 915: + - DockStatus: InputB - uid: 31 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-1.5 + pos: 16.5,-14.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 26: - - DockStatus: AutoClose - 1047: - - DoorStatus: Trigger - missingComponents: - - RCDDeconstructable - - Damageable - - Destructible + 916: + - DockStatus: InputB - uid: 32 components: - type: Transform @@ -2247,39 +2130,27 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 25: - - DockStatus: AutoClose - 1048: - - DoorStatus: Trigger - missingComponents: - - RCDDeconstructable - - Damageable - - Destructible + 920: + - DockStatus: InputB - uid: 33 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,2.5 + pos: 11.5,-30.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 24: - - DockStatus: AutoClose - 1046: - - DoorStatus: Trigger - missingComponents: - - RCDDeconstructable - - Damageable - - Destructible + 917: + - DockStatus: InputB - uid: 34 components: - type: Transform - pos: 11.5,-30.5 + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 parent: 2 - missingComponents: - - RCDDeconstructable - - Damageable - - Destructible + - type: DeviceLinkSource + linkedPorts: + 919: + - DockStatus: InputA - proto: AirlockGlass entities: - uid: 35 @@ -2332,7 +2203,7 @@ entities: - 9 - proto: AlwaysPoweredlightRed entities: - - uid: 1570 + - uid: 42 components: - type: Transform rot: 3.141592653589793 rad @@ -2340,29 +2211,29 @@ entities: parent: 2 - proto: APCBasic entities: - - uid: 42 + - uid: 43 components: - type: Transform pos: -0.5,6.5 parent: 2 - - uid: 43 + - uid: 44 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 44 + - uid: 45 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 parent: 2 - - uid: 45 + - uid: 46 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-14.5 parent: 2 - - uid: 46 + - uid: 47 components: - type: Transform rot: -1.5707963267948966 rad @@ -2370,87 +2241,87 @@ entities: parent: 2 - proto: ArrivalsShuttleTimer entities: - - uid: 47 + - uid: 48 components: - type: Transform pos: 13.5,-21.5 parent: 2 - - uid: 48 + - uid: 49 components: - type: Transform pos: 14.5,-0.5 parent: 2 - - uid: 49 + - uid: 50 components: - type: Transform pos: 14.5,3.5 parent: 2 - - uid: 50 + - uid: 51 components: - type: Transform pos: 13.5,-13.5 parent: 2 - - uid: 51 + - uid: 52 components: - type: Transform pos: 14.5,-7.5 parent: 2 - proto: Ash entities: - - uid: 52 + - uid: 53 components: - type: Transform pos: -1.54991,12.886424 parent: 2 - proto: Ashtray entities: - - uid: 53 + - uid: 54 components: - type: Transform pos: -1.596785,12.459861 parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 54 + - uid: 55 components: - type: Transform pos: 16.5,2.5 parent: 2 - - uid: 55 + - uid: 56 components: - type: Transform pos: 16.5,-8.5 parent: 2 - - uid: 56 + - uid: 57 components: - type: Transform pos: 16.5,-14.5 parent: 2 - - uid: 57 + - uid: 58 components: - type: Transform pos: 16.5,-1.5 parent: 2 - - uid: 58 + - uid: 59 components: - type: Transform pos: 16.5,-22.5 parent: 2 - - uid: 59 + - uid: 60 components: - type: Transform pos: 11.5,-30.5 parent: 2 - proto: BarSign entities: - - uid: 60 + - uid: 61 components: - type: Transform pos: 2.5,2.5 parent: 2 - proto: BaseComputer entities: - - uid: 61 + - uid: 62 components: - type: MetaData name: касса @@ -2459,145 +2330,145 @@ entities: parent: 2 - proto: BenchRedComfy entities: - - uid: 62 + - uid: 63 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-6.5 parent: 2 - - uid: 63 + - uid: 64 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-5.5 parent: 2 - - uid: 64 + - uid: 65 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,1.5 parent: 2 - - uid: 65 + - uid: 66 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,2.5 parent: 2 - - uid: 66 + - uid: 67 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-8.5 parent: 2 - - uid: 67 + - uid: 68 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-6.5 parent: 2 - - uid: 68 + - uid: 69 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-0.5 parent: 2 - - uid: 69 + - uid: 70 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-7.5 parent: 2 - - uid: 70 + - uid: 71 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,1.5 parent: 2 - - uid: 71 + - uid: 72 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-8.5 parent: 2 - - uid: 72 + - uid: 73 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 - - uid: 73 + - uid: 74 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-0.5 parent: 2 - - uid: 74 + - uid: 75 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,2.5 parent: 2 - - uid: 75 + - uid: 76 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,0.5 parent: 2 - - uid: 76 + - uid: 77 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,2.5 parent: 2 - - uid: 77 + - uid: 78 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 - - uid: 78 + - uid: 79 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,1.5 parent: 2 - - uid: 79 + - uid: 80 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 - - uid: 80 + - uid: 81 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,0.5 parent: 2 - - uid: 81 + - uid: 82 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-5.5 parent: 2 - - uid: 82 + - uid: 83 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-7.5 parent: 2 - - uid: 83 + - uid: 84 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-5.5 parent: 2 - - uid: 84 + - uid: 85 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-8.5 parent: 2 - - uid: 85 + - uid: 86 components: - type: Transform rot: 1.5707963267948966 rad @@ -2605,7 +2476,7 @@ entities: parent: 2 - proto: BlockGameArcade entities: - - uid: 86 + - uid: 87 components: - type: Transform rot: 1.5707963267948966 rad @@ -2613,7 +2484,7 @@ entities: parent: 2 - proto: BookRandomStory entities: - - uid: 87 + - uid: 88 components: - type: Transform rot: -1.5707963267948966 rad @@ -2621,1324 +2492,1324 @@ entities: parent: 2 - proto: BoozeDispenser entities: - - uid: 88 + - uid: 89 components: - type: Transform pos: 1.5,1.5 parent: 2 - proto: BowImprovised entities: - - uid: 90 + - uid: 91 components: - type: Transform - parent: 89 + parent: 90 - type: Physics canCollide: False - type: InsideEntityStorage - proto: CableApcExtension entities: - - uid: 96 + - uid: 97 components: - type: Transform pos: 11.5,-27.5 parent: 2 - - uid: 97 + - uid: 98 components: - type: Transform pos: 11.5,-26.5 parent: 2 - - uid: 98 + - uid: 99 components: - type: Transform pos: -2.5,-2.5 parent: 2 - - uid: 99 + - uid: 100 components: - type: Transform pos: -0.5,-15.5 parent: 2 - - uid: 100 + - uid: 101 components: - type: Transform pos: 11.5,-25.5 parent: 2 - - uid: 101 + - uid: 102 components: - type: Transform pos: 0.5,-15.5 parent: 2 - - uid: 102 + - uid: 103 components: - type: Transform pos: 13.5,-22.5 parent: 2 - - uid: 103 + - uid: 104 components: - type: Transform pos: 13.5,-2.5 parent: 2 - - uid: 104 + - uid: 105 components: - type: Transform pos: 14.5,-2.5 parent: 2 - - uid: 105 + - uid: 106 components: - type: Transform pos: -1.5,-15.5 parent: 2 - - uid: 106 + - uid: 107 components: - type: Transform pos: 12.5,-2.5 parent: 2 - - uid: 107 + - uid: 108 components: - type: Transform pos: 1.5,-15.5 parent: 2 - - uid: 108 + - uid: 109 components: - type: Transform pos: -1.5,-14.5 parent: 2 - - uid: 109 + - uid: 110 components: - type: Transform pos: -2.5,-15.5 parent: 2 - - uid: 110 + - uid: 111 components: - type: Transform pos: -0.5,6.5 parent: 2 - - uid: 111 + - uid: 112 components: - type: Transform pos: -0.5,5.5 parent: 2 - - uid: 112 + - uid: 113 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 113 + - uid: 114 components: - type: Transform pos: 1.5,-13.5 parent: 2 - - uid: 114 + - uid: 115 components: - type: Transform pos: 1.5,-14.5 parent: 2 - - uid: 115 + - uid: 116 components: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 116 + - uid: 117 components: - type: Transform pos: -2.5,4.5 parent: 2 - - uid: 117 + - uid: 118 components: - type: Transform pos: -3.5,4.5 parent: 2 - - uid: 118 + - uid: 119 components: - type: Transform pos: -4.5,4.5 parent: 2 - - uid: 119 + - uid: 120 components: - type: Transform pos: -5.5,4.5 parent: 2 - - uid: 120 + - uid: 121 components: - type: Transform pos: -6.5,4.5 parent: 2 - - uid: 121 + - uid: 122 components: - type: Transform pos: 0.5,4.5 parent: 2 - - uid: 122 + - uid: 123 components: - type: Transform pos: 1.5,4.5 parent: 2 - - uid: 123 + - uid: 124 components: - type: Transform pos: 2.5,4.5 parent: 2 - - uid: 124 + - uid: 125 components: - type: Transform pos: -2.5,5.5 parent: 2 - - uid: 125 + - uid: 126 components: - type: Transform pos: -2.5,6.5 parent: 2 - - uid: 126 + - uid: 127 components: - type: Transform pos: -2.5,7.5 parent: 2 - - uid: 127 + - uid: 128 components: - type: Transform pos: -2.5,8.5 parent: 2 - - uid: 128 + - uid: 129 components: - type: Transform pos: -2.5,9.5 parent: 2 - - uid: 129 + - uid: 130 components: - type: Transform pos: -2.5,10.5 parent: 2 - - uid: 130 + - uid: 131 components: - type: Transform pos: -2.5,11.5 parent: 2 - - uid: 131 + - uid: 132 components: - type: Transform pos: -2.5,12.5 parent: 2 - - uid: 132 + - uid: 133 components: - type: Transform pos: -2.5,13.5 parent: 2 - - uid: 133 + - uid: 134 components: - type: Transform pos: 11.5,-2.5 parent: 2 - - uid: 134 + - uid: 135 components: - type: Transform pos: 10.5,-2.5 parent: 2 - - uid: 135 + - uid: 136 components: - type: Transform pos: 9.5,-2.5 parent: 2 - - uid: 136 + - uid: 137 components: - type: Transform pos: 8.5,-2.5 parent: 2 - - uid: 137 + - uid: 138 components: - type: Transform pos: 12.5,-1.5 parent: 2 - - uid: 138 + - uid: 139 components: - type: Transform pos: 12.5,-0.5 parent: 2 - - uid: 139 + - uid: 140 components: - type: Transform pos: 12.5,0.5 parent: 2 - - uid: 140 + - uid: 141 components: - type: Transform pos: 12.5,1.5 parent: 2 - - uid: 141 + - uid: 142 components: - type: Transform pos: 12.5,2.5 parent: 2 - - uid: 142 + - uid: 143 components: - type: Transform pos: 13.5,2.5 parent: 2 - - uid: 143 + - uid: 144 components: - type: Transform pos: 7.5,-2.5 parent: 2 - - uid: 144 + - uid: 145 components: - type: Transform pos: 6.5,-2.5 parent: 2 - - uid: 145 + - uid: 146 components: - type: Transform pos: 12.5,-3.5 parent: 2 - - uid: 146 + - uid: 147 components: - type: Transform pos: 12.5,-4.5 parent: 2 - - uid: 147 + - uid: 148 components: - type: Transform pos: 12.5,-5.5 parent: 2 - - uid: 148 + - uid: 149 components: - type: Transform pos: 12.5,-6.5 parent: 2 - - uid: 149 + - uid: 150 components: - type: Transform pos: 12.5,-7.5 parent: 2 - - uid: 150 + - uid: 151 components: - type: Transform pos: 12.5,-8.5 parent: 2 - - uid: 151 + - uid: 152 components: - type: Transform pos: 12.5,-9.5 parent: 2 - - uid: 152 + - uid: 153 components: - type: Transform pos: 13.5,-8.5 parent: 2 - - uid: 153 + - uid: 154 components: - type: Transform pos: 10.5,-14.5 parent: 2 - - uid: 154 + - uid: 155 components: - type: Transform pos: 9.5,-14.5 parent: 2 - - uid: 155 + - uid: 156 components: - type: Transform pos: 8.5,-14.5 parent: 2 - - uid: 156 + - uid: 157 components: - type: Transform pos: 7.5,-14.5 parent: 2 - - uid: 157 + - uid: 158 components: - type: Transform pos: 6.5,-3.5 parent: 2 - - uid: 158 + - uid: 159 components: - type: Transform pos: 6.5,-4.5 parent: 2 - - uid: 159 + - uid: 160 components: - type: Transform pos: 6.5,-5.5 parent: 2 - - uid: 160 + - uid: 161 components: - type: Transform pos: 6.5,-6.5 parent: 2 - - uid: 161 + - uid: 162 components: - type: Transform pos: 6.5,-7.5 parent: 2 - - uid: 162 + - uid: 163 components: - type: Transform pos: 6.5,-8.5 parent: 2 - - uid: 163 + - uid: 164 components: - type: Transform pos: 6.5,-9.5 parent: 2 - - uid: 164 + - uid: 165 components: - type: Transform pos: 6.5,-10.5 parent: 2 - - uid: 165 + - uid: 166 components: - type: Transform pos: 12.5,-10.5 parent: 2 - - uid: 166 + - uid: 167 components: - type: Transform pos: 6.5,-1.5 parent: 2 - - uid: 167 + - uid: 168 components: - type: Transform pos: 6.5,-0.5 parent: 2 - - uid: 168 + - uid: 169 components: - type: Transform pos: 6.5,0.5 parent: 2 - - uid: 169 + - uid: 170 components: - type: Transform pos: 6.5,1.5 parent: 2 - - uid: 170 + - uid: 171 components: - type: Transform pos: 6.5,2.5 parent: 2 - - uid: 171 + - uid: 172 components: - type: Transform pos: 6.5,3.5 parent: 2 - - uid: 172 + - uid: 173 components: - type: Transform pos: 6.5,4.5 parent: 2 - - uid: 173 + - uid: 174 components: - type: Transform pos: 7.5,4.5 parent: 2 - - uid: 174 + - uid: 175 components: - type: Transform pos: 8.5,4.5 parent: 2 - - uid: 175 + - uid: 176 components: - type: Transform pos: 9.5,4.5 parent: 2 - - uid: 176 + - uid: 177 components: - type: Transform pos: 9.5,5.5 parent: 2 - - uid: 177 + - uid: 178 components: - type: Transform pos: 9.5,6.5 parent: 2 - - uid: 178 + - uid: 179 components: - type: Transform pos: 9.5,7.5 parent: 2 - - uid: 179 + - uid: 180 components: - type: Transform pos: 9.5,8.5 parent: 2 - - uid: 180 + - uid: 181 components: - type: Transform pos: 9.5,9.5 parent: 2 - - uid: 181 + - uid: 182 components: - type: Transform pos: 8.5,8.5 parent: 2 - - uid: 182 + - uid: 183 components: - type: Transform pos: 10.5,8.5 parent: 2 - - uid: 183 + - uid: 184 components: - type: Transform pos: 11.5,-14.5 parent: 2 - - uid: 184 + - uid: 185 components: - type: Transform pos: 11.5,-15.5 parent: 2 - - uid: 185 + - uid: 186 components: - type: Transform pos: 11.5,-16.5 parent: 2 - - uid: 186 + - uid: 187 components: - type: Transform pos: 11.5,-17.5 parent: 2 - - uid: 187 + - uid: 188 components: - type: Transform pos: 11.5,-18.5 parent: 2 - - uid: 188 + - uid: 189 components: - type: Transform pos: 11.5,-19.5 parent: 2 - - uid: 189 + - uid: 190 components: - type: Transform pos: 11.5,-20.5 parent: 2 - - uid: 190 + - uid: 191 components: - type: Transform pos: 11.5,-21.5 parent: 2 - - uid: 191 + - uid: 192 components: - type: Transform pos: 11.5,-22.5 parent: 2 - - uid: 192 + - uid: 193 components: - type: Transform pos: 11.5,-23.5 parent: 2 - - uid: 193 + - uid: 194 components: - type: Transform pos: 11.5,-24.5 parent: 2 - - uid: 194 + - uid: 195 components: - type: Transform pos: 12.5,-22.5 parent: 2 - - uid: 195 + - uid: 196 components: - type: Transform pos: -7.5,-4.5 parent: 2 - - uid: 196 + - uid: 197 components: - type: Transform pos: 13.5,-14.5 parent: 2 - - uid: 197 + - uid: 198 components: - type: Transform pos: 12.5,-14.5 parent: 2 - - uid: 198 + - uid: 199 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 199 + - uid: 200 components: - type: Transform pos: 3.5,-4.5 parent: 2 - - uid: 200 + - uid: 201 components: - type: Transform pos: 2.5,-3.5 parent: 2 - - uid: 201 + - uid: 202 components: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 202 + - uid: 203 components: - type: Transform pos: -1.5,0.5 parent: 2 - - uid: 203 + - uid: 204 components: - type: Transform pos: 1.5,-3.5 parent: 2 - - uid: 204 + - uid: 205 components: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 205 + - uid: 206 components: - type: Transform pos: -0.5,-3.5 parent: 2 - - uid: 206 + - uid: 207 components: - type: Transform pos: -1.5,-3.5 parent: 2 - - uid: 207 + - uid: 208 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 208 + - uid: 209 components: - type: Transform pos: -3.5,-3.5 parent: 2 - - uid: 209 + - uid: 210 components: - type: Transform pos: -4.5,-3.5 parent: 2 - - uid: 210 + - uid: 211 components: - type: Transform pos: -5.5,-3.5 parent: 2 - - uid: 211 + - uid: 212 components: - type: Transform pos: -6.5,-3.5 parent: 2 - - uid: 212 + - uid: 213 components: - type: Transform pos: -7.5,-3.5 parent: 2 - - uid: 213 + - uid: 214 components: - type: Transform pos: -2.5,-1.5 parent: 2 - - uid: 214 + - uid: 215 components: - type: Transform pos: -2.5,-0.5 parent: 2 - - uid: 215 + - uid: 216 components: - type: Transform pos: -2.5,0.5 parent: 2 - - uid: 216 + - uid: 217 components: - type: Transform pos: -2.5,-4.5 parent: 2 - - uid: 217 + - uid: 218 components: - type: Transform pos: -2.5,-5.5 parent: 2 - - uid: 218 + - uid: 219 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 219 + - uid: 220 components: - type: Transform pos: -7.5,-2.5 parent: 2 - - uid: 220 + - uid: 221 components: - type: Transform pos: 2.5,-2.5 parent: 2 - - uid: 221 + - uid: 222 components: - type: Transform pos: -0.5,0.5 parent: 2 - - uid: 222 + - uid: 223 components: - type: Transform pos: 0.5,0.5 parent: 2 - - uid: 223 + - uid: 224 components: - type: Transform pos: -3.5,0.5 parent: 2 - - uid: 224 + - uid: 225 components: - type: Transform pos: -4.5,0.5 parent: 2 - - uid: 225 + - uid: 226 components: - type: Transform pos: -5.5,0.5 parent: 2 - - uid: 226 + - uid: 227 components: - type: Transform pos: -6.5,0.5 parent: 2 - - uid: 227 + - uid: 228 components: - type: Transform pos: 1.5,0.5 parent: 2 - - uid: 228 + - uid: 229 components: - type: Transform pos: -0.5,-10.5 parent: 2 - - uid: 229 + - uid: 230 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 230 + - uid: 231 components: - type: Transform pos: 1.5,-11.5 parent: 2 - - uid: 231 + - uid: 232 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 232 + - uid: 233 components: - type: Transform pos: 0.5,-10.5 parent: 2 - - uid: 233 + - uid: 234 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 234 + - uid: 235 components: - type: Transform pos: -1.5,-10.5 parent: 2 - - uid: 235 + - uid: 236 components: - type: Transform pos: -2.5,-10.5 parent: 2 - - uid: 236 + - uid: 237 components: - type: Transform pos: -3.5,-10.5 parent: 2 - - uid: 237 + - uid: 238 components: - type: Transform pos: -4.5,-10.5 parent: 2 - - uid: 238 + - uid: 239 components: - type: Transform pos: -5.5,-10.5 parent: 2 - - uid: 239 + - uid: 240 components: - type: Transform pos: -6.5,-10.5 parent: 2 - - uid: 240 + - uid: 241 components: - type: Transform pos: -7.5,-10.5 parent: 2 - - uid: 241 + - uid: 242 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 242 + - uid: 243 components: - type: Transform pos: -3.5,-15.5 parent: 2 - - uid: 243 + - uid: 244 components: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 244 + - uid: 245 components: - type: Transform pos: -1.5,-16.5 parent: 2 - - uid: 245 + - uid: 246 components: - type: Transform pos: -1.5,-17.5 parent: 2 - - uid: 246 + - uid: 247 components: - type: Transform pos: -1.5,-18.5 parent: 2 - - uid: 247 + - uid: 248 components: - type: Transform pos: -1.5,-20.5 parent: 2 - - uid: 248 + - uid: 249 components: - type: Transform pos: -1.5,-21.5 parent: 2 - - uid: 249 + - uid: 250 components: - type: Transform pos: -4.5,-20.5 parent: 2 - - uid: 250 + - uid: 251 components: - type: Transform pos: -4.5,-23.5 parent: 2 - - uid: 251 + - uid: 252 components: - type: Transform pos: -4.5,-22.5 parent: 2 - - uid: 252 + - uid: 253 components: - type: Transform pos: -2.5,-23.5 parent: 2 - - uid: 253 + - uid: 254 components: - type: Transform pos: 1.5,-22.5 parent: 2 - - uid: 254 + - uid: 255 components: - type: Transform pos: -2.5,-22.5 parent: 2 - - uid: 255 + - uid: 256 components: - type: Transform pos: -0.5,-22.5 parent: 2 - - uid: 256 + - uid: 257 components: - type: Transform pos: -0.5,-23.5 parent: 2 - - uid: 257 + - uid: 258 components: - type: Transform pos: 1.5,-23.5 parent: 2 - - uid: 258 + - uid: 259 components: - type: Transform pos: -4.5,-21.5 parent: 2 - - uid: 259 + - uid: 260 components: - type: Transform pos: -3.5,-21.5 parent: 2 - - uid: 260 + - uid: 261 components: - type: Transform pos: -2.5,-21.5 parent: 2 - - uid: 261 + - uid: 262 components: - type: Transform pos: -0.5,-21.5 parent: 2 - - uid: 262 + - uid: 263 components: - type: Transform pos: 0.5,-21.5 parent: 2 - - uid: 263 + - uid: 264 components: - type: Transform pos: 1.5,-21.5 parent: 2 - - uid: 264 + - uid: 265 components: - type: Transform pos: -4.5,-19.5 parent: 2 - - uid: 265 + - uid: 266 components: - type: Transform pos: 1.5,-20.5 parent: 2 - - uid: 266 + - uid: 267 components: - type: Transform pos: 1.5,-19.5 parent: 2 - - uid: 267 + - uid: 268 components: - type: Transform pos: -2.5,14.5 parent: 2 - - uid: 268 + - uid: 269 components: - type: Transform pos: -2.5,15.5 parent: 2 - - uid: 269 + - uid: 270 components: - type: Transform pos: -3.5,15.5 parent: 2 - - uid: 270 + - uid: 271 components: - type: Transform pos: -4.5,15.5 parent: 2 - - uid: 271 + - uid: 272 components: - type: Transform pos: -8.5,-10.5 parent: 2 - - uid: 272 + - uid: 273 components: - type: Transform pos: -8.5,-11.5 parent: 2 - proto: CableHV entities: - - uid: 273 + - uid: 274 components: - type: Transform pos: -5.5,3.5 parent: 2 - - uid: 274 + - uid: 275 components: - type: Transform pos: -5.5,4.5 parent: 2 - - uid: 275 + - uid: 276 components: - type: Transform pos: -5.5,5.5 parent: 2 - - uid: 276 + - uid: 277 components: - type: Transform pos: -6.5,5.5 parent: 2 - - uid: 277 + - uid: 278 components: - type: Transform pos: -7.5,5.5 parent: 2 - - uid: 278 + - uid: 279 components: - type: Transform pos: -8.5,5.5 parent: 2 - proto: CableMV entities: - - uid: 279 + - uid: 280 components: - type: Transform pos: -5.5,4.5 parent: 2 - - uid: 280 + - uid: 281 components: - type: Transform pos: 7.5,-4.5 parent: 2 - - uid: 281 + - uid: 282 components: - type: Transform pos: -8.5,5.5 parent: 2 - - uid: 282 + - uid: 283 components: - type: Transform pos: 6.5,-4.5 parent: 2 - - uid: 283 + - uid: 284 components: - type: Transform pos: -7.5,4.5 parent: 2 - - uid: 284 + - uid: 285 components: - type: Transform pos: 6.5,-10.5 parent: 2 - - uid: 285 + - uid: 286 components: - type: Transform pos: -8.5,4.5 parent: 2 - - uid: 286 + - uid: 287 components: - type: Transform pos: -6.5,4.5 parent: 2 - - uid: 287 + - uid: 288 components: - type: Transform pos: -4.5,4.5 parent: 2 - - uid: 288 + - uid: 289 components: - type: Transform pos: -3.5,4.5 parent: 2 - - uid: 289 + - uid: 290 components: - type: Transform pos: -2.5,4.5 parent: 2 - - uid: 290 + - uid: 291 components: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 291 + - uid: 292 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 292 + - uid: 293 components: - type: Transform pos: -0.5,5.5 parent: 2 - - uid: 293 + - uid: 294 components: - type: Transform pos: -0.5,6.5 parent: 2 - - uid: 294 + - uid: 295 components: - type: Transform pos: 0.5,4.5 parent: 2 - - uid: 295 + - uid: 296 components: - type: Transform pos: 1.5,4.5 parent: 2 - - uid: 296 + - uid: 297 components: - type: Transform pos: 2.5,4.5 parent: 2 - - uid: 297 + - uid: 298 components: - type: Transform pos: 3.5,4.5 parent: 2 - - uid: 298 + - uid: 299 components: - type: Transform pos: 4.5,4.5 parent: 2 - - uid: 299 + - uid: 300 components: - type: Transform pos: 5.5,4.5 parent: 2 - - uid: 300 + - uid: 301 components: - type: Transform pos: 6.5,4.5 parent: 2 - - uid: 301 + - uid: 302 components: - type: Transform pos: 7.5,4.5 parent: 2 - - uid: 302 + - uid: 303 components: - type: Transform pos: 8.5,4.5 parent: 2 - - uid: 303 + - uid: 304 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 304 + - uid: 305 components: - type: Transform pos: 4.5,-4.5 parent: 2 - - uid: 305 + - uid: 306 components: - type: Transform pos: 7.5,-10.5 parent: 2 - - uid: 306 + - uid: 307 components: - type: Transform pos: 5.5,-10.5 parent: 2 - - uid: 307 + - uid: 308 components: - type: Transform pos: 4.5,-10.5 parent: 2 - - uid: 308 + - uid: 309 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 309 + - uid: 310 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 310 + - uid: 311 components: - type: Transform pos: 3.5,-10.5 parent: 2 - - uid: 311 + - uid: 312 components: - type: Transform pos: 1.5,-11.5 parent: 2 - - uid: 312 + - uid: 313 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 313 + - uid: 314 components: - type: Transform pos: 9.5,-2.5 parent: 2 - - uid: 314 + - uid: 315 components: - type: Transform pos: 10.5,-2.5 parent: 2 - - uid: 315 + - uid: 316 components: - type: Transform pos: 11.5,-2.5 parent: 2 - - uid: 316 + - uid: 317 components: - type: Transform pos: -2.5,-4.5 parent: 2 - - uid: 317 + - uid: 318 components: - type: Transform pos: 8.5,-11.5 parent: 2 - - uid: 318 + - uid: 319 components: - type: Transform pos: 8.5,-12.5 parent: 2 - - uid: 319 + - uid: 320 components: - type: Transform pos: 8.5,-13.5 parent: 2 - - uid: 320 + - uid: 321 components: - type: Transform pos: 8.5,-14.5 parent: 2 - - uid: 321 + - uid: 322 components: - type: Transform pos: 9.5,-14.5 parent: 2 - - uid: 322 + - uid: 323 components: - type: Transform pos: 8.5,3.5 parent: 2 - - uid: 323 + - uid: 324 components: - type: Transform pos: 8.5,2.5 parent: 2 - - uid: 324 + - uid: 325 components: - type: Transform pos: 8.5,1.5 parent: 2 - - uid: 325 + - uid: 326 components: - type: Transform pos: 8.5,0.5 parent: 2 - - uid: 326 + - uid: 327 components: - type: Transform pos: 8.5,-0.5 parent: 2 - - uid: 327 + - uid: 328 components: - type: Transform pos: 8.5,-1.5 parent: 2 - - uid: 328 + - uid: 329 components: - type: Transform pos: 8.5,-2.5 parent: 2 - - uid: 329 + - uid: 330 components: - type: Transform pos: 8.5,-3.5 parent: 2 - - uid: 330 + - uid: 331 components: - type: Transform pos: 8.5,-4.5 parent: 2 - - uid: 331 + - uid: 332 components: - type: Transform pos: 8.5,-5.5 parent: 2 - - uid: 332 + - uid: 333 components: - type: Transform pos: 8.5,-6.5 parent: 2 - - uid: 333 + - uid: 334 components: - type: Transform pos: 8.5,-7.5 parent: 2 - - uid: 334 + - uid: 335 components: - type: Transform pos: 8.5,-8.5 parent: 2 - - uid: 335 + - uid: 336 components: - type: Transform pos: 8.5,-9.5 parent: 2 - - uid: 336 + - uid: 337 components: - type: Transform pos: 8.5,-10.5 parent: 2 - - uid: 337 + - uid: 338 components: - type: Transform pos: -3.5,-4.5 parent: 2 - - uid: 338 + - uid: 339 components: - type: Transform pos: -4.5,-4.5 parent: 2 - - uid: 339 + - uid: 340 components: - type: Transform pos: -5.5,-4.5 parent: 2 - - uid: 340 + - uid: 341 components: - type: Transform pos: -6.5,-4.5 parent: 2 - - uid: 341 + - uid: 342 components: - type: Transform pos: -7.5,-4.5 parent: 2 - - uid: 342 + - uid: 343 components: - type: Transform pos: -8.5,-4.5 parent: 2 - - uid: 343 + - uid: 344 components: - type: Transform pos: -9.5,-4.5 parent: 2 - - uid: 344 + - uid: 345 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 345 + - uid: 346 components: - type: Transform pos: -2.5,-2.5 parent: 2 - - uid: 346 + - uid: 347 components: - type: Transform pos: -2.5,-1.5 parent: 2 - - uid: 347 + - uid: 348 components: - type: Transform pos: -2.5,-0.5 parent: 2 - - uid: 348 + - uid: 349 components: - type: Transform pos: -2.5,0.5 parent: 2 - - uid: 349 + - uid: 350 components: - type: Transform pos: -2.5,1.5 parent: 2 - - uid: 350 + - uid: 351 components: - type: Transform pos: -2.5,2.5 parent: 2 - - uid: 351 + - uid: 352 components: - type: Transform pos: -2.5,3.5 parent: 2 - - uid: 352 + - uid: 353 components: - type: Transform pos: 12.5,-2.5 parent: 2 - - uid: 353 + - uid: 354 components: - type: Transform pos: 13.5,-2.5 parent: 2 - - uid: 354 + - uid: 355 components: - type: Transform pos: 14.5,-2.5 parent: 2 - proto: CableTerminal entities: - - uid: 355 + - uid: 356 components: - type: Transform rot: -1.5707963267948966 rad @@ -3946,7 +3817,7 @@ entities: parent: 2 - proto: CandleBlackInfinite entities: - - uid: 356 + - uid: 357 components: - type: Transform rot: -1.5707963267948966 rad @@ -3954,7 +3825,7 @@ entities: parent: 2 - proto: CandleGreenSmallInfinite entities: - - uid: 357 + - uid: 358 components: - type: Transform rot: -1.5707963267948966 rad @@ -3962,14 +3833,14 @@ entities: parent: 2 - proto: CandlePurpleSmallInfinite entities: - - uid: 358 + - uid: 359 components: - type: Transform pos: -7.2544527,-7.1859117 parent: 2 - proto: CandleRedInfinite entities: - - uid: 359 + - uid: 360 components: - type: Transform rot: -1.5707963267948966 rad @@ -3977,256 +3848,256 @@ entities: parent: 2 - proto: Carpet entities: - - uid: 360 + - uid: 361 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-16.5 parent: 2 - - uid: 361 + - uid: 362 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-15.5 parent: 2 - - uid: 362 + - uid: 363 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-15.5 parent: 2 - - uid: 363 + - uid: 364 components: - type: Transform pos: -3.5,-20.5 parent: 2 - - uid: 364 + - uid: 365 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-14.5 parent: 2 - - uid: 365 + - uid: 366 components: - type: Transform pos: -2.5,-20.5 parent: 2 - - uid: 366 + - uid: 367 components: - type: Transform pos: 0.5,-19.5 parent: 2 - - uid: 367 + - uid: 368 components: - type: Transform pos: -0.5,-20.5 parent: 2 - - uid: 368 + - uid: 369 components: - type: Transform pos: 0.5,-20.5 parent: 2 - - uid: 369 + - uid: 370 components: - type: Transform pos: -0.5,-19.5 parent: 2 - - uid: 370 + - uid: 371 components: - type: Transform pos: -2.5,-19.5 parent: 2 - - uid: 371 + - uid: 372 components: - type: Transform pos: -3.5,-19.5 parent: 2 - - uid: 372 + - uid: 373 components: - type: Transform pos: -1.5,-20.5 parent: 2 - - uid: 373 + - uid: 374 components: - type: Transform pos: -1.5,-20.5 parent: 2 - - uid: 374 + - uid: 375 components: - type: Transform pos: -1.5,-19.5 parent: 2 - proto: CarpetBlack entities: - - uid: 375 + - uid: 376 components: - type: Transform pos: -4.5,-25.5 parent: 2 - - uid: 376 + - uid: 377 components: - type: Transform pos: 1.5,-25.5 parent: 2 - - uid: 377 + - uid: 378 components: - type: Transform pos: -2.5,-25.5 parent: 2 - - uid: 378 + - uid: 379 components: - type: Transform pos: -0.5,-25.5 parent: 2 - proto: CarpetGreen entities: - - uid: 379 + - uid: 380 components: - type: Transform pos: 0.5,-14.5 parent: 2 - - uid: 380 + - uid: 381 components: - type: Transform pos: 0.5,-15.5 parent: 2 - - uid: 381 + - uid: 382 components: - type: Transform pos: 1.5,-14.5 parent: 2 - - uid: 382 + - uid: 383 components: - type: Transform pos: 1.5,-15.5 parent: 2 - - uid: 383 + - uid: 384 components: - type: Transform pos: 2.5,-14.5 parent: 2 - - uid: 384 + - uid: 385 components: - type: Transform pos: 2.5,-15.5 parent: 2 - proto: CarpetWhite entities: - - uid: 385 + - uid: 386 components: - type: Transform pos: -5.5,-14.5 parent: 2 - - uid: 386 + - uid: 387 components: - type: Transform pos: -5.5,-15.5 parent: 2 - - uid: 387 + - uid: 388 components: - type: Transform pos: -4.5,-14.5 parent: 2 - - uid: 388 + - uid: 389 components: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 389 + - uid: 390 components: - type: Transform pos: -3.5,-14.5 parent: 2 - - uid: 390 + - uid: 391 components: - type: Transform pos: -3.5,-15.5 parent: 2 - proto: Catwalk entities: - - uid: 391 + - uid: 392 components: - type: Transform pos: -5.5,4.5 parent: 2 - - uid: 392 + - uid: 393 components: - type: Transform pos: -8.5,4.5 parent: 2 - - uid: 393 + - uid: 394 components: - type: Transform pos: -6.5,4.5 parent: 2 - - uid: 394 + - uid: 395 components: - type: Transform pos: -7.5,4.5 parent: 2 - proto: Chair entities: - - uid: 395 + - uid: 396 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-17.5 parent: 2 - - uid: 396 + - uid: 397 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-18.5 parent: 2 - - uid: 397 + - uid: 398 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-24.5 parent: 2 - - uid: 398 + - uid: 399 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-19.5 parent: 2 - - uid: 399 + - uid: 400 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-24.5 parent: 2 - - uid: 400 + - uid: 401 components: - type: Transform pos: 9.5,-20.5 parent: 2 - - uid: 401 + - uid: 402 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-16.5 parent: 2 - - uid: 402 + - uid: 403 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-20.5 parent: 2 - - uid: 403 + - uid: 404 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-22.5 parent: 2 - - uid: 1562 + - uid: 405 components: - type: Transform pos: -8.5,-15.5 parent: 2 - proto: ChairGreyscale entities: - - uid: 404 + - uid: 406 components: - type: Transform rot: 3.141592653589793 rad @@ -4234,7 +4105,7 @@ entities: parent: 2 - proto: ChairOfficeDark entities: - - uid: 405 + - uid: 407 components: - type: Transform rot: 3.141592653589793 rad @@ -4242,31 +4113,31 @@ entities: parent: 2 - proto: ChairWood entities: - - uid: 406 + - uid: 408 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-16.5 parent: 2 - - uid: 407 + - uid: 409 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-21.5 parent: 2 - - uid: 408 + - uid: 410 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-20.5 parent: 2 - - uid: 409 + - uid: 411 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-21.5 parent: 2 - - uid: 410 + - uid: 412 components: - type: Transform rot: 1.5707963267948966 rad @@ -4274,7 +4145,7 @@ entities: parent: 2 - proto: CigaretteMold entities: - - uid: 411 + - uid: 413 components: - type: Transform rot: 3.141592653589793 rad @@ -4282,18 +4153,18 @@ entities: parent: 2 - proto: CigaretteSpent entities: - - uid: 412 + - uid: 414 components: - type: Transform pos: -1.70616,12.589549 parent: 2 - - uid: 413 + - uid: 415 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.378035,12.433299 parent: 2 - - uid: 414 + - uid: 416 components: - type: Transform rot: 3.141592653589793 rad @@ -4301,72 +4172,72 @@ entities: parent: 2 - proto: ClothingBeltQuiver entities: - - uid: 91 + - uid: 92 components: - type: Transform - parent: 89 + parent: 90 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatBeretFrench entities: - - uid: 416 + - uid: 418 components: - type: Transform - parent: 415 + parent: 417 - type: Physics canCollide: False - proto: ClothingHeadHatBunny entities: - - uid: 418 + - uid: 420 components: - type: Transform pos: 1.321607,-25.619549 parent: 2 - proto: ClothingHeadHatTacticalMaidHeadband entities: - - uid: 92 + - uid: 93 components: - type: MetaData name: повязка службы безопасности - type: Transform - parent: 89 + parent: 90 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatUshanka entities: - - uid: 420 + - uid: 422 components: - type: Transform - parent: 419 + parent: 421 - type: Physics canCollide: False - proto: ClothingNeckScarfStripedRed entities: - - uid: 93 + - uid: 94 components: - type: Transform - parent: 89 + parent: 90 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterWinterCoat entities: - - uid: 421 + - uid: 423 components: - type: Transform - parent: 419 + parent: 421 - type: Physics canCollide: False - - uid: 423 + - uid: 425 components: - type: Transform pos: -6.765032,-16.31055 parent: 2 - proto: ClothingOuterWinterEngi entities: - - uid: 424 + - uid: 426 components: - type: MetaData name: коричневая зимняя куртка @@ -4375,7 +4246,7 @@ entities: parent: 2 - proto: ClothingOuterWinterGen entities: - - uid: 425 + - uid: 427 components: - type: MetaData name: бело-синяя зимняя куртка @@ -4384,21 +4255,21 @@ entities: parent: 2 - proto: ClothingShoesBootsLaceup entities: - - uid: 426 + - uid: 428 components: - type: Transform pos: 2.352745,-13.342463 parent: 2 - proto: ClothingShoesBootsWinter entities: - - uid: 427 + - uid: 429 components: - type: Transform pos: -5.3679223,-13.595501 parent: 2 - proto: ClothingShoesBootsWinterCargo entities: - - uid: 428 + - uid: 430 components: - type: MetaData name: коричневые зимние ботинки @@ -4407,7 +4278,7 @@ entities: parent: 2 - proto: ClothingShoesBootsWinterMed entities: - - uid: 429 + - uid: 431 components: - type: MetaData name: синие зимние ботинки @@ -4416,74 +4287,74 @@ entities: parent: 2 - proto: ClothingShoesBootsWork entities: - - uid: 430 + - uid: 432 components: - type: Transform pos: 1.3232573,-13.656497 parent: 2 - proto: ClothingShoesColorBlack entities: - - uid: 431 + - uid: 433 components: - type: Transform pos: 0.50740063,-13.279211 parent: 2 - proto: ClothingShoesColorBlue entities: - - uid: 432 + - uid: 434 components: - type: Transform pos: 0.4818722,-13.819506 parent: 2 - proto: ClothingShoesColorRed entities: - - uid: 433 + - uid: 435 components: - type: Transform pos: 2.2520154,-13.7933235 parent: 2 - proto: ClothingShoesDameDane entities: - - uid: 434 + - uid: 436 components: - type: Transform pos: 2.990286,-16.449436 parent: 2 - proto: ClothingShoesLeather entities: - - uid: 435 + - uid: 437 components: - type: Transform pos: 1.5809284,-13.332744 parent: 2 - proto: ClothingShoesSlippers entities: - - uid: 436 + - uid: 438 components: - type: Transform pos: 1.727857,-25.275799 parent: 2 - proto: ClothingShoesTourist entities: - - uid: 94 + - uid: 95 components: - type: Transform - parent: 89 + parent: 90 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtBlackElegantDress entities: - - uid: 417 + - uid: 419 components: - type: MetaData desc: Элегантное платье с красивым бантом. name: чёрное элегантное платье - type: Transform - parent: 415 + parent: 417 - type: Physics canCollide: False - - uid: 437 + - uid: 439 components: - type: MetaData desc: Элегантное платье с красивым бантом. @@ -4493,7 +4364,7 @@ entities: parent: 2 - proto: ClothingUniformJumpskirtGreenTurtleneckDress entities: - - uid: 438 + - uid: 440 components: - type: MetaData desc: Платье с водолазкой и уникальным дизайном. @@ -4503,7 +4374,7 @@ entities: parent: 2 - proto: ClothingUniformJumpskirtPurpleElegantDress entities: - - uid: 439 + - uid: 441 components: - type: MetaData desc: Элегантное платье с красивым бантом. @@ -4513,24 +4384,24 @@ entities: parent: 2 - proto: ClothingUniformJumpsuitCasualRed entities: - - uid: 95 + - uid: 96 components: - type: Transform - parent: 89 + parent: 90 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitColorGrey entities: - - uid: 422 + - uid: 424 components: - type: Transform - parent: 419 + parent: 421 - type: Physics canCollide: False - proto: Cobweb1 entities: - - uid: 1568 + - uid: 442 components: - type: Transform rot: 3.141592653589793 rad @@ -4538,7 +4409,7 @@ entities: parent: 2 - proto: Cobweb2 entities: - - uid: 1567 + - uid: 443 components: - type: Transform rot: 1.5707963267948966 rad @@ -4546,136 +4417,136 @@ entities: parent: 2 - proto: ComfyChair entities: - - uid: 440 + - uid: 444 components: - type: Transform pos: 6.5,9.5 parent: 2 - - uid: 441 + - uid: 445 components: - type: Transform pos: 12.5,9.5 parent: 2 - - uid: 442 + - uid: 446 components: - type: Transform pos: 7.5,9.5 parent: 2 - - uid: 443 + - uid: 447 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-5.5 parent: 2 - - uid: 444 + - uid: 448 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-6.5 parent: 2 - - uid: 445 + - uid: 449 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,7.5 parent: 2 - - uid: 446 + - uid: 450 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,7.5 parent: 2 - - uid: 447 + - uid: 451 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-7.5 parent: 2 - - uid: 448 + - uid: 452 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-7.5 parent: 2 - - uid: 449 + - uid: 453 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-5.5 parent: 2 - - uid: 450 + - uid: 454 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-7.5 parent: 2 - - uid: 451 + - uid: 455 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-5.5 parent: 2 - - uid: 452 + - uid: 456 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-6.5 parent: 2 - - uid: 453 + - uid: 457 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-7.5 parent: 2 - - uid: 454 + - uid: 458 components: - type: Transform pos: 11.5,9.5 parent: 2 - - uid: 455 + - uid: 459 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,7.5 parent: 2 - - uid: 456 + - uid: 460 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,7.5 parent: 2 - - uid: 457 + - uid: 461 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-6.5 parent: 2 - - uid: 458 + - uid: 462 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-6.5 parent: 2 - - uid: 459 + - uid: 463 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-5.5 parent: 2 - - uid: 460 + - uid: 464 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-20.5 parent: 2 - - uid: 461 + - uid: 465 components: - type: Transform pos: -8.5,-11.5 parent: 2 - proto: ComputerCriminalRecords entities: - - uid: 462 + - uid: 466 components: - type: Transform rot: 1.5707963267948966 rad @@ -4683,7 +4554,7 @@ entities: parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 463 + - uid: 467 components: - type: Transform rot: 1.5707963267948966 rad @@ -4691,37 +4562,37 @@ entities: parent: 2 - proto: ConveyorBelt entities: - - uid: 464 + - uid: 468 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,16.5 parent: 2 - - uid: 465 + - uid: 469 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,16.5 parent: 2 - - uid: 466 + - uid: 470 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,16.5 parent: 2 - - uid: 467 + - uid: 471 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,16.5 parent: 2 - - uid: 468 + - uid: 472 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,16.5 parent: 2 - - uid: 469 + - uid: 473 components: - type: Transform rot: -1.5707963267948966 rad @@ -4729,73 +4600,73 @@ entities: parent: 2 - proto: CowToolboxFilled entities: - - uid: 470 + - uid: 474 components: - type: Transform pos: -6.457727,-11.454361 parent: 2 - proto: CrateTrashCartFilled entities: - - uid: 471 + - uid: 475 components: - type: Transform pos: -5.5,15.5 parent: 2 - proto: CurtainsWhite entities: - - uid: 472 + - uid: 476 components: - type: Transform pos: 1.5,-23.5 parent: 2 - proto: CurtainsWhiteOpen entities: - - uid: 473 + - uid: 477 components: - type: Transform pos: -4.5,-23.5 parent: 2 - - uid: 474 + - uid: 478 components: - type: Transform pos: -0.5,-23.5 parent: 2 - - uid: 475 + - uid: 479 components: - type: Transform pos: -2.5,-23.5 parent: 2 - proto: DisposalBend entities: - - uid: 476 + - uid: 480 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-17.5 parent: 2 - - uid: 477 + - uid: 481 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 2 - - uid: 478 + - uid: 482 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,16.5 parent: 2 - - uid: 479 + - uid: 483 components: - type: Transform pos: 5.5,4.5 parent: 2 - - uid: 480 + - uid: 484 components: - type: Transform pos: 11.5,-10.5 parent: 2 - - uid: 481 + - uid: 485 components: - type: Transform rot: 3.141592653589793 rad @@ -4803,31 +4674,31 @@ entities: parent: 2 - proto: DisposalJunction entities: - - uid: 482 + - uid: 486 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-7.5 parent: 2 - - uid: 483 + - uid: 487 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 2 - - uid: 484 + - uid: 488 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-10.5 parent: 2 - - uid: 485 + - uid: 489 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,9.5 parent: 2 - - uid: 486 + - uid: 490 components: - type: Transform rot: 3.141592653589793 rad @@ -4835,31 +4706,31 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: - - uid: 487 + - uid: 491 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,1.5 parent: 2 - - uid: 488 + - uid: 492 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,13.5 parent: 2 - - uid: 489 + - uid: 493 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,11.5 parent: 2 - - uid: 490 + - uid: 494 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 2 - - uid: 491 + - uid: 495 components: - type: Transform rot: 3.141592653589793 rad @@ -4867,307 +4738,307 @@ entities: parent: 2 - proto: DisposalPipe entities: - - uid: 492 + - uid: 496 components: - type: Transform pos: -2.5,0.5 parent: 2 - - uid: 493 + - uid: 497 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-3.5 parent: 2 - - uid: 494 + - uid: 498 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-10.5 parent: 2 - - uid: 495 + - uid: 499 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 2 - - uid: 496 + - uid: 500 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,6.5 parent: 2 - - uid: 497 + - uid: 501 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 parent: 2 - - uid: 498 + - uid: 502 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,15.5 parent: 2 - - uid: 499 + - uid: 503 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-16.5 parent: 2 - - uid: 500 + - uid: 504 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-15.5 parent: 2 - - uid: 501 + - uid: 505 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-14.5 parent: 2 - - uid: 502 + - uid: 506 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-13.5 parent: 2 - - uid: 503 + - uid: 507 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-12.5 parent: 2 - - uid: 504 + - uid: 508 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-11.5 parent: 2 - - uid: 505 + - uid: 509 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 2 - - uid: 506 + - uid: 510 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,8.5 parent: 2 - - uid: 507 + - uid: 511 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,13.5 parent: 2 - - uid: 508 + - uid: 512 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 parent: 2 - - uid: 509 + - uid: 513 components: - type: Transform pos: -3.5,8.5 parent: 2 - - uid: 510 + - uid: 514 components: - type: Transform pos: -2.5,-9.5 parent: 2 - - uid: 511 + - uid: 515 components: - type: Transform pos: -2.5,-8.5 parent: 2 - - uid: 512 + - uid: 516 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 513 + - uid: 517 components: - type: Transform pos: -2.5,-5.5 parent: 2 - - uid: 514 + - uid: 518 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-10.5 parent: 2 - - uid: 515 + - uid: 519 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 - - uid: 516 + - uid: 520 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 2 - - uid: 517 + - uid: 521 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-10.5 parent: 2 - - uid: 518 + - uid: 522 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-10.5 parent: 2 - - uid: 519 + - uid: 523 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-10.5 parent: 2 - - uid: 520 + - uid: 524 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-10.5 parent: 2 - - uid: 521 + - uid: 525 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-10.5 parent: 2 - - uid: 522 + - uid: 526 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-10.5 parent: 2 - - uid: 523 + - uid: 527 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-10.5 parent: 2 - - uid: 524 + - uid: 528 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-0.5 parent: 2 - - uid: 525 + - uid: 529 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 2 - - uid: 526 + - uid: 530 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-2.5 parent: 2 - - uid: 527 + - uid: 531 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-10.5 parent: 2 - - uid: 528 + - uid: 532 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,4.5 parent: 2 - - uid: 529 + - uid: 533 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,4.5 parent: 2 - - uid: 530 + - uid: 534 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 2 - - uid: 531 + - uid: 535 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,4.5 parent: 2 - - uid: 532 + - uid: 536 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,4.5 parent: 2 - - uid: 533 + - uid: 537 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,4.5 parent: 2 - - uid: 534 + - uid: 538 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,4.5 parent: 2 - - uid: 535 + - uid: 539 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 2 - - uid: 536 + - uid: 540 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 - - uid: 537 + - uid: 541 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-17.5 parent: 2 - - uid: 538 + - uid: 542 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,14.5 parent: 2 - - uid: 539 + - uid: 543 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 2 - - uid: 540 + - uid: 544 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,11.5 parent: 2 - - uid: 541 + - uid: 545 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,9.5 parent: 2 - - uid: 542 + - uid: 546 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,7.5 parent: 2 - - uid: 543 + - uid: 547 components: - type: Transform rot: 3.141592653589793 rad @@ -5175,66 +5046,66 @@ entities: parent: 2 - proto: DisposalTrunk entities: - - uid: 544 + - uid: 548 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-17.5 parent: 2 - - uid: 545 + - uid: 549 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,1.5 parent: 2 - - uid: 546 + - uid: 550 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 2 - - uid: 547 + - uid: 551 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,16.5 parent: 2 - - uid: 548 + - uid: 552 components: - type: Transform pos: 5.5,-9.5 parent: 2 - - uid: 549 + - uid: 553 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,13.5 parent: 2 - - uid: 550 + - uid: 554 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 parent: 2 - - uid: 551 + - uid: 555 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,9.5 parent: 2 - - uid: 552 + - uid: 556 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,7.5 parent: 2 - - uid: 553 + - uid: 557 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,3.5 parent: 2 - - uid: 554 + - uid: 558 components: - type: Transform rot: -1.5707963267948966 rad @@ -5242,124 +5113,124 @@ entities: parent: 2 - proto: DisposalUnit entities: - - uid: 555 + - uid: 559 components: - type: Transform pos: 9.5,-17.5 parent: 2 - - uid: 556 + - uid: 560 components: - type: Transform pos: -1.5,7.5 parent: 2 - - uid: 557 + - uid: 561 components: - type: Transform pos: -3.5,1.5 parent: 2 - - uid: 558 + - uid: 562 components: - type: Transform pos: 5.5,3.5 parent: 2 - - uid: 559 + - uid: 563 components: - type: Transform pos: 5.5,-9.5 parent: 2 - - uid: 560 + - uid: 564 components: - type: Transform pos: -1.5,-7.5 parent: 2 - proto: DrinkBadTouchGlass entities: - - uid: 561 + - uid: 565 components: - type: Transform pos: 2.7226288,-0.3183478 parent: 2 - proto: DrinkColaCan entities: - - uid: 562 + - uid: 566 components: - type: Transform pos: -5.311922,-0.20970154 parent: 2 - - uid: 563 + - uid: 567 components: - type: Transform pos: -5.4770956,-0.40791774 parent: 2 - - uid: 564 + - uid: 568 components: - type: Transform pos: -5.6800737,-0.25959373 parent: 2 - proto: DrinkGlass entities: - - uid: 565 + - uid: 569 components: - type: Transform pos: 3.1884108,1.6255958 parent: 2 - - uid: 566 + - uid: 570 components: - type: Transform pos: 3.2977858,1.7662208 parent: 2 - - uid: 567 + - uid: 571 components: - type: Transform pos: 3.4696608,1.6099708 parent: 2 - - uid: 568 + - uid: 572 components: - type: Transform pos: -6.3673034,-20.542006 parent: 2 - - uid: 569 + - uid: 573 components: - type: Transform pos: 3.49748,-21.225851 parent: 2 - - uid: 570 + - uid: 574 components: - type: Transform pos: 3.6521113,-20.442896 parent: 2 - - uid: 571 + - uid: 575 components: - type: Transform pos: -6.555601,-21.315048 parent: 2 - proto: DrinkHotCoffee entities: - - uid: 572 + - uid: 576 components: - type: Transform pos: 6.602686,8.518019 parent: 2 - - uid: 573 + - uid: 577 components: - type: Transform pos: 7.524561,8.736769 parent: 2 - proto: ExtinguisherCabinetFilled entities: - - uid: 574 + - uid: 578 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-0.5 parent: 2 - - uid: 575 + - uid: 579 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-8.5 parent: 2 - - uid: 576 + - uid: 580 components: - type: Transform rot: 1.5707963267948966 rad @@ -5367,7 +5238,7 @@ entities: parent: 2 - proto: Firelock entities: - - uid: 577 + - uid: 581 components: - type: Transform pos: -2.5,6.5 @@ -5375,13 +5246,13 @@ entities: - type: DeviceNetwork deviceLists: - 6 - - uid: 578 + - uid: 582 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 2 - - uid: 579 + - uid: 583 components: - type: Transform rot: 3.141592653589793 rad @@ -5391,13 +5262,13 @@ entities: deviceLists: - 9 - 6 - - uid: 580 + - uid: 584 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,0.5 parent: 2 - - uid: 581 + - uid: 585 components: - type: Transform rot: 3.141592653589793 rad @@ -5406,7 +5277,7 @@ entities: - type: DeviceNetwork deviceLists: - 9 - - uid: 582 + - uid: 586 components: - type: Transform rot: 3.141592653589793 rad @@ -5415,7 +5286,7 @@ entities: - type: DeviceNetwork deviceLists: - 9 - - uid: 583 + - uid: 587 components: - type: Transform rot: 3.141592653589793 rad @@ -5424,7 +5295,7 @@ entities: - type: DeviceNetwork deviceLists: - 9 - - uid: 584 + - uid: 588 components: - type: Transform rot: 3.141592653589793 rad @@ -5433,7 +5304,7 @@ entities: - type: DeviceNetwork deviceLists: - 9 - - uid: 585 + - uid: 589 components: - type: Transform rot: 3.141592653589793 rad @@ -5443,7 +5314,7 @@ entities: deviceLists: - 9 - 3 - - uid: 586 + - uid: 590 components: - type: Transform pos: -4.5,-10.5 @@ -5452,7 +5323,7 @@ entities: deviceLists: - 8 - 3 - - uid: 587 + - uid: 591 components: - type: Transform pos: -4.5,4.5 @@ -5462,7 +5333,7 @@ entities: - 6 - proto: FirelockGlass entities: - - uid: 588 + - uid: 592 components: - type: Transform pos: -1.5,-12.5 @@ -5471,7 +5342,7 @@ entities: deviceLists: - 3 - 5 - - uid: 589 + - uid: 593 components: - type: Transform pos: 11.5,-12.5 @@ -5479,7 +5350,7 @@ entities: - type: DeviceNetwork deviceLists: - 7 - - uid: 590 + - uid: 594 components: - type: Transform rot: 3.141592653589793 rad @@ -5489,7 +5360,7 @@ entities: deviceLists: - 9 - 7 - - uid: 591 + - uid: 595 components: - type: Transform rot: 3.141592653589793 rad @@ -5499,7 +5370,7 @@ entities: deviceLists: - 9 - 7 - - uid: 592 + - uid: 596 components: - type: Transform pos: 4.5,4.5 @@ -5508,7 +5379,7 @@ entities: deviceLists: - 7 - 6 - - uid: 593 + - uid: 597 components: - type: Transform pos: 4.5,-10.5 @@ -5519,21 +5390,21 @@ entities: - 7 - proto: FoodBoxDonut entities: - - uid: 594 + - uid: 598 components: - type: Transform pos: 12.368311,8.596144 parent: 2 - proto: FoodBoxPizzaFilled entities: - - uid: 595 + - uid: 599 components: - type: Transform pos: -5.4837027,1.7526376 parent: 2 - proto: GasMinerNitrogenStationLarge entities: - - uid: 596 + - uid: 600 components: - type: MetaData name: газодобытчик воздуха @@ -5542,7 +5413,7 @@ entities: parent: 2 - proto: GasMinerOxygenStationLarge entities: - - uid: 597 + - uid: 601 components: - type: MetaData name: газодобытчик воздуха @@ -5551,7 +5422,7 @@ entities: parent: 2 - proto: GasPassiveVent entities: - - uid: 598 + - uid: 602 components: - type: Transform rot: 1.5707963267948966 rad @@ -5559,7 +5430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 599 + - uid: 603 components: - type: Transform rot: 3.141592653589793 rad @@ -5569,7 +5440,7 @@ entities: color: '#0000FFFF' - proto: GasPipeBend entities: - - uid: 600 + - uid: 604 components: - type: Transform rot: 1.5707963267948966 rad @@ -5577,7 +5448,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 601 + - uid: 605 components: - type: Transform rot: 1.5707963267948966 rad @@ -5585,7 +5456,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 602 + - uid: 606 components: - type: Transform rot: 3.141592653589793 rad @@ -5593,21 +5464,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 603 + - uid: 607 components: - type: Transform pos: 8.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 604 + - uid: 608 components: - type: Transform pos: 10.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 605 + - uid: 609 components: - type: Transform rot: 1.5707963267948966 rad @@ -5615,13 +5486,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 606 + - uid: 610 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 2 - - uid: 607 + - uid: 611 components: - type: Transform rot: -1.5707963267948966 rad @@ -5629,7 +5500,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 608 + - uid: 612 components: - type: Transform rot: 1.5707963267948966 rad @@ -5637,7 +5508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 609 + - uid: 613 components: - type: Transform rot: 3.141592653589793 rad @@ -5645,7 +5516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 610 + - uid: 614 components: - type: Transform rot: 1.5707963267948966 rad @@ -5653,14 +5524,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 611 + - uid: 615 components: - type: Transform pos: 11.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 612 + - uid: 616 components: - type: Transform rot: 1.5707963267948966 rad @@ -5668,14 +5539,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 613 + - uid: 617 components: - type: Transform pos: -9.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 614 + - uid: 618 components: - type: Transform rot: -1.5707963267948966 rad @@ -5683,14 +5554,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 615 + - uid: 619 components: - type: Transform pos: -9.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 616 + - uid: 620 components: - type: Transform rot: -1.5707963267948966 rad @@ -5698,7 +5569,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 617 + - uid: 621 components: - type: Transform rot: 3.141592653589793 rad @@ -5706,7 +5577,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 618 + - uid: 622 components: - type: Transform rot: 3.141592653589793 rad @@ -5714,7 +5585,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 619 + - uid: 623 components: - type: Transform rot: 1.5707963267948966 rad @@ -5722,7 +5593,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 620 + - uid: 624 components: - type: Transform rot: -1.5707963267948966 rad @@ -5730,7 +5601,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 621 + - uid: 625 components: - type: Transform rot: 1.5707963267948966 rad @@ -5738,7 +5609,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 622 + - uid: 626 components: - type: Transform rot: -1.5707963267948966 rad @@ -5746,7 +5617,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 623 + - uid: 627 components: - type: Transform rot: 3.141592653589793 rad @@ -5754,7 +5625,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 624 + - uid: 628 components: - type: Transform rot: 1.5707963267948966 rad @@ -5762,7 +5633,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 625 + - uid: 629 components: - type: Transform rot: -1.5707963267948966 rad @@ -5772,28 +5643,28 @@ entities: color: '#0000FFFF' - proto: GasPipeFourway entities: - - uid: 626 + - uid: 630 components: - type: Transform pos: 1.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 627 + - uid: 631 components: - type: Transform pos: 2.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 628 + - uid: 632 components: - type: Transform pos: -0.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 629 + - uid: 633 components: - type: Transform pos: -1.5,-16.5 @@ -5802,7 +5673,7 @@ entities: color: '#0000FFFF' - proto: GasPipeStraight entities: - - uid: 630 + - uid: 634 components: - type: Transform rot: 3.141592653589793 rad @@ -5810,7 +5681,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 631 + - uid: 635 components: - type: Transform rot: -1.5707963267948966 rad @@ -5818,7 +5689,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 632 + - uid: 636 components: - type: Transform rot: 3.141592653589793 rad @@ -5826,35 +5697,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 633 + - uid: 637 components: - type: Transform pos: -6.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 634 + - uid: 638 components: - type: Transform pos: -1.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 635 + - uid: 639 components: - type: Transform pos: -1.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 636 + - uid: 640 components: - type: Transform pos: -6.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 637 + - uid: 641 components: - type: Transform rot: 3.141592653589793 rad @@ -5862,34 +5733,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 638 + - uid: 642 components: - type: Transform pos: -0.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 639 + - uid: 643 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,5.5 parent: 2 - - uid: 640 + - uid: 644 components: - type: Transform pos: -0.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 641 + - uid: 645 components: - type: Transform pos: 11.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 642 + - uid: 646 components: - type: Transform rot: -1.5707963267948966 rad @@ -5897,7 +5768,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 643 + - uid: 647 components: - type: Transform rot: -1.5707963267948966 rad @@ -5905,42 +5776,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 644 + - uid: 648 components: - type: Transform pos: 11.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 645 + - uid: 649 components: - type: Transform pos: 11.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 646 + - uid: 650 components: - type: Transform pos: 11.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 647 + - uid: 651 components: - type: Transform pos: 10.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 648 + - uid: 652 components: - type: Transform pos: 10.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 649 + - uid: 653 components: - type: Transform rot: 3.141592653589793 rad @@ -5948,7 +5819,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 650 + - uid: 654 components: - type: Transform rot: 3.141592653589793 rad @@ -5956,7 +5827,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 651 + - uid: 655 components: - type: Transform rot: -1.5707963267948966 rad @@ -5964,7 +5835,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 652 + - uid: 656 components: - type: Transform rot: 3.141592653589793 rad @@ -5972,7 +5843,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 653 + - uid: 657 components: - type: Transform rot: 3.141592653589793 rad @@ -5980,13 +5851,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 654 + - uid: 658 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,3.5 parent: 2 - - uid: 655 + - uid: 659 components: - type: Transform rot: 3.141592653589793 rad @@ -5994,20 +5865,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 656 + - uid: 660 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 2 - - uid: 657 + - uid: 661 components: - type: Transform pos: 10.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 658 + - uid: 662 components: - type: Transform rot: -1.5707963267948966 rad @@ -6015,7 +5886,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 659 + - uid: 663 components: - type: Transform rot: -1.5707963267948966 rad @@ -6023,7 +5894,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 660 + - uid: 664 components: - type: Transform rot: -1.5707963267948966 rad @@ -6031,7 +5902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 661 + - uid: 665 components: - type: Transform rot: 3.141592653589793 rad @@ -6039,7 +5910,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 662 + - uid: 666 components: - type: Transform rot: 3.141592653589793 rad @@ -6047,7 +5918,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 663 + - uid: 667 components: - type: Transform rot: -1.5707963267948966 rad @@ -6055,7 +5926,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 664 + - uid: 668 components: - type: Transform rot: -1.5707963267948966 rad @@ -6063,7 +5934,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 665 + - uid: 669 components: - type: Transform rot: -1.5707963267948966 rad @@ -6071,7 +5942,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 666 + - uid: 670 components: - type: Transform rot: 1.5707963267948966 rad @@ -6079,7 +5950,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 667 + - uid: 671 components: - type: Transform rot: 1.5707963267948966 rad @@ -6087,7 +5958,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 668 + - uid: 672 components: - type: Transform rot: 3.141592653589793 rad @@ -6095,7 +5966,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 669 + - uid: 673 components: - type: Transform rot: 3.141592653589793 rad @@ -6103,7 +5974,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 670 + - uid: 674 components: - type: Transform rot: 3.141592653589793 rad @@ -6111,7 +5982,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 671 + - uid: 675 components: - type: Transform rot: 3.141592653589793 rad @@ -6119,7 +5990,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 672 + - uid: 676 components: - type: Transform rot: 3.141592653589793 rad @@ -6127,7 +5998,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 673 + - uid: 677 components: - type: Transform rot: 3.141592653589793 rad @@ -6135,7 +6006,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 674 + - uid: 678 components: - type: Transform rot: 3.141592653589793 rad @@ -6143,7 +6014,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 675 + - uid: 679 components: - type: Transform rot: 3.141592653589793 rad @@ -6151,7 +6022,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 676 + - uid: 680 components: - type: Transform rot: 3.141592653589793 rad @@ -6159,7 +6030,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 677 + - uid: 681 components: - type: Transform rot: -1.5707963267948966 rad @@ -6167,7 +6038,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 678 + - uid: 682 components: - type: Transform rot: -1.5707963267948966 rad @@ -6175,7 +6046,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 679 + - uid: 683 components: - type: Transform rot: 3.141592653589793 rad @@ -6183,7 +6054,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 680 + - uid: 684 components: - type: Transform rot: 3.141592653589793 rad @@ -6191,7 +6062,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 681 + - uid: 685 components: - type: Transform rot: 3.141592653589793 rad @@ -6199,7 +6070,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 682 + - uid: 686 components: - type: Transform rot: 3.141592653589793 rad @@ -6207,7 +6078,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 683 + - uid: 687 components: - type: Transform rot: 3.141592653589793 rad @@ -6215,28 +6086,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 684 + - uid: 688 components: - type: Transform pos: -7.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 685 + - uid: 689 components: - type: Transform pos: -7.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 686 + - uid: 690 components: - type: Transform pos: 1.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 687 + - uid: 691 components: - type: Transform rot: 3.141592653589793 rad @@ -6244,7 +6115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 688 + - uid: 692 components: - type: Transform rot: 3.141592653589793 rad @@ -6252,7 +6123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 689 + - uid: 693 components: - type: Transform rot: -1.5707963267948966 rad @@ -6260,7 +6131,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 690 + - uid: 694 components: - type: Transform rot: 1.5707963267948966 rad @@ -6268,7 +6139,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 691 + - uid: 695 components: - type: Transform rot: 1.5707963267948966 rad @@ -6276,7 +6147,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 692 + - uid: 696 components: - type: Transform rot: 3.141592653589793 rad @@ -6284,7 +6155,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 693 + - uid: 697 components: - type: Transform rot: 1.5707963267948966 rad @@ -6292,7 +6163,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 694 + - uid: 698 components: - type: Transform rot: -1.5707963267948966 rad @@ -6300,7 +6171,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 695 + - uid: 699 components: - type: Transform rot: -1.5707963267948966 rad @@ -6308,7 +6179,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 696 + - uid: 700 components: - type: Transform rot: -1.5707963267948966 rad @@ -6316,7 +6187,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 697 + - uid: 701 components: - type: Transform rot: 3.141592653589793 rad @@ -6324,7 +6195,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 698 + - uid: 702 components: - type: Transform rot: -1.5707963267948966 rad @@ -6332,7 +6203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 699 + - uid: 703 components: - type: Transform rot: -1.5707963267948966 rad @@ -6340,7 +6211,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 700 + - uid: 704 components: - type: Transform rot: -1.5707963267948966 rad @@ -6348,7 +6219,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 701 + - uid: 705 components: - type: Transform rot: 1.5707963267948966 rad @@ -6356,7 +6227,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 702 + - uid: 706 components: - type: Transform rot: 3.141592653589793 rad @@ -6364,7 +6235,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 703 + - uid: 707 components: - type: Transform rot: 3.141592653589793 rad @@ -6372,7 +6243,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 704 + - uid: 708 components: - type: Transform rot: -1.5707963267948966 rad @@ -6380,7 +6251,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 705 + - uid: 709 components: - type: Transform rot: 1.5707963267948966 rad @@ -6388,7 +6259,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 706 + - uid: 710 components: - type: Transform rot: 1.5707963267948966 rad @@ -6396,7 +6267,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 707 + - uid: 711 components: - type: Transform rot: 3.141592653589793 rad @@ -6404,7 +6275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 708 + - uid: 712 components: - type: Transform rot: 1.5707963267948966 rad @@ -6412,7 +6283,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 709 + - uid: 713 components: - type: Transform rot: 1.5707963267948966 rad @@ -6420,7 +6291,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 710 + - uid: 714 components: - type: Transform rot: 1.5707963267948966 rad @@ -6428,7 +6299,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 711 + - uid: 715 components: - type: Transform rot: 3.141592653589793 rad @@ -6436,14 +6307,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 712 + - uid: 716 components: - type: Transform pos: -0.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 713 + - uid: 717 components: - type: Transform rot: 3.141592653589793 rad @@ -6451,7 +6322,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 714 + - uid: 718 components: - type: Transform rot: -1.5707963267948966 rad @@ -6459,7 +6330,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 715 + - uid: 719 components: - type: Transform rot: 1.5707963267948966 rad @@ -6467,7 +6338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 716 + - uid: 720 components: - type: Transform rot: 1.5707963267948966 rad @@ -6475,7 +6346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 717 + - uid: 721 components: - type: Transform rot: -1.5707963267948966 rad @@ -6483,7 +6354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 718 + - uid: 722 components: - type: Transform rot: 3.141592653589793 rad @@ -6491,7 +6362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 719 + - uid: 723 components: - type: Transform rot: -1.5707963267948966 rad @@ -6499,7 +6370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 720 + - uid: 724 components: - type: Transform rot: -1.5707963267948966 rad @@ -6507,7 +6378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 721 + - uid: 725 components: - type: Transform rot: 1.5707963267948966 rad @@ -6515,7 +6386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 722 + - uid: 726 components: - type: Transform rot: 1.5707963267948966 rad @@ -6523,7 +6394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 723 + - uid: 727 components: - type: Transform rot: 1.5707963267948966 rad @@ -6531,7 +6402,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 724 + - uid: 728 components: - type: Transform rot: 1.5707963267948966 rad @@ -6539,7 +6410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 725 + - uid: 729 components: - type: Transform rot: 1.5707963267948966 rad @@ -6547,21 +6418,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 726 + - uid: 730 components: - type: Transform pos: -6.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 727 + - uid: 731 components: - type: Transform pos: 1.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 728 + - uid: 732 components: - type: Transform rot: -1.5707963267948966 rad @@ -6569,7 +6440,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 729 + - uid: 733 components: - type: Transform rot: 3.141592653589793 rad @@ -6577,7 +6448,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 730 + - uid: 734 components: - type: Transform rot: 3.141592653589793 rad @@ -6585,7 +6456,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 731 + - uid: 735 components: - type: Transform rot: 3.141592653589793 rad @@ -6593,7 +6464,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 732 + - uid: 736 components: - type: Transform rot: -1.5707963267948966 rad @@ -6601,7 +6472,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 733 + - uid: 737 components: - type: Transform rot: -1.5707963267948966 rad @@ -6609,7 +6480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 734 + - uid: 738 components: - type: Transform rot: 3.141592653589793 rad @@ -6617,7 +6488,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 735 + - uid: 739 components: - type: Transform rot: 1.5707963267948966 rad @@ -6625,7 +6496,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 736 + - uid: 740 components: - type: Transform rot: -1.5707963267948966 rad @@ -6633,7 +6504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 737 + - uid: 741 components: - type: Transform rot: -1.5707963267948966 rad @@ -6641,7 +6512,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 738 + - uid: 742 components: - type: Transform rot: -1.5707963267948966 rad @@ -6649,7 +6520,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 739 + - uid: 743 components: - type: Transform rot: 3.141592653589793 rad @@ -6657,21 +6528,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 740 + - uid: 744 components: - type: Transform pos: 11.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 741 + - uid: 745 components: - type: Transform pos: 8.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 742 + - uid: 746 components: - type: Transform rot: -1.5707963267948966 rad @@ -6679,7 +6550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 743 + - uid: 747 components: - type: Transform rot: -1.5707963267948966 rad @@ -6687,14 +6558,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 744 + - uid: 748 components: - type: Transform pos: 7.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 745 + - uid: 749 components: - type: Transform rot: 3.141592653589793 rad @@ -6702,7 +6573,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 746 + - uid: 750 components: - type: Transform rot: 3.141592653589793 rad @@ -6710,7 +6581,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 747 + - uid: 751 components: - type: Transform rot: 3.141592653589793 rad @@ -6718,7 +6589,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 748 + - uid: 752 components: - type: Transform rot: 3.141592653589793 rad @@ -6726,7 +6597,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 749 + - uid: 753 components: - type: Transform rot: 3.141592653589793 rad @@ -6734,7 +6605,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 750 + - uid: 754 components: - type: Transform rot: 3.141592653589793 rad @@ -6742,7 +6613,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 751 + - uid: 755 components: - type: Transform rot: 3.141592653589793 rad @@ -6750,7 +6621,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 752 + - uid: 756 components: - type: Transform rot: 3.141592653589793 rad @@ -6758,7 +6629,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 753 + - uid: 757 components: - type: Transform rot: -1.5707963267948966 rad @@ -6766,7 +6637,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 754 + - uid: 758 components: - type: Transform rot: -1.5707963267948966 rad @@ -6774,7 +6645,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 755 + - uid: 759 components: - type: Transform rot: 3.141592653589793 rad @@ -6782,14 +6653,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 756 + - uid: 760 components: - type: Transform pos: -0.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 757 + - uid: 761 components: - type: Transform rot: 1.5707963267948966 rad @@ -6797,7 +6668,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 758 + - uid: 762 components: - type: Transform rot: 1.5707963267948966 rad @@ -6805,7 +6676,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 759 + - uid: 763 components: - type: Transform rot: 1.5707963267948966 rad @@ -6813,7 +6684,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 760 + - uid: 764 components: - type: Transform rot: 3.141592653589793 rad @@ -6821,7 +6692,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 761 + - uid: 765 components: - type: Transform rot: 1.5707963267948966 rad @@ -6829,7 +6700,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 762 + - uid: 766 components: - type: Transform rot: 3.141592653589793 rad @@ -6837,7 +6708,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 763 + - uid: 767 components: - type: Transform rot: 1.5707963267948966 rad @@ -6845,14 +6716,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 764 + - uid: 768 components: - type: Transform pos: -6.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 765 + - uid: 769 components: - type: Transform rot: 1.5707963267948966 rad @@ -6860,28 +6731,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 766 + - uid: 770 components: - type: Transform pos: -1.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 767 + - uid: 771 components: - type: Transform pos: -2.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 768 + - uid: 772 components: - type: Transform pos: 1.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 769 + - uid: 773 components: - type: Transform rot: 3.141592653589793 rad @@ -6889,7 +6760,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 770 + - uid: 774 components: - type: Transform rot: -1.5707963267948966 rad @@ -6897,7 +6768,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 771 + - uid: 775 components: - type: Transform rot: 3.141592653589793 rad @@ -6905,7 +6776,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 772 + - uid: 776 components: - type: Transform rot: 3.141592653589793 rad @@ -6913,7 +6784,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 773 + - uid: 777 components: - type: Transform rot: 3.141592653589793 rad @@ -6921,21 +6792,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 774 + - uid: 778 components: - type: Transform pos: -1.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 775 + - uid: 779 components: - type: Transform pos: -1.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 776 + - uid: 780 components: - type: Transform rot: -1.5707963267948966 rad @@ -6943,7 +6814,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 777 + - uid: 781 components: - type: Transform rot: 3.141592653589793 rad @@ -6951,7 +6822,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 778 + - uid: 782 components: - type: Transform rot: -1.5707963267948966 rad @@ -6959,14 +6830,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 779 + - uid: 783 components: - type: Transform pos: -2.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 780 + - uid: 784 components: - type: Transform rot: 1.5707963267948966 rad @@ -6974,7 +6845,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 781 + - uid: 785 components: - type: Transform rot: 1.5707963267948966 rad @@ -6982,14 +6853,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 782 + - uid: 786 components: - type: Transform pos: -2.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 783 + - uid: 787 components: - type: Transform rot: 1.5707963267948966 rad @@ -6997,7 +6868,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 784 + - uid: 788 components: - type: Transform rot: 1.5707963267948966 rad @@ -7005,7 +6876,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 785 + - uid: 789 components: - type: Transform rot: 1.5707963267948966 rad @@ -7013,7 +6884,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 786 + - uid: 790 components: - type: Transform rot: 1.5707963267948966 rad @@ -7021,7 +6892,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 787 + - uid: 791 components: - type: Transform rot: 1.5707963267948966 rad @@ -7029,7 +6900,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 788 + - uid: 792 components: - type: Transform rot: 1.5707963267948966 rad @@ -7037,7 +6908,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 789 + - uid: 793 components: - type: Transform rot: 1.5707963267948966 rad @@ -7045,14 +6916,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 790 + - uid: 794 components: - type: Transform pos: -1.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 791 + - uid: 795 components: - type: Transform rot: 1.5707963267948966 rad @@ -7060,7 +6931,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 792 + - uid: 796 components: - type: Transform rot: 1.5707963267948966 rad @@ -7068,21 +6939,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 793 + - uid: 797 components: - type: Transform pos: -1.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 794 + - uid: 798 components: - type: Transform pos: 2.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 795 + - uid: 799 components: - type: Transform rot: -1.5707963267948966 rad @@ -7090,49 +6961,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 796 + - uid: 800 components: - type: Transform pos: -7.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 797 + - uid: 801 components: - type: Transform pos: 2.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 798 + - uid: 802 components: - type: Transform pos: 2.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 799 + - uid: 803 components: - type: Transform pos: -7.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 800 + - uid: 804 components: - type: Transform pos: 1.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 801 + - uid: 805 components: - type: Transform pos: 2.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 802 + - uid: 806 components: - type: Transform rot: -1.5707963267948966 rad @@ -7140,21 +7011,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 803 + - uid: 807 components: - type: Transform pos: -2.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 804 + - uid: 808 components: - type: Transform pos: -2.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 805 + - uid: 809 components: - type: Transform rot: 1.5707963267948966 rad @@ -7162,28 +7033,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 806 + - uid: 810 components: - type: Transform pos: 8.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 807 + - uid: 811 components: - type: Transform pos: 8.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 808 + - uid: 812 components: - type: Transform pos: 11.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 809 + - uid: 813 components: - type: Transform rot: 1.5707963267948966 rad @@ -7191,7 +7062,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 810 + - uid: 814 components: - type: Transform rot: 1.5707963267948966 rad @@ -7199,7 +7070,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 811 + - uid: 815 components: - type: Transform rot: 1.5707963267948966 rad @@ -7207,7 +7078,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 812 + - uid: 816 components: - type: Transform rot: 1.5707963267948966 rad @@ -7215,7 +7086,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 813 + - uid: 817 components: - type: Transform rot: 1.5707963267948966 rad @@ -7223,7 +7094,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 814 + - uid: 818 components: - type: Transform rot: 1.5707963267948966 rad @@ -7231,7 +7102,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 815 + - uid: 819 components: - type: Transform rot: -1.5707963267948966 rad @@ -7239,7 +7110,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 816 + - uid: 820 components: - type: Transform rot: 1.5707963267948966 rad @@ -7247,7 +7118,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 817 + - uid: 821 components: - type: Transform rot: 1.5707963267948966 rad @@ -7255,36 +7126,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 819 + - uid: 822 components: - type: Transform pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 820 + - uid: 823 components: - type: Transform pos: -0.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 821 + - uid: 824 components: - type: Transform pos: -1.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 822 + - uid: 825 components: - type: Transform rot: 3.141592653589793 rad @@ -7292,7 +7155,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 823 + - uid: 826 components: - type: Transform rot: 3.141592653589793 rad @@ -7300,7 +7163,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 824 + - uid: 827 components: - type: Transform rot: 3.141592653589793 rad @@ -7308,7 +7171,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 825 + - uid: 828 components: - type: Transform rot: 3.141592653589793 rad @@ -7316,7 +7179,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 826 + - uid: 829 components: - type: Transform rot: 3.141592653589793 rad @@ -7324,7 +7187,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 827 + - uid: 830 components: - type: Transform rot: 3.141592653589793 rad @@ -7332,7 +7195,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 828 + - uid: 831 components: - type: Transform rot: 3.141592653589793 rad @@ -7340,7 +7203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 829 + - uid: 832 components: - type: Transform rot: 3.141592653589793 rad @@ -7348,7 +7211,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 830 + - uid: 833 components: - type: Transform rot: 3.141592653589793 rad @@ -7356,7 +7219,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 831 + - uid: 834 components: - type: Transform rot: 3.141592653589793 rad @@ -7364,7 +7227,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 832 + - uid: 835 components: - type: Transform rot: 3.141592653589793 rad @@ -7372,9 +7235,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeTJunction entities: - - uid: 833 + - uid: 837 components: - type: Transform rot: -1.5707963267948966 rad @@ -7382,7 +7253,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 834 + - uid: 838 components: - type: Transform rot: -1.5707963267948966 rad @@ -7390,13 +7261,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 835 + - uid: 839 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-4.5 parent: 2 - - uid: 836 + - uid: 840 components: - type: Transform rot: 3.141592653589793 rad @@ -7404,13 +7275,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 837 + - uid: 841 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 2 - - uid: 838 + - uid: 842 components: - type: Transform rot: -1.5707963267948966 rad @@ -7418,7 +7289,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 839 + - uid: 843 components: - type: Transform rot: -1.5707963267948966 rad @@ -7426,7 +7297,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 840 + - uid: 844 components: - type: Transform rot: 3.141592653589793 rad @@ -7434,7 +7305,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 841 + - uid: 845 components: - type: Transform rot: 3.141592653589793 rad @@ -7442,21 +7313,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 842 + - uid: 846 components: - type: Transform pos: -3.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 843 + - uid: 847 components: - type: Transform pos: 2.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 844 + - uid: 848 components: - type: Transform rot: 3.141592653589793 rad @@ -7464,42 +7335,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 845 + - uid: 849 components: - type: Transform pos: -3.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 846 + - uid: 850 components: - type: Transform pos: 6.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 847 + - uid: 851 components: - type: Transform pos: -0.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 848 + - uid: 852 components: - type: Transform pos: 7.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 849 + - uid: 853 components: - type: Transform pos: -3.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 850 + - uid: 854 components: - type: Transform rot: 3.141592653589793 rad @@ -7507,14 +7378,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 851 + - uid: 855 components: - type: Transform pos: 1.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 852 + - uid: 856 components: - type: Transform rot: -1.5707963267948966 rad @@ -7522,7 +7393,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 853 + - uid: 857 components: - type: Transform rot: 3.141592653589793 rad @@ -7530,14 +7401,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 854 + - uid: 858 components: - type: Transform pos: -2.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 855 + - uid: 859 components: - type: Transform rot: 3.141592653589793 rad @@ -7545,7 +7416,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 856 + - uid: 860 components: - type: Transform rot: 1.5707963267948966 rad @@ -7553,7 +7424,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 857 + - uid: 861 components: - type: Transform rot: 1.5707963267948966 rad @@ -7561,7 +7432,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 858 + - uid: 862 components: - type: Transform rot: -1.5707963267948966 rad @@ -7569,7 +7440,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 859 + - uid: 863 components: - type: Transform rot: -1.5707963267948966 rad @@ -7577,14 +7448,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 860 + - uid: 864 components: - type: Transform pos: -1.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 861 + - uid: 865 components: - type: Transform rot: -1.5707963267948966 rad @@ -7594,7 +7465,7 @@ entities: color: '#FF0000FF' - proto: GasVentPump entities: - - uid: 862 + - uid: 866 components: - type: Transform pos: -6.5,-10.5 @@ -7604,7 +7475,7 @@ entities: - 8 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 863 + - uid: 867 components: - type: Transform rot: -1.5707963267948966 rad @@ -7615,7 +7486,7 @@ entities: - 7 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 864 + - uid: 868 components: - type: Transform rot: 3.141592653589793 rad @@ -7623,7 +7494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 865 + - uid: 869 components: - type: Transform pos: 1.5,0.5 @@ -7633,7 +7504,7 @@ entities: - 9 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 866 + - uid: 870 components: - type: Transform rot: 3.141592653589793 rad @@ -7644,7 +7515,7 @@ entities: - 7 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 867 + - uid: 871 components: - type: Transform rot: 3.141592653589793 rad @@ -7655,7 +7526,7 @@ entities: - 9 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 868 + - uid: 872 components: - type: Transform rot: 3.141592653589793 rad @@ -7666,7 +7537,7 @@ entities: - 9 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 869 + - uid: 873 components: - type: Transform rot: -1.5707963267948966 rad @@ -7677,7 +7548,7 @@ entities: - 6 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 870 + - uid: 874 components: - type: Transform pos: -6.5,0.5 @@ -7687,7 +7558,7 @@ entities: - 9 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 871 + - uid: 875 components: - type: Transform pos: -2.5,9.5 @@ -7697,7 +7568,7 @@ entities: - 6 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 872 + - uid: 876 components: - type: Transform rot: -1.5707963267948966 rad @@ -7708,7 +7579,7 @@ entities: - 3 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 873 + - uid: 877 components: - type: Transform rot: 1.5707963267948966 rad @@ -7719,7 +7590,7 @@ entities: - 6 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 874 + - uid: 878 components: - type: Transform rot: 1.5707963267948966 rad @@ -7730,7 +7601,7 @@ entities: - 7 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 875 + - uid: 879 components: - type: Transform rot: 1.5707963267948966 rad @@ -7741,7 +7612,7 @@ entities: - 7 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 876 + - uid: 880 components: - type: Transform rot: -1.5707963267948966 rad @@ -7752,7 +7623,7 @@ entities: - 5 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 877 + - uid: 881 components: - type: Transform rot: 1.5707963267948966 rad @@ -7763,7 +7634,7 @@ entities: - 5 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 878 + - uid: 882 components: - type: Transform rot: 3.141592653589793 rad @@ -7774,7 +7645,7 @@ entities: - 5 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 879 + - uid: 883 components: - type: Transform pos: -2.5,16.5 @@ -7786,7 +7657,7 @@ entities: color: '#0000FFFF' - proto: GasVentScrubber entities: - - uid: 880 + - uid: 884 components: - type: Transform pos: 2.5,0.5 @@ -7796,7 +7667,7 @@ entities: - 9 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 881 + - uid: 885 components: - type: Transform rot: 3.141592653589793 rad @@ -7807,7 +7678,7 @@ entities: - 6 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 882 + - uid: 886 components: - type: Transform rot: 1.5707963267948966 rad @@ -7818,7 +7689,7 @@ entities: - 7 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 883 + - uid: 887 components: - type: Transform rot: -1.5707963267948966 rad @@ -7826,7 +7697,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 884 + - uid: 888 components: - type: Transform rot: 3.141592653589793 rad @@ -7837,7 +7708,7 @@ entities: - 9 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 885 + - uid: 889 components: - type: Transform rot: 3.141592653589793 rad @@ -7848,7 +7719,7 @@ entities: - 8 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 886 + - uid: 890 components: - type: Transform rot: 3.141592653589793 rad @@ -7859,7 +7730,7 @@ entities: - 7 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 887 + - uid: 891 components: - type: Transform rot: 3.141592653589793 rad @@ -7870,7 +7741,7 @@ entities: - 9 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 888 + - uid: 892 components: - type: Transform rot: 1.5707963267948966 rad @@ -7881,7 +7752,7 @@ entities: - 6 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 889 + - uid: 893 components: - type: Transform pos: -7.5,0.5 @@ -7891,7 +7762,7 @@ entities: - 9 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 890 + - uid: 894 components: - type: Transform rot: 3.141592653589793 rad @@ -7902,7 +7773,7 @@ entities: - 3 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 891 + - uid: 895 components: - type: Transform rot: -1.5707963267948966 rad @@ -7913,7 +7784,7 @@ entities: - 7 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 892 + - uid: 896 components: - type: Transform rot: -1.5707963267948966 rad @@ -7924,7 +7795,7 @@ entities: - 7 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 893 + - uid: 897 components: - type: Transform rot: 1.5707963267948966 rad @@ -7935,7 +7806,7 @@ entities: - 5 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 894 + - uid: 898 components: - type: Transform rot: -1.5707963267948966 rad @@ -7946,7 +7817,7 @@ entities: - 5 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 895 + - uid: 899 components: - type: Transform rot: 3.141592653589793 rad @@ -7957,7 +7828,7 @@ entities: - 5 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 896 + - uid: 900 components: - type: Transform rot: -1.5707963267948966 rad @@ -7968,7 +7839,7 @@ entities: - 6 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 897 + - uid: 901 components: - type: Transform pos: -1.5,16.5 @@ -7980,14 +7851,14 @@ entities: color: '#FF0000FF' - proto: GeneratorRTG entities: - - uid: 898 + - uid: 902 components: - type: Transform pos: -5.5,5.5 parent: 2 - type: PowerSupplier supplyRate: 30000 - - uid: 899 + - uid: 903 components: - type: Transform pos: -5.5,3.5 @@ -7996,69 +7867,69 @@ entities: supplyRate: 30000 - proto: GravityGeneratorMini entities: - - uid: 900 + - uid: 904 components: - type: Transform pos: -8.5,3.5 parent: 2 - proto: Grille entities: - - uid: 901 + - uid: 905 components: - type: Transform pos: 14.5,-4.5 parent: 2 - - uid: 902 + - uid: 906 components: - type: Transform pos: 14.5,-5.5 parent: 2 - - uid: 903 + - uid: 907 components: - type: Transform pos: 13.5,-19.5 parent: 2 - - uid: 904 + - uid: 908 components: - type: Transform pos: 13.5,-17.5 parent: 2 - - uid: 905 + - uid: 909 components: - type: Transform pos: 8.5,-22.5 parent: 2 - - uid: 906 + - uid: 910 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-12.5 parent: 2 - - uid: 907 + - uid: 911 components: - type: Transform pos: 13.5,-18.5 parent: 2 - - uid: 908 + - uid: 912 components: - type: Transform pos: 8.5,-21.5 parent: 2 - - uid: 909 + - uid: 913 components: - type: Transform pos: 8.5,-20.5 parent: 2 - proto: LockerAtmospherics entities: - - uid: 910 + - uid: 914 components: - type: Transform pos: -7.5,-9.5 parent: 2 - proto: LockerSecurity entities: - - uid: 89 + - uid: 90 components: - type: Transform pos: 6.5,-16.5 @@ -8087,19 +7958,118 @@ entities: showEnts: False occludes: True ents: - - 90 - 91 - - 95 - 92 + - 96 - 93 - 94 + - 95 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null +- proto: LogicGateXnor + entities: + - uid: 915 + components: + - type: MetaData + desc: Невидимый гейт + name: Удаляй читы + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 25: + - Output: DoorBolt + - type: Visibility + layer: 10 + - uid: 916 + components: + - type: MetaData + desc: Невидимый гейт + name: Удаляй читы + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23: + - Output: DoorBolt + - type: Visibility + layer: 10 + - uid: 917 + components: + - type: MetaData + desc: Невидимый гейт + name: Удаляй читы + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 28: + - Output: DoorBolt + - type: Visibility + layer: 10 + - uid: 918 + components: + - type: MetaData + desc: Невидимый гейт + name: Удаляй читы + - type: Transform + pos: 13.5,2.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 24: + - Output: DoorBolt + - type: Visibility + layer: 10 + - uid: 919 + components: + - type: MetaData + desc: Невидимый гейт + name: Удаляй читы + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 26: + - Output: DoorBolt + - type: Visibility + layer: 10 + - uid: 920 + components: + - type: MetaData + desc: Невидимый гейт + name: Удаляй читы + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 27: + - Output: DoorBolt + - type: Visibility + layer: 10 - proto: Mannequin entities: - - uid: 415 + - uid: 417 components: - type: Transform pos: -0.5,-13.5 @@ -8109,7 +8079,7 @@ entities: jumpsuit: !type:ContainerSlot showEnts: False occludes: False - ent: 417 + ent: 419 outerClothing: !type:ContainerSlot showEnts: False occludes: False @@ -8129,7 +8099,7 @@ entities: head: !type:ContainerSlot showEnts: False occludes: False - ent: 416 + ent: 418 suitstorage: !type:ContainerSlot showEnts: False occludes: False @@ -8139,7 +8109,7 @@ entities: occludes: False ent: null - type: FrenchAccent - - uid: 419 + - uid: 421 components: - type: Transform pos: -2.5,-13.5 @@ -8149,11 +8119,11 @@ entities: jumpsuit: !type:ContainerSlot showEnts: False occludes: False - ent: 422 + ent: 424 outerClothing: !type:ContainerSlot showEnts: False occludes: False - ent: 421 + ent: 423 neck: !type:ContainerSlot showEnts: False occludes: False @@ -8169,7 +8139,7 @@ entities: head: !type:ContainerSlot showEnts: False occludes: False - ent: 420 + ent: 422 suitstorage: !type:ContainerSlot showEnts: False occludes: False @@ -8181,25 +8151,25 @@ entities: - type: RussianAccent - proto: Mirror entities: - - uid: 911 + - uid: 921 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-26.5 parent: 2 - - uid: 912 + - uid: 922 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-26.5 parent: 2 - - uid: 913 + - uid: 923 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 2 - - uid: 914 + - uid: 924 components: - type: Transform rot: 3.141592653589793 rad @@ -8207,36 +8177,36 @@ entities: parent: 2 - proto: Paper entities: - - uid: 915 + - uid: 925 components: - type: Transform rot: 3.141592653589793 rad pos: 9.765255,-4.4293413 parent: 2 - - uid: 916 + - uid: 926 components: - type: Transform rot: 3.141592653589793 rad pos: 9.921505,-4.4762163 parent: 2 - - uid: 917 + - uid: 927 components: - type: Transform pos: -0.11029482,-19.458694 parent: 2 - - uid: 918 + - uid: 928 components: - type: Transform pos: -0.35465497,-19.342327 parent: 2 - - uid: 919 + - uid: 929 components: - type: Transform pos: -0.5408342,-19.505241 parent: 2 - proto: Pen entities: - - uid: 920 + - uid: 930 components: - type: Transform rot: 1.5707963267948966 rad @@ -8244,7 +8214,7 @@ entities: parent: 2 - proto: PlasticFlapsAirtightClear entities: - - uid: 921 + - uid: 931 components: - type: Transform rot: -1.5707963267948966 rad @@ -8252,31 +8222,31 @@ entities: parent: 2 - proto: PlushieAtmosian entities: - - uid: 922 + - uid: 932 components: - type: Transform pos: -8.480301,-11.51842 parent: 2 - proto: PlushieLizard entities: - - uid: 1563 + - uid: 933 components: - type: MetaData - desc: Доревьювился. + desc: Доревьювился. name: неизвестный мейнтейнер - type: Transform pos: -8.528828,-15.495922 parent: 2 - proto: PlushieLizardMirrored entities: - - uid: 923 + - uid: 934 components: - type: Transform pos: 5.5931134,-0.44783163 parent: 2 - proto: PlushiePenguin entities: - - uid: 924 + - uid: 935 components: - type: MetaData desc: Надо было ставить Линукс. @@ -8285,51 +8255,51 @@ entities: parent: 2 - proto: PlushieSlime entities: - - uid: 926 + - uid: 937 components: - type: MetaData desc: Уверяю вас. Мне можно доверить огнестрельное оружие... name: плюшевый Керн - type: Transform - parent: 925 + parent: 936 - type: Physics canCollide: False - - uid: 927 + - uid: 938 components: - type: Transform pos: 9.412727,-6.492947 parent: 2 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 928 + - uid: 939 components: - type: Transform pos: -9.5,-11.5 parent: 2 - proto: PottedPlant11 entities: - - uid: 929 + - uid: 940 components: - type: Transform pos: -7.0200777,-7.4046617 parent: 2 - proto: PottedPlant13 entities: - - uid: 930 + - uid: 941 components: - type: Transform pos: -3.5,-20.5 parent: 2 - proto: PottedPlant17 entities: - - uid: 931 + - uid: 942 components: - type: Transform pos: 2.010267,-7.4168715 parent: 2 - proto: PottedPlant7 entities: - - uid: 925 + - uid: 936 components: - type: Transform pos: 5.5,-16.5 @@ -8339,337 +8309,337 @@ entities: stash: !type:ContainerSlot showEnts: False occludes: True - ent: 926 + ent: 937 - proto: PottedPlantAlt2 entities: - - uid: 932 + - uid: 943 components: - type: Transform pos: 8.25,10.5 parent: 2 - - uid: 933 + - uid: 944 components: - type: Transform pos: 10.75,10.5 parent: 2 - proto: PottedPlantAlt8 entities: - - uid: 934 + - uid: 945 components: - type: Transform pos: 0.5,-20.5 parent: 2 - proto: PottedPlantRandom entities: - - uid: 935 + - uid: 946 components: - type: Transform pos: 6.5,5.5 parent: 2 - - uid: 936 + - uid: 947 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 937 + - uid: 948 components: - type: Transform pos: -1.5,13.5 parent: 2 - - uid: 938 + - uid: 949 components: - type: Transform pos: -3.5,-7.5 parent: 2 - - uid: 939 + - uid: 950 components: - type: Transform pos: 12.5,5.5 parent: 2 - - uid: 940 + - uid: 951 components: - type: Transform pos: 13.5,-11.5 parent: 2 - - uid: 941 + - uid: 952 components: - type: Transform pos: 10.5,-13.5 parent: 2 - - uid: 942 + - uid: 953 components: - type: Transform pos: 12.5,-13.5 parent: 2 - - uid: 943 + - uid: 954 components: - type: Transform pos: 10.5,-25.5 parent: 2 - - uid: 944 + - uid: 955 components: - type: Transform pos: 12.5,-25.5 parent: 2 - proto: Poweredlight entities: - - uid: 945 + - uid: 956 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-3.5 parent: 2 - - uid: 946 + - uid: 957 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-6.5 parent: 2 - - uid: 947 + - uid: 958 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-15.5 parent: 2 - - uid: 948 + - uid: 959 components: - type: Transform pos: 0.5,1.5 parent: 2 - - uid: 949 + - uid: 960 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 950 + - uid: 961 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-7.5 parent: 2 - - uid: 951 + - uid: 962 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-6.5 parent: 2 - - uid: 952 + - uid: 963 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 2 - - uid: 953 + - uid: 964 components: - type: Transform pos: -3.5,1.5 parent: 2 - - uid: 954 + - uid: 965 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,8.5 parent: 2 - - uid: 955 + - uid: 966 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-15.5 parent: 2 - - uid: 956 + - uid: 967 components: - type: Transform pos: 9.5,-16.5 parent: 2 - - uid: 957 + - uid: 968 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-22.5 parent: 2 - - uid: 958 + - uid: 969 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-21.5 parent: 2 - - uid: 959 + - uid: 970 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-25.5 parent: 2 - - uid: 960 + - uid: 971 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-25.5 parent: 2 - - uid: 961 + - uid: 972 components: - type: Transform pos: 10.5,-13.5 parent: 2 - - uid: 962 + - uid: 973 components: - type: Transform pos: 12.5,-13.5 parent: 2 - - uid: 963 + - uid: 974 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-9.5 parent: 2 - - uid: 964 + - uid: 975 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-11.5 parent: 2 - - uid: 965 + - uid: 976 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-11.5 parent: 2 - - uid: 966 + - uid: 977 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-9.5 parent: 2 - - uid: 967 + - uid: 978 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,3.5 parent: 2 - - uid: 968 + - uid: 979 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 2 - - uid: 969 + - uid: 980 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,13.5 parent: 2 - - uid: 970 + - uid: 981 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,5.5 parent: 2 - - uid: 971 + - uid: 982 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 2 - - uid: 972 + - uid: 983 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,3.5 parent: 2 - - uid: 973 + - uid: 984 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,0.5 parent: 2 - - uid: 974 + - uid: 985 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 2 - - uid: 975 + - uid: 986 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,8.5 parent: 2 - - uid: 976 + - uid: 987 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,5.5 parent: 2 - - uid: 977 + - uid: 988 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,5.5 parent: 2 - - uid: 978 + - uid: 989 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-21.5 parent: 2 - - uid: 979 + - uid: 990 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-11.5 parent: 2 - - uid: 980 + - uid: 991 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-6.5 parent: 2 - - uid: 981 + - uid: 992 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-11.5 parent: 2 - - uid: 982 + - uid: 993 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-6.5 parent: 2 - - uid: 983 + - uid: 994 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 2 - - uid: 984 + - uid: 995 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-15.5 parent: 2 - - uid: 985 + - uid: 996 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-15.5 parent: 2 - - uid: 986 + - uid: 997 components: - type: Transform pos: -3.5,-13.5 parent: 2 - - uid: 987 + - uid: 998 components: - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 988 + - uid: 999 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-22.5 parent: 2 - - uid: 989 + - uid: 1000 components: - type: Transform rot: 3.141592653589793 rad @@ -8677,7 +8647,7 @@ entities: parent: 2 - proto: PoweredlightPink entities: - - uid: 990 + - uid: 1001 components: - type: Transform rot: 1.5707963267948966 rad @@ -8685,109 +8655,109 @@ entities: parent: 2 - proto: PoweredSmallLight entities: - - uid: 991 + - uid: 1002 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-28.5 parent: 2 - - uid: 992 + - uid: 1003 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-24.5 parent: 2 - - uid: 993 + - uid: 1004 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,7.5 parent: 2 - - uid: 994 + - uid: 1005 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,13.5 parent: 2 - - uid: 995 + - uid: 1006 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-22.5 parent: 2 - - uid: 996 + - uid: 1007 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 parent: 2 - - uid: 997 + - uid: 1008 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,9.5 parent: 2 - - uid: 998 + - uid: 1009 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-8.5 parent: 2 - - uid: 999 + - uid: 1010 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-1.5 parent: 2 - - uid: 1000 + - uid: 1011 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-14.5 parent: 2 - - uid: 1001 + - uid: 1012 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-10.5 parent: 2 - - uid: 1002 + - uid: 1013 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,4.5 parent: 2 - - uid: 1003 + - uid: 1014 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,2.5 parent: 2 - - uid: 1004 + - uid: 1015 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-24.5 parent: 2 - - uid: 1005 + - uid: 1016 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,15.5 parent: 2 - - uid: 1006 + - uid: 1017 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-13.5 parent: 2 - - uid: 1007 + - uid: 1018 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-24.5 parent: 2 - - uid: 1008 + - uid: 1019 components: - type: Transform rot: 1.5707963267948966 rad @@ -8795,31 +8765,31 @@ entities: parent: 2 - proto: Rack entities: - - uid: 1009 + - uid: 1020 components: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 1010 + - uid: 1021 components: - type: Transform pos: -6.5,-11.5 parent: 2 - proto: Railing entities: - - uid: 1011 + - uid: 1022 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-12.5 parent: 2 - - uid: 1012 + - uid: 1023 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-12.5 parent: 2 - - uid: 1013 + - uid: 1024 components: - type: MetaData desc: Вешалка для одежды. @@ -8828,7 +8798,7 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-17.5 parent: 2 - - uid: 1014 + - uid: 1025 components: - type: MetaData desc: Вешалка для одежды. @@ -8837,7 +8807,7 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-16.5 parent: 2 - - uid: 1015 + - uid: 1026 components: - type: MetaData desc: Вешалка для одежды. @@ -8846,7 +8816,7 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-17.5 parent: 2 - - uid: 1016 + - uid: 1027 components: - type: MetaData desc: Вешалка для одежды. @@ -8855,25 +8825,25 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-16.5 parent: 2 - - uid: 1017 + - uid: 1028 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-13.5 parent: 2 - - uid: 1018 + - uid: 1029 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-13.5 parent: 2 - - uid: 1019 + - uid: 1030 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-13.5 parent: 2 - - uid: 1020 + - uid: 1031 components: - type: Transform rot: 1.5707963267948966 rad @@ -8881,12 +8851,12 @@ entities: parent: 2 - proto: RailingCornerSmall entities: - - uid: 1021 + - uid: 1032 components: - type: Transform pos: 8.5,-12.5 parent: 2 - - uid: 1022 + - uid: 1033 components: - type: MetaData desc: Вешалка для одежды. @@ -8894,13 +8864,13 @@ entities: - type: Transform pos: -6.5,-16.5 parent: 2 - - uid: 1023 + - uid: 1034 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-12.5 parent: 2 - - uid: 1024 + - uid: 1035 components: - type: MetaData desc: Вешалка для одежды. @@ -8909,13 +8879,13 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-17.5 parent: 2 - - uid: 1025 + - uid: 1036 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-17.5 parent: 2 - - uid: 1026 + - uid: 1037 components: - type: MetaData desc: Вешалка для одежды. @@ -8926,88 +8896,88 @@ entities: parent: 2 - proto: RandomDrinkBottle entities: - - uid: 1027 + - uid: 1038 components: - type: Transform pos: 3.5,1.5 parent: 2 - proto: RandomDrinkGlass entities: - - uid: 1028 + - uid: 1039 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - uid: 1029 + - uid: 1040 components: - type: Transform pos: 11.5,8.5 parent: 2 - proto: RandomFoodBakedSingle entities: - - uid: 1030 + - uid: 1041 components: - type: Transform pos: 1.5,-5.5 parent: 2 - proto: RandomFoodBakedWhole entities: - - uid: 1031 + - uid: 1042 components: - type: Transform pos: 2.5,-6.5 parent: 2 - proto: RandomFoodMeal entities: - - uid: 1032 + - uid: 1043 components: - type: Transform pos: -7.5,-6.5 parent: 2 - - uid: 1033 + - uid: 1044 components: - type: Transform pos: 9.5,-21.5 parent: 2 - proto: RandomPosterLegit entities: - - uid: 1034 + - uid: 1045 components: - type: Transform pos: 1.5,6.5 parent: 2 - proto: RandomVendingDrinks entities: - - uid: 1035 + - uid: 1046 components: - type: Transform pos: -7.5,-2.5 parent: 2 - - uid: 1036 + - uid: 1047 components: - type: Transform pos: 5.5,-4.5 parent: 2 - - uid: 1037 + - uid: 1048 components: - type: Transform pos: -6.5,-22.5 parent: 2 - proto: RandomVendingSnacks entities: - - uid: 1038 + - uid: 1049 components: - type: Transform pos: 5.5,-1.5 parent: 2 - - uid: 1039 + - uid: 1050 components: - type: Transform pos: -8.5,-2.5 parent: 2 - proto: Recycler entities: - - uid: 1040 + - uid: 1051 components: - type: Transform rot: -1.5707963267948966 rad @@ -9015,7 +8985,7 @@ entities: parent: 2 - proto: ReinforcedPlasmaWindow entities: - - uid: 1041 + - uid: 1052 components: - type: Transform rot: 3.141592653589793 rad @@ -9023,12 +8993,12 @@ entities: parent: 2 - proto: ShardGlass entities: - - uid: 1565 + - uid: 1053 components: - type: Transform pos: -8.872578,-16.071678 parent: 2 - - uid: 1566 + - uid: 1054 components: - type: Transform rot: -1.5707963267948966 rad @@ -9036,7 +9006,7 @@ entities: parent: 2 - proto: SignalButton entities: - - uid: 1042 + - uid: 1055 components: - type: Transform pos: -5.5,10.5 @@ -9045,7 +9015,7 @@ entities: linkedPorts: 16: - Pressed: DoorBolt - - uid: 1043 + - uid: 1056 components: - type: Transform pos: -5.5,12.5 @@ -9054,7 +9024,7 @@ entities: linkedPorts: 18: - Pressed: DoorBolt - - uid: 1044 + - uid: 1057 components: - type: Transform pos: -5.5,14.5 @@ -9063,7 +9033,7 @@ entities: linkedPorts: 15: - Pressed: DoorBolt - - uid: 1045 + - uid: 1058 components: - type: Transform pos: -5.5,8.5 @@ -9071,168 +9041,71 @@ entities: - type: DeviceLinkSource linkedPorts: 17: - - Pressed: DoorBolt -- proto: SignalTimer - entities: - - uid: 1046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,2.5 - parent: 2 - - type: SignalTimer - delay: 1 - - type: DeviceLinkSource - linkedPorts: - 24: - - Timer: Toggle - - type: DeviceLinkSink - invokeCounter: 1 - - type: ApcPowerReceiver - needsPower: False - - type: Stealth - - type: StealthOnMove - - type: ActiveSignalTimer - - uid: 1047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 - parent: 2 - - type: SignalTimer - delay: 1 - - type: DeviceLinkSource - linkedPorts: - 26: - - Timer: Toggle - - type: DeviceLinkSink - invokeCounter: 1 - - type: ApcPowerReceiver - needsPower: False - - type: Stealth - - type: StealthOnMove - - type: ActiveSignalTimer - - uid: 1048 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-8.5 - parent: 2 - - type: SignalTimer - delay: 1 - - type: DeviceLinkSource - linkedPorts: - 25: - - Timer: Toggle - - type: DeviceLinkSink - invokeCounter: 1 - - type: ApcPowerReceiver - needsPower: False - - type: Stealth - - type: StealthOnMove - - type: ActiveSignalTimer - - uid: 1049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-14.5 - parent: 2 - - type: SignalTimer - delay: 1 - - type: DeviceLinkSource - linkedPorts: - 23: - - Timer: Toggle - - type: DeviceLinkSink - invokeCounter: 1 - - type: ApcPowerReceiver - needsPower: False - - type: Stealth - - type: StealthOnMove - - type: ActiveSignalTimer - - uid: 1050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-22.5 - parent: 2 - - type: SignalTimer - delay: 1 - - type: DeviceLinkSource - linkedPorts: - 28: - - Timer: Toggle - - type: DeviceLinkSink - invokeCounter: 1 - - type: ApcPowerReceiver - needsPower: False - - type: Stealth - - type: StealthOnMove - - type: ActiveSignalTimer + - Pressed: DoorBolt - proto: SignArcade entities: - - uid: 1051 + - uid: 1059 components: - type: Transform pos: -4.5,-0.5 parent: 2 - proto: SignAtmos entities: - - uid: 1052 + - uid: 1060 components: - type: Transform pos: -4.5,-9.5 parent: 2 - proto: SignBar entities: - - uid: 1053 + - uid: 1061 components: - type: Transform pos: 4.5,-1.5 parent: 2 - proto: SignDisposalSpace entities: - - uid: 1054 + - uid: 1062 components: - type: Transform pos: -1.5,14.5 parent: 2 - proto: SignEngineering entities: - - uid: 1055 + - uid: 1063 components: - type: Transform pos: -4.5,5.5 parent: 2 - proto: SignJanitor entities: - - uid: 1056 + - uid: 1064 components: - type: Transform pos: -1.5,6.5 parent: 2 - proto: SignShipDock entities: - - uid: 1057 + - uid: 1065 components: - type: Transform pos: 14.5,1.5 parent: 2 - - uid: 1058 + - uid: 1066 components: - type: Transform pos: 14.5,-9.5 parent: 2 - proto: SignSmoking entities: - - uid: 1059 + - uid: 1067 components: - type: Transform pos: -0.5,12.5 parent: 2 - proto: Sink entities: - - uid: 1060 + - uid: 1068 components: - type: Transform rot: -1.5707963267948966 rad @@ -9240,19 +9113,19 @@ entities: parent: 2 - proto: SinkStemlessWater entities: - - uid: 1061 + - uid: 1069 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-14.5 parent: 2 - - uid: 1062 + - uid: 1070 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.8169644,11.372251 parent: 2 - - uid: 1063 + - uid: 1071 components: - type: Transform rot: -1.5707963267948966 rad @@ -9260,27 +9133,27 @@ entities: parent: 2 - proto: SMESBasic entities: - - uid: 1064 + - uid: 1072 components: - type: Transform pos: -7.5,5.5 parent: 2 - proto: SodaDispenser entities: - - uid: 1065 + - uid: 1073 components: - type: Transform pos: 2.5,1.5 parent: 2 - proto: SpaceVillainArcadeFilled entities: - - uid: 1066 + - uid: 1074 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,0.5 parent: 2 - - uid: 1067 + - uid: 1075 components: - type: Transform rot: 1.5707963267948966 rad @@ -9288,114 +9161,114 @@ entities: parent: 2 - proto: SpawnPointLatejoin entities: - - uid: 1068 + - uid: 1076 components: - type: Transform pos: 5.5,1.5 parent: 2 - - uid: 1069 + - uid: 1077 components: - type: Transform pos: 10.5,-0.5 parent: 2 - - uid: 1070 + - uid: 1078 components: - type: Transform pos: 9.5,-8.5 parent: 2 - - uid: 1071 + - uid: 1079 components: - type: Transform pos: 10.5,-6.5 parent: 2 - - uid: 1072 + - uid: 1080 components: - type: Transform pos: 9.5,-7.5 parent: 2 - - uid: 1073 + - uid: 1081 components: - type: Transform pos: 9.5,-5.5 parent: 2 - - uid: 1074 + - uid: 1082 components: - type: Transform pos: 5.5,0.5 parent: 2 - - uid: 1075 + - uid: 1083 components: - type: Transform pos: 10.5,-5.5 parent: 2 - - uid: 1076 + - uid: 1084 components: - type: Transform pos: 5.5,-8.5 parent: 2 - - uid: 1077 + - uid: 1085 components: - type: Transform pos: 9.5,-0.5 parent: 2 - - uid: 1078 + - uid: 1086 components: - type: Transform pos: 9.5,0.5 parent: 2 - - uid: 1079 + - uid: 1087 components: - type: Transform pos: 9.5,1.5 parent: 2 - - uid: 1080 + - uid: 1088 components: - type: Transform pos: 10.5,0.5 parent: 2 - - uid: 1081 + - uid: 1089 components: - type: Transform pos: 10.5,1.5 parent: 2 - - uid: 1082 + - uid: 1090 components: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 1083 + - uid: 1091 components: - type: Transform pos: 10.5,2.5 parent: 2 - - uid: 1084 + - uid: 1092 components: - type: Transform pos: 10.5,-7.5 parent: 2 - - uid: 1085 + - uid: 1093 components: - type: Transform pos: 10.5,-8.5 parent: 2 - - uid: 1086 + - uid: 1094 components: - type: Transform pos: 5.5,-7.5 parent: 2 - - uid: 1087 + - uid: 1095 components: - type: Transform pos: 5.5,-6.5 parent: 2 - - uid: 1088 + - uid: 1096 components: - type: Transform pos: 5.5,-5.5 parent: 2 - proto: Spoon entities: - - uid: 1089 + - uid: 1097 components: - type: MetaData name: ложка для обуви @@ -9403,7 +9276,7 @@ entities: rot: -0.5235987755982988 rad pos: 1.7093852,-16.486588 parent: 2 - - uid: 1090 + - uid: 1098 components: - type: MetaData name: ложка для обуви @@ -9413,59 +9286,59 @@ entities: parent: 2 - proto: StairDark entities: - - uid: 1091 + - uid: 1099 components: - type: Transform pos: 8.5,6.5 parent: 2 - - uid: 1092 + - uid: 1100 components: - type: Transform pos: 10.5,6.5 parent: 2 - - uid: 1093 + - uid: 1101 components: - type: Transform pos: 9.5,6.5 parent: 2 - proto: Stairs entities: - - uid: 1094 + - uid: 1102 components: - type: MetaData name: полки для обуви - type: Transform pos: -5.5,-13.5 parent: 2 - - uid: 1095 + - uid: 1103 components: - type: MetaData name: полки для обуви - type: Transform pos: -4.5,-13.5 parent: 2 - - uid: 1096 + - uid: 1104 components: - type: MetaData name: полки для обуви - type: Transform pos: -3.5,-13.5 parent: 2 - - uid: 1097 + - uid: 1105 components: - type: MetaData name: полки для обуви - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 1098 + - uid: 1106 components: - type: MetaData name: полки для обуви - type: Transform pos: 1.5,-13.5 parent: 2 - - uid: 1099 + - uid: 1107 components: - type: MetaData name: полки для обуви @@ -9474,25 +9347,25 @@ entities: parent: 2 - proto: SteelBench entities: - - uid: 1100 + - uid: 1108 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-25.5 parent: 2 - - uid: 1101 + - uid: 1109 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-25.5 parent: 2 - - uid: 1102 + - uid: 1110 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-25.5 parent: 2 - - uid: 1103 + - uid: 1111 components: - type: Transform rot: 3.141592653589793 rad @@ -9500,43 +9373,43 @@ entities: parent: 2 - proto: StoolBar entities: - - uid: 1104 + - uid: 1112 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 2 - - uid: 1105 + - uid: 1113 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,0.5 parent: 2 - - uid: 1106 + - uid: 1114 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 2 - - uid: 1107 + - uid: 1115 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-1.5 parent: 2 - - uid: 1108 + - uid: 1116 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 2 - - uid: 1109 + - uid: 1117 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 2 - - uid: 1110 + - uid: 1118 components: - type: Transform rot: 3.141592653589793 rad @@ -9544,21 +9417,21 @@ entities: parent: 2 - proto: SubstationBasic entities: - - uid: 1111 + - uid: 1119 components: - type: Transform pos: -8.5,5.5 parent: 2 - proto: SuitStorageBase entities: - - uid: 1112 + - uid: 1120 components: - type: Transform pos: -8.5,-9.5 parent: 2 - proto: SurveillanceCameraGeneral entities: - - uid: 1113 + - uid: 1121 components: - type: Transform rot: 3.141592653589793 rad @@ -9569,7 +9442,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Южный коридор - - uid: 1114 + - uid: 1122 components: - type: Transform pos: -6.5,3.5 @@ -9579,7 +9452,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Инженерия - - uid: 1115 + - uid: 1123 components: - type: Transform pos: -0.5,3.5 @@ -9589,7 +9462,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Северный коридор - - uid: 1116 + - uid: 1124 components: - type: Transform rot: 3.141592653589793 rad @@ -9600,7 +9473,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Атмос - - uid: 1117 + - uid: 1125 components: - type: Transform rot: 1.5707963267948966 rad @@ -9611,7 +9484,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Бар - - uid: 1118 + - uid: 1126 components: - type: Transform pos: -5.5,-7.5 @@ -9621,7 +9494,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Ресторан - - uid: 1119 + - uid: 1127 components: - type: Transform rot: 1.5707963267948966 rad @@ -9632,7 +9505,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Рекреация - - uid: 1120 + - uid: 1128 components: - type: Transform rot: 1.5707963267948966 rad @@ -9643,7 +9516,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Одежда - - uid: 1121 + - uid: 1129 components: - type: Transform rot: 1.5707963267948966 rad @@ -9654,7 +9527,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Терминал 1 - - uid: 1122 + - uid: 1130 components: - type: Transform rot: 1.5707963267948966 rad @@ -9665,7 +9538,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Терминал 2 - - uid: 1123 + - uid: 1131 components: - type: Transform rot: -1.5707963267948966 rad @@ -9678,21 +9551,21 @@ entities: id: Терминал 3 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 1124 + - uid: 1132 components: - type: Transform pos: -6.5,3.5 parent: 2 - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 1125 + - uid: 1133 components: - type: Transform pos: -8.5,4.5 parent: 2 - proto: SurveillanceWirelessCameraAnchoredEntertainment entities: - - uid: 1557 + - uid: 1134 components: - type: Transform rot: 3.141592653589793 rad @@ -9700,28 +9573,28 @@ entities: parent: 2 - proto: TableCarpet entities: - - uid: 1126 + - uid: 1135 components: - type: Transform pos: 2.5,1.5 parent: 2 - - uid: 1127 + - uid: 1136 components: - type: Transform pos: 1.5,1.5 parent: 2 - - uid: 1128 + - uid: 1137 components: - type: Transform pos: 3.5,1.5 parent: 2 - - uid: 1129 + - uid: 1138 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-20.5 parent: 2 - - uid: 1130 + - uid: 1139 components: - type: Transform rot: -1.5707963267948966 rad @@ -9729,66 +9602,66 @@ entities: parent: 2 - proto: TableCounterWood entities: - - uid: 1131 + - uid: 1140 components: - type: Transform pos: 1.5,-0.5 parent: 2 - - uid: 1132 + - uid: 1141 components: - type: Transform pos: 3.5,-0.5 parent: 2 - - uid: 1133 + - uid: 1142 components: - type: Transform pos: 2.5,-0.5 parent: 2 - - uid: 1134 + - uid: 1143 components: - type: Transform pos: 0.5,-0.5 parent: 2 - - uid: 1135 + - uid: 1144 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-16.5 parent: 2 - - uid: 1136 + - uid: 1145 components: - type: Transform pos: -4.5,-16.5 parent: 2 - - uid: 1137 + - uid: 1146 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-19.5 parent: 2 - - uid: 1138 + - uid: 1147 components: - type: Transform pos: 0.5,-19.5 parent: 2 - - uid: 1139 + - uid: 1148 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-19.5 parent: 2 - - uid: 1140 + - uid: 1149 components: - type: Transform pos: -3.5,-19.5 parent: 2 - - uid: 1141 + - uid: 1150 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-20.5 parent: 2 - - uid: 1142 + - uid: 1151 components: - type: Transform rot: 1.5707963267948966 rad @@ -9796,73 +9669,73 @@ entities: parent: 2 - proto: TableFancyBlack entities: - - uid: 1143 + - uid: 1152 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-6.5 parent: 2 - - uid: 1144 + - uid: 1153 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-7.5 parent: 2 - - uid: 1145 + - uid: 1154 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-7.5 parent: 2 - - uid: 1146 + - uid: 1155 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 2 - - uid: 1147 + - uid: 1156 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-6.5 parent: 2 - - uid: 1148 + - uid: 1157 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-5.5 parent: 2 - - uid: 1149 + - uid: 1158 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-7.5 parent: 2 - - uid: 1150 + - uid: 1159 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-5.5 parent: 2 - - uid: 1151 + - uid: 1160 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-7.5 parent: 2 - - uid: 1152 + - uid: 1161 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-5.5 parent: 2 - - uid: 1153 + - uid: 1162 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-6.5 parent: 2 - - uid: 1154 + - uid: 1163 components: - type: Transform rot: -1.5707963267948966 rad @@ -9870,36 +9743,36 @@ entities: parent: 2 - proto: TableGlass entities: - - uid: 1155 + - uid: 1164 components: - type: Transform pos: 9.5,-21.5 parent: 2 - proto: TableReinforced entities: - - uid: 1156 + - uid: 1165 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 2 - - uid: 1157 + - uid: 1166 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-0.5 parent: 2 - - uid: 1158 + - uid: 1167 components: - type: Transform pos: 6.5,-13.5 parent: 2 - - uid: 1159 + - uid: 1168 components: - type: Transform pos: 7.5,-13.5 parent: 2 - - uid: 1160 + - uid: 1169 components: - type: Transform rot: 1.5707963267948966 rad @@ -9907,69 +9780,69 @@ entities: parent: 2 - proto: TableReinforcedGlass entities: - - uid: 1161 + - uid: 1170 components: - type: Transform pos: 10.5,-4.5 parent: 2 - - uid: 1162 + - uid: 1171 components: - type: Transform pos: 10.5,-1.5 parent: 2 - - uid: 1163 + - uid: 1172 components: - type: Transform pos: 9.5,-1.5 parent: 2 - - uid: 1164 + - uid: 1173 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 2 - - uid: 1165 + - uid: 1174 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,8.5 parent: 2 - - uid: 1166 + - uid: 1175 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,8.5 parent: 2 - - uid: 1167 + - uid: 1176 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 2 - - uid: 1168 + - uid: 1177 components: - type: Transform pos: 9.5,-4.5 parent: 2 - - uid: 1169 + - uid: 1178 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-9.5 parent: 2 - - uid: 1170 + - uid: 1179 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-9.5 parent: 2 - - uid: 1171 + - uid: 1180 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,3.5 parent: 2 - - uid: 1172 + - uid: 1181 components: - type: Transform rot: 1.5707963267948966 rad @@ -9977,31 +9850,31 @@ entities: parent: 2 - proto: TableStone entities: - - uid: 1173 + - uid: 1182 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 2 - - uid: 1174 + - uid: 1183 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,9.5 parent: 2 - - uid: 1175 + - uid: 1184 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,10.5 parent: 2 - - uid: 1176 + - uid: 1185 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,11.5 parent: 2 - - uid: 1177 + - uid: 1186 components: - type: Transform rot: 1.5707963267948966 rad @@ -10009,13 +9882,13 @@ entities: parent: 2 - proto: TableWood entities: - - uid: 1178 + - uid: 1187 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-21.5 parent: 2 - - uid: 1179 + - uid: 1188 components: - type: Transform rot: -1.5707963267948966 rad @@ -10023,14 +9896,14 @@ entities: parent: 2 - proto: TelecomServerFilled entities: - - uid: 1180 + - uid: 1189 components: - type: Transform pos: -7.5,3.5 parent: 2 - proto: TintedWindow entities: - - uid: 1181 + - uid: 1190 components: - type: Transform pos: 14.5,-4.5 @@ -10040,7 +9913,7 @@ entities: - Damageable - RCDDeconstructable - Destructible - - uid: 1182 + - uid: 1191 components: - type: Transform pos: 14.5,-5.5 @@ -10050,7 +9923,7 @@ entities: - Damageable - RCDDeconstructable - Destructible - - uid: 1183 + - uid: 1192 components: - type: Transform rot: -1.5707963267948966 rad @@ -10061,7 +9934,7 @@ entities: - Damageable - RCDDeconstructable - Destructible - - uid: 1184 + - uid: 1193 components: - type: Transform rot: -1.5707963267948966 rad @@ -10072,7 +9945,7 @@ entities: - Damageable - RCDDeconstructable - Destructible - - uid: 1185 + - uid: 1194 components: - type: Transform rot: -1.5707963267948966 rad @@ -10083,7 +9956,7 @@ entities: - Damageable - RCDDeconstructable - Destructible - - uid: 1186 + - uid: 1195 components: - type: Transform pos: 8.5,-20.5 @@ -10093,7 +9966,7 @@ entities: - Damageable - RCDDeconstructable - Destructible - - uid: 1187 + - uid: 1196 components: - type: Transform pos: 8.5,-21.5 @@ -10103,7 +9976,7 @@ entities: - Damageable - RCDDeconstructable - Destructible - - uid: 1188 + - uid: 1197 components: - type: Transform pos: 8.5,-22.5 @@ -10115,25 +9988,25 @@ entities: - Destructible - proto: ToiletEmpty entities: - - uid: 1189 + - uid: 1198 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 parent: 2 - - uid: 1190 + - uid: 1199 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,7.5 parent: 2 - - uid: 1191 + - uid: 1200 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,13.5 parent: 2 - - uid: 1192 + - uid: 1201 components: - type: Transform rot: 1.5707963267948966 rad @@ -10141,28 +10014,28 @@ entities: parent: 2 - proto: ToolboxElectrical entities: - - uid: 1193 + - uid: 1202 components: - type: Transform pos: -5.395227,-11.313736 parent: 2 - proto: ToolboxMechanical entities: - - uid: 1194 + - uid: 1203 components: - type: Transform pos: -5.582727,-11.532486 parent: 2 - proto: ToyFigurineBartender entities: - - uid: 1195 + - uid: 1204 components: - type: Transform pos: 0.45116568,-0.33467317 parent: 2 - proto: TrashBag entities: - - uid: 1196 + - uid: 1205 components: - type: MetaData name: пакет для покупок @@ -10170,7 +10043,7 @@ entities: rot: 1.5707963267948966 rad pos: -2.547278,-20.178963 parent: 2 - - uid: 1197 + - uid: 1206 components: - type: MetaData name: пакет для покупок @@ -10179,7 +10052,7 @@ entities: parent: 2 - proto: TrashBagBlue entities: - - uid: 1198 + - uid: 1207 components: - type: MetaData name: пакет для покупок @@ -10188,44 +10061,44 @@ entities: parent: 2 - proto: TwoWayLever entities: - - uid: 1199 + - uid: 1208 components: - type: Transform pos: -4.5,15.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 464: + 468: - Left: Forward - Right: Reverse - Middle: Off - 465: + 469: - Left: Forward - Right: Reverse - Middle: Off - 466: + 470: - Left: Forward - Right: Reverse - Middle: Off - 1040: + 1051: - Left: Forward - Right: Reverse - Middle: Off - 467: + 471: - Left: Forward - Right: Reverse - Middle: Off - 468: + 472: - Left: Forward - Right: Reverse - Middle: Off - 469: + 473: - Left: Forward - Right: Reverse - Middle: Off - proto: VendingMachineBooze entities: - - uid: 1200 + - uid: 1209 components: - type: Transform pos: 0.5,1.5 @@ -10234,1134 +10107,1134 @@ entities: - AccessReader - proto: VendingMachineChang entities: - - uid: 1201 + - uid: 1210 components: - type: Transform pos: 3.5,-22.5 parent: 2 - proto: VendingMachineCigs entities: - - uid: 1202 + - uid: 1211 components: - type: Transform pos: 5.5,5.5 parent: 2 - - uid: 1203 + - uid: 1212 components: - type: Transform pos: -5.5,-2.5 parent: 2 - - uid: 1204 + - uid: 1213 components: - type: Transform pos: 9.5,-16.5 parent: 2 - proto: VendingMachineClothing entities: - - uid: 1205 + - uid: 1214 components: - type: Transform pos: 3.5,-15.5 parent: 2 - - uid: 1206 + - uid: 1215 components: - type: Transform pos: 3.5,-14.5 parent: 2 - proto: VendingMachineCoffee entities: - - uid: 1207 + - uid: 1216 components: - type: Transform pos: -6.5,-2.5 parent: 2 - - uid: 1208 + - uid: 1217 components: - type: Transform pos: 13.5,5.5 parent: 2 - - uid: 1209 + - uid: 1218 components: - type: Transform pos: 9.5,-18.5 parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 1210 + - uid: 1219 components: - type: Transform pos: 7.5,-16.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 1211 + - uid: 1220 components: - type: Transform pos: -5.5,-9.5 parent: 2 - proto: VendingMachineWinter entities: - - uid: 1212 + - uid: 1221 components: - type: Transform pos: -6.5,-14.5 parent: 2 - - uid: 1213 + - uid: 1222 components: - type: Transform pos: -6.5,-15.5 parent: 2 - proto: WallmountTelevision entities: - - uid: 1214 + - uid: 1223 components: - type: Transform pos: 9.5,11.5 parent: 2 - proto: WallPlastitaniumIndestructible entities: - - uid: 1215 + - uid: 1227 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,2.5 parent: 2 - - uid: 1216 + - uid: 1228 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 2 - - uid: 1217 + - uid: 1229 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,14.5 parent: 2 - - uid: 1218 + - uid: 1230 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,6.5 parent: 2 - - uid: 1219 + - uid: 1231 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,6.5 parent: 2 - - uid: 1220 + - uid: 1232 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,17.5 parent: 2 - - uid: 1221 + - uid: 1233 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,2.5 parent: 2 - - uid: 1222 + - uid: 1234 components: - type: Transform pos: -9.5,-0.5 parent: 2 - - uid: 1223 + - uid: 1235 components: - type: Transform pos: -5.5,-8.5 parent: 2 - - uid: 1224 + - uid: 1236 components: - type: Transform pos: -9.5,-4.5 parent: 2 - - uid: 1225 + - uid: 1237 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,10.5 parent: 2 - - uid: 1226 + - uid: 1238 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,9.5 parent: 2 - - uid: 1227 + - uid: 1239 components: - type: Transform pos: 2.5,6.5 parent: 2 - - uid: 1228 + - uid: 1240 components: - type: Transform pos: -3.5,-8.5 parent: 2 - - uid: 1229 + - uid: 1241 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,11.5 parent: 2 - - uid: 1230 + - uid: 1242 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 1231 + - uid: 1243 components: - type: Transform pos: 4.5,-22.5 parent: 2 - - uid: 1232 + - uid: 1244 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,11.5 parent: 2 - - uid: 1233 + - uid: 1245 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,11.5 parent: 2 - - uid: 1234 + - uid: 1246 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,11.5 parent: 2 - - uid: 1235 + - uid: 1247 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,11.5 parent: 2 - - uid: 1236 + - uid: 1248 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,11.5 parent: 2 - - uid: 1237 + - uid: 1249 components: - type: Transform pos: -9.5,-3.5 parent: 2 - - uid: 1238 + - uid: 1250 components: - type: Transform pos: -9.5,-2.5 parent: 2 - - uid: 1239 + - uid: 1251 components: - type: Transform pos: 1.5,6.5 parent: 2 - - uid: 1240 + - uid: 1252 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,10.5 parent: 2 - - uid: 1241 + - uid: 1253 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,9.5 parent: 2 - - uid: 1242 + - uid: 1254 components: - type: Transform pos: 3.5,6.5 parent: 2 - - uid: 1243 + - uid: 1255 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,8.5 parent: 2 - - uid: 1244 + - uid: 1256 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,7.5 parent: 2 - - uid: 1245 + - uid: 1257 components: - type: Transform pos: 4.5,-14.5 parent: 2 - - uid: 1246 + - uid: 1258 components: - type: Transform pos: -6.5,-1.5 parent: 2 - - uid: 1247 + - uid: 1259 components: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 1248 + - uid: 1260 components: - type: Transform pos: 7.5,-17.5 parent: 2 - - uid: 1249 + - uid: 1261 components: - type: Transform pos: 4.5,-15.5 parent: 2 - - uid: 1250 + - uid: 1262 components: - type: Transform pos: -9.5,0.5 parent: 2 - - uid: 1251 + - uid: 1263 components: - type: Transform pos: -8.5,-1.5 parent: 2 - - uid: 1252 + - uid: 1264 components: - type: Transform pos: -7.5,-1.5 parent: 2 - - uid: 1253 + - uid: 1265 components: - type: Transform pos: -9.5,-8.5 parent: 2 - - uid: 1254 + - uid: 1266 components: - type: Transform pos: -8.5,-8.5 parent: 2 - - uid: 1255 + - uid: 1267 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 1256 + - uid: 1268 components: - type: Transform pos: 2.5,-26.5 parent: 2 - - uid: 1257 + - uid: 1269 components: - type: Transform pos: -9.5,-7.5 parent: 2 - - uid: 1258 + - uid: 1270 components: - type: Transform pos: -9.5,2.5 parent: 2 - - uid: 1259 + - uid: 1271 components: - type: Transform pos: 6.5,-17.5 parent: 2 - - uid: 1260 + - uid: 1272 components: - type: Transform pos: 4.5,-16.5 parent: 2 - - uid: 1261 + - uid: 1273 components: - type: Transform pos: 4.5,-17.5 parent: 2 - - uid: 1262 + - uid: 1274 components: - type: Transform pos: -7.5,-22.5 parent: 2 - - uid: 1263 + - uid: 1275 components: - type: Transform pos: -9.5,-11.5 parent: 2 - - uid: 1264 + - uid: 1276 components: - type: Transform pos: -6.5,-12.5 parent: 2 - - uid: 1265 + - uid: 1277 components: - type: Transform pos: -9.5,-12.5 parent: 2 - - uid: 1266 + - uid: 1278 components: - type: Transform pos: -7.5,-16.5 parent: 2 - - uid: 1267 + - uid: 1279 components: - type: Transform pos: -9.5,-13.5 parent: 2 - - uid: 1268 + - uid: 1280 components: - type: Transform pos: -5.5,-25.5 parent: 2 - - uid: 1269 + - uid: 1281 components: - type: Transform pos: -7.5,-15.5 parent: 2 - - uid: 1270 + - uid: 1282 components: - type: Transform pos: 0.5,-23.5 parent: 2 - - uid: 1271 + - uid: 1283 components: - type: Transform pos: 4.5,-23.5 parent: 2 - - uid: 1272 + - uid: 1284 components: - type: Transform pos: 3.5,-23.5 parent: 2 - - uid: 1273 + - uid: 1285 components: - type: Transform pos: 3.5,-18.5 parent: 2 - - uid: 1274 + - uid: 1286 components: - type: Transform pos: 2.5,-25.5 parent: 2 - - uid: 1275 + - uid: 1287 components: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 1276 + - uid: 1288 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 1277 + - uid: 1289 components: - type: Transform pos: -3.5,-24.5 parent: 2 - - uid: 1278 + - uid: 1290 components: - type: Transform pos: -3.5,-25.5 parent: 2 - - uid: 1279 + - uid: 1291 components: - type: Transform pos: -5.5,-1.5 parent: 2 - - uid: 1280 + - uid: 1292 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,13.5 parent: 2 - - uid: 1281 + - uid: 1293 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,11.5 parent: 2 - - uid: 1282 + - uid: 1294 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,7.5 parent: 2 - - uid: 1283 + - uid: 1295 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,9.5 parent: 2 - - uid: 1284 + - uid: 1296 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,13.5 parent: 2 - - uid: 1285 + - uid: 1297 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,14.5 parent: 2 - - uid: 1286 + - uid: 1298 components: - type: Transform pos: -3.5,-23.5 parent: 2 - - uid: 1287 + - uid: 1299 components: - type: Transform pos: -9.5,-6.5 parent: 2 - - uid: 1288 + - uid: 1300 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 1289 + - uid: 1301 components: - type: Transform pos: -6.5,-13.5 parent: 2 - - uid: 1290 + - uid: 1302 components: - type: Transform pos: -7.5,-23.5 parent: 2 - - uid: 1291 + - uid: 1303 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,11.5 parent: 2 - - uid: 1292 + - uid: 1304 components: - type: Transform pos: -3.5,-26.5 parent: 2 - - uid: 1293 + - uid: 1305 components: - type: Transform pos: -5.5,-23.5 parent: 2 - - uid: 1294 + - uid: 1306 components: - type: Transform pos: -1.5,-23.5 parent: 2 - - uid: 1295 + - uid: 1307 components: - type: Transform pos: 2.5,-12.5 parent: 2 - - uid: 1296 + - uid: 1308 components: - type: Transform pos: 4.5,-19.5 parent: 2 - - uid: 1297 + - uid: 1309 components: - type: Transform pos: 2.5,-23.5 parent: 2 - - uid: 1298 + - uid: 1310 components: - type: Transform pos: 4.5,-20.5 parent: 2 - - uid: 1299 + - uid: 1311 components: - type: Transform pos: 4.5,-21.5 parent: 2 - - uid: 1300 + - uid: 1312 components: - type: Transform pos: -9.5,-9.5 parent: 2 - - uid: 1301 + - uid: 1313 components: - type: Transform pos: -9.5,1.5 parent: 2 - - uid: 1302 + - uid: 1314 components: - type: Transform pos: -9.5,-1.5 parent: 2 - - uid: 1303 + - uid: 1315 components: - type: Transform pos: -4.5,-8.5 parent: 2 - - uid: 1304 + - uid: 1316 components: - type: Transform pos: -9.5,-5.5 parent: 2 - - uid: 1305 + - uid: 1317 components: - type: Transform pos: -7.5,-8.5 parent: 2 - - uid: 1306 + - uid: 1318 components: - type: Transform pos: -6.5,-8.5 parent: 2 - - uid: 1307 + - uid: 1319 components: - type: Transform pos: -4.5,-12.5 parent: 2 - - uid: 1308 + - uid: 1320 components: - type: Transform pos: -4.5,-9.5 parent: 2 - - uid: 1309 + - uid: 1321 components: - type: Transform pos: -7.5,-12.5 parent: 2 - - uid: 1310 + - uid: 1322 components: - type: Transform pos: -7.5,-19.5 parent: 2 - - uid: 1311 + - uid: 1323 components: - type: Transform pos: -7.5,-18.5 parent: 2 - - uid: 1312 + - uid: 1324 components: - type: Transform pos: -7.5,-17.5 parent: 2 - - uid: 1313 + - uid: 1325 components: - type: Transform pos: -2.5,-26.5 parent: 2 - - uid: 1314 + - uid: 1326 components: - type: Transform pos: -5.5,-26.5 parent: 2 - - uid: 1315 + - uid: 1327 components: - type: Transform pos: -5.5,-24.5 parent: 2 - - uid: 1316 + - uid: 1328 components: - type: Transform pos: -1.5,-24.5 parent: 2 - - uid: 1317 + - uid: 1329 components: - type: Transform pos: -6.5,-23.5 parent: 2 - - uid: 1318 + - uid: 1330 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 1319 + - uid: 1331 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,14.5 parent: 2 - - uid: 1320 + - uid: 1332 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,10.5 parent: 2 - - uid: 1321 + - uid: 1333 components: - type: Transform pos: -7.5,-14.5 parent: 2 - - uid: 1322 + - uid: 1334 components: - type: Transform pos: -9.5,-10.5 parent: 2 - - uid: 1323 + - uid: 1335 components: - type: Transform pos: -6.5,-18.5 parent: 2 - - uid: 1324 + - uid: 1336 components: - type: Transform pos: -7.5,-20.5 parent: 2 - - uid: 1325 + - uid: 1337 components: - type: Transform pos: -7.5,-13.5 parent: 2 - - uid: 1326 + - uid: 1338 components: - type: Transform pos: -4.5,-26.5 parent: 2 - - uid: 1327 + - uid: 1339 components: - type: Transform pos: -0.5,-26.5 parent: 2 - - uid: 1328 + - uid: 1340 components: - type: Transform pos: 4.5,-18.5 parent: 2 - - uid: 1329 + - uid: 1341 components: - type: Transform pos: -1.5,-26.5 parent: 2 - - uid: 1330 + - uid: 1342 components: - type: Transform pos: 3.5,-12.5 parent: 2 - - uid: 1331 + - uid: 1343 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,2.5 parent: 2 - - uid: 1332 + - uid: 1344 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-0.5 parent: 2 - - uid: 1333 + - uid: 1345 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,6.5 parent: 2 - - uid: 1334 + - uid: 1346 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,2.5 parent: 2 - - uid: 1335 + - uid: 1347 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 2 - - uid: 1336 + - uid: 1348 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,6.5 parent: 2 - - uid: 1337 + - uid: 1349 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 1338 + - uid: 1350 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 1339 + - uid: 1351 components: - type: Transform pos: 1.5,-8.5 parent: 2 - - uid: 1340 + - uid: 1352 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,2.5 parent: 2 - - uid: 1341 + - uid: 1353 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 1342 + - uid: 1354 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,8.5 parent: 2 - - uid: 1343 + - uid: 1355 components: - type: Transform pos: -3.5,-12.5 parent: 2 - - uid: 1344 + - uid: 1356 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,7.5 parent: 2 - - uid: 1345 + - uid: 1357 components: - type: Transform pos: -8.5,-14.5 parent: 2 - - uid: 1346 + - uid: 1358 components: - type: Transform pos: -1.5,-8.5 parent: 2 - - uid: 1347 + - uid: 1359 components: - type: Transform pos: -1.5,-25.5 parent: 2 - - uid: 1348 + - uid: 1360 components: - type: Transform pos: -9.5,-14.5 parent: 2 - - uid: 1349 + - uid: 1361 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,15.5 parent: 2 - - uid: 1350 + - uid: 1362 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,14.5 parent: 2 - - uid: 1351 + - uid: 1363 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,17.5 parent: 2 - - uid: 1352 + - uid: 1364 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,7.5 parent: 2 - - uid: 1353 + - uid: 1365 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,12.5 parent: 2 - - uid: 1354 + - uid: 1366 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,14.5 parent: 2 - - uid: 1355 + - uid: 1367 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,6.5 parent: 2 - - uid: 1356 + - uid: 1368 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,11.5 parent: 2 - - uid: 1357 + - uid: 1369 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,14.5 parent: 2 - - uid: 1358 + - uid: 1370 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,8.5 parent: 2 - - uid: 1359 + - uid: 1371 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,9.5 parent: 2 - - uid: 1360 + - uid: 1372 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,3.5 parent: 2 - - uid: 1361 + - uid: 1373 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,5.5 parent: 2 - - uid: 1362 + - uid: 1374 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,6.5 parent: 2 - - uid: 1363 + - uid: 1375 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,6.5 parent: 2 - - uid: 1364 + - uid: 1376 components: - type: Transform pos: 3.5,-13.5 parent: 2 - - uid: 1365 + - uid: 1377 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,1.5 parent: 2 - - uid: 1366 + - uid: 1378 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,2.5 parent: 2 - - uid: 1367 + - uid: 1379 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 2 - - uid: 1368 + - uid: 1380 components: - type: Transform pos: 0.5,-12.5 parent: 2 - - uid: 1369 + - uid: 1381 components: - type: Transform pos: -2.5,-12.5 parent: 2 - - uid: 1370 + - uid: 1382 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,11.5 parent: 2 - - uid: 1371 + - uid: 1383 components: - type: Transform pos: -0.5,-12.5 parent: 2 - - uid: 1372 + - uid: 1384 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,11.5 parent: 2 - - uid: 1373 + - uid: 1385 components: - type: Transform pos: 2.5,-24.5 parent: 2 - - uid: 1374 + - uid: 1386 components: - type: Transform pos: -7.5,-21.5 parent: 2 - - uid: 1375 + - uid: 1387 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,8.5 parent: 2 - - uid: 1376 + - uid: 1388 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,8.5 parent: 2 - - uid: 1377 + - uid: 1389 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,2.5 parent: 2 - - uid: 1378 + - uid: 1390 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,10.5 parent: 2 - - uid: 1379 + - uid: 1391 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,12.5 parent: 2 - - uid: 1380 + - uid: 1392 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,10.5 parent: 2 - - uid: 1381 + - uid: 1393 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,8.5 parent: 2 - - uid: 1382 + - uid: 1394 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,2.5 parent: 2 - - uid: 1383 + - uid: 1395 components: - type: Transform pos: -9.5,5.5 parent: 2 - - uid: 1384 + - uid: 1396 components: - type: Transform pos: 2.5,-8.5 parent: 2 - - uid: 1385 + - uid: 1397 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 2 - - uid: 1386 + - uid: 1398 components: - type: Transform pos: -9.5,3.5 parent: 2 - - uid: 1387 + - uid: 1399 components: - type: Transform pos: -9.5,4.5 parent: 2 - - uid: 1388 + - uid: 1400 components: - type: Transform pos: 3.5,-8.5 parent: 2 - - uid: 1389 + - uid: 1401 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,6.5 parent: 2 - - uid: 1390 + - uid: 1402 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,12.5 parent: 2 - - uid: 1391 + - uid: 1403 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 2 - - uid: 1392 + - uid: 1404 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,12.5 parent: 2 - - uid: 1393 + - uid: 1405 components: - type: Transform pos: -9.5,6.5 parent: 2 - - uid: 1394 + - uid: 1406 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,10.5 parent: 2 - - uid: 1395 + - uid: 1407 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,2.5 parent: 2 - - uid: 1396 + - uid: 1408 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,17.5 parent: 2 - - uid: 1397 + - uid: 1409 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,17.5 parent: 2 - - uid: 1398 + - uid: 1410 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,17.5 parent: 2 - - uid: 1399 + - uid: 1411 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,17.5 parent: 2 - - uid: 1400 + - uid: 1412 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,16.5 parent: 2 - - uid: 1401 + - uid: 1413 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,17.5 parent: 2 - - uid: 1402 + - uid: 1414 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,15.5 parent: 2 - - uid: 1558 + - uid: 1415 components: - type: Transform pos: -9.5,-15.5 parent: 2 - - uid: 1559 + - uid: 1416 components: - type: Transform pos: -9.5,-17.5 parent: 2 - - uid: 1560 + - uid: 1417 components: - type: Transform pos: -9.5,-16.5 parent: 2 - - uid: 1561 + - uid: 1418 components: - type: Transform pos: -8.5,-17.5 parent: 2 - proto: WallRiveted entities: - - uid: 1403 + - uid: 1419 components: - type: Transform rot: 1.5707963267948966 rad @@ -11370,7 +11243,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1404 + - uid: 1420 components: - type: Transform pos: 14.5,1.5 @@ -11378,7 +11251,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1405 + - uid: 1421 components: - type: Transform pos: 14.5,6.5 @@ -11386,7 +11259,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1406 + - uid: 1422 components: - type: Transform pos: 14.5,5.5 @@ -11394,7 +11267,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1407 + - uid: 1423 components: - type: Transform pos: 14.5,0.5 @@ -11402,7 +11275,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1408 + - uid: 1424 components: - type: Transform pos: 16.5,-23.5 @@ -11410,7 +11283,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1409 + - uid: 1425 components: - type: Transform pos: 14.5,-0.5 @@ -11418,7 +11291,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1410 + - uid: 1426 components: - type: Transform pos: 14.5,4.5 @@ -11426,7 +11299,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1411 + - uid: 1427 components: - type: Transform pos: 14.5,3.5 @@ -11434,7 +11307,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1412 + - uid: 1428 components: - type: Transform pos: 15.5,3.5 @@ -11442,7 +11315,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1413 + - uid: 1429 components: - type: Transform pos: 14.5,-2.5 @@ -11450,7 +11323,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1414 + - uid: 1430 components: - type: Transform pos: 15.5,-2.5 @@ -11458,7 +11331,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1415 + - uid: 1431 components: - type: Transform pos: 14.5,-15.5 @@ -11466,7 +11339,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1416 + - uid: 1432 components: - type: Transform pos: 14.5,-6.5 @@ -11474,7 +11347,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1417 + - uid: 1433 components: - type: Transform pos: 14.5,-7.5 @@ -11482,7 +11355,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1418 + - uid: 1434 components: - type: Transform pos: 15.5,-7.5 @@ -11490,7 +11363,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1419 + - uid: 1435 components: - type: Transform pos: 14.5,-13.5 @@ -11498,7 +11371,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1420 + - uid: 1436 components: - type: Transform rot: 1.5707963267948966 rad @@ -11507,7 +11380,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1421 + - uid: 1437 components: - type: Transform pos: 16.5,-9.5 @@ -11515,7 +11388,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1422 + - uid: 1438 components: - type: Transform rot: 1.5707963267948966 rad @@ -11524,7 +11397,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1423 + - uid: 1439 components: - type: Transform pos: 14.5,-9.5 @@ -11532,7 +11405,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1424 + - uid: 1440 components: - type: Transform pos: 15.5,-9.5 @@ -11540,7 +11413,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1425 + - uid: 1441 components: - type: Transform rot: 1.5707963267948966 rad @@ -11549,7 +11422,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1426 + - uid: 1442 components: - type: Transform rot: 1.5707963267948966 rad @@ -11558,7 +11431,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1427 + - uid: 1443 components: - type: Transform rot: 1.5707963267948966 rad @@ -11567,7 +11440,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1428 + - uid: 1444 components: - type: Transform rot: 3.141592653589793 rad @@ -11576,7 +11449,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1429 + - uid: 1445 components: - type: Transform rot: 1.5707963267948966 rad @@ -11585,7 +11458,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1430 + - uid: 1446 components: - type: Transform rot: 3.141592653589793 rad @@ -11594,7 +11467,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1431 + - uid: 1447 components: - type: Transform rot: 3.141592653589793 rad @@ -11603,7 +11476,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1432 + - uid: 1448 components: - type: Transform rot: 3.141592653589793 rad @@ -11612,7 +11485,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1433 + - uid: 1449 components: - type: Transform pos: 10.5,-12.5 @@ -11620,7 +11493,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1434 + - uid: 1450 components: - type: Transform rot: 1.5707963267948966 rad @@ -11629,7 +11502,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1435 + - uid: 1451 components: - type: Transform pos: 9.5,-23.5 @@ -11637,7 +11510,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1436 + - uid: 1452 components: - type: Transform pos: 12.5,-26.5 @@ -11645,7 +11518,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1437 + - uid: 1453 components: - type: Transform pos: 13.5,-23.5 @@ -11653,7 +11526,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1438 + - uid: 1454 components: - type: Transform pos: 12.5,-12.5 @@ -11661,7 +11534,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1439 + - uid: 1455 components: - type: Transform pos: 13.5,-13.5 @@ -11669,7 +11542,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1440 + - uid: 1456 components: - type: Transform pos: 13.5,-12.5 @@ -11677,7 +11550,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1441 + - uid: 1457 components: - type: Transform pos: 14.5,-12.5 @@ -11685,7 +11558,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1442 + - uid: 1458 components: - type: Transform pos: 10.5,-30.5 @@ -11693,7 +11566,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1443 + - uid: 1459 components: - type: Transform pos: 13.5,-21.5 @@ -11701,7 +11574,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1444 + - uid: 1460 components: - type: Transform pos: 15.5,-15.5 @@ -11709,7 +11582,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1445 + - uid: 1461 components: - type: Transform rot: -1.5707963267948966 rad @@ -11718,7 +11591,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1446 + - uid: 1462 components: - type: Transform pos: 14.5,-3.5 @@ -11726,7 +11599,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1447 + - uid: 1463 components: - type: Transform pos: 13.5,-15.5 @@ -11734,7 +11607,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1448 + - uid: 1464 components: - type: Transform pos: 9.5,-19.5 @@ -11742,7 +11615,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1449 + - uid: 1465 components: - type: Transform pos: 8.5,-18.5 @@ -11750,7 +11623,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1450 + - uid: 1466 components: - type: Transform pos: 8.5,-19.5 @@ -11758,7 +11631,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1451 + - uid: 1467 components: - type: Transform pos: 16.5,-21.5 @@ -11766,7 +11639,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1452 + - uid: 1468 components: - type: Transform pos: 10.5,-26.5 @@ -11774,7 +11647,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1453 + - uid: 1469 components: - type: Transform pos: 13.5,-26.5 @@ -11782,7 +11655,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1454 + - uid: 1470 components: - type: Transform pos: 8.5,-23.5 @@ -11790,7 +11663,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1455 + - uid: 1471 components: - type: Transform pos: 14.5,-10.5 @@ -11798,7 +11671,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1456 + - uid: 1472 components: - type: Transform rot: -1.5707963267948966 rad @@ -11807,7 +11680,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1457 + - uid: 1473 components: - type: Transform pos: 9.5,-26.5 @@ -11815,7 +11688,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1458 + - uid: 1474 components: - type: Transform pos: 15.5,-13.5 @@ -11823,7 +11696,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1459 + - uid: 1475 components: - type: Transform pos: 14.5,-23.5 @@ -11831,7 +11704,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1460 + - uid: 1476 components: - type: Transform pos: 14.5,-11.5 @@ -11839,7 +11712,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1461 + - uid: 1477 components: - type: Transform pos: 15.5,1.5 @@ -11847,7 +11720,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1462 + - uid: 1478 components: - type: Transform pos: 16.5,-2.5 @@ -11855,7 +11728,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1463 + - uid: 1479 components: - type: Transform rot: 3.141592653589793 rad @@ -11864,7 +11737,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1464 + - uid: 1480 components: - type: Transform pos: 16.5,-0.5 @@ -11872,7 +11745,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1465 + - uid: 1481 components: - type: Transform pos: 14.5,-21.5 @@ -11880,7 +11753,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1466 + - uid: 1482 components: - type: Transform pos: 12.5,-30.5 @@ -11888,7 +11761,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1467 + - uid: 1483 components: - type: Transform pos: 16.5,-13.5 @@ -11896,7 +11769,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1468 + - uid: 1484 components: - type: Transform rot: 3.141592653589793 rad @@ -11905,7 +11778,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1469 + - uid: 1485 components: - type: Transform rot: 1.5707963267948966 rad @@ -11914,7 +11787,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1470 + - uid: 1486 components: - type: Transform rot: 1.5707963267948966 rad @@ -11923,7 +11796,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1471 + - uid: 1487 components: - type: Transform pos: 15.5,-0.5 @@ -11931,7 +11804,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1472 + - uid: 1488 components: - type: Transform rot: 1.5707963267948966 rad @@ -11940,7 +11813,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1473 + - uid: 1489 components: - type: Transform rot: 1.5707963267948966 rad @@ -11949,7 +11822,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1474 + - uid: 1490 components: - type: Transform rot: 1.5707963267948966 rad @@ -11958,7 +11831,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1475 + - uid: 1491 components: - type: Transform pos: 16.5,-15.5 @@ -11966,7 +11839,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1476 + - uid: 1492 components: - type: Transform rot: 3.141592653589793 rad @@ -11975,7 +11848,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1477 + - uid: 1493 components: - type: Transform rot: 3.141592653589793 rad @@ -11984,7 +11857,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1478 + - uid: 1494 components: - type: Transform rot: 1.5707963267948966 rad @@ -11993,7 +11866,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1479 + - uid: 1495 components: - type: Transform rot: 1.5707963267948966 rad @@ -12002,7 +11875,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1480 + - uid: 1496 components: - type: Transform rot: 1.5707963267948966 rad @@ -12011,7 +11884,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1481 + - uid: 1497 components: - type: Transform rot: 1.5707963267948966 rad @@ -12020,7 +11893,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1482 + - uid: 1498 components: - type: Transform pos: -0.5,-0.5 @@ -12028,7 +11901,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1483 + - uid: 1499 components: - type: Transform pos: 15.5,-23.5 @@ -12036,7 +11909,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1484 + - uid: 1500 components: - type: Transform pos: 16.5,-7.5 @@ -12044,7 +11917,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1485 + - uid: 1501 components: - type: Transform pos: 16.5,1.5 @@ -12052,7 +11925,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1486 + - uid: 1502 components: - type: Transform pos: 16.5,3.5 @@ -12060,7 +11933,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1487 + - uid: 1503 components: - type: Transform pos: 15.5,-21.5 @@ -12068,7 +11941,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1488 + - uid: 1504 components: - type: Transform rot: 3.141592653589793 rad @@ -12077,7 +11950,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1489 + - uid: 1505 components: - type: Transform rot: 1.5707963267948966 rad @@ -12086,7 +11959,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1490 + - uid: 1506 components: - type: Transform rot: 1.5707963267948966 rad @@ -12095,7 +11968,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1491 + - uid: 1507 components: - type: Transform rot: 1.5707963267948966 rad @@ -12104,7 +11977,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1492 + - uid: 1508 components: - type: Transform rot: 1.5707963267948966 rad @@ -12113,7 +11986,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1493 + - uid: 1509 components: - type: Transform rot: 1.5707963267948966 rad @@ -12122,7 +11995,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1494 + - uid: 1510 components: - type: Transform rot: 3.141592653589793 rad @@ -12131,7 +12004,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1495 + - uid: 1511 components: - type: Transform rot: 3.141592653589793 rad @@ -12140,7 +12013,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1496 + - uid: 1512 components: - type: Transform rot: 3.141592653589793 rad @@ -12149,7 +12022,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1497 + - uid: 1513 components: - type: Transform rot: 3.141592653589793 rad @@ -12158,7 +12031,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1498 + - uid: 1514 components: - type: Transform rot: 3.141592653589793 rad @@ -12167,7 +12040,7 @@ entities: missingComponents: - Damageable - Destructible - - uid: 1499 + - uid: 1515 components: - type: Transform rot: 3.141592653589793 rad @@ -12178,35 +12051,35 @@ entities: - Destructible - proto: WardrobeAtmospherics entities: - - uid: 1500 + - uid: 1516 components: - type: Transform pos: -6.5,-9.5 parent: 2 - proto: WardrobeMixedFilled entities: - - uid: 1501 + - uid: 1517 components: - type: Transform pos: 2.5,-18.5 parent: 2 - proto: WardrobeWhiteFilled entities: - - uid: 1502 + - uid: 1518 components: - type: Transform pos: -5.5,-18.5 parent: 2 - proto: WarningAir entities: - - uid: 1503 + - uid: 1519 components: - type: Transform pos: -7.5,-12.5 parent: 2 - proto: WarpPoint entities: - - uid: 1569 + - uid: 1520 components: - type: Transform rot: 3.141592653589793 rad @@ -12216,37 +12089,37 @@ entities: location: Терминал - proto: WaterCooler entities: - - uid: 1504 + - uid: 1521 components: - type: Transform pos: -6.5,-19.5 parent: 2 - - uid: 1505 + - uid: 1522 components: - type: Transform pos: 3.5,-19.5 parent: 2 - proto: Windoor entities: - - uid: 1506 + - uid: 1523 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-13.5 parent: 2 - - uid: 1507 + - uid: 1524 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 2 - - uid: 1508 + - uid: 1525 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-15.5 parent: 2 - - uid: 1509 + - uid: 1526 components: - type: Transform rot: -1.5707963267948966 rad @@ -12254,7 +12127,7 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 1510 + - uid: 1527 components: - type: Transform rot: 3.141592653589793 rad @@ -12262,34 +12135,34 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 1511 + - uid: 1528 components: - type: Transform pos: 6.5,-13.5 parent: 2 - - uid: 1512 + - uid: 1529 components: - type: Transform pos: 7.5,-13.5 parent: 2 - proto: Window entities: - - uid: 1513 + - uid: 1530 components: - type: Transform pos: 12.5,6.5 parent: 2 - - uid: 1514 + - uid: 1531 components: - type: Transform pos: 12.5,10.5 parent: 2 - - uid: 1515 + - uid: 1532 components: - type: Transform pos: 7.5,6.5 parent: 2 - - uid: 1516 + - uid: 1533 components: - type: Transform pos: 11.5,10.5 @@ -12299,7 +12172,7 @@ entities: color: '#AF60FCFF' radius: 2 offset: 0.5,0 - - uid: 1517 + - uid: 1534 components: - type: Transform pos: 6.5,6.5 @@ -12309,7 +12182,7 @@ entities: color: '#AF60FCFF' radius: 2 offset: 0.5,0 - - uid: 1518 + - uid: 1535 components: - type: Transform pos: 11.5,6.5 @@ -12319,12 +12192,12 @@ entities: color: '#AF60FCFF' radius: 2 offset: 0.5,0 - - uid: 1519 + - uid: 1536 components: - type: Transform pos: 7.5,10.5 parent: 2 - - uid: 1520 + - uid: 1537 components: - type: Transform pos: 6.5,10.5 @@ -12334,7 +12207,7 @@ entities: color: '#AF60FCFF' radius: 2 offset: 0.5,0 - - uid: 1521 + - uid: 1538 components: - type: Transform rot: 3.141592653589793 rad @@ -12344,7 +12217,7 @@ entities: energy: 3 color: '#AF60FCFF' radius: 2 - - uid: 1522 + - uid: 1539 components: - type: Transform rot: 3.141592653589793 rad @@ -12354,13 +12227,13 @@ entities: energy: 3 color: '#AF60FCFF' radius: 2 - - uid: 1523 + - uid: 1540 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 2 - - uid: 1524 + - uid: 1541 components: - type: Transform rot: 3.141592653589793 rad @@ -12370,25 +12243,25 @@ entities: energy: 3 color: '#AF60FCFF' radius: 3 - - uid: 1525 + - uid: 1542 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 2 - - uid: 1526 + - uid: 1543 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-5.5 parent: 2 - - uid: 1527 + - uid: 1544 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-7.5 parent: 2 - - uid: 1528 + - uid: 1545 components: - type: Transform rot: 3.141592653589793 rad @@ -12400,117 +12273,117 @@ entities: radius: 3 - proto: WindowDirectional entities: - - uid: 1529 + - uid: 1546 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-0.5 parent: 2 - - uid: 1530 + - uid: 1547 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-0.5 parent: 2 - - uid: 1531 + - uid: 1548 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-13.5 parent: 2 - - uid: 1532 + - uid: 1549 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-16.5 parent: 2 - - uid: 1533 + - uid: 1550 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 1534 + - uid: 1551 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-14.5 parent: 2 - - uid: 1535 + - uid: 1552 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-14.5 parent: 2 - - uid: 1536 + - uid: 1553 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 2 - - uid: 1537 + - uid: 1554 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 2 - - uid: 1538 + - uid: 1555 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 1539 + - uid: 1556 components: - type: Transform pos: -4.5,-17.5 parent: 2 - - uid: 1540 + - uid: 1557 components: - type: Transform pos: -3.5,-17.5 parent: 2 - - uid: 1541 + - uid: 1558 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-17.5 parent: 2 - - uid: 1542 + - uid: 1559 components: - type: Transform pos: -6.5,-17.5 parent: 2 - - uid: 1543 + - uid: 1560 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 1544 + - uid: 1561 components: - type: Transform pos: 1.5,-17.5 parent: 2 - - uid: 1545 + - uid: 1562 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 1546 + - uid: 1563 components: - type: Transform pos: 3.5,-17.5 parent: 2 - - uid: 1547 + - uid: 1564 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-17.5 parent: 2 - - uid: 1548 + - uid: 1565 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 1549 + - uid: 1566 components: - type: MetaData name: зеркало @@ -12518,7 +12391,7 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,11.5 parent: 2 - - uid: 1550 + - uid: 1567 components: - type: MetaData name: зеркало @@ -12528,13 +12401,13 @@ entities: parent: 2 - proto: WindowFrostedDirectional entities: - - uid: 1551 + - uid: 1568 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-13.5 parent: 2 - - uid: 1552 + - uid: 1569 components: - type: Transform rot: -1.5707963267948966 rad @@ -12542,25 +12415,25 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 1553 + - uid: 1570 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,15.5 parent: 2 - - uid: 1554 + - uid: 1571 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,15.5 parent: 2 - - uid: 1555 + - uid: 1572 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,15.5 parent: 2 - - uid: 1556 + - uid: 1573 components: - type: Transform rot: 3.141592653589793 rad @@ -12568,7 +12441,7 @@ entities: parent: 2 - proto: ZiptiesBroken entities: - - uid: 1564 + - uid: 1574 components: - type: Transform pos: -8.450703,-15.806053 From f7928371e9c76c41dee8933ef211c946437e4d9a Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Fri, 24 Jan 2025 00:11:31 +0300 Subject: [PATCH 087/103] C4 Helmet (#34076) * worn bomb * Update meta.json * Update meta.json --- .../Objects/Weapons/Bombs/plastic.yml | 5 ++ .../Weapons/Bombs/c4.rsi/equipped-HELMET.png | Bin 0 -> 609 bytes .../Objects/Weapons/Bombs/c4.rsi/meta.json | 62 ++++++++++-------- .../Bombs/c4gift.rsi/equipped-HELMET.png | Bin 0 -> 545 bytes .../Weapons/Bombs/c4gift.rsi/meta.json | 60 +++++++++-------- 5 files changed, 70 insertions(+), 57 deletions(-) create mode 100644 Resources/Textures/Objects/Weapons/Bombs/c4.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/Objects/Weapons/Bombs/c4gift.rsi/equipped-HELMET.png diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml index 87b6bb25341..1371725b06b 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/plastic.yml @@ -47,6 +47,11 @@ layers: - state: icon map: ["base"] + - type: Clothing + sprite: Objects/Weapons/Bombs/c4.rsi + slots: + - HEAD + quickEquip: false - type: OnUseTimerTrigger delay: 10 delayOptions: [10, 30, 60, 120, 300] diff --git a/Resources/Textures/Objects/Weapons/Bombs/c4.rsi/equipped-HELMET.png b/Resources/Textures/Objects/Weapons/Bombs/c4.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..b6b8236c5427b24b254303a26be75e663fc61a52 GIT binary patch literal 609 zcmV-n0-pVeP)Px%8%ab#RCt{2+A(X}Ko|z#*QJ_--DGnowWUi%2&CzaUR*MG5|s1Mv6CnQL$*#g z_zwt*gDK=6L=X&0^6| zN^Q&^r>RpD9@^YIND}kn-~i9}_JIB;0FMCtL>$NPJP!cOa5&sr6O>Y>+wG#$>1@m& zB#HTWa$=S5^a^OL5yvqAtbglP&evKy*RkHMahjUnmzMy5JkJpX0mAV58?epYUr|aK z04RzA)9DnwUJn59cy|}?kB_&WPeepSL_|bHL_|bH^#7^rJiuM5uES|IxSG$;L*G;x zO;;g=Fy(dB7X0kVQzL{ht@9%T^TD*vk7{qi?ffbYu>J?Ue04pKzdfIqQr6N0Ddmmx z0l(gU#k;WQoNqNvl~S5^yNxJ{Zj7X(D1zsC_dVA*Hk}9Xb4>Uw z8zrP%VDV(hiQ56!*DO8v_1?b=pQHKQzu4%zuRr~piL>(3>`7N5_bWaR=Dj{ueXr(4 zt|jqzip~}N(@M`f@-yIY>C#6Q8IlT7p=Hqx$3wGz3QaxhdD>^=9Dav$ZHKpBIn21= zj^2qQpIw@gIk!$r2$1C zA1t-s|Mk}V`pEsih3-8QzV|BNX3Vd*g$y6kgMWA}ym@l*Ba0i_vIoMs3V(mzcIs`@ z53j`aB@JDV7u-B~IGpQWj?`z}J&#rQJ{`Rx}Rdxq=&Hs1#@6Y-3 h{1ucC;MeAPjPo>wKG?~a-vGurgQu&X%Q~loCIBp;5g7mg literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Bombs/c4gift.rsi/meta.json b/Resources/Textures/Objects/Weapons/Bombs/c4gift.rsi/meta.json index a24d3bae5f1..c72d735b2c0 100644 --- a/Resources/Textures/Objects/Weapons/Bombs/c4gift.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Bombs/c4gift.rsi/meta.json @@ -1,31 +1,35 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Created by Alekshhh (Github) for SS14", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Alekshhh (Github) for SS14, equipped_HELMET by TheShuEd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "primed", - "delays": [ - [ - 0.1, - 0.1 - ] - ] - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] + { + "name": "primed", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] } From 04021498015b093040433a4e165b3ea9885fd7cf Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 23 Jan 2025 21:12:38 +0000 Subject: [PATCH 088/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index aba006b00f2..8669e437760 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: DiposableCrewmember42 - changes: - - message: Fixed Revenant ability cost checks. Revenants can no longer spam abilities - without Essence. - type: Fix - id: 7345 - time: '2024-09-10T23:07:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32050 - author: ArtisticRoomba changes: - message: The salvage magnet circuitboard has been added to QM's locker. It can @@ -3893,3 +3885,10 @@ id: 7844 time: '2025-01-23T14:01:45.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34558 +- author: TheShuEd, LeveFUN + changes: + - message: You can now put c4 on your head + type: Add + id: 7845 + time: '2025-01-23T21:11:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34076 From 7168de6a20f30b6293ea425c0d252199fa08bdb0 Mon Sep 17 00:00:00 2001 From: War Pigeon <54217755+minus1over12@users.noreply.github.com> Date: Thu, 23 Jan 2025 15:39:00 -0600 Subject: [PATCH 089/103] Make radioactive material radioactive (#34436) * Make radioactive material radioactive * Increase the slopes of item uranium No free power for engineering * Glowing uranium * Revert "Increase the slopes of item uranium" This reverts commit 2acbda26 * Nerf Wall Rocks --- .../Entities/Objects/Consumable/Food/Baked/pizza.yml | 6 ++++++ .../Entities/Objects/Materials/Sheets/other.yml | 8 ++++++++ .../Entities/Structures/Specific/Anomaly/anomalies.yml | 3 +++ Resources/Prototypes/Entities/Structures/Walls/meteor.yml | 3 +++ 4 files changed, 20 insertions(+) diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml index ff38363c9ea..f8990b7f52d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml @@ -581,6 +581,9 @@ Quantity: 4 - ReagentId: Uranium Quantity: 16 + - type: RadiationSource + intensity: 0.1 + slope: 3 - type: entity name: slice of spicy rock pizza @@ -616,6 +619,9 @@ Quantity: 0.5 - ReagentId: Uranium Quantity: 2 + - type: RadiationSource + intensity: 0.1 + slope: 3 # Tastes like crust, tomato, cheese, radiation. diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index 4bc98a4d4b0..a714eafd7a6 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -234,6 +234,14 @@ - ReagentId: Radium Quantity: 2 canReact: false + - type: RadiationSource + intensity: 0.1 + slope: 3 + - type: PointLight + radius: 1.2 + energy: 0.8 + castShadows: false + color: "#9be792" - type: entity parent: SheetUranium diff --git a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml index 60980cb6fcf..841c0a309b5 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml @@ -452,6 +452,9 @@ maxRange: 5 spawns: - MobSpawnCrabUranium + - type: RadiationSource + intensity: 0.2 + slope: 0.1 - type: entity id: AnomalyRockQuartz diff --git a/Resources/Prototypes/Entities/Structures/Walls/meteor.yml b/Resources/Prototypes/Entities/Structures/Walls/meteor.yml index 6f310e3b742..36a4b971ae6 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/meteor.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/meteor.yml @@ -195,6 +195,9 @@ - map: [ "enum.EdgeLayer.West" ] state: rock_asteroid_west - state: rock_uranium + - type: RadiationSource + intensity: 2.3 + slope: 0.1 - type: entity id: MeteorRockBananium From 7f02efc858a5fc41f10e8f5f627a27027fa95947 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 23 Jan 2025 21:40:06 +0000 Subject: [PATCH 090/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8669e437760..cefd1164464 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: ArtisticRoomba - changes: - - message: The salvage magnet circuitboard has been added to QM's locker. It can - also be made at the circuit imprinter roundstart. NOW GET BACK TO WORK!!! - type: Tweak - id: 7346 - time: '2024-09-10T23:25:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31996 - author: Lank changes: - message: Several antagonist shuttle events have been removed. @@ -3892,3 +3884,10 @@ id: 7845 time: '2025-01-23T21:11:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34076 +- author: WarPigeon + changes: + - message: Uranium is now slightly radioactive. + type: Add + id: 7846 + time: '2025-01-23T21:39:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34436 From 5e7cc99555c62811147402e46731405b05f514d8 Mon Sep 17 00:00:00 2001 From: Nox Date: Thu, 23 Jan 2025 15:26:48 -0800 Subject: [PATCH 091/103] Small fixes for Meta station (#34613) * Fixed a few minor things, removed salvage's shuttle parts (sorry), added more equipment to armory. * Added back salvage shuttle equipment, now in a crate * Fix --- Resources/Maps/meta.yml | 1868 ++++++++++++++++++++++++--------------- 1 file changed, 1166 insertions(+), 702 deletions(-) diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index d729c3d9b67..321ccf8ea7a 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -207,7 +207,7 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: eQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABTQAAAAAATQAAAAAATQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAHQAAAAADHQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABTQAAAAAATQAAAAAATQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 1,1: ind: 1,1 @@ -247,7 +247,7 @@ entities: version: 6 3,1: ind: 3,1 - tiles: WQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABaQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABaQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAaQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAaQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,2: ind: 2,2 @@ -259,7 +259,7 @@ entities: version: 6 4,0: ind: 4,0 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA version: 6 -3,2: ind: -3,2 @@ -319,7 +319,7 @@ entities: version: 6 4,1: ind: 4,1 - tiles: AAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 @@ -639,7 +639,6 @@ entities: 5056: -17,48 5128: -21,27 5129: -27,28 - 5271: -10,36 5272: -10,37 5273: -6,39 5274: -7,36 @@ -655,7 +654,6 @@ entities: 5376: 0,37 5377: 0,38 5378: 0,39 - 5379: 0,40 5387: -4,39 5444: -38,11 5445: -39,10 @@ -675,6 +673,7 @@ entities: 5996: 11,-35 5997: 13,-35 5999: 11,-36 + 6173: -8,36 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -758,10 +757,6 @@ entities: color: '#FFFFFFFF' id: Box decals: - 3189: 76,26 - 3190: 64,26 - 3191: 64,14 - 3192: 76,14 3529: 76,-33 3530: 76,-34 3531: 76,-35 @@ -781,6 +776,18 @@ entities: 6056: 71,-27 6057: 70,-27 6059: 77,-31 + 6180: 69,28 + 6181: 71,28 + 6182: 71,12 + 6183: 69,12 + 6184: 66,24 + 6185: 74,24 + 6186: 74,16 + 6187: 66,16 + 6188: 69,19 + 6189: 69,21 + 6190: 71,21 + 6191: 71,19 - node: color: '#DE3A3A96' id: BrickCornerOverlayNE @@ -895,8 +902,8 @@ entities: decals: 5292: -10,45 5305: -4,45 - 5366: 0,40 5382: -4,40 + 6172: 0,40 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe @@ -2044,10 +2051,6 @@ entities: 5266: -6,36 5267: -6,37 5268: -6,38 - 5269: -6,40 - 5270: -7,40 - 5277: -9,36 - 5278: -8,36 5283: -7,42 5284: -6,42 5285: -6,46 @@ -2074,6 +2077,10 @@ entities: 6142: 35,-12 6143: 19,-8 6144: 29,0 + 6174: -7,40 + 6175: -6,40 + 6176: -9,36 + 6177: -10,36 - node: color: '#52B4E996' id: DeliveryGreyscale @@ -4743,14 +4750,14 @@ entities: 3544: 74,-33 3824: 101,4 5264: -7,39 - 6155: 76,5 + 6195: 75,6 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: 3825: 107,4 5265: -9,39 - 6153: 69,5 + 6194: 70,6 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -4759,7 +4766,7 @@ entities: 3822: 101,12 3826: 102,2 5263: -7,37 - 6154: 76,3 + 6193: 75,3 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -4767,7 +4774,7 @@ entities: 3823: 107,12 3827: 106,2 5258: -9,37 - 6156: 69,3 + 6192: 70,3 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -4896,7 +4903,8 @@ entities: 6050: 69,-27 6080: 64,-24 6081: 64,-25 - 6157: 76,4 + 6202: 75,5 + 6203: 75,4 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5162,12 +5170,10 @@ entities: 6076: 47,-29 6077: 46,-29 6100: 45,-29 - 6164: 70,3 6165: 71,3 6166: 72,3 6167: 73,3 6168: 74,3 - 6169: 75,3 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5223,7 +5229,8 @@ entities: 6051: 73,-27 6082: 64,-24 6083: 64,-25 - 6170: 69,4 + 6200: 70,5 + 6201: 70,4 - node: color: '#DE3A3A96' id: WarnLineW @@ -5300,12 +5307,10 @@ entities: 6052: 72,-28 6053: 71,-28 6054: 70,-28 - 6158: 70,5 - 6159: 71,5 - 6160: 72,5 - 6161: 73,5 - 6162: 74,5 - 6163: 75,5 + 6196: 71,6 + 6197: 72,6 + 6198: 73,6 + 6199: 74,6 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -5955,7 +5960,8 @@ entities: -5,-9: 0: 7677 4,-9: - 0: 28791 + 0: 20599 + 2: 8192 5,-7: 0: 58621 5,-6: @@ -6178,7 +6184,8 @@ entities: -6,6: 0: 63279 -6,7: - 0: 20223 + 0: 20207 + 2: 16 -6,8: 0: 8191 -5,8: @@ -6214,7 +6221,8 @@ entities: -10,4: 0: 65535 -10,5: - 0: 36607 + 0: 35583 + 2: 1024 -10,6: 0: 61182 -10,7: @@ -6671,23 +6679,28 @@ entities: 0: 52425 1: 256 -3,9: - 0: 56797 + 0: 56789 + 2: 8 -3,10: 0: 56605 -3,11: - 0: 7645 + 0: 6621 + 2: 1024 -3,12: 1: 12 0: 64784 -2,9: - 0: 62327 + 0: 62259 + 10: 68 2: 1024 -2,10: - 0: 28935 + 0: 28929 + 11: 6 2: 1536 -2,11: 0: 383 - 2: 1536 + 2: 512 + 12: 1024 -2,12: 1: 207 0: 61696 @@ -6964,7 +6977,8 @@ entities: 9,7: 0: 26383 10,5: - 0: 56797 + 0: 55773 + 12: 1024 10,6: 0: 7645 10,7: @@ -6972,7 +6986,8 @@ entities: 11,5: 0: 65535 11,6: - 0: 4095 + 0: 3839 + 2: 256 11,7: 0: 30549 11,8: @@ -7131,7 +7146,8 @@ entities: -13,8: 0: 8 1: 12032 - 5: 119 + 5: 7 + 13: 112 -12,9: 0: 2 1: 65408 @@ -7293,7 +7309,7 @@ entities: 1: 61440 16,-4: 1: 8738 - 10: 2184 + 14: 2184 16,-3: 1: 8738 5: 2184 @@ -7304,7 +7320,7 @@ entities: 1: 8738 5: 2184 17,-4: - 10: 819 + 14: 819 5: 2176 1: 32768 17,-3: @@ -8544,6 +8560,66 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14948 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.1495 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 147.92499 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -8570,30 +8646,30 @@ entities: - type: GridPathfinding - type: Joint joints: - docking31405: !type:WeldJoint - bodyB: 5350 - bodyA: 28213 - id: docking31405 + docking434: !type:WeldJoint + bodyB: 28202 + bodyA: 5350 + id: docking434 localAnchorB: 0.49999997,0 localAnchorA: -62.5,39 - damping: 77.55165 - stiffness: 696.102 - - uid: 28213 + damping: 51.53661 + stiffness: 462.59152 + - uid: 28202 components: - type: MetaData name: grid - type: Transform - pos: -60.740906,38.52563 + pos: -60.629192,37.789837 parent: 951 - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: aAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -8616,21 +8692,16 @@ entities: version: 2 nodes: [] - type: RadiationGridResistance - - type: GridAtmosphere - version: 2 - data: - chunkSize: 4 - - type: GasTileOverlay - type: Joint joints: - docking31405: !type:WeldJoint - bodyB: 5350 - bodyA: 28213 - id: docking31405 - localAnchorB: -62.5,39 - localAnchorA: 0.49999997,0 - damping: 77.55168 - stiffness: 696.10236 + docking434: !type:WeldJoint + bodyB: 28202 + bodyA: 5350 + id: docking434 + localAnchorB: 0.49999997,0 + localAnchorA: -62.5,39 + damping: 51.53661 + stiffness: 462.59152 - proto: AcousticGuitarInstrument entities: - uid: 3945 @@ -8654,22 +8725,6 @@ entities: - type: Transform pos: -42.541283,-55.258762 parent: 5350 -- proto: ActionToggleBlock - entities: - - uid: 6512 - components: - - type: Transform - parent: 6511 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6511 - - uid: 7540 - components: - - type: Transform - parent: 7539 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 7539 - proto: ActionToggleInternals entities: - uid: 4778 @@ -8707,6 +8762,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 16297 + - uid: 23604 + components: + - type: Transform + parent: 23603 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 23603 - proto: ActionToggleJetpack entities: - uid: 7200 @@ -8911,6 +8973,19 @@ entities: - 9676 - 21638 - 23103 + - uid: 1913 + components: + - type: MetaData + name: Washroom Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,6.5 + parent: 5350 + - type: DeviceList + devices: + - 21141 + - 21143 + - 12104 - uid: 2004 components: - type: Transform @@ -9210,6 +9285,8 @@ entities: - 15169 - uid: 7315 components: + - type: MetaData + name: North Security Lockers Air Alarm - type: Transform pos: 2.5,46.5 parent: 5350 @@ -9232,6 +9309,8 @@ entities: parent: 5350 - uid: 8409 components: + - type: MetaData + name: South Security Lockers Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 3.5,40.5 @@ -10329,6 +10408,8 @@ entities: - 11929 - uid: 24343 components: + - type: MetaData + name: AI Upload Air Alarm - type: Transform pos: -9.5,20.5 parent: 5350 @@ -10502,6 +10583,8 @@ entities: - 4207 - uid: 24431 components: + - type: MetaData + name: HoS's Office Air Alarm - type: Transform pos: 12.5,48.5 parent: 5350 @@ -11263,19 +11346,6 @@ entities: - 15591 - 28347 - 19500 -- proto: AirAlarmVox - entities: - - uid: 27680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,6.5 - parent: 5350 - - type: DeviceList - devices: - - 21141 - - 12104 - - 21143 - proto: AirCanister entities: - uid: 2431 @@ -11283,16 +11353,11 @@ entities: - type: Transform pos: 45.5,0.5 parent: 5350 - - uid: 21247 + - uid: 4235 components: - type: Transform - anchored: True pos: -41.5,41.5 parent: 5350 - - type: GasCanister - releasePressure: 100 - - type: Physics - bodyType: Static - uid: 22860 components: - type: Transform @@ -11498,12 +11563,11 @@ entities: parent: 5350 - proto: AirlockArmoryGlassLocked entities: - - uid: 17516 + - uid: 4742 components: - type: MetaData name: Warden's Office - type: Transform - rot: 3.141592653589793 rad pos: -4.5,39.5 parent: 5350 - proto: AirlockArmoryLocked @@ -13455,21 +13519,21 @@ entities: - type: Door changeAirtight: False - type: Docking - dockJointId: docking31405 - dockedWith: 28214 + dockJointId: docking434 + dockedWith: 28203 - type: DeviceLinkSource lastSignals: DoorStatus: False DockStatus: True - - uid: 28214 + - uid: 28203 components: - type: Transform pos: 0.5,0.5 - parent: 28213 + parent: 28202 - type: Door changeAirtight: False - type: Docking - dockJointId: docking31405 + dockJointId: docking434 dockedWith: 1455 - type: DeviceLinkSource lastSignals: @@ -14300,7 +14364,7 @@ entities: pos: -29.5,15.5 parent: 5350 - type: Door - secondsUntilStateChange: -229744.11 + secondsUntilStateChange: -232830.38 state: Opening - type: DeviceLinkSource lastSignals: @@ -14574,7 +14638,7 @@ entities: pos: -4.5,53.5 parent: 5350 - type: Door - secondsUntilStateChange: -84397.87 + secondsUntilStateChange: -87484.13 state: Opening - type: DeviceLinkSink invokeCounter: 2 @@ -15336,7 +15400,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 27680 + - 1913 - uid: 12371 components: - type: Transform @@ -16234,12 +16298,12 @@ entities: - uid: 23812 components: - type: Transform - pos: 73.68355,8.538181 + pos: 73.69259,8.599899 parent: 5350 - uid: 28194 components: - type: Transform - pos: 73.29292,8.538181 + pos: 73.41134,8.537399 parent: 5350 - proto: AmePartFlatpack entities: @@ -22375,7 +22439,7 @@ entities: - uid: 1972 components: - type: Transform - pos: -3.3350391,37.558666 + pos: -3.512158,38.516827 parent: 5350 - proto: BoozeDispenser entities: @@ -22815,20 +22879,17 @@ entities: parent: 5350 - proto: BoxLethalshot entities: - - uid: 6527 - components: - - type: Transform - pos: -8.326942,36.34994 - parent: 5350 - - uid: 7537 + - uid: 14878 components: - type: Transform - pos: -8.691526,36.32911 - parent: 5350 + parent: 13851 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 28210 components: - type: Transform - pos: -3.7100391,37.57429 + pos: -3.559033,37.59495 parent: 5350 - proto: BoxLightbulb entities: @@ -22885,18 +22946,6 @@ entities: - type: Transform pos: -15.658107,48.604027 parent: 5350 -- proto: BoxShotgunSlug - entities: - - uid: 1913 - components: - - type: Transform - pos: -8.308382,36.69452 - parent: 5350 - - uid: 15205 - components: - - type: Transform - pos: -8.714632,36.678894 - parent: 5350 - proto: BoxSterileMask entities: - uid: 14952 @@ -42564,6 +42613,11 @@ entities: - type: Transform pos: 31.5,-38.5 parent: 5350 + - uid: 6362 + components: + - type: Transform + pos: 70.5,3.5 + parent: 5350 - uid: 6401 components: - type: Transform @@ -42609,11 +42663,6 @@ entities: - type: Transform pos: -16.5,35.5 parent: 5350 - - uid: 6690 - components: - - type: Transform - pos: 73.5,4.5 - parent: 5350 - uid: 6693 components: - type: Transform @@ -42739,16 +42788,6 @@ entities: - type: Transform pos: -25.5,54.5 parent: 5350 - - uid: 8244 - components: - - type: Transform - pos: 74.5,4.5 - parent: 5350 - - uid: 8253 - components: - - type: Transform - pos: 75.5,4.5 - parent: 5350 - uid: 8369 components: - type: Transform @@ -43689,11 +43728,6 @@ entities: - type: Transform pos: 43.5,-20.5 parent: 5350 - - uid: 11665 - components: - - type: Transform - pos: 71.5,4.5 - parent: 5350 - uid: 11877 components: - type: Transform @@ -47899,6 +47933,11 @@ entities: - type: Transform pos: 96.5,0.5 parent: 5350 + - uid: 23612 + components: + - type: Transform + pos: 63.5,29.5 + parent: 5350 - uid: 23618 components: - type: Transform @@ -47954,66 +47993,6 @@ entities: - type: Transform pos: 63.5,11.5 parent: 5350 - - uid: 23629 - components: - - type: Transform - pos: 64.5,11.5 - parent: 5350 - - uid: 23630 - components: - - type: Transform - pos: 65.5,11.5 - parent: 5350 - - uid: 23631 - components: - - type: Transform - pos: 66.5,11.5 - parent: 5350 - - uid: 23632 - components: - - type: Transform - pos: 67.5,11.5 - parent: 5350 - - uid: 23633 - components: - - type: Transform - pos: 68.5,11.5 - parent: 5350 - - uid: 23634 - components: - - type: Transform - pos: 69.5,11.5 - parent: 5350 - - uid: 23635 - components: - - type: Transform - pos: 71.5,28.5 - parent: 5350 - - uid: 23636 - components: - - type: Transform - pos: 70.5,12.5 - parent: 5350 - - uid: 23637 - components: - - type: Transform - pos: 69.5,12.5 - parent: 5350 - - uid: 23638 - components: - - type: Transform - pos: 71.5,12.5 - parent: 5350 - - uid: 23639 - components: - - type: Transform - pos: 70.5,28.5 - parent: 5350 - - uid: 23640 - components: - - type: Transform - pos: 69.5,28.5 - parent: 5350 - uid: 23642 components: - type: Transform @@ -48059,31 +48038,6 @@ entities: - type: Transform pos: 63.5,28.5 parent: 5350 - - uid: 23651 - components: - - type: Transform - pos: 67.5,28.5 - parent: 5350 - - uid: 23652 - components: - - type: Transform - pos: 66.5,28.5 - parent: 5350 - - uid: 23653 - components: - - type: Transform - pos: 65.5,28.5 - parent: 5350 - - uid: 23654 - components: - - type: Transform - pos: 68.5,28.5 - parent: 5350 - - uid: 23655 - components: - - type: Transform - pos: 64.5,28.5 - parent: 5350 - uid: 23656 components: - type: Transform @@ -48739,11 +48693,6 @@ entities: - type: Transform pos: 52.5,18.5 parent: 5350 - - uid: 28217 - components: - - type: Transform - pos: 72.5,4.5 - parent: 5350 - proto: CableHVStack entities: - uid: 1551 @@ -51283,6 +51232,11 @@ entities: - type: Transform pos: -12.5,9.5 parent: 5350 + - uid: 6511 + components: + - type: Transform + pos: 62.5,29.5 + parent: 5350 - uid: 6515 components: - type: Transform @@ -52043,6 +51997,11 @@ entities: - type: Transform pos: -12.5,49.5 parent: 5350 + - uid: 7538 + components: + - type: Transform + pos: 69.5,12.5 + parent: 5350 - uid: 7552 components: - type: Transform @@ -52113,6 +52072,11 @@ entities: - type: Transform pos: 22.5,32.5 parent: 5350 + - uid: 7741 + components: + - type: Transform + pos: 71.5,12.5 + parent: 5350 - uid: 7753 components: - type: Transform @@ -52228,6 +52192,11 @@ entities: - type: Transform pos: 12.5,41.5 parent: 5350 + - uid: 7939 + components: + - type: Transform + pos: 64.5,29.5 + parent: 5350 - uid: 7952 components: - type: Transform @@ -56153,6 +56122,11 @@ entities: - type: Transform pos: 30.5,49.5 parent: 5350 + - uid: 23613 + components: + - type: Transform + pos: 63.5,29.5 + parent: 5350 - uid: 23641 components: - type: Transform @@ -64114,6 +64088,12 @@ entities: - type: Transform pos: -37.5,-63.5 parent: 5350 + - uid: 17516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.499897,38.548077 + parent: 5350 - uid: 17602 components: - type: Transform @@ -65627,6 +65607,24 @@ entities: - type: Transform pos: -23.5,29.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 22795 components: - type: Transform @@ -66163,18 +66161,25 @@ entities: - type: Transform pos: 18.503342,-32.294178 parent: 5350 -- proto: ClothingBackpackElectropack - entities: - - uid: 6514 - components: - - type: Transform - pos: 8.451111,28.676104 - parent: 5350 - - uid: 6519 - components: - - type: Transform - pos: 8.701111,28.676104 - parent: 5350 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + - message: This decreases your running speed by [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null - proto: ClothingBeltChampion entities: - uid: 1952 @@ -66249,20 +66254,25 @@ entities: parent: 5350 - proto: ClothingEyesBlindfold entities: - - uid: 6338 + - uid: 6519 components: - type: Transform - pos: 8.730065,28.203384 + pos: 8.74664,28.347475 parent: 5350 - - uid: 6362 + - uid: 6529 components: - type: Transform - pos: 8.730065,28.203384 + pos: 8.74664,28.472475 parent: 5350 - - uid: 6448 + - uid: 6645 + components: + - type: Transform + pos: 8.736223,28.722475 + parent: 5350 + - uid: 6690 components: - type: Transform - pos: 8.730065,28.203384 + pos: 8.74664,28.597475 parent: 5350 - proto: ClothingEyesEyepatch entities: @@ -66853,10 +66863,20 @@ entities: - type: Transform pos: -9.348304,39.80468 parent: 5350 + - uid: 6311 + components: + - type: Transform + pos: -9.3454,39.672516 + parent: 5350 - uid: 7958 components: - type: Transform - pos: -9.317054,39.414055 + pos: -9.3454,39.464184 + parent: 5350 + - uid: 23629 + components: + - type: Transform + pos: -9.3454,39.266266 parent: 5350 - proto: ClothingHeadPyjamaSyndicatePink entities: @@ -66969,20 +66989,25 @@ entities: parent: 5350 - proto: ClothingMaskMuzzle entities: - - uid: 6311 + - uid: 6512 components: - type: Transform - pos: 8.511315,28.31276 + pos: 8.319557,28.545391 parent: 5350 - - uid: 6336 + - uid: 6514 components: - type: Transform - pos: 8.417565,28.297134 + pos: 8.329973,28.409975 parent: 5350 - - uid: 6337 + - uid: 6527 + components: + - type: Transform + pos: 8.319557,28.784975 + parent: 5350 + - uid: 6531 components: - type: Transform - pos: 8.40194,28.297134 + pos: 8.319557,28.659975 parent: 5350 - proto: ClothingNeckBling entities: @@ -67141,7 +67166,17 @@ entities: - uid: 2509 components: - type: Transform - pos: -9.317054,40.351555 + pos: -9.31415,40.50585 + parent: 5350 + - uid: 6336 + components: + - type: Transform + pos: -9.324568,40.422516 + parent: 5350 + - uid: 6337 + components: + - type: Transform + pos: -9.334984,40.328766 parent: 5350 - uid: 6958 components: @@ -67150,6 +67185,11 @@ entities: parent: 5350 - proto: ClothingOuterArmorReflective entities: + - uid: 5097 + components: + - type: Transform + pos: -9.7204,40.2871 + parent: 5350 - uid: 6778 components: - type: Transform @@ -67158,7 +67198,12 @@ entities: - uid: 7206 components: - type: Transform - pos: -9.723304,40.39843 + pos: -9.7204,40.453766 + parent: 5350 + - uid: 23630 + components: + - type: Transform + pos: -9.7204,40.370434 parent: 5350 - proto: ClothingOuterArmorRiot entities: @@ -67172,6 +67217,16 @@ entities: - type: Transform pos: -9.723304,39.789055 parent: 5350 + - uid: 15347 + components: + - type: Transform + pos: -9.7204,39.672516 + parent: 5350 + - uid: 23617 + components: + - type: Transform + pos: -9.730818,39.557934 + parent: 5350 - proto: ClothingOuterCardborg entities: - uid: 23093 @@ -67347,10 +67402,8 @@ entities: - uid: 14110 components: - type: Transform - parent: 17674 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -5.5,46.5 + parent: 5350 - proto: ClothingOuterHoodieBlack entities: - uid: 24527 @@ -68872,46 +68925,38 @@ entities: parent: 5350 - proto: ContainmentFieldGenerator entities: - - uid: 9070 - components: - - type: Transform - pos: 74.5,16.5 - parent: 5350 - - uid: 9193 - components: - - type: Transform - pos: 42.5,26.5 - parent: 5350 - - uid: 9194 - components: - - type: Transform - pos: 42.5,25.5 - parent: 5350 - - uid: 9195 - components: - - type: Transform - pos: 43.5,26.5 - parent: 5350 - - uid: 9198 + - uid: 8001 components: - type: Transform - pos: 43.5,25.5 + anchored: False + pos: 61.5,26.5 parent: 5350 - - uid: 23603 + - type: Physics + bodyType: Dynamic + - uid: 15118 components: - type: Transform - pos: 74.5,24.5 + anchored: False + pos: 61.5,25.5 parent: 5350 - - uid: 23604 + - type: Physics + bodyType: Dynamic + - uid: 22966 components: - type: Transform - pos: 66.5,24.5 + anchored: False + pos: 61.5,27.5 parent: 5350 - - uid: 23605 + - type: Physics + bodyType: Dynamic + - uid: 23614 components: - type: Transform - pos: 66.5,16.5 + anchored: False + pos: 61.5,24.5 parent: 5350 + - type: Physics + bodyType: Dynamic - proto: ConveyorBelt entities: - uid: 849 @@ -69466,6 +69511,49 @@ entities: - type: Transform pos: -38.5,17.5 parent: 5350 +- proto: CrateEngineering + entities: + - uid: 24070 + components: + - type: MetaData + name: Shuttle Construction Crate + - type: Transform + pos: -37.5,22.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 28201 + - 27680 + - 27208 + - 26688 + - 24489 + - 24478 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateEngineeringAMEShielding entities: - uid: 21813 @@ -69657,10 +69745,56 @@ entities: parent: 5350 - proto: CrateEngineeringSecure entities: - - uid: 9203 + - uid: 23089 components: + - type: MetaData + name: generator fuel crate - type: Transform - pos: 42.5,22.5 + pos: 44.5,26.5 + parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 9204 + - 23889 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringSingularityContainment + entities: + - uid: 7539 + components: + - type: Transform + pos: 42.5,26.5 + parent: 5350 +- proto: CrateEngineeringSingularityEmitter + entities: + - uid: 7540 + components: + - type: Transform + pos: 43.5,26.5 parent: 5350 - proto: CrateFilledSpawner entities: @@ -69726,6 +69860,24 @@ entities: - type: Transform pos: 17.5,-32.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: CrateFunArtSupplies entities: - uid: 27889 @@ -69747,16 +69899,70 @@ entities: - type: Transform pos: -49.5,33.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 10039 components: - type: Transform pos: -50.5,33.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 19427 components: - type: Transform pos: -51.5,33.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 27890 components: - type: Transform @@ -69909,8 +70115,10 @@ entities: - uid: 6700 components: - type: Transform - pos: -3.5133927,38.61675 - parent: 5350 + parent: 6696 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 10811 components: - type: Transform @@ -80120,49 +80328,48 @@ entities: parent: 5350 - proto: Emitter entities: - - uid: 9189 - components: - - type: Transform - pos: 47.5,25.5 - parent: 5350 - - uid: 9190 - components: - - type: Transform - pos: 47.5,26.5 - parent: 5350 - - uid: 9191 + - uid: 6426 components: - type: Transform - pos: 46.5,25.5 + anchored: False + pos: 64.5,29.5 parent: 5350 - - uid: 9192 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 + - uid: 8244 components: - type: Transform - pos: 46.5,26.5 + anchored: False + pos: 65.5,29.5 parent: 5350 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - uid: 14443 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 64.5,11.5 parent: 5350 - - uid: 15052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,27.5 - parent: 5350 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - uid: 15483 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 65.5,11.5 parent: 5350 - - uid: 23610 - components: - - type: Transform - pos: 74.5,28.5 - parent: 5350 + - type: Physics + bodyType: Dynamic + - type: PowerConsumer + drawRate: 1 - proto: EncryptionKeyCargo entities: - uid: 26443 @@ -82827,7 +83034,7 @@ entities: pos: 31.5,-33.5 parent: 5350 - type: Door - secondsUntilStateChange: -7236.8936 + secondsUntilStateChange: -10323.154 state: Closing - uid: 9615 components: @@ -84618,6 +84825,13 @@ entities: parent: 5350 - type: Fixtures fixtures: {} + - uid: 6338 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 5350 + - type: Fixtures + fixtures: {} - uid: 7176 components: - type: Transform @@ -85351,12 +85565,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#6F2498FF' - - uid: 21407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,41.5 - parent: 5350 - uid: 25932 components: - type: Transform @@ -114437,12 +114645,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#6F2498FF' - - uid: 21248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,41.5 - parent: 5350 - uid: 25893 components: - type: Transform @@ -116369,7 +116571,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 27680 + - 1913 - type: AtmosPipeColor color: '#0055CCFF' - uid: 21167 @@ -118215,7 +118417,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 27680 + - 1913 - type: AtmosPipeColor color: '#990000FF' - uid: 21166 @@ -118654,18 +118856,6 @@ entities: parent: 5350 - type: PointLight radius: 175.75 -- proto: GrenadeFoamDart - entities: - - uid: 8086 - components: - - type: Transform - pos: -19.655102,40.379436 - parent: 5350 - - uid: 8087 - components: - - type: Transform - pos: -19.264477,40.36381 - parent: 5350 - proto: Grille entities: - uid: 47 @@ -119453,11 +119643,6 @@ entities: - type: Transform pos: 72.5,30.5 parent: 5350 - - uid: 5097 - components: - - type: Transform - pos: 70.5,30.5 - parent: 5350 - uid: 5128 components: - type: Transform @@ -120571,6 +120756,11 @@ entities: - type: Transform pos: -63.5,10.5 parent: 5350 + - uid: 8868 + components: + - type: Transform + pos: 73.5,30.5 + parent: 5350 - uid: 8953 components: - type: Transform @@ -124222,21 +124412,6 @@ entities: - type: Transform pos: 45.5,13.5 parent: 5350 - - uid: 23720 - components: - - type: Transform - pos: 69.5,30.5 - parent: 5350 - - uid: 23721 - components: - - type: Transform - pos: 68.5,30.5 - parent: 5350 - - uid: 23722 - components: - - type: Transform - pos: 67.5,30.5 - parent: 5350 - uid: 23723 components: - type: Transform @@ -124247,26 +124422,6 @@ entities: - type: Transform pos: -68.5,9.5 parent: 5350 - - uid: 23730 - components: - - type: Transform - pos: 67.5,10.5 - parent: 5350 - - uid: 23731 - components: - - type: Transform - pos: 68.5,10.5 - parent: 5350 - - uid: 23732 - components: - - type: Transform - pos: 69.5,10.5 - parent: 5350 - - uid: 23733 - components: - - type: Transform - pos: 70.5,10.5 - parent: 5350 - uid: 23734 components: - type: Transform @@ -126795,34 +126950,146 @@ entities: parent: 5350 - type: Physics bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: GunSafeRifleLecter entities: - - uid: 22966 + - uid: 23721 components: - type: Transform - anchored: True pos: -6.5,40.5 parent: 5350 - - type: Physics - bodyType: Static -- proto: GunSafeSubMachineGunDrozd + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 23731 + - 23730 + - 23722 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeShotgunKammerer entities: - uid: 13851 components: - type: Transform - anchored: True - pos: -5.5,40.5 + pos: -8.5,36.5 parent: 5350 - - type: Physics - bodyType: Static -- proto: GyroscopeUnanchored + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 15052 + - 14878 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeSubMachineGunDrozd entities: - - uid: 28209 + - uid: 9194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,33.5 + pos: -5.5,40.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 9202 + - 9198 + - 9195 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GyroscopeFlatpack + entities: + - uid: 24489 + components: + - type: Transform + parent: 24070 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: HandheldGPSBasic entities: - uid: 3632 @@ -126890,11 +127157,6 @@ entities: - type: Transform pos: 55.526382,-6.473477 parent: 5350 - - uid: 15118 - components: - - type: Transform - pos: -3.5133927,38.2105 - parent: 5350 - uid: 15638 components: - type: Transform @@ -127550,15 +127812,6 @@ entities: - type: Transform pos: -50.5,-14.5 parent: 5350 -- proto: HoloprojectorSecurity - entities: - - uid: 7939 - components: - - type: Transform - parent: 6696 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: HospitalCurtainsOpen entities: - uid: 4105 @@ -128298,7 +128551,7 @@ entities: - uid: 7614 components: - type: Transform - pos: -9.691261,44.664734 + pos: -9.606552,44.638515 parent: 5350 - type: GasTank toggleActionEntity: 7201 @@ -128641,32 +128894,44 @@ entities: - uid: 6595 components: - type: Transform - pos: -16.408737,55.43637 + anchored: True + pos: -16.5,55.5 parent: 5350 - uid: 8516 components: - type: Transform - pos: 3.54636,68.39265 + anchored: True + pos: 3.5,68.5 parent: 5350 - uid: 8518 components: - type: Transform - pos: -11.473105,67.47077 + anchored: True + pos: -11.5,67.5 + parent: 5350 + - uid: 11588 + components: + - type: Transform + anchored: True + pos: -23.5,50.5 parent: 5350 - uid: 17667 components: - type: Transform - pos: 4.4783735,59.307983 + anchored: True + pos: 4.5,59.5 parent: 5350 - - uid: 23089 + - uid: 23651 components: - type: Transform - pos: -16.55398,50.45403 + anchored: True + pos: -4.5,48.5 parent: 5350 - uid: 28126 components: - type: Transform - pos: 6.439226,52.45743 + anchored: True + pos: 6.5,52.5 parent: 5350 - proto: Lantern entities: @@ -128723,7 +128988,7 @@ entities: - uid: 1174 components: - type: MetaData - name: Open Armory + name: Armory Doors - type: Transform rot: 3.141592653589793 rad pos: -7.5,35.5 @@ -128732,15 +128997,15 @@ entities: linkedPorts: 22904: - Pressed: Toggle - 6962: + 23732: - Pressed: Toggle - 7538: + 23652: - Pressed: Toggle - 1876: + 23635: - Pressed: Toggle - 8868: + 23634: - Pressed: Toggle - 23027: + 23636: - Pressed: Toggle - proto: LockableButtonAtmospherics entities: @@ -129507,14 +129772,6 @@ entities: parent: 5350 - type: Physics bodyType: Static - - uid: 7741 - components: - - type: Transform - anchored: True - pos: 0.5,40.5 - parent: 5350 - - type: Physics - bodyType: Static - uid: 7743 components: - type: Transform @@ -129557,8 +129814,8 @@ entities: showEnts: False occludes: True ents: - - 7939 - 7385 + - 1876 - 7384 - 7224 - 7218 @@ -129566,7 +129823,9 @@ entities: - 7191 - 7131 - 7545 + - 6700 - 7757 + - 13782 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -129727,6 +129986,22 @@ entities: - type: Transform pos: -15.689243,42.42685 parent: 5350 +- proto: MagazinePistolSubMachineGun + entities: + - uid: 9198 + components: + - type: Transform + parent: 9194 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9202 + components: + - type: Transform + parent: 9194 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazinePistolSubMachineGunPractice entities: - uid: 22238 @@ -129755,6 +130030,22 @@ entities: parent: 5350 - type: BallisticAmmoProvider unspawnedCount: 30 +- proto: MagazineRifle + entities: + - uid: 23722 + components: + - type: Transform + parent: 23721 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23731 + components: + - type: Transform + parent: 23721 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MagazineRiflePractice entities: - uid: 22345 @@ -130723,6 +131014,13 @@ entities: parent: 5350 - proto: Multitool entities: + - uid: 1876 + components: + - type: Transform + parent: 6696 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 3662 components: - type: Transform @@ -130733,11 +131031,6 @@ entities: - type: Transform pos: -17.668661,19.654816 parent: 5350 - - uid: 4742 - components: - - type: Transform - pos: -3.2946427,38.4605 - parent: 5350 - uid: 12072 components: - type: Transform @@ -130880,6 +131173,32 @@ entities: - type: Transform pos: -36.68396,-36.29682 parent: 5350 + - uid: 6785 + components: + - type: Transform + parent: 5663 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6962 + components: + - type: Transform + parent: 5776 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7537 + components: + - type: Transform + parent: 10975 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8867 + components: + - type: Transform + pos: -5.5,46.5 + parent: 5350 - uid: 15237 components: - type: Transform @@ -130903,6 +131222,35 @@ entities: actions: !type:Container ents: - 16296 + - uid: 23603 + components: + - type: Transform + parent: 6996 + - type: GasTank + toggleActionEntity: 23604 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 23604 + - type: InsideEntityStorage + - uid: 23605 + components: + - type: Transform + parent: 7774 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23610 + components: + - type: Transform + parent: 9506 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: NitrousOxideCanister entities: - uid: 11825 @@ -132344,10 +132692,15 @@ entities: parent: 5350 - proto: PortableGeneratorPacman entities: - - uid: 9187 + - uid: 8087 components: - type: Transform - pos: 43.5,20.5 + pos: 46.5,25.5 + parent: 5350 + - uid: 8232 + components: + - type: Transform + pos: 46.5,26.5 parent: 5350 - uid: 11183 components: @@ -132371,10 +132724,15 @@ entities: parent: 5350 - proto: PortableGeneratorSuperPacman entities: - - uid: 9186 + - uid: 8003 components: - type: Transform - pos: 44.5,20.5 + pos: 47.5,26.5 + parent: 5350 + - uid: 8086 + components: + - type: Transform + pos: 47.5,25.5 parent: 5350 - proto: PortableScrubber entities: @@ -133563,11 +133921,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1189 - components: - - type: Transform - pos: -20.5,24.5 - parent: 5350 - uid: 1315 components: - type: Transform @@ -134165,6 +134518,11 @@ entities: - type: Transform pos: 7.5,21.5 parent: 5350 + - uid: 8253 + components: + - type: Transform + pos: -21.5,24.5 + parent: 5350 - uid: 8483 components: - type: Transform @@ -134419,6 +134777,11 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-59.5 parent: 5350 + - uid: 11665 + components: + - type: Transform + pos: -6.5,40.5 + parent: 5350 - uid: 11728 components: - type: Transform @@ -135910,11 +136273,6 @@ entities: rot: 3.141592653589793 rad pos: 76.5,-27.5 parent: 5350 - - uid: 28252 - components: - - type: Transform - pos: -6.5,40.5 - parent: 5350 - uid: 28296 components: - type: Transform @@ -137492,11 +137850,6 @@ entities: parent: 5350 - proto: Rack entities: - - uid: 1569 - components: - - type: Transform - pos: -8.5,36.5 - parent: 5350 - uid: 2081 components: - type: Transform @@ -137631,10 +137984,15 @@ entities: - type: Transform pos: 32.5,8.5 parent: 5350 - - uid: 9202 + - uid: 9191 components: - type: Transform - pos: 42.5,23.5 + pos: -5.5,36.5 + parent: 5350 + - uid: 9192 + components: + - type: Transform + pos: -5.5,37.5 parent: 5350 - uid: 9485 components: @@ -137914,18 +138272,6 @@ entities: - type: Transform pos: -57.5,-15.5 parent: 5350 - - uid: 23031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,37.5 - parent: 5350 - - uid: 23043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,36.5 - parent: 5350 - uid: 23045 components: - type: Transform @@ -142669,16 +143015,6 @@ entities: - type: Transform pos: 45.32724,-24.4376 parent: 5350 - - uid: 6529 - components: - - type: Transform - pos: 8.356756,27.61508 - parent: 5350 - - uid: 6531 - components: - - type: Transform - pos: 8.3523245,27.349798 - parent: 5350 - proto: ResearchAndDevelopmentServer entities: - uid: 16515 @@ -142695,56 +143031,70 @@ entities: parent: 5350 - proto: RiotBulletShield entities: - - uid: 4235 + - uid: 1189 components: - type: Transform - pos: -9.815185,38.38895 + pos: -9.815562,38.776684 parent: 5350 - - uid: 6511 + - uid: 21407 components: - type: Transform - pos: -9.799423,38.722095 + pos: -9.825979,38.651684 + parent: 5350 + - uid: 22612 + components: + - type: Transform + pos: -9.815562,38.516266 + parent: 5350 + - uid: 23633 + components: + - type: Transform + pos: -9.825979,38.391266 parent: 5350 - - type: Blocking - blockingToggleActionEntity: 6512 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 6512 - proto: RiotLaserShield entities: - - uid: 8001 + - uid: 15205 components: - type: Transform - pos: -9.377685,38.70145 + pos: -9.409312,38.5371 parent: 5350 - - uid: 8003 + - uid: 23632 + components: + - type: Transform + pos: -9.409312,38.75585 + parent: 5350 + - uid: 23639 + components: + - type: Transform + pos: -9.409312,38.641266 + parent: 5350 + - uid: 23640 components: - type: Transform - pos: -9.377685,38.404575 + pos: -9.409312,38.4121 parent: 5350 - proto: RiotShield entities: - - uid: 6426 + - uid: 9193 components: - type: Transform - pos: -9.596435,38.7327 + pos: -9.586395,38.516266 parent: 5350 - - uid: 7539 + - uid: 9203 components: - type: Transform - pos: -9.549423,38.409595 + pos: -9.575979,38.610016 + parent: 5350 + - uid: 23637 + components: + - type: Transform + pos: -9.565562,38.7246 + parent: 5350 + - uid: 23655 + components: + - type: Transform + pos: -9.586395,38.4121 parent: 5350 - - type: Blocking - blockingToggleActionEntity: 7540 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 7540 - proto: RobocopCircuitBoard entities: - uid: 26934 @@ -143062,8 +143412,10 @@ entities: - uid: 9204 components: - type: Transform - pos: 42.51062,23.483671 - parent: 5350 + parent: 23089 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 16621 components: - type: Transform @@ -143181,6 +143533,11 @@ entities: - type: Transform pos: 42.50872,-3.4762616 parent: 5350 + - uid: 23031 + components: + - type: Transform + pos: -5.477169,38.5245 + parent: 5350 - uid: 23886 components: - type: Transform @@ -143242,16 +143599,6 @@ entities: count: 4 - proto: SheetSteel10 entities: - - uid: 6645 - components: - - type: Transform - pos: -5.3954077,38.543777 - parent: 5350 - - uid: 11588 - components: - - type: Transform - pos: -5.5672827,38.590652 - parent: 5350 - uid: 16467 components: - type: Transform @@ -143262,8 +143609,10 @@ entities: - uid: 23889 components: - type: Transform - pos: 42.540474,23.51859 - parent: 5350 + parent: 23089 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ShellShotgunBeanbag entities: - uid: 9472 @@ -143755,6 +144104,13 @@ entities: parent: 5350 - proto: ShuttleConsoleCircuitboard entities: + - uid: 26688 + components: + - type: Transform + parent: 24070 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 28205 components: - type: Transform @@ -146141,10 +146497,10 @@ entities: parent: 5350 - proto: SingularityGenerator entities: - - uid: 9188 + - uid: 9376 components: - type: Transform - pos: 42.5,20.5 + pos: 44.5,20.5 parent: 5350 - proto: Sink entities: @@ -146389,11 +146745,6 @@ entities: - type: Transform pos: 57.5,34.5 parent: 5350 - - uid: 15347 - components: - - type: Transform - pos: 44.5,25.5 - parent: 5350 - uid: 17169 components: - type: MetaData @@ -146408,11 +146759,6 @@ entities: - type: Transform pos: 39.5,-60.5 parent: 5350 - - uid: 24070 - components: - - type: Transform - pos: 44.5,26.5 - parent: 5350 - uid: 25868 components: - type: MetaData @@ -148861,11 +149207,6 @@ entities: - type: Transform pos: 12.5,36.5 parent: 5350 - - uid: 8232 - components: - - type: Transform - pos: 1.5,40.5 - parent: 5350 - proto: SpawnPointSecurityOfficer entities: - uid: 6760 @@ -148971,10 +149312,10 @@ entities: parent: 5350 - proto: SpawnPointWarden entities: - - uid: 6785 + - uid: 21247 components: - type: Transform - pos: -2.5,38.5 + pos: -2.5,39.5 parent: 5350 - proto: SpeedLoaderMagnumPractice entities: @@ -150183,6 +150524,13 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23603 - uid: 7774 components: - type: Transform @@ -150206,6 +150554,13 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23605 - uid: 9506 components: - type: Transform @@ -150229,6 +150584,13 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23610 - proto: SuitStorageHOS entities: - uid: 10385 @@ -150275,6 +150637,7 @@ entities: occludes: True ents: - 14074 + - 6785 - uid: 5776 components: - type: Transform @@ -150305,6 +150668,7 @@ entities: occludes: True ents: - 14095 + - 6962 - uid: 10975 components: - type: Transform @@ -150334,20 +150698,42 @@ entities: showEnts: False occludes: True ents: + - 7537 - 14107 - uid: 17674 components: - type: Transform pos: -5.5,46.5 parent: 5350 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - 0 - 0 - 0 @@ -150358,13 +150744,12 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14110 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - proto: SuitStorageWarden entities: - uid: 6687 @@ -152327,17 +152712,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Storage - - uid: 22612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,44.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Armory - uid: 22613 components: - type: Transform @@ -156527,36 +156901,70 @@ entities: parent: 5350 - proto: TeslaCoil entities: - - uid: 23612 + - uid: 6448 components: - type: Transform - pos: 71.5,28.5 + anchored: False + pos: 70.5,10.5 parent: 5350 - - uid: 23613 + - type: Physics + bodyType: Dynamic + - uid: 9070 components: - type: Transform - pos: 70.5,28.5 + anchored: False + pos: 67.5,30.5 parent: 5350 - - uid: 23614 + - type: Physics + bodyType: Dynamic + - uid: 9186 components: - type: Transform - pos: 69.5,28.5 + anchored: False + pos: 68.5,30.5 parent: 5350 - - uid: 23615 + - type: Physics + bodyType: Dynamic + - uid: 9187 components: - type: Transform - pos: 71.5,12.5 + anchored: False + pos: 69.5,30.5 parent: 5350 - - uid: 23616 + - type: Physics + bodyType: Dynamic + - uid: 9188 components: - type: Transform - pos: 70.5,12.5 + anchored: False + pos: 69.5,10.5 parent: 5350 - - uid: 23617 + - type: Physics + bodyType: Dynamic + - uid: 9189 components: - type: Transform - pos: 69.5,12.5 + anchored: False + pos: 68.5,10.5 + parent: 5350 + - type: Physics + bodyType: Dynamic + - uid: 9190 + components: + - type: Transform + anchored: False + pos: 67.5,10.5 parent: 5350 + - type: Physics + bodyType: Dynamic + - uid: 23043 + components: + - type: Transform + anchored: False + pos: 70.5,30.5 + parent: 5350 + - type: Physics + bodyType: Dynamic - proto: TeslaGenerator entities: - uid: 9185 @@ -156569,49 +156977,65 @@ entities: - uid: 23785 components: - type: Transform + anchored: False pos: 61.5,12.5 parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 23786 components: - type: Transform + anchored: False pos: 61.5,13.5 parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 23787 components: - type: Transform + anchored: False pos: 61.5,14.5 parent: 5350 + - type: Physics + bodyType: Dynamic - uid: 23788 components: - type: Transform + anchored: False pos: 61.5,15.5 parent: 5350 -- proto: ThrusterUnanchored + - type: Physics + bodyType: Dynamic +- proto: ThrusterFlatpack entities: - - uid: 14878 + - uid: 24478 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,33.5 - parent: 5350 - - uid: 21468 + parent: 24070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,33.5 - parent: 5350 - - uid: 28207 + parent: 24070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,33.5 - parent: 5350 - - uid: 28208 + parent: 24070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,33.5 - parent: 5350 + parent: 24070 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: TintedWindow entities: - uid: 2563 @@ -157791,6 +158215,11 @@ entities: - type: Transform pos: -3.5,42.5 parent: 5350 + - uid: 23409 + components: + - type: Transform + pos: 0.5,40.5 + parent: 5350 - proto: VendingMachineSecDrobe entities: - uid: 7515 @@ -175279,16 +175708,16 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,43.5 parent: 5350 - - uid: 24478 + - uid: 23615 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,46.5 parent: 5350 - - uid: 24489 + - uid: 23616 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -14.5,44.5 parent: 5350 - uid: 28124 @@ -175501,24 +175930,24 @@ entities: showEnts: False occludes: True ents: - - 8227 - - 8128 - - 8127 - - 7888 - - 7885 - - 8126 - - 8101 - - 8095 - - 7873 - - 7882 - - 7880 - - 7883 - - 7886 - - 7884 - - 7854 - - 7874 - - 7871 - 7859 + - 7871 + - 7874 + - 7854 + - 7884 + - 7886 + - 7883 + - 7880 + - 7882 + - 7873 + - 8095 + - 8101 + - 8126 + - 7885 + - 7888 + - 8127 + - 8128 + - 8227 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -175915,20 +176344,45 @@ entities: parent: 5350 - proto: WeaponLaserCarbine entities: - - uid: 23409 + - uid: 1569 components: - type: Transform - pos: -5.437482,36.714935 + pos: -5.433402,36.501247 parent: 5350 - - uid: 26688 + - uid: 21248 components: - type: Transform - pos: -5.425219,36.507988 + pos: -5.419513,36.355415 parent: 5350 - - uid: 27208 + - uid: 21468 components: - type: Transform - pos: -5.425219,36.320488 + pos: -5.433402,36.66097 + parent: 5350 + - uid: 23027 + components: + - type: Transform + pos: -5.4681244,37.17486 + parent: 5350 + - uid: 23653 + components: + - type: Transform + pos: -5.482013,37.605415 + parent: 5350 + - uid: 23654 + components: + - type: Transform + pos: -5.475069,37.320694 + parent: 5350 + - uid: 23720 + components: + - type: Transform + pos: -5.4472914,36.79986 + parent: 5350 + - uid: 23733 + components: + - type: Transform + pos: -5.482013,37.459583 parent: 5350 - proto: WeaponLaserCarbinePractice entities: @@ -175967,32 +176421,42 @@ entities: - uid: 8084 components: - type: Transform - pos: -18.483227,41.285686 + pos: -18.471203,41.255257 parent: 5350 +- proto: WeaponRifleLecter + entities: + - uid: 23730 + components: + - type: Transform + parent: 23721 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponShotgunEnforcer entities: - uid: 28199 components: - type: Transform - pos: -3.460195,37.94028 + pos: -3.527783,37.985577 parent: 5350 - proto: WeaponShotgunKammerer entities: - - uid: 28201 - components: - - type: Transform - pos: -5.4668856,37.257988 - parent: 5350 - - uid: 28202 + - uid: 15052 components: - type: Transform - pos: -5.4668856,37.414238 - parent: 5350 - - uid: 28203 + parent: 13851 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 9195 components: - type: Transform - pos: -5.4668856,37.570488 - parent: 5350 + parent: 9194 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponSubMachineGunWt550 entities: - uid: 10437 @@ -176456,48 +176920,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,48.5 parent: 5350 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 1876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,38.5 - parent: 5350 - - type: Airlock - autoClose: False - - uid: 6962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,40.5 - parent: 5350 - - type: Airlock - autoClose: False - - uid: 7538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,39.5 - parent: 5350 - - type: Airlock - autoClose: False - - uid: 8868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,37.5 - parent: 5350 - - type: Airlock - autoClose: False - - uid: 23027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,36.5 - parent: 5350 - - type: Airlock - autoClose: False - proto: WindoorSecureAtmosphericsLocked entities: - uid: 5236 @@ -176808,6 +177230,46 @@ entities: linkedPorts: 23114: - DoorStatus: Close + - uid: 23634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,38.5 + parent: 5350 + - type: Airlock + autoClose: False + - uid: 23635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,40.5 + parent: 5350 + - type: Airlock + autoClose: False + - uid: 23636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,39.5 + parent: 5350 + - type: Airlock + autoClose: False + - uid: 23652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,37.5 + parent: 5350 + - type: Airlock + autoClose: False + - uid: 23732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,36.5 + parent: 5350 + - type: Airlock + autoClose: False - proto: WindoorSecureServiceLocked entities: - uid: 14569 @@ -177960,11 +178422,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,42.5 parent: 5350 - - uid: 8867 - components: - - type: Transform - pos: -5.5,36.5 - parent: 5350 - uid: 8997 components: - type: Transform @@ -177977,12 +178434,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,34.5 parent: 5350 - - uid: 9376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,37.5 - parent: 5350 - uid: 9514 components: - type: Transform @@ -178325,6 +178776,17 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,15.5 parent: 5350 + - uid: 23631 + components: + - type: Transform + pos: -5.5,36.5 + parent: 5350 + - uid: 23638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,37.5 + parent: 5350 - uid: 24147 components: - type: Transform @@ -181278,7 +181740,7 @@ entities: pos: -28.5,-5.5 parent: 5350 - type: Door - secondsUntilStateChange: -12948.798 + secondsUntilStateChange: -16035.059 state: Opening - uid: 17570 components: @@ -181365,8 +181827,10 @@ entities: - uid: 13782 components: - type: Transform - pos: -3.540452,38.68336 - parent: 5350 + parent: 6696 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 18439 components: - type: Transform From 371b1f80125857669f43e2e9f6842dd5513bee6b Mon Sep 17 00:00:00 2001 From: "Ignaz \"Ian\" Kraft" Date: Fri, 24 Jan 2025 04:46:32 +0100 Subject: [PATCH 092/103] replace all instances of "department-{id}" with department.name (#34607) replace all instances of "department-{id}" with department.name" --- Content.Client/CrewManifest/UI/CrewManifestSection.cs | 2 +- Content.Client/LateJoin/LateJoinGui.cs | 2 +- Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs | 2 +- Content.Server/Medical/SuitSensors/SuitSensorSystem.cs | 4 +++- Content.Shared/Contraband/ContrabandSystem.cs | 3 +-- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Content.Client/CrewManifest/UI/CrewManifestSection.cs b/Content.Client/CrewManifest/UI/CrewManifestSection.cs index 29cf850e2b9..1e853bf153a 100644 --- a/Content.Client/CrewManifest/UI/CrewManifestSection.cs +++ b/Content.Client/CrewManifest/UI/CrewManifestSection.cs @@ -22,7 +22,7 @@ public CrewManifestSection( AddChild(new Label() { StyleClasses = { "LabelBig" }, - Text = Loc.GetString($"department-{section.ID}") + Text = Loc.GetString(section.Name) }); var gridContainer = new GridContainer() diff --git a/Content.Client/LateJoin/LateJoinGui.cs b/Content.Client/LateJoin/LateJoinGui.cs index 13cf281513d..7d1921816ff 100644 --- a/Content.Client/LateJoin/LateJoinGui.cs +++ b/Content.Client/LateJoin/LateJoinGui.cs @@ -170,7 +170,7 @@ private void RebuildUI() foreach (var department in departments) { - var departmentName = Loc.GetString($"department-{department.ID}"); + var departmentName = Loc.GetString(department.Name); _jobCategories[id] = new Dictionary(); var stationAvailable = _gameTicker.JobsAvailable[id]; var jobsAvailable = new List(); diff --git a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs index e81f72ba670..0f618cb71ca 100644 --- a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs +++ b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs @@ -839,7 +839,7 @@ public void RefreshJobs() foreach (var department in departments) { - var departmentName = Loc.GetString($"department-{department.ID}"); + var departmentName = Loc.GetString(department.Name); if (!_jobCategories.TryGetValue(department.ID, out var category)) { diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index 51974d7036c..b697a42d513 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -22,6 +22,7 @@ using Content.Shared.Verbs; using Robust.Shared.Containers; using Robust.Shared.Map; +using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -42,6 +43,7 @@ public sealed class SuitSensorSystem : EntitySystem [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; public override void Initialize() { @@ -369,7 +371,7 @@ public void SetSensor(Entity sensors, SuitSensorMode mode, userJobIcon = card.Comp.JobIcon; foreach (var department in card.Comp.JobDepartments) - userJobDepartments.Add(Loc.GetString($"department-{department}")); + userJobDepartments.Add(Loc.GetString(_proto.Index(department).Name)); } // get health mob state diff --git a/Content.Shared/Contraband/ContrabandSystem.cs b/Content.Shared/Contraband/ContrabandSystem.cs index 48055fc3de6..ff18a08cef1 100644 --- a/Content.Shared/Contraband/ContrabandSystem.cs +++ b/Content.Shared/Contraband/ContrabandSystem.cs @@ -55,8 +55,7 @@ private void OnExamined(Entity ent, ref ExaminedEvent args) using (args.PushGroup(nameof(ContrabandComponent))) { - // TODO shouldn't department prototypes have a localized name instead of just using the ID for this? - var localizedDepartments = ent.Comp.AllowedDepartments.Select(p => Loc.GetString("contraband-department-plural", ("department", Loc.GetString($"department-{p.Id}")))); + var localizedDepartments = ent.Comp.AllowedDepartments.Select(p => Loc.GetString("contraband-department-plural", ("department", Loc.GetString(_proto.Index(p).Name)))); var localizedJobs = ent.Comp.AllowedJobs.Select(p => Loc.GetString("contraband-job-plural", ("job", _proto.Index(p).LocalizedName))); var severity = _proto.Index(ent.Comp.Severity); From 2580a21471809584f7e7571e59016673c8f53c4e Mon Sep 17 00:00:00 2001 From: JustinWinningham Date: Thu, 23 Jan 2025 19:56:33 -0800 Subject: [PATCH 093/103] Renaming sexy mime and clown mask (#34258) * Renamed sexy clown and mime mask and removed lusty xenomorph poster. * removing odd file changes. not sure why these were edited at all. * gaaaahhh * removed some of the old templates * Renaming sexy mime and clown instances. * removed unwanted gitignore edit * Renaming sexy clown and sexy mime mask and Removing lusty exomorph poster. * Remove lusty xenomorph poster. * reverted changes to maps files, actually. Other contrib is learning, appologies for excessive commits * requested changes * lusty migration removal * dirty hanging whitespace * correct date format comment --------- Co-authored-by: NathanielJ14 --- .../VendingMachines/Inventories/theater.yml | 4 ++-- .../Entities/Clothing/Masks/masks.yml | 18 +++++++++--------- .../equipped-MASK-reptilian.png | Bin .../equipped-MASK-vox.png | Bin .../equipped-MASK.png | Bin .../icon.png | Bin .../meta.json | 0 .../equipped-MASK-reptilian.png | Bin .../equipped-MASK-vox.png | Bin .../equipped-MASK.png | Bin .../icon.png | Bin .../meta.json | 0 Resources/migration.yml | 4 ++++ 13 files changed, 15 insertions(+), 11 deletions(-) rename Resources/Textures/Clothing/Mask/{sexyclown.rsi => blushingclown.rsi}/equipped-MASK-reptilian.png (100%) rename Resources/Textures/Clothing/Mask/{sexyclown.rsi => blushingclown.rsi}/equipped-MASK-vox.png (100%) rename Resources/Textures/Clothing/Mask/{sexyclown.rsi => blushingclown.rsi}/equipped-MASK.png (100%) rename Resources/Textures/Clothing/Mask/{sexyclown.rsi => blushingclown.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Mask/{sexyclown.rsi => blushingclown.rsi}/meta.json (100%) rename Resources/Textures/Clothing/Mask/{sexymime.rsi => blushingmime.rsi}/equipped-MASK-reptilian.png (100%) rename Resources/Textures/Clothing/Mask/{sexymime.rsi => blushingmime.rsi}/equipped-MASK-vox.png (100%) rename Resources/Textures/Clothing/Mask/{sexymime.rsi => blushingmime.rsi}/equipped-MASK.png (100%) rename Resources/Textures/Clothing/Mask/{sexymime.rsi => blushingmime.rsi}/icon.png (100%) rename Resources/Textures/Clothing/Mask/{sexymime.rsi => blushingmime.rsi}/meta.json (100%) diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml index 0de6c0af152..e530f98738a 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml @@ -59,6 +59,6 @@ ClothingShoesBling: 1 ClothingShoesBootsCowboyFancy: 1 ClothingOuterDogi: 1 - ClothingMaskSexyClown: 1 - ClothingMaskSexyMime: 1 + ClothingMaskBlushingClown: 1 + ClothingMaskBlushingMime: 1 ClothingHeadHatCowboyBountyHunter: 1 diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index fa67fe65c41..0d974593533 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -591,25 +591,25 @@ - type: entity parent: ClothingMaskClownBase - id: ClothingMaskSexyClown - name: sexy clown mask - description: Some naughty clowns think this is what the Honkmother looks like. + id: ClothingMaskBlushingClown + name: blushing clown mask + description: A mask for a blushing clown. components: - type: Sprite - sprite: Clothing/Mask/sexyclown.rsi + sprite: Clothing/Mask/blushingclown.rsi - type: Clothing - sprite: Clothing/Mask/sexyclown.rsi + sprite: Clothing/Mask/blushingclown.rsi - type: entity parent: ClothingMaskMime - id: ClothingMaskSexyMime - name: sexy mime mask + id: ClothingMaskBlushingMime + name: blushing mime mask description: Those ruddy cheeks just want to be rubbed. components: - type: Sprite - sprite: Clothing/Mask/sexymime.rsi + sprite: Clothing/Mask/blushingmime.rsi - type: Clothing - sprite: Clothing/Mask/sexymime.rsi + sprite: Clothing/Mask/blushingmime.rsi - type: entity parent: ClothingMaskMime diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-reptilian.png b/Resources/Textures/Clothing/Mask/blushingclown.rsi/equipped-MASK-reptilian.png similarity index 100% rename from Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-reptilian.png rename to Resources/Textures/Clothing/Mask/blushingclown.rsi/equipped-MASK-reptilian.png diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/blushingclown.rsi/equipped-MASK-vox.png similarity index 100% rename from Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK-vox.png rename to Resources/Textures/Clothing/Mask/blushingclown.rsi/equipped-MASK-vox.png diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/blushingclown.rsi/equipped-MASK.png similarity index 100% rename from Resources/Textures/Clothing/Mask/sexyclown.rsi/equipped-MASK.png rename to Resources/Textures/Clothing/Mask/blushingclown.rsi/equipped-MASK.png diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/icon.png b/Resources/Textures/Clothing/Mask/blushingclown.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Mask/sexyclown.rsi/icon.png rename to Resources/Textures/Clothing/Mask/blushingclown.rsi/icon.png diff --git a/Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json b/Resources/Textures/Clothing/Mask/blushingclown.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/Mask/sexyclown.rsi/meta.json rename to Resources/Textures/Clothing/Mask/blushingclown.rsi/meta.json diff --git a/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-reptilian.png b/Resources/Textures/Clothing/Mask/blushingmime.rsi/equipped-MASK-reptilian.png similarity index 100% rename from Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-reptilian.png rename to Resources/Textures/Clothing/Mask/blushingmime.rsi/equipped-MASK-reptilian.png diff --git a/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/blushingmime.rsi/equipped-MASK-vox.png similarity index 100% rename from Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK-vox.png rename to Resources/Textures/Clothing/Mask/blushingmime.rsi/equipped-MASK-vox.png diff --git a/Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/blushingmime.rsi/equipped-MASK.png similarity index 100% rename from Resources/Textures/Clothing/Mask/sexymime.rsi/equipped-MASK.png rename to Resources/Textures/Clothing/Mask/blushingmime.rsi/equipped-MASK.png diff --git a/Resources/Textures/Clothing/Mask/sexymime.rsi/icon.png b/Resources/Textures/Clothing/Mask/blushingmime.rsi/icon.png similarity index 100% rename from Resources/Textures/Clothing/Mask/sexymime.rsi/icon.png rename to Resources/Textures/Clothing/Mask/blushingmime.rsi/icon.png diff --git a/Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json b/Resources/Textures/Clothing/Mask/blushingmime.rsi/meta.json similarity index 100% rename from Resources/Textures/Clothing/Mask/sexymime.rsi/meta.json rename to Resources/Textures/Clothing/Mask/blushingmime.rsi/meta.json diff --git a/Resources/migration.yml b/Resources/migration.yml index a3081713aff..a6aa44b326d 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -540,3 +540,7 @@ LightTree06: LightTree #2024-12-28 DrinkIrishCarBomb: DrinkIrishSlammer + +#2025-01-06 +ClothingMaskSexyClown: ClothingMaskBlushingClown +ClothingMaskSexyMime: ClothingMaskBlushingMime From 05ed43fcfce82609b36f5ad8da78f3fb1d25e180 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 24 Jan 2025 03:57:41 +0000 Subject: [PATCH 094/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index cefd1164464..927ff572f51 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Lank - changes: - - message: Several antagonist shuttle events have been removed. - type: Remove - id: 7347 - time: '2024-09-10T23:26:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32052 - author: Vermidia changes: - message: Borgs and other creatures that shouldn't get hurt stepping on things @@ -3891,3 +3884,10 @@ id: 7846 time: '2025-01-23T21:39:00.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34436 +- author: JustinWinningham + changes: + - message: Renamed sexy clown and mime mask. + type: Tweak + id: 7847 + time: '2025-01-24T03:56:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34258 From 613e710c76e938cce84adebea0eccb3b3b026e73 Mon Sep 17 00:00:00 2001 From: Velken <8467292+Velken@users.noreply.github.com> Date: Fri, 24 Jan 2025 01:30:47 -0300 Subject: [PATCH 095/103] Moved Cyborg Recharging Circuit Board from Lathe to Circuit Imprinter (#34612) Moved Cyborg Recharging Cirbuit Board from Lathe to Circuit Imprinter --- Resources/Prototypes/Entities/Structures/Machines/lathe.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 17f470253bb..7fe29143419 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -195,7 +195,6 @@ - SubstationMachineCircuitboard - WallmountSubstationElectronics - CellRechargerCircuitboard - - BorgChargerCircuitboard - WeaponCapacitorRechargerCircuitboard - HandheldStationMap - ClothingHeadHatWelding @@ -452,6 +451,7 @@ - SpaceHeaterMachineCircuitBoard - CutterMachineCircuitboard - SalvageMagnetMachineCircuitboard + - BorgChargerCircuitboard dynamicRecipes: - ThermomachineFreezerMachineCircuitBoard - HellfireFreezerMachineCircuitBoard From cc2416452020fc6d01d4cd5abac4c46a7f402a56 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 24 Jan 2025 04:31:54 +0000 Subject: [PATCH 096/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 927ff572f51..295014d4364 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,14 +1,4 @@ Entries: -- author: Vermidia - changes: - - message: Borgs and other creatures that shouldn't get hurt stepping on things - no longer get hurt stepping on things. - type: Fix - - message: Honkbots slip again - type: Fix - id: 7348 - time: '2024-09-11T02:12:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31011 - author: EmoGarbage404 changes: - message: The mining asteroid now generates small structures full of treasure and @@ -3891,3 +3881,10 @@ id: 7847 time: '2025-01-24T03:56:33.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34258 +- author: Velken + changes: + - message: Moved Cyborg Charger Circuit Board from Auto Lathe to Circuit Imprinter. + type: Tweak + id: 7848 + time: '2025-01-24T04:30:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34612 From 052be81f2ee565cf0712b9041dd96158ebd5fdd2 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Fri, 24 Jan 2025 07:58:34 +0100 Subject: [PATCH 097/103] Replace starter borg brain with Positronic (#34614) THE FLESH IS WEAK --- Resources/Prototypes/Entities/Mobs/Player/silicon.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 0c6f4812632..9bb793e47ad 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -502,7 +502,7 @@ - type: ContainerFill containers: borg_brain: - - MMIFilled + - PositronicBrain - type: ItemSlots slots: cell_slot: From 0707ee5fa36602e475fff90449df91e0c64244b3 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 24 Jan 2025 06:59:40 +0000 Subject: [PATCH 098/103] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 295014d4364..2f4aaf703a4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - message: The mining asteroid now generates small structures full of treasure and - equipment. Keep an eye open for them, nestled within the rock. - type: Add - id: 7349 - time: '2024-09-11T03:33:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31638 - author: SlamBamActionman changes: - message: The Station AI job is no longer affected by the Bureaucratic Event event. @@ -3888,3 +3880,10 @@ id: 7848 time: '2025-01-24T04:30:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34612 +- author: Errant + changes: + - message: Cyborgs now start with positronic brains. + type: Tweak + id: 7849 + time: '2025-01-24T06:58:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34614 From 9605c31785d293bebd50c7b72f4bb2d43fd7326f Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:03:58 +0100 Subject: [PATCH 099/103] tweak locale (#2949) --- Resources/Locale/ru-RU/components/gas-pump-component.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Locale/ru-RU/components/gas-pump-component.ftl b/Resources/Locale/ru-RU/components/gas-pump-component.ftl index 3b9841f5953..f86bd5d2763 100644 --- a/Resources/Locale/ru-RU/components/gas-pump-component.ftl +++ b/Resources/Locale/ru-RU/components/gas-pump-component.ftl @@ -2,6 +2,6 @@ comp-gas-pump-ui-pump-status = Статус: comp-gas-pump-ui-status-enabled = Вкл comp-gas-pump-ui-status-disabled = Выкл comp-gas-pump-ui-pump-set-rate = Установить -comp-gas-pump-ui-pump-set-max = Максимум +comp-gas-pump-ui-pump-set-max = Макс. comp-gas-pump-ui-pump-output-pressure = Выходное давление (кПа): comp-gas-pump-ui-pump-transfer-rate = Скорость подачи (Л/сек): From b147e09ebf300cf32bd24f4c3606599a9b07efc0 Mon Sep 17 00:00:00 2001 From: Zekins <136648667+Zekins3366@users.noreply.github.com> Date: Fri, 24 Jan 2025 16:05:41 +0300 Subject: [PATCH 100/103] Revert "Add Ai announcements sound" (#2903) --- .../Audio/Corvax/Announcements/aiannounce.ogg | Bin 91083 -> 0 bytes .../Prototypes/Entities/Mobs/Player/silicon.yml | 2 -- 2 files changed, 2 deletions(-) delete mode 100644 Resources/Audio/Corvax/Announcements/aiannounce.ogg diff --git a/Resources/Audio/Corvax/Announcements/aiannounce.ogg b/Resources/Audio/Corvax/Announcements/aiannounce.ogg deleted file mode 100644 index 0e8d2dab126978c074ff4727a708dfafcb8bf654..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 91083 zcma&O1ymhN(>6M|6CgnF;O_1Lf^OLO#@*c|0%YS7Ah<(t3lQ8bxVw8o@B|BxKmz%P zzjg0j_nXzb>6z-O?&_+irn-9uHCtOP01^1-2vYi6=unRhL!d(NarLmU_q@M^ z0B-|;-{1lGBK-N=jG%UZ=YNj-I}yOMlgi>LJji{`e~$^IzlNG(-$C8Ex1IM639|Ono`x0YAqk&`Ped#}$B{jbl5da_qQp^y7 zdMiy82#YnfLafJU5ycUvB4!0li%%l^5|>tv(Bi_+hENC#13HdA3IGn16go`^o~9yA zDB+*XB7&wk&0>V5B+FxjWso`;n|FvhScUhXupn0Su%d246pN#NN(Q^8k3h>=U}41* zZ-luhNfW~IH;d*OK>s5LHP{y!R8p%rY4m%}Q7pw-9@xD5f5oB(;GmemU>u=R4aMj* zh1xm&BmsxULy1{FxmkYbtbjAj*BhqmJ+A{MYw&ay%wgWTsouJc-o}gnBds?&{}G)U z0m!8j$@s*QZ$Vb|Nwgd#B&-4vu(}_TT#OtV)_g{X{9XH;z32ZXv_Dlq6(isG2FSI~ zDE@yW8~qgP|NkUqH^d4^fnz!7POqRzFQ-XA=)sQmXM~3UP^VIw?ERYjgP!6FUb2H; zDoV-P!^uXY4MsTsR|)rO2LP#u{Qa8jg9+?vd;%~n37EFPyq3hgHtc_K1pcuXP!NP{ zn=}VFI$whRpJ9Q6Z1DoIwXpxT1XfUt|4bj5kf;d}!A|I>FG~VT&j}M11cpieRpWgL zJ7I_U4^=5Tp`W=-^S)kEB9p-I5?K02-C#ZaxCADS12V9r6q|s`u{;M-BQ=wlMV52^ z2fypwqz5v8ZfjXdbd>m0A}vTdRr;6JeQD&c`A7i(+UOaOG$1JCTm$?eiUnYMeP{x zD0|&M*--^(&sZ!W2{Krf^CXVZHS-%;^#Tek*?&7dA+neC7g3;6sX;47CAB65nSxe4 z!ctn8fcf8w!(*7`p`6Ain#Kq7`!sn*p+>+kea^1IC!qz}Gt62y#d|r$88l$SRR7f` z@6|^C^`)3i;n?l}N|ygY4j=m@MQCord{IJ9JZImqEW%*Xwo$T5ouvx|tei_Bn-%KzV` z|A6p6$Wid1AJk+Ak<A84dwGOrD*>i(C=Zyn3DB5`{b_N$+F@Pf0U_ zkBV*t@F&B}ZzTudF#%g{^plDF%7hHc59KBajTaw6byN7q2?aE?VdD>>pj%lchQd-9 zpbzDs7us46ZWwYc9omahJ_m#gpn?4F#Zj3S4hMDSGFAM4D69=q6ifujSlZRb; zYx#s4CtI5~#~6$FZ0g49FD9EWcyBj*8?#U(?>q_{a2y@rKC1OtYpr7Ms(u(?t@npB zD4-B*{yW%ofZ<|{^&igq*HGPsP~*j9>+k+~rRAOPM{2n$YMm&W-jfe<{(>wvhFV_v zZ>KpM?_)jfR3$Z8Cyq7zPTF)r?r*NB7ghus2*SOAJRFhAqhUjY3nKvXEPI4nc&z=@ zUU-^^)P>qSs5G9ckba6JbqIteX^wS(T02&0C@YZwV#ks+qluPRqz-Y+OIpx$2PLIN$8vIdY@O>pvVQQivcZ6DfZ8fnX*dmRTnTL4pg%1M zSClo~GXZ3koS-=d+P?@>S#T^wsi+|Vq73#50;vhr1jCv63{6J?@D8Q222F?~N27t3 zvVb?9CT3ARG1x|fj-vy|z5flF-w=!PQ!Qg96G+C1qT>>{J}0NG_oH76GtBd zkOiSUK;2Igf=XIM5+Pp0IA*v9jvOsV|IlPlJ9g7;GHSH_w7o^ZZ zXTu8twPB!8R-aeZQ-|Qm?12Os^t^jQQPK<;{)K2l4(4LXL`XdA!)V*c2NH`de^6X_j zg|PIec}}ntkywt2>?K)5gED!70c@7%gvbC$5ZR-+&$2vY@3TLp|H?4_UxX+FgDo1J zKT$aW+TYMz0Pk;*uKZ7=PW)dn`@hlq|3@k1zXPrR87D!?0I4oaG~hQHxsHM`3mF#s zy^MIc06@~4794#)kcuq(g(0{y7-jqr5%i*9b%+uJXg-jlLNLTh_tey6WdP%?qujz7 z0|-mQf(05)(VQlvtYJYE9R$6mBgep!G&4g{ioxree$c0IH0U`_w1jDDI#f20I93WI z&D~={&#{uGD9IqYW+2Ov12kpJ=!S(XPY}JtmSX~o23WwBiyHt}tacAeF0AXB-uk0! z8gQB;6Ma9Zpgqw1(Z#*V(8xmWH862+GN3~LQbXeIuiaBa@OZ&%pjCk-8SvWFeLXyx z{Xgb*U&6@#r{3Qxf2jXv%=cCPo-%|G{8P&Nzas92=kP>FD|Jp{1v*tD~i>b9AD2q@AY>&0{%ePh4IK zCn{1SQ>$`jkNR456Sh|J(9nNkM57vWMX;&vS*)%Dua!W7S@DEu_T-5VVlHM>{OV)V zqM-{C&vBRX0WyM7dG^1TxK}c)0_m)AEqh{#$Hk_kD77w z(DF4@4<}&*h!iyTzU!BQa0>!@((XsLktCV+EqhYy3dp z^tR~y7ku?09r^{wv7K(V5cZtj+-=PRrPYAvmSR`{Rf8>y%C(>OQUv#O@T<5Xhyluv z7y8LKrSIw~EV)@MmnpuybY)FM>I~;ESMBc&qI-OBQTFk6^Sx-q8nW!M9$aNM!I_m0 zsG!)(iwqX&#i_FT(Sl|As?(D<%;(nXRkG2>?v<1(DD-T-BCS0-Xv1r8#mf0X@H?5LZG!J_ZpaW$u*5ZO!bIAAtz01pQV8 z60f5T*?ND*dl#Im+CO}!IOPPNRf~6>@>oczS|`OvO^GjrEl!F{c;;AB3R};dT<2;vI{ z;l!2g5_uaIoipOkyy&2D=2moUZv&8Ptah?HXl2M*W@3BzJWXWj#5nL6zoP%z_bT+F zTL?en!_hTa)54n_7&cIru4lVqL?)qGY1%))srX3qHn@1==(oHEK6NOYH_x+$YeiSK zAL@5mpBlWgL*|C54s>rHA`)j`>AT3-b7(Sj%x*MhnQzxzF}^;3%wm?_+Og=h?JHca z6fKQkoES%(8w)kc1MX6xeh%_O1)+>nI=_&J0e~Vj0A>1_!OOtzPzpgRD z6X!Xb1iAK3T+@47FwV@-16>k|u zveels$Gck6j`o{~bMKQa05D^Vj@KY={8$12bYI?+Q^%qQ&Y}v3a@;^WP8pP`C2ZwV z@lg>IaGG7R1_HxaJFq8he6p!?&;?+%BL(94jJ&dmChsq!zFAxLxJ}x>^qnA<#r^WB z?i0spk?pfhj!n(H7D|hiP8i3Sb?Oz2C!*-Jy7(6%j@YisH@bRx)i-Q7N$HJ~&Xv!p z1`RYBDiJciki1^h?33+D_4gzQ@*oi~P<3Z1@A8aB03@58jWSk>xH3v*R!<-30YG(V z0HMJ9(zF0DMp~I9-jaf_(Ukj8#9;S{m6YXr6k2@XT~@cSR$<2*qD^p?2D zrIdtI@bE^6kJ;lHxcJvo+D-=##b$B>@Rl^g(r~SV3pU28CLcY1Z~1YSF-D)JqBTGczxgOelF<`X!!M?kS;$n zs2#C$o&$a_e7T-bdGej38vgiQ%KVMzFU{x;j5t?fY5ilwX0pdF!zY6Vfrmt8{_ruA z>@JN!)BsR`xyD)p{)sgZ0x0ajDgGPUy3!xcn83dDPbY*3ZN;4E>@NZMs(0?es*sMy z;plW;&l)PelE~Hldaa_LHG&km&>FPwnn41T-Dy#l7L-RMj_Yvj*dM1|u0_ItWKL17Mylvw83Z|=EZU-9ky$$*0q|{aI_w?Jd z-67%vexLXGBn(#wfoiiZCphGptI_+azRo=sH8wVUgF)R@b7W*9RAgD#0lu)v*(>N2 z;cB!w>i#WB(O|2MSU+F;T=D7}|4~hh_KE%ot*c~(?FDk+``aQciw6p-TR!GYLhqHd z>{klvDQ0J{T!Wq|% z)rfH-ryk}xD-O};|FCn<=B^H*79IVTt+l5i`N1OcaxK4!;2AGH4?gjX%Ihu5RgCZP z@sjz^-0598jL$#5OQUd*HG;+I;uhhA=A=-#nzlq8k!OW(3JIioWo=HIX&w{w^?vC( z*4xbbG|a2u#K~Zfh9&PLnaPWLc2J~XzYP3}aSUN^>KyiXe|XolJ6m61P8+lKxb&8< zNG1s}pgDV3uby6cN_O|b*XAEs!oaD$kt6%RpapOd}u!41J9>z-GAbeputy z{rE4wp-q!Zt_SxlR%TK7hoW*Elpzzk_BuRO72F)0N6UI7aP;+&G?Av%TSs^+^Uf!; z_r662WSq#*)l8uW1!|qp^F3e6-vrm+@;`w=`;b7l z6QLJt=08Z<2a0l@AtS9f;AF9X_2{r8jSweKOV7~k&5X#lLaD0P6FUQJGX=_O@Rmalk zF$dmRW|mz>bQ$V1hWJ{zTs4=Th>?oTj@PpIL0+#cW6vOp|g@7Fz7f z=p!P=k&=8_IZioGIn%&u+*Uf5Ppllh9Q53DP3X5OPrLeNIDb)qj{KNYY|Q(Lj8IuJ zENGDb#4W=lFKdNVbun&1uBduW{-z*rM7;3OCzS5gTqhl^Uuo&AjZJU)6r#kPkDfApGflTAmZslv3MQgkc60 zfFc)==i$ZbIsl^`v)@y|?={CqChG~UNo^s6gc{KK;rROBAJyXW8%x(hZX#|!oZ=6T zKJP;%`0So^YEigxc0uIkSWZ>@u0f}t=}6tdamK5d^7(qR?`llEu5C~=a?Ox%YiLz#3{u%ESb#!@gpMFoh_2bUCe6tW*02sa9 zWxu{b>j%InDccrRI`n;|IG3KFRc2g3C9_)wq{6v}cLW zyiHigI@mOrIdq-nJA%rM9=3!i7?($>vFIZ`vp{fFYbNt{km{03KEgL{qb0Jt~vx84Kl zGjQgaVd4M);6J5RMZuGaT!RiwbboF^sCd2j+fqtNs%Q4h(ubj78nUR#8Of)QQ+RUX z$Y?lH=vO?cG?SV)cEr3b?0J;yy#UEj+*yr&{fSa=46i|`vW;l`gLQk5weV;Vxy{!n zUul*}*CEq#(YcW_vE*Z!y3K;>foc5-qqAA z)RXR4wl6)G;^r$mE|5kk&8n_Aagv2)@U2XZ1r6wEB0Sm?G9D1Gdq^sL)_7~s>i_gC z!o2XRxXN7qbijs>X+G3@n7qVyb)ewG_82Lkb7vKq9FhMk;OEi!T)fctTCaoWP@aoz zm8KhdG(^OI79@)QU625K52%e)F%u09^$qopkB#>9j*Jfvb&n4W^!D`SlzvSXU!6!< z@Wu~bD*zuQ0MIV?p#)jo%4Xda6^z9FCTxKKUY7xB2;Rw)1nH1u4hbh|*?d{qhj+Yv z5htFszxD(Ht5`c+M7w~J^x|d**hSIWtM%u+)&51h(c<(6Q&tDB{Ou)Shx;-#H`iH@ z43(nuOKVJdBBTndrF4!|;%~kVaoWni*F0C_i!mWWOqlri1D+Cqws|d*$RBU_;>i1v zdl!1p8UO^Cs+WH$zr6g$K^=xUS&iuTG*BtajvntxeJ+wo>DS;SjwMeor~sEp%sr-n zQ>tbR0EZiC2#*Lx3kKxEaM$MoW;*kwVO1-vPCWTC1RNhr%%v;o%b$79(?%n3=yPpX zKj0-Mn=VkGjDPXEI-=9hC;vn>l8iR}@*|b|3W~{&S6EV*$EaBi3bGbM6NSPC;#_Xr z(}iyv)7)MG%Nnz#O<6w_<|H(Vr`!SC3x5sTM)-3X>Ngj4D|SwctS8FUQc?;se*Ub` zQU9Wu=@kqUT-PTGV{|-e;VJD#C+mO;a90AA=6I0$UR~@gxB0Ia#3)aYx|1{niJpQF zn$v_f1f$W8OyV|gM3_F+Z^6z(&NVH`&Rv+%R*sf(*-4L& zzVe1V6kmAigw_;@yBgx&kLlcYeK{zDU^pN`J8DZeyl(n&3GKpQ%prRfW! z$Svi7`8=d}1>Z-Ul;O7-_>o5?nqcITr0dgwQwzY)aStT|)+{IB%3J2L`4OT? zD5=rcx)8)J3}7COrKeW0p$p*qqfq5yli)nI@eD#6(0SqemRm&WwlFP!E!sk(CUL26 z^hKql){+MsnXgAi1Lf}V?Z9$cL+^Mne}K75)U;;Lv~O6;p-@08J6ilG(*jARX3g%S z>*rdn1eqDoleXX|ulBi6@ZvtiFq?kibr8sCot)u*dX_rqPBC8m>YaZb{u4h0s4XM{Rjf1 zJAca)Nc)5r6_pM~i_cuuQ0No%2T#Y>itI*wTMZPO_*4TSJwa3Xx4alVS=$!#(yvfM zIT??uK9p89*_0s1s4Dn9P_OumvMffN_DPqXx*gZlkjE}H0@?Y+=N6sA@FkRZnBph2 z@|g)lA0f%s!Bh=%Lnv*#An(jVI<*N&H_pSGEU$*@wSG94Vl4EB>1B)1tvdKZj()90 ziqCg|N1Rslbbf_>Y}G=Hz~<7bGJjmF9!U!N8`Oxi4@Xn&`x-&);c2@^@~yrAT<(KE zQ2GWt6ngKi+UKZ{@RTkzN)WNiOAX`fn_lNyyuuvyN<>iFf2$~ZcPG~EqkWt}uO^-j z)%Qxpmh@24tTTC!8j`x@#e#EH!K1bJ;U%|JMqf~KgqO;eH{uaik)bN3H_x<2bj{Is z7IS#2K^YZMJ5xfg#vI?`Tjhm!V|q6DMBg^bhCh*%SX%irLfZSa1R3Kd$-g1k8E8*j zEa_l`=x|>?Hmd%Fp7Dt2gzn-ok}M`Zu#tKx?ZPGWCSL3;Ynxz7@E14$pYyjA5KAA$ zrV`B-0dUmz7jKbu(kD3^>-xTaOrvNkfyq!(v`^~kHLLgCu0`)xb84e=Do0kQMSEL8 zT?-Gx;Lq4NT0Ah16kXPW`~^%ai#axmdRynMJw@lAr}mf81nW2ERj1mloYg4~rn!l= ze&A0dt$)w7zeJhgvJ@mVpTm4Ub%yX`+;4L}ek?tHLihL3tpPWH#8kffnMLjcNs(9Y zT&10CvdeLodXh%y7ud1V9MTejCcsl5vC9z<|y4JUXHk76sL8D;xT#4a48wkQAPzNol9Cd6kn~K{Z<9{BxN-=RCe1ROWmJs(2hGdoS9#t zXH4r#<5k_rDKe7+8iU`FZQ>x>eq{6CI8S}X&rjD_s`%(UCJ>gr0FwlA!jq*%+LUvi zqGdI$gxyP!zvYaOYfr|(dZ-QnTURSD;aJq0_ynYE5p%81NTsQYSS|F}bu^Ilv89QNC@F8nNct@}nI#icV7Iv-=yC2pch0aSI zNPzh19x^c1L}~*N@!iX!F`JEm<@o)>6G07jh7k+Z@|XCsyMqnOhHMY{7ze19{hlXqO#SZz&)CxHTbF`bEi~KjV zwFKmwdkb`V{08*)ZEcQ9A*b5oTI0kh$!=8zc?JceN74zo_ zvYPVXBN?bq4%Y5v{cM?(SK-KHEwxL-qYJzo+x4@s!Z|r18GahMs4U*_?5J1+s;|i8Qu|>w z(D&+X!Rk<{t^3x*f9X-5=vid1`MsALV`MwoDBz2n8joKyJ?xn&ePZ1porU|+C|!Gz zPHKugwJtax|3imv>I2=UVm51E-}_Pu7)Vj-?hNnjQsWCcY{=BHsj^k8!=?l-86A7G z+}-D^2Rd%@*9jKz(sDsZNj?MR@b+=w6f%V}@syT-t$v9H=%pj1+gtTx|Ivmp(UjDoHH5*M zV;%OUgwiWQ&M5o+JGwB%Ic^h7wT?3zYYH9&mWcz?ScyB{eY}E#)J*4WS>=aX2fDAQ zE6I*DAzEaNSX&E+?GGy4;g?9R%M;Mo*m9o%*SW|KI?pg7|8X`yt_rC5ZKIPYbQ%Wz1KsI zY1$xqHYO$VPGj#eC19p;x{0Fh%3HZoC5-?)bW8pPP!oN)v&&LdXC4|Z>rXdj=3_Gy#?7We(Mp7H zaJ-u>|5C_RE!2=mVT_$u+82LUdsHFXFrn1DCwA%oar8@rYSOv|AK~eXQqLPBsm>Vq z`Ds?3&Z*eyU5w+&Mq%UJ&Ce~Yku?X8Sjej`ve?Zu$rVYuUu0jqQH!A%CeM;XJD;Z< z*dB0XSvZHkN9|lYIi3W%A!=y|A<>v!M(a3SL?Mw(H*l%&=oIzn*M4VCykQ&oT7Dk`VPf$q`n6a?-G z)VpQ#J(4=dd-6U_K%}Rcah2q1Z?fk0myLGl;%ku&1LOz5ov(mggGh?L+7TlK?n*3s zLiTC$?Pixh!fQCzQZ9)+v7iRH#KM(?6_mH|eP9|@nMN*Q%8r4BB=Q%HH@i#Jp-CUH zwN^{q!Tu5c&yoH2lS2$@!U2SlaAx9mN4?wNyBDuJV(~re3-zk|m1@Sz*@dVRHhmv9 z6?pR>GQQw0^V**$u;$nfRa~soNW$_%y&Q8p^I=yDX7)>CQ&Hy^hwR{&4X8!f6Isi% zK=v!4rJ`p*^@wruX;TaS$KnyD#j5DQ{`jqc&dBB!( z@3WcD>A?jH-T4XIxe`K`MyuesaF1XO=+uLV41vwqcw zB-uPpS!vXNLn#^|Q=hB{I$0f`;h^|*xqd7{01x4CZrunew_Z{0sh%nhiSQIolx(I! z;JLOtu9Sz(a_P=cd3;^Fp|7yF;>3;JX!L1Lw6A_e)_`=bhuWpVfxzQNIfLCI3@e*ajSb^8vH*|bK2QS$rXOFXcU%fUuN zzz6^gg3=*AiakA1HDyXBidz)iNmi$|dQw{(pSjiEkO2=6UWTqcKBOL5dhxTqIFeCO zO~_tcFRd$5GIfql@43%M^7|^1O;BasrF=c5PZQSh;g{dHzSXt3#bxfb$B)1$a;ep! zunJq^ApNv68lcAZx1DhgdJWZ`Y$#}&r%k+8lfue)Pq|!EL1e>jV1x5Bg>SZW&qCK> z_xKTPV<%__Puhx)RAab>xTR)fC@A21L!VAPfTLqw3x~nDsCjuT&MjvkZk~?dV~D4u z7qzDe#79^`IcJG8L2~g@2I0BcYO)CTr+1fy>jl(k&*HFS-*oNf(c1LxLB+rTUVzft z9UF9D!=W#v76fNH0Px}d9YK`kCOQi9-g$Lb8#r&k6(elJgNVZ66!=TFbZG=Uf%7U@ zdcTH5;2-E*ipujU*>jvnB?z;k=LAd@y(U`5PcGIP9vsE`c{1(_qYSXQ{V3F&DVSF) zStN{q+Cx+pq!9estl}sbUsvUrF78E3KLKWZ1lsz~{X%?vnZ?J33~!`dxo=m5Uwl1u zEBs~(X(f4z_(86Ot4`!GSJ`*-)}Pc3Op{CByD?9Hh_R$0^5m31auAqeq6-3S%0U~ynCkskZLvt1fh)=TSPmCk! z?+(6Z(^-TS`REu!QF9&3@y?PyAIo;q8z>AM;9#On9VhV~RtBKCn7cCTT`oPg3m1|+W;#i#X>bpBZ_<3#>LbN!) zO6Od6^+$OD63WmDuW$CU>c7##Z~}MAjbM6;_fp7J3Wpi`91NJFt%Rir0q~gQLK0Gu zKih*qT1!*yZl7l9<0rf}VIDOK87f>Q2BpK_zZ{BjIv{U3Ap2aLZ&qZPi}Vx$>R&eM}U0T{~5#2h<4KO74@}pYE_^nSq`MpCv*;4P@k)zIUBm(4*;7Yo{UAREM zKZu6O{g^y^avv^m_-}Jb~NNvlHpY$_01us@-jE>TngQQ?7P!+ zG5B?10C`K~6sHH(5Hp#$md>_dO`jIM;C4i?M+Ov*fU_j=RV|!WW<{~% z0W~wCasH!g{S=fyY9njBpD|yVN+?KEq?1&h7uv2dePp2fvYo0e7w%MNlq|+*n zoPD_2ieemj0hfR*J%WXOyK+gHkGBcqNXM_%NdmK_3TgnqKXV~C4JUeIc-)?ba-0b_QaWCo7sY=Sq~MxyBsu2#pr)#V<~B9S|toh1E>FBj6QBR}Q$==$bGC}lNxpd?#U`bzJSA_berZCG%T zM8u{*abu|4;s(Mp$MaYEeJh4eb{@QedlwQ}e}7S{*I4wasHI&9b;d>50XO{=Hu8vt zst{b7_VwusmAd|nk5{|4S@6SQ zkEvljaeFsP#(~ook`UaDnA$Es;;eg~=hws=-?bp5EZKJ(e}9l>KP z4!w%Px3AVLKO#w8G+@@f5jtYax^{L_o_v(`z+c~ARQD2HnXGKEI05kwE=+nWY<;C2 zofX(m!0<2#O^;Bn;Ig)-5P+jVM25{d)e(7X1ugnxjRgYzk7t8}+{QPLjpuQ{!GQzP zCbC~V^L&o{{sQJB&(^zRrvV`i3Z}g28B&Il~yVo+< z1EblgLksoT-#(qI5HQP$_g$O7S*HfP-1YgDv`PzyX)rb zVz;VV#?73SlNe}GS%xkfGS%kCU+W1la~DbICu?mTlBVMvTAmrESZrdbX!_aVR7p$L z^VY1>#psoVC@Q3^;rE4nuYb<@L+QD~N?}$*vLL@HedU8@mycr+22)*KUaA4@G=o%y zu~CFti2^-C^rj*dhJ117?~D$!QXKdvaiN4Ydrz*;nSNI2W7;~7ow8X!!_;p@j~xlvyvdT`v76~@!BIwK=k zg&}S*0vCAhZlu&~aqKZu6tKfTp=fNanTV6TvM*&ceYx%9cGjx*Aaeec@^r4jN2vqn zb!J7pWC61GE$>Fc2LaVWx~X5Y^7hrV7~SZ!wHnH0&Z9pyN31#+ogZYF@>d-Vx46AZ zoP>QKXhj1d5vt?cX5FOfv>^B;AgFZa_s^5}y%X3&@%q{kh$w*31AQ=V<1sr$4gu;1 zik>8yENuO%j>(yqwcjubqQI_UUrsB$bjdnf$QGOW*eS8 z2zOCwc5b$lm72em5oqV|r6NqXG0zM@1;%jqcvE;JI;p;Dqu2y+ih3#89HvYi%@N~{ z3tTzmHH}LwcapFqzGJ^^91&z%(uK6Tk#{X*$3DyWVD-Le7-_O)IY6?t;!fCNQvZUZ zB7ZhK)D~2B&gO^0f=9P1$#i2&x;cPmlV}km`bTx6M7_hcxy>t%owo!JZCn#Vct!8F zU|*dw@{KO}F@=P(>9~{$-&A9wJ;Z`eMR@IW;$57`AB>yzr-RdQTW{kX51f)1MpO>r zHJw^vzT7C^s=>P!57by2S@ZMP;2XE7nY$c$?MIHaMp{BoZs&uWNgcih)Iy6IFwLkh zCU8kQe{D`txaqTek-f?r`r=8{)y%{%^B|=t^oHpD%ky!)(j=QhVB^`R4d;A)DHi?A zt4T-BmDJogjCIn?_{J(1$trv6XB=^cs9 zj1B%q64w*K0B)ju;Hit&*k~EBW;_m0ahH$?G6RGIDBmpXe3% z>1osI(+-b~2^5)+=u}a^%Dt%3X5`v`@jfocK8rszhUR@xYMDwaWY#EmiD0$!a0c^q zLf${L6R+BQ_p89`$iYwTUi3S(Ng+Jo{^`y& zLN@B7`QePbX>_d@VaGKJhsqCpS;LlSeWagiKwP3v9DU6P+*Xc*Zv#>`WO8ze2mo5H z?C@0vhV$xyeXHI#eg-$n;5}0b}Wzx>c*({kox< zjeJy3A5=e3Er(KY91YI6g=Y|}NV#F8ANDC+}aT%Hwh z)cMpsSYecWpyCiyvCK(~)$r>1%c7}wC_s-TEuC-%Np8wyJI64Gfv9U-r7LnjYdMko zi%Yt>mz1K$^!)tt*oCIU)CBV&0db2%g4XcIpA#?Dh^oFu|`3WL&K3o9<4Kme;*3i+PP!w>ZUdwF6-#<%CSp43${-3I%&sOr|Ao>@-6y7&V%hKn z?N0U}&##->KNwfNd)(BS2vmK;9&LN4@_wnL!STI7OnP;ux&^_OeH*TN9(Ea(q_hxA zqS0yHo;_!UPF-x?fYvxa*v)7EmaOq)7yWqb=iwnmD?Y&nn&Czqor+U;O3LoPOAD&^ z|5*S4?!UJHcg=t@HBC{Xfsvun-oDpDNF2G(Lq8X7+; z$Jt)4O7^~6L9U<}QfVr)lVt~}k0kWuhV=a?$y?Wc?VL&>NFlhbRG00u1usNX`68)O z6#d5iZv11@$k6JO45~_Q**o$<=qsK!Ll&D2X#Z|1c~DKz8>X$mK1o`cN0y1?+sJMk zns)_tLO6)oSlT6eHuCs2Iak2=Q3TXJO*M37v`|-%%YF5yO~~ck{+cx^utdt0QpJXF z-LY@2O=z=ml+qgyEgx7!e$icOx*lkBeyWI?qkFjy(KjDkMo_4ye9i+ueA)T%8Dly; z8_CjPJU^cb2~hp*_o$p^@3_cCkg#FW5B&0fKz%ogd#oB=vNjW^LHRR&Vq35^J+EWC zaJ0QqTZ=)wIWcO;-PGGkd*8>86xBK;beK{?EJLFiaMR;zT?`(MQ6}H<>KN|iL#lYS zWZABFf&_y`z8fLmGz@izkR@!K2z_1s8Mk&kYy0eDVY1(1P#(}d!#>TXw6oK0^%Qyj z74KQf$j+KsTUxG27IhRXWLzTZ&JHlqonMc?;k2C?&{9=295#$QnSYXlzd6rnhL$F8 z^O4C(9q2ArldWp2^IkZrQ<2QZ2A9P3j#mbYFa3TR$ST?>m+%XoR&zE*@oQaYPpskM zOnjbh+)1esWmN3kIaMvv9W@w0(zD&mt6fhX1qnSy>Q9*Y zJg{^|4xMkTguie6brXRcUGMdj0oK&X zecj(&YyUNYXVWc;MoSFHCCuIDh!T0W-51GlU4(Enal6b*(=jcso)P_Q%kjB8LvodbVw zr;oZJ-nkFaA5m1sw^i9KO%G@eaG1iNby?bj?kz()$GNCWAs-?@__`xO2pXN7u z`IUL#(RA#aebMd&c$3Fl_9r5PgT7Autvid!L$=gEMV^y?KRFhWt|v!k80k(p^HI@s zX;KaR`W==WMjnKZXOmF;MyTjT^OytMhT)-PABA5&+G<%+a|U%6Ku4yffVctTW9af- zZUb(`PUZbOOmXmJBq+H1ET0R&ksVlAYl&V@&1XAoSs7|WJTx=qH;vitVqhsw(^Ku7 zrWX^v4l;YmR8M!kidx+*YfWrbYD|c#2?FSZFy9Znb0$<{qj1DX*?PmO8(-iP7XB{T zJ}=aZn3`HsATEdSLWorSFz&-M{X7~t#E^z-vn||DWlU*SH2T;Mt`e4%v=uj5h_l9sTS) zUB?;R?vw)flAN}Uvbg}vM2D*C(x?bL`Ks$-*sK3T)LVwd)dX9kg9Qs7+}+)s;10pv z9R_zN5Zr>hYj6)vaCdii7~JKX_uPA)GxKB5-#4|TC1Q)N7Rn%YM8mYO=Ol{o^AH*|K;ILG9;LF?)9{2bq zQSn{~f`w6D;xfqWCH~~*FO9@G<#5hbd=D=}&F(2Y5L{V(9MI#)GvZx%%sQ{C z2rsfx%AbEAD_xe#e;H#k5HxX5ZM@#Snqyd^aqg@{`~t9DOgv_+s;}Q%C=&EkBWab% zLUJC-Y>?dG;l9%FU4Tgg_)EEM+}y|H!TkG_T+Mj{cgnn6w$aKoI&eJW$`y>dtRX6G z-&GrRG~b!+&=PDxofUDI6e-Rm%2d6qy|~7V+D+YPik-=Av6W{z)%57NnZFzJWT5%f z&eb?`T@O8JlI=*H956j7yG@d(@S)@{zZjIq74NrO1aO@!*t8}7-Bu=-I88f~v2Dy+ zD!4K4!cn$E^={#7tQ0{rpKfU0wgmIUW!Sk6y8!_BWnLEZ;R4YwV4Ag}RcfT&0GSSC=ua{g>0k$w zlA6Z!YL5BuICoyhIh9TC+7ntq#-1-D^nVm=>t%K8Yp?eTRz$^NmqMhmAX>3-hXf0f zOs~&%7VZt{s}7lafo_9ue?x}pC@x3K;ov>=5|moe+!t(49F;7^SE>O(;{Lf)m-(OR zRKAzo=dFJAd7)Kis#SzdtR2X*hId59cv2=Zsd z-)T2$S7a%b*M`AVS;&$X>6%&vb1*-qdcE(#&aK3i){zmF!{8S+L**g9lC^0mdzFU} z2B&ekbgJ>sqzhfrVMKj|+N51|Y(+uzZu-t%Z$qsK6%xzsUKy3x75o^7--W?mi=Mc9 z^7b1kDTo>%`dq6OsX>{=DflGQ-Q|(&D>^sX)Td)R$PR80~t~NIOW5sDpqK8p+>vt zW|*9+d@0|#+g(0(+ijamOC=nhtuG6%PaD$r@Rl3{pX|V}|A_!X64WXoK@LtQi{mvG z8yuvv*e^5}oj>v2>_HWWrvqJ&NpV9spJMg~#;v`gu#ULAGPC8Y#k*$CyE2@ul707( zPMZ&O(NS%cZ7W+Y3BBA!wDuNO*Wv zQZT>Trl-xdQd_la_3L9lrqeeZpM3qlM_Oxyks;+~C1^)ioX0t&xOJQhLwhONd)QP8 zKU%|P+;M8^i&OPPp3C7zwd`0Iu=ieAF^e{sm})(gu}b0O_LFUjIPnY>!9sk1zof1A zjw7HrPl=panW)fnzM&>`WVaXdMc1mzYLcJ`iio>-L-s)TJ8ev9KX`WfuTiilq)V=f z2Z1Ayl5H+j*M;uMOc6mO$QkR+D_G07+q3v)F&xaJZnqv_zH}ZsZ&JVB#>tp8LxeJ! zpS%ZWzfpN(wL1KFq=_usf!tQ0D*d}Z%W3&r_=~e>N2^9&-rHg<@&fV5sy0gtNsr^E zZ=I0ZofQ`Aj#_@Ij=F)l2gfyP#Znxe-vGgFcJz&vDvT&hm6{bpu)~4MM ziYFnsf^`Y`2HcJl=~`(-0OSo87E5ByLq0kK!|#5kx|mshg=fu{UUfudOSK}8cTh8Z|L+4BZvwG@bm6U(@9DW5{ukD*&ye9 zKF520(fPN@o`3@xxc`bmO9C+9Uf75}!1zx46!!lOA@Zhl9w6`y6TT_hwJY>6QE7wXdoxHM>s8$RFuo_DSf4f)AL4uGqvetEQGf_J^(Z$l=ETF|7=)=yjo+0hV_UkcGw8E}7Bl6cr)6seKFdweJ)v8<$9C+x}4 z)9hc9o&a*V-SnTmrKWZ0#n<-!>llMcXX$u75p*ymQ0+*L~2b({E`wR zxy={*rJU>}o+lD~XL>xEFRvFfjr?#U89o^4V{XL2`h7t7s*hh|PG5P!c1PncJ zyJef&E6Ae1#WjP8yCRU1zrna-L;@rLi^q9cvO+6^U;R(cM6MW>vWyi`m&*dfEWs=JmRGM=2^F8NP#mGt5Gbeh)I|L-qh*Ok%fVK)c!@5(jz&bi zKT%6ba+n^qNTabg1*Dy%@>b`Lhv+}^F%Ab-ph56;RLR zR>2}w_+7&xd)C_9nbVt?CJe4Chh>qr<%` zR4gnr{i6$1RJ1g7G<59ji*simpU`igFrSD9)X5w2_ceK62f7bSQ^3gHe`Whl^|$e# zVLUK|5j)@XTZ|G3A$IYnjrx`0F>#93%EYFv$`C53qj#;~`=55b=4Zpfw0Qb4mCX&S z{$pKd9S+SKuZL<2zP|-MNT4ixzhrW)7U0=MBQoNKuk^rRN#;AMhud@|vL$;rqW^rA zTU#kaA^6axhR8^6!HI;nNyn+z$M=F($!a~VdhE6P_x)xQGZ926v@Gpa(v9d2BhK(c z01d4Q^qeZUkY+>mLXo4KQq85u2Nmary>nC^<(qI`)jl?W1cJW@=VYN+66^$`hi5N= zoXo*f&D6Eibyr4z9|=meQi)Qm^t*#ZW}Kd;@cc0J(cVb@6Ue6EyG63b8atZ4ho&%E zj-LiR*;{H>Z&=<>XGgt&okc^@lKFmAjJa$zY(7@|jYUsBc<#np~|OU4A|4A|Q@W ziLRKu^8MJrxayyf5H;q;_>wr1Z25`&>-4|R5)ls0&4ym9C5NRR_13Y7 z=IkL^HKcCl*YD{kFP(!(t+TnNyC-a%PD59x3(ZN;z6(Faa_qgg0mO(K9(bAZ;|kEb!Rz5=EI&XXk>ag<5n(+HD0>_u&tV>!_=cm6fLuMu&=<4|1S zoWdf`rK-dI_yv~kobCwN+;1JyO-bi!g7FlZS#aeJMgsgL=mcg9Js9FQmKFvPf6N~+ z;^Vivfm(|TsWF4+(6`VNzSU6|_H#|~?fna6E5tRhydS};sd`T;Rd>0v$f(~`T%Fdg>pAbHOl=}Gs4Nmk zNTxO>uk%GW*TgACm~GZniMS_k!dHRpnn^cAeKOM?s^%qBi)j9{b`f~U;513(e@vI^ z>LDYn3TtM+v~83-7i5?bU&U;UT|a(9WVf2mo<5=pcwcP+9J_)P=aSl!0<6mU>p}F^ za>vq`O`IP#Uh_}wJ!L&+7fq`?+jLB?VTE>|JMvXsLp~q zZP(3nw-PV`esgAJubh;Cyqh;alZ9Fwv)L{Bg8b2iC~W4OZl3PHym4lnKcw=$tcBfq zl$#75Cq@aV1Sp35B*^|S`d%$*;Qz)@E2#i|aH)yCW);7l(M#AiJfpt^pLFe%7S@ez zkKu9KdAcJ*^d>T}WSi5+FMcKoHrR1rjL=qV7yZPvI2nMlZJKcRwiT7DF&>(7*%nb~ zX<<{)K@j!ecoL;xoLQ`|EwP7zkIBRdV?PRV89NU7t0oH&qITPGcC%*D=}Z3~(IKFO zcCJwkO$Gvhgu^916A{tNv80^w(cg&b=s)tZl5h`Bu*=l`E1H*G(8+ zzAE9ctNb4odIkra9MSLos64E8ipe_WK>BWZot{t%#6KF!KX$F3+U%%9i!;9b9gvip zHrL4AcTl5hF;C!5BuD$I3XMns5CF*OI8RTBffyP9Nno3x zG5()QxI!Qz#*C z2LNDn*VsKw)X-->7`wJnPNrwz`5q7F`|xAr|5{8HkXSoYeYVu*?xN;iU2%z6@+IDc zFSewVu!&=lqTJvjPX}tQm{CO6e?`h-OR~p~Dlj7`NMoO^&PUSNBCBADPuu~xR}@E) z6!zkjEI?JTk@vY7Z4;nHIF0z;|9q%`=(|%+y2HoLcIwNoNMZs6qI9Nfb#$rZD#=K) zW5qg-QF-+sB3-^$1H7p}Mrg3rAfnxs{spByC^!$FctE8Ae52e1|o+6qG{skKYNi^!2UbI_?Lb5$HY4D{|CD$oD)rY;Ai)TnRE>Ae|K-2{L_k9PTwhud zBzaFwn~!JLovsLL&j<{It?i!n@T|oO$9>q`K8V9SZwg=?z0NyNs}{?6-PCMms#=PuO*rK35pktZ`Jl5M-f z5iyP2XQ&JyVR0k*VRq3Y4pB)$_ys`HmG>vAilW$OM8ce$&rYtQf zV9w6OfV(_Q+Sqn6H6trrC`e)>o+!#69{G5?Mlf0RT;X)k|8D#l}@%=sFl+rOPD z_A0pOUBF=T<=7Q&w9QoGo+R!U5`c#}zaCgce04)voTZvyvywPD83^g9j|TYAx`)A| zPvKg9407l3y`q+!)x#DDf>f1xR3@GX!sUiwAVUCz^Um0n3Za8ilRc`k6ADxt8b18o z`j$6{t2Zjnnu^$krm?x){}eYSz~!`g+dOU??d3W?+mX+7^Q3IBC6;wX4Jo3~wD_O> z;sU;l*C&Zbc})eB@;d-xbvjy_I&bmj+?DThBBL=H5BDg5=t2q(dbq2*^A{(4KQ6JP z^n6Ul65b{kV!C8y(`ZY@Z)~(moB>8;u3R){Np8*)J$Q3P`MIQPh{hWV^YA3F{ZRXlMj*x!Tp~|yy$7YBo57@{sSN>2 z%!gUeLgIkCh4SWVT0rLOUT*sSl$cbD0Pic%g%x)(8os@&a>TD0Q&A>4)U0(;bEWGH z_B(1Ee}&sPIZDTAnqSAD-HRy|8E^jHGR;8+oOJR;^FRF(_VOtfs9 z`YfY;V~osD>6?F%QQ9>8FZf+ir}~>Uo4?6w@Uz5$hzWu!xH*?oE8yu@o~&SnB^~7^ z3l#a5b-_BMGB4f*%}!$G;bcgTFb@sbl>SAU!fJ0jw=Ty2U&UsDp8IM9JA5J%`+Lmy z-CdhB5(off9c}X@xHJYoYew_&o?Q$r8;H2hc}Wtu7bnyc0lGO_eZeFBb}ek^c+9P4{JhGxH%^fkY0G?kuSrp*N?tXkF`cA^uJ?H5fazVo`u~477&g$y0**_ArYsfer|K zfC7UNes=a>m2wn?h`l00ub)qAqinH%?hM>5>?A)_RRc8#qHQ4)=;66dUk53rF~=<0 zbJ`|5wk@eYOfxAjq7dVTY~P(vN0HN?eH>0}rG~;~O5Ya9h9TU3k(*Zy$ng@FzQX(> z^P^&rK-ro4M?|DMgT|F>_-$t=ojN1`rEkQ-&-0CV!53hwkMz4Rz*w zy4JqUSCdaa^n0>t#R<45Px&FpA)?v-){ssEbEY*<%E{0)K_2N9waUJ9dNl(hm-_7s=B1wAE$v@*&G6 zp9Zx8bM+V5-=sw2IW5S+M@6_UhKF1U^C##j3m**WsvwX>6)30sqs9yCCV&za9xQb7 zbgOvds*qB*EDXi+KKYaxeew`wv3!np_j|~v)_>EYF@VU~x_gD|;!MZbm5-B=DgM6P zdG+W4%&du+>K05`9+9(z0x;AX;%KiK#e^dSdoPZ0i%+|%)aj~`Rws_G663X0ml?ev ztwC;jO?1pwJ`aW8v*oZnwDf_Ij6jQCh`)F|^AJX-EO73j$ki)S#2x0q%erdbqA{?6 z4L8hsLKgYjR<#;C^P%RAQ>{z~?-=?NHwN1qL|=9(Pj{EQjPGbf{i5>J?H|J@y3+T@ zounrF^L1YN=#|Y!B6QcIQ3mN-OOf7GNfo>vMn^d&`FKt+JfBQ<2sc7d# zJBc7e$WLoY=f9e5cMf=cWN>-BLjtVzxWP5rU}@qyJosFmfg|Cxh=II&C=*n$#xn4T zY}zJP=_CEW@WJx`!3SW+FhC28VL9$6%*Q9-?&%Zi6Y%!(3GoT}3HuCwzCGt?F9>Kx zKTnC3=MGI!A1t(tC%}G!B0hLg1VS*=jNxKo0bu)+#poVcSdXsNB;Ek0m8UdPE?OKw z&;8fKYnQ%tpB0;7dG2)7F2%^AcL#@4Um)sgih);ar>0N_QyWH37f0p2u??MT3xkEp zlGdn)Ma)Z1JKVUxBhKNc!f6?mQ_LM=`A!(MESI07J&-jt%;#Swuk>+7OsHIW>08r; zmXPo&#ZvoNWOfY_Y)Bsz2FP%w^?G-pZXAE?$m4wr!Wt!eM6zVzauemik<^pJN$;Ku zC&}r-G}?D7-);O_gf_F9X%6h6b0J2`K*&#Cqttxh<6t(%mb`pmir|Hq2guP@htD;) z$96Nou5UI+2RD(}@7cIS;LzFO`|*1$cfQG45?hyeC`gD(K*Iw9v60+*nV5uPF8!|#Ry(d%cZYASPUlls#sj~IwRdUdDydI(aCz!k?Xh=X#q0mn8@iwl z=FwKvZSQg^u0Zip?exhC+E7ftzb92SWPIEF6h8bKdiZ|Q4ys9&S;6-2&RVRe*}!QC zpX)YkIl(V5EuoETqfCy?{a|Pi&hl9QC5l=ey@#(7^un`e)cTcjmASAhZrdqdNQ5Zn zhq1F?OXI8rI0vqh33?=H2?cXv&qCk^o+4jJnf4NPGE9viwgH>85=FRT{?$dXduGhH zt0!03fNhnTG>CDMS}2RPEj8sApbgg2U~TJfu!W(;jA*T7Ya5QR0ZHl7T;lac1n-E* z-S%JHJAdbhoP^h8+QWs5^6{imHSE5GQ(Nr=t&yAy9?L7SkB{e6sghDyyI5VKOWX>G zC3hm;bmGYm4?3@N3vE|cJCUZkbKlR;3xa)3Mun!jrUIfR;V`$V;fljFzk@Nx5lHD) zYdm$t`_3)icIt1O>#p%7h-fe&!+TPio_*3g8IMy_C)X>?cmTgZ*`Nh)SeE;Tz1A>f zz_C{~hyGw%JvU;gbY9-Rn9+~QQqX+Hd6M#->v#5Pz=v1zAKXmSjp9kSErXQCK5+PX z#}Hx2+f$SPh&i0F5ZGlhuo=Vi(=ys(L*{G6)wW&c2L8svza=n9IWzwJTsxWDr_?x` z<*+us6`N_aoqvnh_G8qnGOr%pS~6=h_iYj{-6d{P37CvEG_o=ynI7C4Cfw0EI#6Cji=VKulA2PQR_|2XRJ2Z5fw6R)VW~i0#Dm=NGtY1Z9&Rw3 zm?){z?ApFZ(uj-Y5wyc?Blu+ftX!h>imNWG^6;)9g)ooH(+U8*;QbBuHsC;#IM64H z2t?x$qkZ&zgTq!9aQ1Qa_gXN{9$`@Ie3CJ9(FI3LqQDaTlh7zb!*d+juU9+>0^sTM z{Tuqo17rQ$r)Q=9U~1ifp9@p4e2tF;Iod` zvqk{53(j`Sa1?zZORwSNVuKagYj9yiX+ctbN-{tK2rU~vkdhkpFT90S<}_X+P5?BE z2Xy1!8eGDsFAYDE3YKkvy4#S>+S5a zoz_aRYj7*NBRF(jz$&X#o*8lVQJ?w8Gr!0BiIb7@-Fb=y|sbWQt(I&*hd= zAc1!tUJFe!?x4mqD;YUi`@ z=vrG#bYWxM5NSHvCf^;%sMjz$ywzEe>adsqUx7`trX2ZQ_TC8esIx!?2?6Nhr93C7 zhjoiY^x9b^B7WT(5#U)SZAptz1q9;ue9cRTAPB@@G%ApW1f+xj$Rj|tn&8LmiV*z8F|0rZyeO$7~7gn=B3fe8#ii!yz86v2uZ*etMh-yJ| z)^jSBHs^d~o$kO^VrE&mq{Pj`8}hri1@U4sut@g!;n#x7-~{NF82=;cSm}yQhe&L# z8y7}o?k9(lEwuAbh6va6C0onssM|ua!p<>HS+{YAtzF2pOMpKvr8?oP)JT)NYP{x_ zqSOZf;0hn!PZ|hgJK%~J2oDs#Wk-=Ofd*_dsxl(-i;>*(@0bW46jnR9E#|I!sQUTR zHAcx@?&eK@jcAwh2ZerWF^OCzO)=_ieGN@04zmL?SokupF%!Q{vWE%2de+`vbXN?0 zF?c)b#f+K5!_@V9gE#1=m^uxX)O}MUS&WJTYhjI*ulAG`ARbeV%AZhZ6Ne zVVCV++>lkXq3X!H*rpJQX|hPo70?qOl{xcJ*!@;nyLjE=OYJ`BLtNGDgcL!InYlq= z9#S;a>T?{7Hwg-j+Jd>~=lvSvtr>EYy#Ps(LkoitWg%R|mut`QZ)q|P(>wG>r0|GX zY5J{&-2|gCJnvj@k6rGR(#v(<+{pYpgx-36>#^3z$JpBQ+A^0LC$FCpmwE9~rc`2X zrG11U)5Y6!-Wu$OU%v0Z@tyHwxj$MCDr5fV=AWEh4E8+qFx zrp)pS*S)4m)|t@N;bV+`Q_YPd@BL6*s!`*-Lx%};Xyt70$dr4UzoEoT^mjqAKI;Hh z7v7#Z`fEXs|Mi2gwZO?37Mn;ta@AvFb2OEe3sRaI)0HmqVOpos z5EE3n#cv*bR3W$*YBO7x(8b9xL%RV-_euw;?9piyKD?q=N%Rks^OHNO0 z#-}(xZfGfw(EA6t#rSt9zQM(FgO-FH4VqBcl9zyO8*; z!COadQ>Ny9{F`JO*`{7V&1tv$qucZx3?RoIxohfcv>$6Jj|9ZrT(2}vjZk?Z++sy% zAv@7+2R@>W_Z2mL7P;O;Enf`#-%w0|&`J_l%qp?#`$nY=z88#xlZdwX#-_D7mU&72yiHd-h$BkP-@PRgy(W3XR4Z5IXXWh#8{h{{r%-(D^-1# zFp!lxiBtPe?gHC|4VF6v?|S|&Z?-fY77GQCd@e7Dd1xRt2aSSHK??Yn{Dyl3>(+(8 z1b?2z%e)uQpv_YJgdcQ$ZBG1SLHBg(y{0wPsSja{qOU~9k~J2*e5jZ4t6U^OQiEHY z4sJjp($O>g*SsA2Z6)}U8s(*S^!Jf|#01-s)wPgC+J?EK?nur*h;`u=Ny0S|lIKWe za!CHqW*z0d>wLw24z6n_S36PdYO8*X?uD61>{ohF0OO1o$|ur(ozv$aBW6mlErw5R zSH8-+z3s&^5a#fU%A8Vy?iN?-eLn$8VflyMRc%xMUD!AF)V~T;3T;4*TT@_?<6`MA zaeH#A#J(EP;$}o+|L>)gC6w%3!7Mi9^}6BAi+4f-vs|T=G}j}1%mb^|19{pw!=Pcf zPvxofahJVx&E}<(_-~_oNQI443kW%F7=@M^7#RA2NV>KJ%-4)2NiwS89cXk>zs!~} zB9%k7eYyc0cZPrAu{q-G2L^Bd}6fiVuyFJ<4gGjTA-s^96?=UqA?* zBy~vF6U)|s>aE|K2!-C%v)wJf+2N}EqXqPE00B*u+|OoBgBURgKV%UAou@q*njWEK zd;g{w)cdp7sHF_H8s9a@)xQc(P~}97R%T=s6-BRVoH6n-(cY#v2GQavjse(9ZO>p4 zV@}!hOdgKu=iE^y9J+57g2U7t%^U1Cz|y<2xT=$ke`3dUJEw-b?YyYGmp8iMQla%vtG^lX0}si zjq4)$yYuK`^xY1=KM8F_e* zGl~Ff7!@vSr^FPvK|-o;R(c;!&18!6q)U2xFWCIo!RvhfjHk{iS_lQ^$qTR|*xqN4 z4U?Zx@-@}ImdH=f&3H*i(o1Paura`35F?fj|F=IR3j*LrQ{FfZ+P^ z6Y>enmw^04{6qjhAwIu=pK#z`@Sh*JZX{m>r&rnDTK4*eHV3{)wT_TOuwRV>PE~nG zFo3p5nPuQDu#U{NOi;*|TY=I6{Ch}#`kW+xlLw~VYt zxxG;m?z5Zau!dbF-B^Z3y+hN{M4t=eOaU1MfhP*87D9h_pU2}*-OIP`Uon`av@F&t zXzz?VTSk>E&?+{kNN{l_iZlJQUE7nzRXjvf2eW^AovoQxI1HC1C5_Fgdp(CXN_m84 z(~z>7JnBV{uw0jAYW8mBJXQDsfQUglj%IF6Q6hFY%Z;{!`MRo-EBvtg(R#Z5-mzD9 zA+U(**~~`Pv6g=;X53mziRk@Z@eer%{T8;plyeEL2rF_eS*^%`j4(hXdX<)Pr5}U?h}vR71s9)P~Y&=XNaGjOb3Mh ze(dMs%ZZ(~sqd0C*oouUCgwW))03{6oby~&%nnHKpmrbKFM1m;$kR?Hzswg;Z^mw-iz0T082`)5>%ZfQ6aQOz`Y9am8ziG&(;q$Fi z*{=RXF{OP)#eoaK<*|TKo_~cp=UI@TuspW}gsZk;x_j7;Cu2pZ}*YWpEn*v>xz@Yh4g+81!Y5rTs+5iTqxEl1$5N6 zw3pc$a_~lu;wOAC&b_yVDcHrnbXdLUJ~B-X5IMc0S8;9iQQ!f(%Ea9jBE;snS})4> z^FR8Xglz=itKT`G8uejM_W;#K5LB`<5G2O*@-A*uJHKXISQ_m7e5a#RZ)5Fw+q2%i za9UlI8Hc$+u!5!0S3>NhYv*2#C>Ax!L<`NY7mAy77P*rtF&l*!OShUYNecW{W0i!e zBa1H%dAGVn>=eEe{O$6o;uXZ*G;d_>L!$3oX-CYKVxH7Tkb_75qoqH$u?Y4I5e}K% zI4~Ca7r4ZfXTLxD&P1`q66VunVnZEfCu+4Tj*@?u?za=bhL^`9OT8@)^mVUDTZuh2 zH%`1H{|iFzwhW+Wy~Ipal34WPw$4Xdo`FQ|N(<48876Z5pjs)88R>I;U;*thV0|0- zY7`pg-LSju*`w-k9t{N*XvNZ%#pRAAdiXZv-lxVZbBK(udwP{VY4$O?wvaGh+uvZ# zWbrwZA3bZ%?KM~mJ2dew6q|^eXqtHM5iXAFu6llY^P;a*AUT;7)Vct3yOa1D5ycHU zl($DB9M@SVAQtn@{ES6mAuRN5-h!CDEEt`6DMaY@Zsu!F7o^j<v&AetUPRL;>6#~PQP>X6WM@$F{$EXwh|cEaD7 zEf>7~g=Y_BMFt>&eeIw`dN-l<6;&VnE$u>Tm%}n8mT zI8)B+m^>oEo>!c(A!-Yyyu0z#CIKS2Sw{e@5fqKJ7K>h!Rpk7vUlhmBB)QcB&(VRVt7X% z00$IJ29zofk)l8nq)2A;lxhr)pLb2C{s)`B%O#0HzCZDQsC}B^81d< zN@&JS?@b-$FP7m_Ps6B+EyYF+90TEwP$l2Dx9$3I^xssGrl73PgFemBw!OIOVIe1` ztVtdSmDNFNRrjP1trO`6VLiqcgKnlxW*N(HPq{ReUo%5H(ooqgluF+W9^!wVcVMf- za58YOx9D6-sz6i4)Wk?@OPW=%-j*YxC3!sz0%3_F%*=2zi6U=6xw2d>;D2K4&91&a zc;cHh`xQZ2Uf)-vQxpJ<9WxXZV1PUIIrjz82CUyrcI4^5e#v__TCtha5Vl04I-9?b zgV;SxxtbjPNJzTtNl}AK;rQZ>?n~8zH`%O_7U$Nsx_#s;FcXg`GpQ&#z05Bx3KY!u z6BtRer55%GKzd-Do6DyJzNV0_1f--_FyIM2NGxy|n73l@@Pf@0eY0`A*{7;ye2Age z5~>RYyiy1f%Vpq{ixnA>oQ*wc>Mz5xg594#5lehv8$ItaO?Ma6(>>{BA510T#ssq} zFwBfn)=WUQzpf+-a&Gh+My#Dg4 zEH#`r3R>wuW(JMyu3b9GS4G)&>09Y_lR$q4*Deqb{a-{LnD8xNx^b;cQc*qjl`DTCdUXqc89*b6m zLo!ao>-W+F;~l;I$*?YvAy-!h*yArGm0x6AeCRya7Xt7Pht98ejMYKN752R_ySXa; z?ad?OZZ{i?i!lyxhmLj%gs$y$r3KK~S&g_qlr6vbqo-skRDu z)eCZ|7nIl^-B?$`{ZUscd#+C_HOi_r_a^j%S=a2abd|cN&~9VD7bmM!dxvBeF>zql zE{l~_Wo>UBfPDW9U3JO~twv_p%RHM$7@aZSY8*@j7N!w@sJThX*SwaSTU4^u<0;+d zWuq{U@c3^aTpEmumUN+9ET0lps_Rp0KLGsGl6JoRCUl<(_-shfUlS#=_cuMd zMRKo%O(ZlbftX8zbtOR@k`sms-1{<_$u<0T_w)x_?NVI!Vt82pv%P+?6aO&RO?wRn zWi+2g*eILxQGCna%4BixjfWshuNY-%%cp&0?tB}9jk_v+&$1iW1EZ9a{&i!?DeK|L z_Ict0Iajw!HY$IOACt}T??mR}*;hTk?=bNWuHGSs1N^R5o#lYe6ReUtFhpZ7{OvuA?u-I(McY5nK2m-A;({!6@xRQLk3A~jjo7E8rR-SvOaxE)3fI(V_J1)1J^=Ws&ej3+cn69Au z<5Zf-Pnj8cFizAn4+@O#0N?Xg+&A_-`RCIRr8ONH7=T$#=DWSFcS-ypVm30!oeT$L%@8HIKX4IN#Dc0eZFrq_d*Ez)x z^CBbCYig8d-bnHQsc2Rd z&VsuiM{JS(qI9XYu%d=Op%y$D1ywmOA?aEPt$sm}tzrvhsOwcdQx(P*6L0m14YowO zqO?M9C^J%%#z-0-PVe*-YLIDV@7<5rx!&C+pVj7(1eo2yP=F6j3IxXG%#HpnVKar& zIHmwB9hA&E$Prl}A;30|*r4*f)1<5$5Y9ZRSRxCX0S@6MbnxpMbd zu#d)bo-YPM+`(%Ka}%CRY%J=Q*}!41CHOJ#Qx42pPwkR96IIl50J5tfz{I+@9Q&3^*LFe2!_1h z>d6u%wh)c7lhL=#Cp~3;c-Mux!Yy-uEFS!fs$aOWOeIM0UwBnOhR6XI#+cf%qR%%c zquz_~VX=3)RZn2VDBv70$Km`%UQrP&sFBOAkgKzHOy=joIahKU?;MG>TX*ss!36=S z+0HA3$epU2eB$rT;(`TRn07I878uAc5=(l%U5N`HBkrWXu)?#do$nP@0F+=~Zk)`%v<|f@YsplYNS)*2 z2auTF<%sr9rJs8%>gLl@jb(%N$x)5%%8jihvERZYZka;{>p(?oYoeCU$up`Zfy-C; zOj1jTIaB-P@FR~OLoKTP9N!JgB^CIW9eBEQUPIr=WQgMQ$J}=QJz=6$kgX7-L=RrVFy@XpM!aaf=|LpQ_ zCRZwAFhx32bZNdtwx6|vjVMU@hges9TeU;jLCg0oxk?f__xnxa5Q?s(WfGbCpUV2P zZ>*6pXPxA&E1;~s>C$>EImMT_q)A%JQ%6;{Ry%5bu1W^obVj%DykGpjnuLY-nJDaD zML$U37tap!)!=QEUF}L_HytamHTU8(_6%TmYlmo?~_WphW6kXg`O;f&yEJtAb2$9rU1%(4o8j5J3vCNVuyDo>dk0;>!X%^ z`{ya|0;m&HVWIT)Cz9rV~>CM);o(=N-J2CECI>0^D($%ZcagB`EiDd^5r6 zK@l5&W!jZFMNhlZ4{PMCcY%g0HpGI<-B%l6e8Ha#{`f(Cvs->&T-1?ie~nP z&tK}Og3=qOv%Z}{cqcJxwzZBa$?c4@mIzo7O*=2}q#Bx4C8XLuPnJgOkCXd=d_|*= zH*33?8cFjl9*FFqKCg9C3K&#sl03uel@-1G<_)SH$T~J^s%CQk$8!=wMEn0R1$gj= zQ|41dl^FK(>+^pQ!qX=-7)|)f#0>t@Gjec%*)^xPC+9fkVuw^<@YOTqLAgxZO=;&= zVbB_u49rs6fkEa0up^Zz(SuK(ELh1(0H`jaYvqixe&c`cXD_ZyB!T-Hx{7!g79=-& zy*yltN>CAQ_3W0y?I*gaE#~=4KBgb*2~GlTJv13Bri&pqq^?NTV}5>YI%|7@AAUkB z0=OOKn6`=N)jNuyhQ`h_nG)`%fs-0?t&(_)Mh>B%)yhje71m(qj^^D0;40Vs`1f#M zgtL`F#wyIKEU&GkH44)7lVWP6Iv7Lj6)k6&=|?x}x1FwqWMMNHaQHa4z(*dgA#t{j zJa6syqFbZiwJIH2mpNuR?j!V?ZU)gFMVLd=9&=l41!)FRc^j;vL6l}t5P%%3qSGWJ zt@o3rgCJ(C_-h zNeO3|l()vRCVQ)w4CZ2aYi+@?9gFdTtG#XfD!Ncx*QZhA_(Yk+|XP=rV* zclOYpD%toa?%)mrV7jDSXn_rx0>HB4>6q<06~g(+B}Kkd6aykibN4uWv3aRB&uql= z9u4((;NBQgTj&QhUFy_J8qt*@+}yo&^uAcs>#T8EKZ3EB@arj)8-3wY&%!Qvd~$jP z^bm_o2dt9axr+nYrhA1FVjh;+`e+_|DhT=rYP55Omi`--i%$4^mp#YWTv!vIQ zAHhy9`L64FPJf);=l-2Y`PS9iv1JD&jP;AkDmB1b~{8#TzibG6FU=i@rz6hmG7EQLTR2 z-?22ia{>m9LImPcfya#Bs!g~-5Zipf(uUS3+tR^DW>Z$=F84R1PtCGKAiqY~L&J67 zh?Vxu!=+iL`AY5sk-LjM1&XV3Yhy#c?gmayO_`WfHv5-fYu_~D&vDl};y>ib&^XQc@fidySjlwz5J4|3}nUMzz&--JakM#a#-8 z;_hBriaWHpySrOyad)>CDDJMs-QC^YAwX`PG440s{L0VloPG9QYpy87~v@Km=hp8mZBm@`&U8b&vpyI?oo-|9L*bIV+N3P*M$PG5sb?okey`O^3H(D6cs8gq zl@0b&0MBG~zok&CIi5Mmf(kM5P%XE81mA8%MH2T*jq4{Sews zezfvf*jtpbEzD%$-e{>Ge5;?{ku;wI^L$X81gftpIeHXc2G((`8nML}`K_GZ2LmrR zb3bDS=0$BHvz~<6j)AYfXK^ZqBTW|jBuVs19 zleh%P`x~(FXud&PPRN2aznp$IPI}qv#-?@c{RRrXpwGB+m8X-O7z>Y=z5UN*+k%>q zS{?q{cSmX;kSow9ZE<%tDfQa>|Jo@hgzSi^P+oC4&T(R?QNx8=_=Phn=O7B{Z+^V} zS>1cXc#=TTEG*v=d1Q052=-Lx=<#Ea6smEKYttaN0LbZ+bfQNjODY%TmXOcbuK%+W zfdv*p7&w3cfXGJ12LNe908n>AQ%?CINaB5lr^WeE*NY9WRr``rJ7d@ZMeS@3bGJj* zZ%p@;D=u61Cu_}{H=Br7`n@p@u6XDS+5!_|Gc-S5az{^9@uC*m3^6i0v4$ZIQ>KpC zTSV1=eQB-Hh^RAkvv;1z8Cw<_6uz1NZH0wdD3(_rsomm3F+6{$UAX*j3-kGwGGm#S z5N*XtFXVR#dE19{&v;hXS81J*%4#*#YUSW3-6BVwrK1cWtqGjOU>3jco^3LxZr%!u zE%V0Ux5&$Sp=u(hB9L^k9(ruwX*=N*bScV}G)@D!(aR5h*%K3e+rS-%IU|Q^HpRO5 zt;D+HfX!UkTt0Ll71Wfb0VVB`&RQ~0#kDA`)-ySq_9xmR^D?n`U8$dKZRyOIo>q0r zJNJ~YJp0KyUfZhK?}(C^4;?dOAn7SCdmRZ#wOW$Egs9F7)LINZZG~W(T3et=>^be{ zr?-o`hYLH8r#>F#{ zND$c(RCDc|&mVe75)w63H1NiP!z4tTbq5*UZShaL4k$=+5fbo5M%wKtTd0x z#%aCTO&NnbkvZ(Ab!sRRXe=M@9^!t7Btls&Jh&%Y?(RsVj*w{NS(qyFSldT+FNi#; z#sz0i+?#w(ynfQQ@!iO6(dPM-n@LDi0SL0^KY+HOdU>FloHv`TyN5U54}gdiCH6G2 zd}xy`dt_tg=n3fz3RbB~rBR&fJfcyXFS3i7C%l>CTjcXN$|fv^K632Xg-VjgF=?|> zNwtyUfa9B3`~$7bCr(X1YAT{xWGA?tz+iF z;muwXwtF1tQRAD*=heCGB+DA&=F(478Eq;Tq!_28=_WFoUV5R0r^QbgaVS@(5eB13xOd31oj-Q9SWQajEs zXZC6OXVhHcgjK9E`RxvIvR-@DpPl54cs~6j@SIFti zz%f#M_0Q02x|glNN00b(_0mUc%TcXxnz1u3txvZ8?CUK^opiVMdMMmX%q5ygAlY4_ zn)H2dzVs+VTyy7YfZ*Br!PeHx@3#lvtM-EXqr7eL97-r|apVbCqb2bjpNRi*rwKx? zSk<<1O;_FpUy|9(&j~4UuCI$uw3)@6Q*Lb&5Jrb- ztN)xqJ~a?v2(tHQ9J}=)ryGHN^O!TN$(*ofbS0$YpkkJQT6t92yhAC31yaL_y0E{0 z+dtAEI;+?>mM4)5li?9&&cyDXm8J)ukwpKkFgPup65sYme87kQ5w z^vcDH51;I5rK6}jz5j+=S$$f)ox@qP`aJUnL9J}FBM@pU-uGHKzxhbEX8M6eg4Hp` zxnsPb%65CO(e!hDHGa>CX_-z&Y6^ZCnr5l7MGlQV+M>Gc$a1`Ag zo<<55qj1HvV{Z62Z`EGAjS1afCro&fUtqcmVA6dG9!qC&Liv)?VtsTua?K+xGc)2Y zb(lJ>Ht${jc57K5GiN<6$70{(L)mcD5%Nm}%Q(P7lqe#OF)_&Q&Jt69__s2H{*S+E zY)VQcRLlAA$!#=2fF5E*#kmuUxTG!qI;g`U>I>hI4N^fg`#eXM7Jj!V02IPwvz<*k z1R%qc1$ZD^E(si1W*%%zTa+$T{Sbrl?ys+3{81;v1JZf!A70e;EUH|DIUN;?NPJ#Q z61)Ve;(J})e#BiaG9}!)y_SlMZ%m+{HjA#N6-^CLL{N;6*6O=Qd_g~ol5|vZgDf0oubjGXPUT?>n;5_;?6E6Q~diQdFQcvM?fI9HrWFuwk zB2Gh8pP$oa{ULT+SDaE`DUGZo0J)9Ozdm!XRacS`s1WliC@Mx<=O$@`BG>8n-u}YA zxT{5!HV!Ui#2H5%--_v(-3fAuKjdcm(^s zb?cvLgb!vh1q9#wC#ay2h2-f(S%CI*PVTtffpNcw?oPGln=C0d)h>4%5vI2GfnrY<{J+BYHC*>{%b@1WgqwGssg2hH~pP&K~MNoic zQII9EY!_t+|IE1VXQN+ABd~zj>A(g9r9oO20cl)PeooLx8ph9ue(I&(D?286Tizo? z8g44V8^3+2G3~iHanpX2^*ZpJ=7yi~TE`!2aj?U@xM?d|-_B?Ba*{~J{^~lN!Yf4{ zyYiR3xbV&^_8DIFc3TC3Mk(}S)F;onr7tk0iL7MdrT9!!QF2~p>~3F+T+X6m#@Dk9 z2JTEE(EZE|EN$gh)2?he$KV*w(_U*at>rMRVUEA_BLG>BaODL2yOhVzDDWz^9*%IT zm#3Mw?^`ARKhHrd>wlO8)F>N}kx>^Syu5>;+}=Y;4oFZ);y;=L^3(b8(fW_${1XHHrsU%NT)8e#Rx>DY-v4?AH!d@-aO{AkiG+2@-vju#P!D z->aaN4yIlp7g;&@?8PS~ET~6tpIl{nH5Z?`;JVhEok79Mb-srw!`ZjSNV0I&5S12_ zgVCAHbx?9k`%irQmQw8=iC#g`-rF(eDtQi8f!$EY2h%>JSbp9<%^b{=B*bm;0F!@J zhoZ`uV|mE}JWLP0gDi5W_OGDQMM%nR=+w={qhh0&OrN;WIC_~d+`iNc0UndXCwE=% z`A!Rc_iir0GOM07BSD|RSfBetXMTN?f*L_<-hqy1PBpa-&mWL<|Ck~{pl+UmU8Q9~ zum(R=5tTetkqy$7FYc1|4B%yrK!AnnL*`GOcioO_2+}{m5^k_5%>j-yb;^U5kdNXey-1KhH4$-ziZ6%zs<$}!lO?$jd~Hpxe({_;WHNPGwnB1K7Zh( z`kk7}LLBaj^#s1n|9z7U7=#0K0$SKm{h92@gG+dPP&bjnhhVRAcz{j3g9<@+yC(){ zPOLZTyy@ZoE(P<(+n1$$ePgdu(aMu7M_Ibgfd*anV>?miLuM&U?ifir6PE1+6!XU6?XU0M^}V5Mi684J<#&=aCM+RJ(WejQ z(;^qLrE}DOeR^%YR${?lVdK1e;flhK1Ofs~1>8;vB`91-=!*Z!qD;~eXDLvF^gPh< zju4)1rL&CTQ!^}PIZ&X_9(NNsb%9Dk5py|hO~-V4FpwEfM2^pWMWVm8_e?Q^5>=r6 zreX}5O(|JTwFri?w8vLm?bl@ED!E}f3a*9IJ5PZW(Y%EpWO3o)y8}0rR^pc zR7@OwmkStihHiX?<|<3f=L&1>h2A$i$2|>|>m6MFrGMDxDLCE)ee*Mr7q%@L;$fW) zc^l9s@P4_?nDxWVpow&m40vxbh)J2sT?;cu1Nzbku5tiwdv%>R6?~hvH zS`hLQID%VxUHv+^`DXl54|XaHg{DBCC#~^T7GD11Z4t}~R+Ao{O;A!mL*W{`E)_4r z1YnGriqxj)r7KS%xJkapusL3uGoJ&=MPJPW5h4O+Mc@n@Zlm0f!e8{1}@)> zu)ftS2a;+(RNuz`4FRG_?`X!bCJR{Wa*v$Aj*hztBtSoz*$- z`4ycdY3p(_qS+%`^u_@de5^E_bVii-E7X|^*tgEGtPK3~{nfQ`^i85t)w*v)!pzGx#_GbXa0}}w0%;20dQ!RrTtK*r8pfYnCck3UDfxgbKRsk%G^J0~X zjiCqo@`%@myZ&Gwmdkl83u8NrVTS4)IvfS}UQWdMp=23#c;r*7zfT1Ma@BK3#E5;X zx3l8?|9+`+Jn%nFp50K-U|w7AP-ebm)V5{b-7c9L91mY~t~;gQ7MO7|w*H!rcj2K( z|0vV-!0ZYdyiWVJ&b;_O%US<7Df4OPZ*`32p6%=`t*?YbC9(x86Qw^`^+;x17O65K z`iqR9e<7vyn<`+Ct5BLfN_l2|WUV~;5w}O`^~E}gEDJLdi{pkH$fln|VJvUUYlXyA zsTz~jqs2pAq11&Os$k(yaefk&EYl`~POJFn6X4rI2P=?F0pM1V=T>#|sPpK8DLuW_ zdj0gpCILs-_bIoM(f+t}D{-MVx9(`E*^={Jf~vA2ztgTX5j!_i`WR_qN|Gn%$oYx? zXbtfM>lzwUxx@3pb!tl4?MnlVXF+p=ul4<-s2jI~dpxx@{W68pJLMe5A!1!AtrJ=9 z`cU@`xxXb1%7?4(WhS?|@4HV=+zOlI|2^u7aU}LG%sik$-8{QH4K>DgP!0xU`D-Vm zg97HTxAvi3KU5#yka?NQH5&7M3{Lu%N+#kd*<_tzf&1woOaLD6lj{4@@{dL0z+amZ zU3&KZ5fM0C!Cnl8%?)Vpas&*F(5rUvjgbL-WxHDkH6&RCKEzUar;~4?sNE3XbnkiHIp-twqAbpluGEm{GBbT z=_*w?V?8~exKrT1sk)Wshi5B~8F@Avy|Z-xQ6`;l!3I&x10CLVq@zU5`Pi=}=id|W z%rvcv(SO_BcTL$sw8wDRokDhs&pUWe?#h3!Opmez7XM79D5?8813@x;_l5Nf!aO_K z?==$S$DkPKUtjMUS_kr#kVrb${CP{vaW!U>n)e{y>6Ux&Fty_>SWn zUR%8JgP*lJ%d8dVwovH@m-I`jm(umMe^YmDUzHJdeJLU?wo6z1lYn&2im2jMTlx>q zG!xEWK0*vRSVI10m(+@K*I!sL$JC_0+0AXuC;Lop^H7*#gki!iM<#P-$a(p5eSp3Q z_VkvPEuxA82IZ96hEAljE2CV}>{YrJ2 zQ%QwSshD|e@aN_5P5^L-f->EbfI^~z zpGs6U(26JVyonn}r%tDd?IWY>)&RKN49vw&@Q~s6m#=z>TgAUw;OyXiLiTBddze0^ zo{ww??X-Rdu@7IyO7hSbuVjN!Tdw7G&d)5|B8GV^8vHqP0g%&38ce&e{UJg{QeyCAtAz8LzFdUnrI>&$9;uqZEQJmgJ`Em(tVkJ?+?9d zxbx1_qUXfq4u2X>+1)5Hf-Wq{H*?}-k#y)I@6y2#qJX(3NPC}!^lPMf0-(-9*ZvAO zgabt}`lwVBEcNA?&*PF-rl8VRF<3V!cf~{=k+DloyFoL}<{$KRsnlt3lGr>^oDUkh zeV$DCH{(fX%u{V|Q#p3TJb(NzWomKGuBlwH=HULml?kK+UQOUI({aj<-Lg_A?Ag8P zTko^zzin`D2wGT@@XmS5y3<-daSx5^bQ=7(OFK2$?TiCQq|&X;wyx1p*0CXr4SBNk zV-rSjqRwkHZc`aLaLEUuF^zMH*OwQ+g@fjXPJ8prMRD=JmqmE>2T z97)p#ZGZ?s_?NO#4oUSX zc;MWB962sZHJ;OpXlRySpWONSHK>M%@BZP>CANC`t3_uJgs=gcP zmt#PK9%&Xq%u7GSIv(uZGfzJhz2;v{TCV8K(kjxX6`$lV1`4>|z{n2GcI_H}+ICY+ zO^8uxR7In|m>X-* zSuHpB=}3giCpnGzz@^Eov_^eG;NAZT$psb2ju*C*i|Jc`1 z`Ke5+ZX&Gt47#Da9B|zdqOAe3jBrcZr5f{$rO)Cpz-96Ax&n19xP5PC)l6ifZ>E8K z0l8jtY>7?77UF3{q(Vngvqs7|qo&L&QEp(nKYE122+ljZD4@ZiZ+3V#2G{d~Px|i` zLVk+8B?_+Xn3!-AH1VlTuc&x6?QtUIuRY)x<%y2>>sHg2-#mGv>H7Oc$HTOLaO=~L zxp<#sY_8<|Bq>YA=7cFjrT<$*F5#%7xW_Kx02gbq`?LzwJo!3{JAgE#VTFB54_=yq z1q>p6@6Mz3kVT&A^+FReF4Eez3s$)O=Jq&N$Zx*lbr-UN{tw~U`X9o93f&r_%=+c; zUat3UZm#douI|8Z&$rh{yV>-3A2E0bIEx*rQR{@E1EojMM^b3n4`py}oqT(0V6W3O{tW%nh%|v6mB^sxZXG4uuACe3noMv^_J7yk=7 zYBr%5ZZ)01NvOxTNX20}OI%MmneQFhNb5fk72NF}TH9DU@#nzAB%UStR~7V+fk1D) zp<7&j9p=+=NB?w{#=tOgcW|aG$w2WAVmGJiFm=G2u>JLK`UOmcDL&x=`9bEaIJk99 zUPMqkTTW!e)%(S$2LB*+Tn+TGWa2tCMZwLTdg6eAe|%3x9DnbG-SMLl(9|&1Aqx=) z=7z#YzMOwj;r*nON_67L^f_H1_OA9sB>iC|p&R@DPkL~5Yw!DmljdY+cMAmVuPA|Ml!uP<*NyU9K^CGs z0E-O^6_Wooyo>*tB^Va9${jf%n1AC2o=_LDTC`+c*9b|X(~<+Zlv_xjSKE$M4+-*YPU zo?34l9Q^3l zH&Y2dF~S&=ZB5Q|7u7x~*djnL_pVR(=%!xtdc7Zh3bq>S#S=sfK7zMviBqO1?@+SW%W zKvq?cJ}~{zKEK@BUs|$r>j5DG4juu)MjV)@Co9w6S--k50x&8nKmZ+2r9FHY-uctp z_M+q0m3#Aia7uUo5~5;Bb)1{&fm(jng{+0pyU5bYPfe<)dk#}4u$#ZD`SU^9h^4u{un{k#J}I=_ zPzi6I$M#CJ{pPNaGaxBz;)@*x15!p%rRF)aeOSaiON0OBq6O66A}$JB& z4gb*jHF;&LB$)Z6tc<+?gLR_=jggL9TVtbEDQp(?Qn0>MPkV0vo znVfW}POyK!ZZV>!P_x;j$G}z&qM393KpXUMC90XW$rL#j;-go?vFy`h_S4k5UJB!q65E>e-FCUHRVaRkb?OBb z36My}qa2KGW?r91sQDE-4Lp9T_yAfi#d=`oxr*l7b#kJ(*fK6av%2!{EZ9M{gPl$A z9^H0VH(D@j+`|sN*L=^?x4x3N^+E0*JumtgkE} zd%7v(DxN65`A83J9zuuyvZuNYwU$fCPbb+E6)VLc5&NMYqbcSTnw{w|IBciqf!o&-t!sb}}a<|l$CwXLO}<#U2DMKhX*auUQJCSr(@|ILAV_N^Qmss0+WC#m`q(CqYc zx}RL`Ss&CN|4^z472(zr;VbrktE#*znq2hznYqHgRaa#u5#PUtSo>1fszyQz|GMLN z$|NOVaJ{6}fzF&$?rS}6WAnu;Z;JvdsRVxd38cb!7;fT!M7OFRqdld`OQd_~r26d* zO)ves%O~<4GQsX8pWzhVwD*O)g5&(bQzsr(&dh)VHkG!t*7>f6blwyT>xmu+-Ih6Y zzuaz+t`@az|FklOzATKSx+MMhs8n%QDKU7V4y&?3v9Uo!!~48zTbjKquk8|0Cvv)w z^X97zox7<{MB8O>ZvGR;;+77yNtoKBZLd_7M}pw<_jkHJR1b)rrwx1$e3yWW?BpAl zTj<%v>HGI|-_3i*)h@p%oha>doZb@e^=7P+%VG;fkH?5`on`Il`}{JDvIcdmX0QA8 zZ?CP4kCSD6&^42-XSR=ZbIaJCpoERdK4_*N%CDY{4>g!!0VsO(UuYPkUk>PRwJ@#& zlgT{!*1au+!#D)fRxAHw%I^mfiIJxd6`FK8gEdv2AG&O`a5%OCP%kgS`Mu^rT&Z|SN0{-{Yw?^(SI`9cW{7;{#UvQsoDt1Oai9Br4|Ns z?QqPge=V|T-*n0h8A_Pl^$)LUVgKkzlqLay2=WI!<&)C`M>F?_{m>!@=2|F0;4*d; z$_wWVpck2N80&McXAF|hfB{;T@Hs3z9JnDO6K5==4dj9(3h2_KHk^K1qgz?>_9O{= zQ*{0Vp2p9El4hMIx~3sh!|t>DMp8~(*xavWYo3?)Z5M^UHIcQf%hCQE3|j;VZk>oW zqS-CasIsx_5Qc%#^uo5PoQy3^$5(Lc==PrH@up-$?&Na|t#Zc%$fkVPYnU!Tivi^Y zQ~K8&qbJVz3Uiy~>${)3M65$CHLCi%Us)}B0a}$b*qFSVne|}k%7Jprz~-i;Ms0P^ zJY=ldMHw`P$anS*@+s|_GymWKKYl!hd3IneyYFD~@C8qu@M9l@7C+9+@k1NM>)*<%hR<7&yVSiIt;$>Idqs)XafG zxnMiPiLd#foP|z|A7m)z?%^rA`395AJL775k7C}j>U2fFUa+95gQCq1 zjG~X^qe^KdV&)n;&%aE&;p62}zaoaQqUaTkHsMnvJ^sAAcP^^$>*hmC;=aeFV&m*0 zw6OoXY+v=4b)V=s)M^o+G?+g0?_L(h6?(K?{bxPU{Y_EDi3#G|f&i>r-bqFB36p=V zJV!1klZ4I`+`fhZq;g%oXcm&HFnmBmLo?|a0q2+~Vz1>C${Fg=6zQr)Z>7(ly4+Ffw^1 zH4zjzbM;QHS)BF2Z0>wMp_ryQL=Sxyts&E&pm-OVboBkJ)$g?YH(NwV>vYQL$Q)}&Grp*x3P2r%mb$h}hU zHsM&c6X^mQr1%3GnI}l>Ip$dv+Y1r1J?G>w__g(mxgVyWHpfgrKsVa<5*0gMAE>L1 z4RKQn1u(FWW|NFP^{;+5IP2jeX}0F2_qGfEnbw@9Bh2PaDk^6)s(x+*xtdXP+ML@Z ztreCB%^mSDnJGl>21NGs_xBR+JZ0_HHrTAs2ZXr&x9qg8}~3*eL0lUn2mcmEA>pMUHc+y?gR-N2m3*Q zQyE_YC6cc#oX?SdxpW$qE7i19d!N?ma;QTxiLph-33R7HvHJp+R3!Bqj0UY1eCF z_y8ZnJllw{+BmOMULL?VcRQyL0OF^~ zjqB#Qer9;@v@uAaWp+gX10c%Ha4`l5^{>dB&n)Kl*8NC=5@f8|TpSDrT6u~*XL>*v ztm)~sa@$MiZ^bN*Q_`gU4%7Gg9kMS1PUd3iMVN%5taSTmiz~jokpwI`uPKkQykiov zze(0*T?Uu-c}s+M8?wo_Do-9Lw)YA}zsEnlH#LHABHpw1?PLjzA51H%?F@YT?lbfy zZ)1berC>`FKR$}de_GA=p1u!`y7$2NqK|<7Nk_)6#BGLW@m`E`rf#WeBw0dZrV4=6gS(-g?~z;9QLE7_vCTF=!-jPB>Z{GGo2k|GoO z$mo;6!hbl^XH{niKZDQtG1;kuam3v1(thx@Rfu_=E9%%o3sdcKWCAQ%T3%1H1F$p|Z_T&FyV-f$}OS0DEe@pZi!XE|f#^gNy!DLJI3cuXlA8x(JJ%`HrB z`k0a&UrDaB7?b|K;mnxm;5Xw}y^>VIz4py9 zkYxE1Hd|r-j-5&HwU~fks*a6wY%?yePOBfRF0QnWC(Sj)*5K zatasD?}>)rH}b_iPM`zv3o|X0BBh3`2$OLe7>2p7>jy~5srt7W)rktC!~KCaAr}62 zQGIC3$&S7z-FfXYt}iz6UCZ^K?I`W&UOg4Oz};>(ymZMOjj4<$G|#n~AE32N-q(aX zO1{JaFWF_#(pH(BupsJ{ZdIC10 z_S*SlWzo5f_VKhR>IzYsl+DUu?O&4jj2H#KU|dlwszuXeE$EAHBPrI?huqr}&t}D_ zOHZ6ug2HK#|6xdwU*No^v0L08$kHvei)NARZ6dk1S&_WeVmK!MGW<(oj8+PT5d1Vh zcqDMQ=Dn`d<&u&6{|74yiRHtPHg}_8l0a?1$b5)&=3|PDq1p=|r(YgjTHmZUAA~7K z{Acm+-$x-w?BuJ{3$qp7{hxd3IQC;+ZL_pJ)Zp?lh57i`sgSYRFZI}QUQRN{o2ES< z1wWZoQH7z7Nw?Kvu0HWUroCoeyllAZiN14MT|{Yo$AeCL@YnplF9QbfIDLD zN#8&K!y=pk1|GdkohPYmkw2Ev zzU|GOH6={42lhCYOmwkku}eL^aPC+((n?KW?VQe}RbY7~rZan=c%*&!V_}lZbV753 z1S>LY|Lrm`yZNeDwGi{vUFRv=SsFb%)54dFmjFHJYnf484@IusgMEg>R+VD|@=*rO zlEOKnfq((?K&S#Yzs90}4J2a#35ZC4Ngf|0ubc3#n;E143?#$gNeMw!oG`CyqJR<& z&IefF^0$^4wEYpI47ra4M}(s*H*n--7npmB9@6wVL|qh8mj))BXJEU9NJPV-m%cf2zfVf83Dv3hA z&az0sNFaXtwyhcMQc0buHr77rSnD{JcM(TQXKW9zy1ex2y0=z&%;FtQQa7;jen^PrxiHusgYZ#eue z$-??>g_;z#{XH@xAxsp9CfNKoQ^ntV(pSxG^wCSWl|)7K@V!;uyjrkon~-VlS-_E6cI%~B&hF0 zC^25uUb`fGY_KsW(Zj{F^!cSU-(02nsE)a}mnwQ!p_CU@^+wUdDkED;&_{%yONVYD zfemA9uD-2J&6yMgVEGjfQzjjs)LA z+?@KYwS<7_!be0D5$2WoIcgdyX7;l>axi$e z>xKH1j3M=DbgjOR)Nz^N7tH^cPm>xzPRu6Cw$r|m*+D7Pb7yv5^X+iDj*|E|)j8{2X3L+X0m zO@$<7__qu4B?yRwsub~A7yPqLEq{#mb?40!%qMI4=1kIf#{%RAPX0@9k~6<6PmdPW ze01``MkZR>M*2DZdyaxK{H5LPF;lr4$Cwh7O}N)nM!tU_opCc4NJhT0i5uo)X0M0AmUr|h$_iL#v%fHhILKM~(mFBE)HB$31;<+8s z_A`mr=1^rgpXYn!H*95ck31bS38Lt~{d?bERb41;YTUM#(dljYHG}iU+TQbq+Z8pN;qH3h&64g5@Z9DTnj*N z(s;3g$&WjlTm&V|IMC$9E>NR8`X~~c{2gpnP3Hq@GH1&i2<{WK3GHj_8Qi|y0q;-B zEoGC;lv4Q0_@9#9nXLcvab}M+op&(y!R067I^LlnOpkRvO0=lI6Br*(h)NOE8XvIz z)>$L#_he&#kd)9PDr)f3`32f?nmv2zYa}b|ZyfL*x0pw&+m?!3r~Dv+0<8p&$~~MT zKQx^ewy{M&C==y4L?#aCI2VYm;Dur9qOAH62@sXoPeRqYAVL#li>}J?Pbknc9geLn`YPwnq25%&J5=cT zq*CYj-?kI&e;y2b%Bd|X8v-GiWh-yk0Rd1dpBq;vpC&S8*Ra@oinQHo`b79C`j#ODASYbJBIRvffZxv29@>Lzpv4$MI`j5jmb z216f7lj?~CLNYW6Bm7Xf^^w*j5S~8wLH* z=DG(_ZL<9%@QXexe40Aq-)z0NF1F3xWr6iY8mZQnw}a&Jxi8`)Om8rNP4cPZIfe_8 z11`V@`=TbA&2ILsvH{)Su@Mm~78?)~RI6Fa;<40U+ru)lBq?4H(UHHJ(DiD~%6_5j zhNo_f<6l}-v}eSqi??L>DL8Ypq~4bnWop|yG&$x_>k@I*P=GOx@gaxA(aSx9JaguI z|4@XNw&_e}FeZ=H(ZKmwd%BOoj=vS#4m7Lj)#!Z7oae@pCxro^yFc@73M+mSB^~ZH zbg#E{_fBCAFIuLp7eZ1=zv>k#c-w_ej;h(sv$A<5$9Y30SitxYcJG1B(uKbvwmYps ztzq?Zd^wgwj3V4?%1|>|trw*Z$YEp{B8pJ)q>N}BZY|BkXGQ0cGip4akDHqW1LeN& z+E!g{GMKiU^WIa_{+gP$+V^zH*JS3t@^-jZs)HH>Gej{Z7E`VdtzZlFd5}@gjf}&COK-keKQJkO*|>UUube+9Ly9LExZao)9z${59kq1Q&u1 z!H3{Mzo9`8-k`Q^e~{>QFwYC~${*P_*gsv+ekFuK6xf_W%gt&d;-MPG`lkpIixl>& zOJfTj7_$ykZZ{N}!qD?{Xt(3{V|KkBuNjf)70_PZFBtl46w|zxcs*S{qMd%uKIFHp z%$c%xYvt3@xKh;NyrNf&;lcax8d16YloIrfvwC8eUx+UsHfhg2-FJ$Fx{2+m{fYQ! z2koev@L;ORLqq0@9?dhIKzmzag4`wDsvPtBH=0V^`FV_ng&HfK-IR4^!Hbh5#e=*4 zB?R074**r1TZ{@$RK@5zE$EfTO`_Nw{(tNhk5#@J!W(QJpHQ5Tt$IWKnBaKc8Nbnv zSD0GrTAg7*;bn)1%`Q;1r2r6M8T@6f?4$vgl7kJP9Dc{NxYbDnQCQn}?lxi)3A0&j zau)H}S+Z@p3%T9@;G6pX{HXXvI(JQN&a?1~k!c9TCHN%KU@Vl8tRY(UDWRzN&3mLk z9AcBj{lwo6*}nEb!2rZ&*JwVELB}A=$ow3EpK2dncwU$GtvXx~f*0VgkN$o{iisUN z`0Daa(YhWaqJrxktG*3UiBNfvsChR-xTvBJA2v?;q=l!c(N<|UiT!cHh=p7;zkX95 zKMU@30{xTYX<;|(YS9Hpic7ulk1W(`t&4Ae2j}Cc;lR@G4G3J)F@QIuU!=t^Zoq%?kcG8eJR zfGE6qWrOcd*G$@KpWFtEpffLn&5=w0^yXD>dgG%nraOL36u%!Y1cZuo^iZEo96t^S zhmn10^0gsp|8zZn80@wjN^qq)NOG0EJ#ai7_NO%Xiv&qyqH_IoJcjUySY)c>`}rOC z+T=);YZ3Af;;=DBd8^+=KBXi$Qc;_Q0^&$yvX26|;n$>qhy^^nkh^oNRvW#Vt>AyO z)h-l_GQchKQvh;d8UpTD^M5o5ks2ur=mAhmDqsSV#x!#Nq8Vh%RLR}=Le?+hTQjD# zG003poU<$6Ce(i8(m!xDI3jzLP(?+s{NQfa#o>G=sJ?SkOL1~qBj{gmHk}Y7=VWLe zN}T54waVf4kZ*R1*I9f zySqe6x|@*(>F(|ZX@-tLx@%yVdw$=&cYUxH^9O6eI_K>3?sq@$6Z9%q-8&nVNQp<} zoWi7<$IF;-On^zw7~DugffyJ?9(rQqtI2BIM$q|D6syjZaLznA z$xUq%N>tiempo=rHwb^}DmO2*7yKoA@Ul>@QHM2gweRjzX7cVo+MK;xAz4Wj(3(Xs zl^uU}1T36jd2<6F6!0}*qCXIWDzqp*f_W1Aibof5n_|FPmmv$y`@~y;b@R&SSyOo3Yg|_ZIk5;IOxWc?e7T&bA z)(MSpSShPwr`_`8JvWm?tgnBD=y2PO@o7g#maSk7P}*j>z>1&7*j4hr|B7Z3uzqZr zlg2WL?8$k>8R7Vo_Em8Wk@bv;n-=RvdM(Js!e0}!RflH&liV*wWOn9K_j{H~3F#J! z$rR8U*)D-(5i+) z{4%P_ykL?NC7<&xzDk>m8wtLC{9}o5tz%KO!JYdxR@)B^gL9T4`w89H^O!z!4&yysSK>B>qL~5nsb&v2ms%P9^iH@^BW8 zz};G-C(=;l6sabe)x3{ap$5O!KsyhLa5;a&W1_Xp~t0_Sp7O zUHe_M3!SaE%=#Ke#~Ebmt@9qf`ZtN2)R;zcmqlhN?yDx;oqzz;5ykl|VdHn(&U_id zc_`rGo$@caPtGwp?6Qunq4>V@cLL>(eJX8e4;}{TW>n0{xMTgS4=od}cIDB{I-nP+ zEFev#eDCrcepf?X-px1k;`V#*+`}9N?>9!dVi683sFZXUvHSytwsw$m3?^{k?kEugJSkn{xS7Xh2hOX)M3P)|qf)(bjB) zNL6)V8x_d$Ig?7;HlVD0e_(qg6-!UNfkkML`|q>hOOF6RztyK(oQ&L4Ulu8D7z4x$ zpyxe--%*4ZyY_)OEAtmN!ytWpypKmNWH{clt1UXHFCx1@0iz@6xz95eFPyq2GAEhV z;HTEpM%P@&q%NGe5Be+AzXq_5_cCAEF&PiT3I;D*8XI|)RKOm*)=jOg5}3<{IESOX zHLcqp3FoMJ=qr;=IyKpjgDcee*Y4Mn>v`QTjjTnPrjN`?(>hacW#IvI2;0$uLe$2L zg;p)x8Q$#<40T{~96(HRob3iDO|4(-e5_*S<-gU7RjZFZR%-Mw*z@D^({_dT>J)<0 zUH2o&-g0n%wEJ@$&i>j>aO*v0qtk10d&zR@nU{(>Ph?pzy8)QQxGc*HW($x+*t1`H za*yU>7Nc?nSs!WqTom)o2(njDsR{?t1|2|L)KnlR%#=e!43ci()-svXMfaVeAl zo{5SLWfy(_Fr}~!i?mL!`{9W(TpBQ}e^bPl@l$PVrYX^yK2ITeeS9O@gO{Lu+Y(o; z_}7J7HH_1}j+In!4bc&vdmf@w)7#91JMlYWIis3gx+v<4 zZ=7X8jNk2TW`YLCI@CK`qI0)SEdlX(F)m*Yp^EwMSX+lpJ|&_}9AWUZ=lP5FbI^ul zqC1L;f&dgtH}_c|UK`J;=M$E~bI8ZI4q_+Th1+Lunz;^xpTE+#cxYUVW%8)Lz8@_Y zyfTYTL+8_)Mxhy!5qKw!^q3mv*$sl?(Pr78R*G;$F?Bx3DSCG=c$RctmdTdXT05pN#y~G#sn2wYNNj1 zqc2-Eo;?Q1kaL4lBYY%o9B;cvF+OTc){Ixhi0Wr56;*5vTx&U|rQ@ZYG}bm87iArI zE8ws!JCAOh-(P>LrG#x?yU#A;Qws}oTj|e>%yyeRBu8#81*dIDsw#6FOC-)4>GT%r z(D?Z|PuCf*)Lz-CbxK*>Sy|T!Q9U9(fphd!+U3F_Z!~G#`2b+O)PJvDq?8TO_t4@{ zKDWNb9qI7+GRW6)&teW! zDARaFJ1DAn%XjM|%grJEHw!y!V-uk?E$&LZ=72^Y6uos%r`kC8eaXHByIJ#5Pz!w+n2Tl=zm*4e5u2@WX6 zwiYk1i$@N@GY>|5ZEnxGs<1P>glo0CZ_vm@Q7DJRo+p)%}?TATVYU zao_HwEGen+G6Dz;eJw6jcaHWy6b8^QhDu`Ns<#Uq_VX)*ptwB@(1z1*o%CQss9&*f zlecdccXc~=?}#RQ=wGK(IHYtEa&k(M!>f4J=kvtPyD$DdR1o9z!7pJ{l&G|zAli%Y z3ZsBY4%?68JU+X=26F8aV46AjPjx{aY3^DZkMx&-swnxjSS1Qso`yWQIA{zzHMm!p zx2wJcR36O5ElRZNMK05GVcS^Y`(zymcYZbE@52S$4(S&dgFWg&0*u-pF;{#hvV6N> z9q{k*!8+$HZp>g<$3EFUd!12o(07x988>KjH(i3RgoL%8!^Iza>If7yOZAtQV@$)9 zqW4tuuGC=6S1(9|prm>|!RVm+u`M7#vJVS`=4^}@$VD-rL?^6W9G>zp;C^zMg25jL{*8!*9sp&>UiKA1ec(kBr z>4VySONx6D#I(c0Jz-#Trjka?EyIx7ox{v01 zISXW8Z|}h-lUb=mC2f01tX#GX_Y+TRaZ|a@Ac2f!dsVo8@Oaa$u|hr z#WzWG=Hx{E5zkDuR?6Xebwk4DzjwxeQ9#6v`nipVh;sDkYZ?AO3T*3RIcm5jY|3#{ z`zC5;CF=M2?8{=${aE_*ncc)M>n#(-%!=)MYo9Q z@h8icw+M0x(Ai!0xmevG#!bBH?WxB{B>f4C@MaaosQGBOi(9q~$a{tCf7XpE{;}VA zSIwPppNe3*yz+j6TzB)g-_GTvQ&cW>h$w&`t?k7+e0JCO=*N$x-KA+#eaT)uYI=#x ziD;t>%{F(!8WOcnji@8Bra?m|txTu7fzd-F^9Vsx;LVeGWo-M$yzNlbrWR_H3VZEn zcDvytLaxTmmO+sXu$xS!BJ~<0luusT?e*%v0141KOrdZE^{Io@+IEssEvmDDc-UUx z54EWM#Ca`hha|s+&8QIeCejvlHkc9#3UsoX(%qsNZyU`{sTzSLaT}YdZh|U8-)Hn@ zbT7GykEhR_bbmuAnp27so#!eQm)r|o?{YO@2T63M`|Utlc@JCk@p;xS;H$;OL*Jz) zS{^dn=K}*-zpjT?o2B~~?U$Im$TVm7kdw(RWg_$?e(O{eQ&vFFFqjOrsE^2bkeSv6 z8Erhe>wXw#6C=6h3(wxCMx?KvKE?3sU??g+u3L|4s*_WZ)s6KOixX1OPJe@_#}(vYY@B=? zTvuyaN~#rS*Rl&IG`OMA5P(pEIk`y_+mMd3$~TA4bHuFR^3E&@1>l9LbPK<)6@%U| zne0hqX)jDU?aO623LUB=ulw6g-(n;eVV*N+8ABC!uTHLMDrVEnvrPq^S{>h}ZtmcfS9BT^;=HNE^cHReJTPp0T zF}DZ1KQq=}{1Eev;$GPM*?Dgq{J&ani#gyPk`;M&4+9Ye^L4@MnS z`K=JYUxI(LYURTbew53X$(?X_EjZz@Q(>?N&9uN;kL%fQpCnfW9lk#gRf;+IrXd{K zExx^*iN&y;HIwDIXP$3p9@MP5fi;n8ijDfS0#C{7cXqmvf*Z5UFPjC*Nw*Icef#do zOSdHIA2Ys9Tjj&dXwrk398w&DYtUCj(394iAa4iwM~UMv%H5H&i_Hxbsb z9{_>uCcOZkUS-WZ+l;fw(lEMzs`fbTds>TFEbNeGP33F9tG>?O>WU)zc2N0gf1t0P zXA{lzu8*6$YP^`Nlx->YV0Har4Rw@cb^8Hhm?xZeb%lBrYnkItl$Iz%SqZD^@^@_OrE&%W2gK6>IvX?ulxqk+0x@8Nw#F^3u>w2qlgbyCd}bnc^h_KV5( zFLAW)RcEZfE#_^2vdLYsC`XQS^As$mf%R|(>7<#q=VH>ky*cgyqi+@sj zZYVH8v9Gn1@aIZqey5RDBmlxbJ$D z>)q<>ehG)e{**~RrSn`iNoYq2W5=+hJKfKvNz+D;b)3L=viOEBl-~`p(|hPmD-Lq2S$b;wzQ#k*p8gcB zt_k0i~A^l_1~s;J}aB~+JIHx zk0VfrywWcrg29A|O`4LNtdLFukc(x>))x?!1_+Bw$&i&-T^Ab_+8y+xfuX3OY{*^QeEp_ffag@`b3E3M@?}QA1tzln`I3B#oJr^<>>9*DYC{=4xJxt4xT24OMGt~6=$~Nqbnw?Y?s>C zm_ie-uXK*Mit2Vh-V&(x1aMEvxYAkkp7>2(%@AFFs9PmjXr9SJrXi&LMl#b}m!;jM zLM3SO3iZR^NmfK0F-y9(!{Je+)rvHErj!@`3-9lkL=R9Hj?IfcsVZRiv=EtG6K1Uh?Lo%Vz1GR)s}4X_|Nl=BtiyA@#9MP$o=? zd3`@`rjj6NuU@HWJ9iFMxGA8Z3)<75XKi^IEj~@ugbGsBkH!A-8vFPVL^I|#qs5Y49e#Bl_rR3r*Wb+dDqNCR-Kqc@0HsR3XN_Q0OD&=Y!QuC z6+_NEg6F^t@T<#mkMWaZahAdV2^lZvj<^j5j2NRkhHsKsI&S%Rcg;rKI?woI-Dj*S zi^PY@`<<5}WoVmr*caG`4yH}ou8h34=U&4i+PEGY%4MmC$ZeaU>Dsvxuu(t!y9&=Q zMa_3lJ{9D%Tpt*e)y4EOj{6?(5eKbEB=z$3p5b6Z6b3rpNMoV66_H_qqyQF}b@@cr z4LMq-dc@Z8I(W^==VDW`k2PB^Mx*X1wQS6oM_hC4kIM(b%yT%yC*tc;u6m6N1$@vH zfAWi*QWWTI(5I20Jy$4b0Ay|1@6ZW^&2Nj$a`3 zJ|n)33=oryWX)d8>FTQ>Q+hAf%RX1+W{$7&YicoF3s|+gR%XdN`^X7MaGCGT2BBR{ zs1fy^z2T+jXU>bKl6}bfSV7xzcDjJX_qsbH4b^XJ@#AuKeL~LfK%Pu#fKBiPo3Gck z-|m9d!mJA8CwirrYCI)wrYSSBb)+qhGtWi!ldsh>?7e0dLwtV$H0NE*LLw=8(RcLF ziF{X|h(68$L;mGBQsZ)kQnzJ;^o|hM3CzQ!#@NA|!oW2JP_|amw=3mI(kx`>>H9M3 z|N5z*tO`*^0@Y#~i+8`wbTbO~Ga<&_iw17an6G)r0s7X0gU7Si<1Nc z12<5TNC|X%Xbsm_v*gf!Y$8ypJVB;(;diN9{XHvGD@MCRqyuX|`i_=!bBa z%ecwnFVMj5Xqx(uR%UNU)(Tp3ma{~=iZfcH`a!Uxm6__|4~AT!By>gBauh!;*Vy@V zYSQ+nwc2!!V~0EJ=TgsYTtQvJpa5zIN-6(r+ChYE8pKqS`8jB#ur)xWUH z70Rh*oO!*nd!uDqn^CxZx2d1ddN_Q`qc|}AV%7!H#*3eo-Nx17gWR5}z28pf(W@M2 zm9+6bu>Iw4>W;UKh}*wH`l(J=i&NXbI;K&Rx3h{-G(q=m<-4+kX-Ksjw(C?3=7ohL zz8GxPLs&|FO*As5`vWtD05iF~WOJcs)};9-^6YA-^ofgt$Fn-4RLLw0dZ=Le>t~0C z3v-|KAxyP|)~rt-P^28F7#*6N0??U70mXC6s(3H;K-?=8fX1lz{Y0Q)aF?ao|55#6 z@Oo)|bxfeZoAB>gJ)@m_t@FVbyW-K3I!MIf`xarJd+&C^fnN%@PpLmLsfI&7<5XNv zzCS;LQ?F)3pB$9P%Kg}kqyNjMZ}4Hb+j%F3GapIjF5 zZxHFU>PR+HDw_$Y>R~#(2h!ZgfVghdnd09C`~!;GhaP#}k`i_`!WxhI$r#`qw(R>L z#?sj&nXK2MpP4595xoEB=?ml7wkK%0b3gF9g$Q8FOj~RRrdAdu)9Yul*J9NzoVLg))_>05KXAPl48y?IYppxs@`=SxTLr{nts);x}6d?)%#@W8;M;-x}mmV_6_GIY(dp+bHC zuTU!!X-3Dm*;tMtvP0}jKE(yw7)q=4nV7=d0Z;Fc*sQWvl2V`Z%XaF;*?DYLsp-wI zfVDaO!VuQ+T`5Vh^VSdw=@A)T_7bQ{M7i2`;`I+nr zG8lk-O>jrDL$JN*aZua=Sm8fM=BMgmb+i{|c^X@y))_HjjvXM0vfe-CJ$saNAQMZc z+3&$|ySSr%6#^#tR{sBX~yXh{w3<#Gt(7 zX(wf5wdA+COA;J=wYy0-ed9vsqb3g!^73pNp1Mj| zzpg-q;L7~r+Q~lOGUh>IBTo$ash$xqa5l)CT?#*@u)(r@1$qG+g^PWl;mG%)$RsQ6 z7^7@zq341SKWgCmP5x9*z#jPUSgp-zbF+Ynt17=P1hRKlWTd8^II6%uBAOiY+qI2; ze54V7*svy-1}%r~+$-z!`ERRg+kS)Mo?$-+VVaTsXFxMcFE~czS5F_?Qv4xPdPwvGPZ}MF^iJ$25j*4xK$)5@Nl3{PK-T42%_~PJy(S-lt zY*R=@0O85y_0ieM+3C^0|*-iTp=W`ocrqA_WBHg+ ziRJL9UUYG)7oq##-8q9BtgIw@WVC2ek59;FDl^Qq_7Cl=57g!x7KED8P4=)M4mwk` z9>jVz1$(^i=v==n^%)jY5nX;`IwX?U4t12dt}66HY7%~~joRWpv&kR}u|Hweky2Hs-n%nnqb;p|`=7Mt(jExe3#0o$`c(%R}cOVx1Jfj;W5e3D)0Hup@22XK@Fsk4pj6OSy$b0-b z=ox^wjW6;0HqJ|FOSZQ~9O|fXPEmG`4rf57ct$i@Qs)c+3#$55sI*H}<2zFs^H?5d-ATqF+$P?zG-)L~ z`Vb$B&v&V3@UPd1&l;R(fpnG%R)q<_W(pz>78-JpOj`4Bwa6YXL-3fU=^v2+euUC%s7Mk8j z+H0t)0bq0hfs;t>SE-L%-ANSfR?qTcPaEXnRN6e=UBxX~2``2R)AGBv=-gc_GrtyE zSn+=%@3&iXcJ3qG4kh{qq%Z?y&9s(&AX^TgvQYol-va1Kp+BQ0 za`N{Gfh!JBN$GZ|x#Jo=6COALuO+9CG#UNNCYzgkI&&D^F4#{Dg7(3KU0rJbp~VEt zgpi$@^(YF~L^BB{Ckzh{)2n=LzY2Af{`{m%(0ffAckILtE_vsXlr7 zB1hqKn!jN=hc;c5DrcpZWHz@LPvb@`30F(=8MBhD)< zw|;UFbx)%RX>Othk=z<@>5>PM-xphM32%33;&oZ!9PibKm#=%tfJ5$X?8!%j*qGg^ zIN<_M1kkVY^^1ap#z2MC&*4FD1?^8l5=Kjb;Wo%YEoGA6O{ZdHjdEZtE zX6?aOkJp!czP0|YoR|L+s`a619ovDmy+Iw>wT{P3D}!^{>%AlwN{+9GbAo>|)cV(R zu()ce1 z9OF@d2FTOB^@pkfH*66HB*qMcImiaQ8sD>QxPKPDFcH)F1=LrTF7yeXo;LtcRj}uL zq4?CE1?SU10|CkkfxB7KUPiZnUJvsLJANGNWEG)1Xgy@3N_(1_@#cG$ACUMu4rPFEvo%#MO%9w zW9f=4M@Et9%zVBr6^n;r_u|`Oc|6=ol8hszNzEhIXq}XC*N|*L z$h6Mh5|QXYQ>}aAm&art4tWoWvvhqr>2{ym?jMo@k;h9*ZV5huE`75<*V1jhkxe{p zibgaTNR6iN4oCVKcPEND^Et0i4Z}i;eawY%8S$RfNV%(Xqzi)g&!hE-5=;i~X>EYz z0+c0iIPTDFqYusQ@xx?-Fo$JF)_?CWV@RDe8s>k(_8FJg%#Ymvw@U53rGv4)7HvDR zJ&U>L^7ryEKejEuUOr#l+3=wZ@$7YNMSf^8okmy_YFvf}mv7^D9^l)N^E=x2!s(q& zj5(INg`N58?@dyN;C+)J5A)W|$(}cdDn?KyrArUr`P!uOjXK1xu=sy_KpK<2i}HAx zo#5MHT-?ZGyxMXci4JaDb%Kwz`kh(qeiBTvZ_XzPKUU@2JmqRqcyfo-s?)R{{F35% zuDzpP6_-E?F`mZKI!>qltu+R2SMtUFf=Po}PrNR+)v)Z_DafR@&J!9#6ZR(W?x1IO z8V?iLiR7V50I`Vr?79E@M!;(q71U&9#kB17oZ@NnxzxbEX_co%y@?6mVQ_@;V{yVI zrqVHCI+WAj7R-pD1K%VS?A9bNfWd$@BF<+uvXY^)+1U zZDvON$Ad$Z=hKZ)=HeBVBfFkid^1mdtmEA^XF??sX?wXre>*~WO7%EVMTBs?HJp@2 z0R_zDKAGw$k-Rh#P6`i_kKX;udZvl@>K~scmPEpj0o$mNFv|-)tLPt<&j5c@#%vH!_86*mwGKzR(c3t|EN{`RJncbfC1W?3ki z+PUkW5c38)ky!Q>AI7529r)LyCeU%vpCukIlY%N6y>lhpNy8(guHG6-$!nB z?`#VZ_tQ;tUY>)4NnZ@}1s zgi|wY)olHvw!rc3c<(go+6|`xiHzx-j`{auz7^HD#XuV8t{IS{0iK|CJHDx6T8kY9}~0 z@r|`?DK&@J5VN?f{00dXju83Js@ZbRQaT7ejc^48>_UmG21e}~rKbk9=GP)e5}8`# zM`pS$G~)`{aQL0?bx+4}y_V;m*S?O^E>IzMYCPRd>)o73g|8Zx z$84iZ<5Kqy-8@U}xJyS~Rj$Hf8#V-@YI7=ui5WbR3((nWT&?!bhT* z_x##F7lkI^C&<6<5ddztMG8TnHBXZX^E>`4ocDU8XY?vuI6CtsR_GvJ4*)f_Q4I^Q(Zug+4>*$`eTT@8w7Y<8_> zE7dURgyP$IRxdRAWS52t!fgIJck2KY-B~pmsAT&!-`9u4$|pQiR;zL83U|7~}TDxInILGou&sdo%>p)=*?a%x`wU~eSklxe-kXLfZ% zVaZ-6()Y$^PTGy^)_U}{6*B*n0*Oz%kbe7c8*w=BMC=N)L_9}}XP!iUJ>`$9G;n^R z7gwG+yE9NCG$;IA@O9HY%_~Rw9Goqfupj%bn~##I9QEYB1Ho@RP8b_@iIM12*>}&E z>W2tcc?T46{D9IfT>xpfEYJ9&6jtf@G@St$OQh0!>e1-7{&S~QKhQQCSfHdFoeJT0 z*_cAXy(tI)B1iDB2pj3m8=n!ppah*c4xXCca#IFDqQ0VP6)E>Y zBLoZ|R($aWe3gG{=pXj>b#Ov$2ZtZpzpRt|sl zwe|^LCDMV9lyl*or;eY~X1FQR_AmzEi`|lbMFG8@JA+*JT$&shoh8t~Cyd)0qOrui zlslVF`5S-W2$}w=+hXSk>VJ9cQYWUj)m6B%wlV|5eH9po@$fOvEg2na8xn}x$sp>H zu>UTDMbnPZnO*}EBoR(5B{PoiHI{(EqBqKQaaJ8fSLi)Wu>nYoXaMc`A6hc*efLC^ zWDtnl%VAQ|wD4nN)5u5~c{`U|lZZEsUs-E)2W249tNADbA`&*+R8`ZbCeo>js6 zZYgYBk4aYU;%4pau(W=jPC@W(!U9*FsrP3!JeafAdMj`JNl7xaIjOp%uCZm{9i8@| zLhXco!(5ry&QX}0oPEM^TY4(E#QH&V(ydVBrL{7RdLS!Q*;`0VgI%eBVV3lA>hg>VF0a*=G^Jmw0scC?0ILW6>{I zQarj7k~IHlO>~${G+s#1xIFB%8V~EaHO`#m%2rg_M8au?LnDhi|FRz4gf-w&3DOIu z35;*r8o|WGJ+)@??IowAJ9$n*v0*~5SvlDzBMqHgZ{-&n2K7N8o{iVQhDG${YUbtC8)9_=E;NwCK?p}=I7Cn% zT$7P4S_qT)9j1DV13YtPF zr7br{+FIlFKBz{)0>8dGHF-rmqJxIy>hN)S+hTIR-MpHP*oy@LSISJPBUZYUx02VaAnN6FMCEeP z8YqX0M+i730qN4Td@nRUeSXahk`j3j_HQmtqF%o1VRx1Xdj5{(_d$ot!tLAx3Qm4I8fLyLLi^ql_l_3wOVrGHDB*K| z1-)A=ygQK_W1bgh!I_U8XKuGQ{SiSZB?!yqyz&rE+gwf66Zck+%7V$@gW*`zc2B8s zY=LVQFt!dh?OzmnFh=d+r-prtO8V*zjRR(9>8l~Gh_x~@Evr&^)}H{sTElN^2eWSo zEnO!A##|3^JBoj1(&~uC#J2={3*h1}PXlsA5TRRuH7GURG99mpyPo08u|QxQum^PT zC0m{!g8eS`ZAO*WjtK`YL=jgJyCMUin$mQ6C7(rTeg3;$?e>D1!oe%-84ZCpdr6W7 zIDOR1)dn(O@O8HsLi8+Rawez~Ux20(s=oDCl9UI79I=h~U|S~%9rn?>`3q59epShk zCZrH7nY9gRjUtwl(#d(d!ay>(b$x!PpN7!Oh!uA46hlr0Gidr?Dos;CpSZsnVe5W~ zc^8;TH?U0UJ*+KiG~C5Y$HoPjI}mZ9N*g#I-UH> zkyHOLySzDMEXlZAqOccL9*~xAjGj7!g8y4mO8w2FE@&|i1nTo`1y5W>?dx7=e9Q`p zfn2DZf*0!2G>9@n&0bs{)@5*;%A-F>TBfl@SVtU^URO|3hU;bQ2ZlJJpiM?=w|Xs{ z+Nqxm&HldnnnG5u(BDx>MP>|MhVuF=JUlHtK>h7)CT?>b`52Cq9R&5-f!C1v)q6>t z{BK!>lB^HJk!A9jG?o)7LLnIwcYKa2(RY4l)$;{dx<5|Y)V{tpuAs8@)~ij?{vG>C zC@;7953?AEyC}X@@;m2RXZok6m0twkAFU=k40jQ)0JReRy)Ny!SW@t4A;mk5Sh{~>>o~&4m^zSu!+Fm-4 z)v?zPPS-k&E^_aGfjBu+%Ac$>S%oMjRk+=;Ld(LwcX$)-$GK7GUmNn zuPZGKw@rxmM5nye-4Z;_8gv|WNvEX2{yu5M=jBx_76@j`lS z%Ne+&>UO4!Dco0Q+O%aOS9sDyqq~I;ttWWv_ZW6Uv#R^L-|M{fxN3UTTnInq@wc7lDQy-zIa%|UEU5mG=80xLm+c}&# z*XvSivRBEPtRh*7Xs{Lhq|`O z{bhj*0t`Fov#c(Zu1ydK@ER{fTkQTC@rbsl+P`B$BPHC|8Nn@2L_-p;x> z6P-8X;emQjhr;^mg5gN1oQa6F_u^!_DZV8`z#MsU*ye`tx@4$!oU1u;ch|+AbE6z# zSQk1mAMpf#h9W|~59X}XN#$uP8do~9hh*AQEh7f3_f)nQK4PoQ ztY1=WYhQ=?$M5%@mJXzSDOBs~Z-?Kc91}=>z}i0vZ11hNP<;oVBcwB~nOZige67&) zD~7byT->VW&NMi-CjqU(_7A&6(74PPFe{G-Q^?gwDTG08NLsdcx(ZHUm!+a0^sO{gF55VbsqL) zN>K0&WWZ_@u8yNCP#ZLZ_ar)-R&?*^+Qi6-AMBnI7$RI^C0exN0pC8i5xg!E)<%wX`rq)j#+gYpKR6Cf zaQ-b2AZ^CBu|Q~KAAX1enlXuwPub>sovKxX@IU=`^(>E4_W9aVn7rJ|`LpI>E8myA zB-ReX_AXv12y4`6Q^c!zOryeQzX=3th< z+8(|^zfu8Ht}4&{dyD>Ih6xA|p}))V=+7DVgN}P_)kldvdJ^c+BA)4>jpMkbqQG$s z4$KK&&MVLOl~B6IJFLiF z6~HQO<|k(U-tYM}xwx3!=U%Ks4w7xM4pboA=2l(N1^3G>B3B&z-XCC#0_pRM#xvUI zu*530sIX@TuDN=AR5|*HYcb_R^A(kQ`a)4_H+<301@MNlZbhHt} zz;j=DKJF^yX51nk-s127S>md#<ar!A6S(#JeJ=Mg(5YI&FoR#okTZjXT2ca;ZC*U3wtx@f9_G$H z8aeSNPR%%}d}xm{&HS_u*yfsq^%Y*29d^#7i`aCuz-4JCYHs!wtn6-W+%aJ_Bb$RM zbC@zV=$fNcpN%GtVszjWB@51^9mp~!Pp0ZWVT$DE?&zljnlEFvDTitCSlSA)W&}kp zZ|@hL;}=e=z*J_Oc4#-t`n4|Jc1{%&#s{DLpMI zF93?XJyF)WxQTix@sEEY?Nc6fN=Y_iF=M2<hJZXABSRV7~`*MKaZPYZ0;7)D;tjIf1w^s4)k=T*($iNQs_(=K&#Jo z)JbAl-d?tpma+}57<8sAxSfw%<0f5I?^wkO&tqE1J;==Hh2Y03J-9wvzI4Z7fql53 z&3_O{?~#~?(X=vJ!sj!kxp<;0Hi*=%VCq?)+nJmI&=;!soEPtQGKDZ5 z*<_AltA}OV?l4ZPs((jWu89n{$o_)tD{#L=`$$9$dSaq?(619xuZ1>!G=k;;MV~9j z@n0%v#ubELxDOJeVJ(XWj=cJX!M(U;HK9d^8XWG{em0$#giC|%nH4bC(72NKQHaO6 zF1{H$6@j5nmyRZbEb-xx@Jc4|F8%Dnxb9j=XiS9FmvWB7dBom@ka*Wv_EFZN(g41@ zd#8^9l&N`1EHfqcc=xX=D}G996GpC;?b}IQ$bss~c%v81vzy{q1(|1|Nz%#@Y0Gvc z1YfBNsL$Oc6K2<6mg5Nwk2vHUO?PrwTCqs6eJzlYg_2ml1%JvZ!xRQtG!qT=G6BD_ zh=1X=T#3QZ?l7Oe5eS$@qnNjplFw^LRwoNVZf zNa!ARRM<6SOxB7LIMPw-e0nOOW~c07?yETQ zSf}khlAC&cM*sY8=)G^Hn5G^wHc0Cx%y z66*Y$<-WFJcZ446pm+$;d@%?w!t_W&M#NRx2 z-RWrsTj}QFq7S7Mgv`tq4w`hMgHl24ja*E{ub%<49s|;9ipYhT>%a)<5o;nGzqxkwH^TqcwVRU5J0;J0%rccl6{{!Wt+ zJw3PzUg>~o*q}*t+P6>Lr2OjezxkGruU#ot6Po+4=y30*WI>ynd%SLoEvzbYf$4b> zulP#5wp8QL$g=2B%~ePlhXfyrhgwhji$UQVB}tSSKWs0k(lZUklEji`|4v@IyMhnz zSRHj^kGnIut!46|v|s#TV7Fu!5DoLsm8KK2m{skjuM5g=@R5#fnS(T#L_$(QTB#_o z|K_L04P?)c6aY=`AWs>-M9K)>oaS7Mo#Rok|n&6$2OTtorP$YkSg^@Aj>wQ^JmF zqZ0-;BE|@JozE+i9FoiDL3|kry~XZ_xZ0Hh`5sim{zS6aCAzA*!W1@8C3YT)4^(se(W_o(Mp;*;MR}F^#*>>kYp7xvh?13|wd|&Z&ZA;jn&hTh42a67rr+>`X zIdToQIW;#6bIT@L8$#m07=6M+@UU_DeR+ z>3kf)`M`>Dbc`#H*%kf@oD*8N^_9#(Zc}eghZrLapt^4r4Q4iiGIqM|?l1X{?Q`Cl zj`kb_7HWHtZY$QBNTU>a=K35}r+x-Wr)LUu9~2wv>O@yIk^CzL*Dn3H6Fk_?hWw{k zX43x zVVK+~hxym4m-P9u%}B4iSETt|!{*Z1{&59WPXOG&c`%%_wtlL`daeLMT*rx*ZuAG* z-F6*sv()}_PJ>Rd&46YR;DwWZ)&%3aJVVm>5qISsQ=_)flOBfcBe5a#;vgUhPR zv>JuMIVk4Kx*skdNORo7VQDSAL!zRR7>>xO>Ut((#)$QkO#3Sc<} zm>|GFa3NTLNRUxvWyS&a<=b9{o)(x;r8VxlJ-Xb&;<}StF;U^0hEV+~_qyKcmixug zS9G6>Dsz8%j=d|UVr|6*EPULIOZ}bEOub&gb&?-1ZLF$6S}6c9fKTSI1*?4JIHfzx&low`@97+^-y(fKE^R#;)w4+(v$fa@|fn@)Nr_pt!) z(VzI}$u8(05e+DLL;n0&xel~}ag@(Wj^Gh}r&JyH`s1{4uOR6@lv!5Tj{jg^0GzGy zkslyn$Bk{Ifp0Ul3x-~9G|heFJ~fNpJ;|y*#}@2xudc|Zce4LXndN5ezeo*Mzw8){ z;R83FwBey)R1J5dyVo{++=|}jzzzLDL&J7t-m5nc<#3plT)TO z#tFbV3%?K}*>2kB_W9CTh&{?R2B!@QoUfonT8BP0nI?h-=!Ku!%W6H>fcwVqcA}!w zf%K*Z!g9Jssv)5-L`qr5Bx-!+qh*hVTkyEsWm+UqZS9K0e5S&O++J4qR@ipXY?y%O zk$}Inz>!k8rVJ0@!oK|F*{3XNrUd>*aMvYox6VB#65rM)P%(RN8LeR?gN)DXtJF+j zU+-BZuz}EYQsQZuw&Y`9+};u&_Dys!hJO~o9{5K!?@7zKkM{$7z>3}142i%OpP@%@ zHul;uN%r-ya*zGh*WVU|_n5e;^nA8#mdkbW@|hjphOrc&^6T>xk3s{k<=|_U@LtG~ zdjxB&3*O~VVR(B@R80$p>-Q?=O8v0IyzMgjho__udMb+`CpVv53nfc6&bm)~!c(sa zS<>WAn(M{aJU5P05;~HRfGn`fiGlIfi3M*^3QYqlT*7k;}FXE+du8Ux33~^IK+2au*iS? zfayUrUE?5u)FkjVn^Cs6sEiFjGN%TxhG|)#?OZt()~r<+9XnfOz(VPG0UdV=w*E1G zXw#dQNygHX&)tHvMMZRDsu$nl2+*WL*o$$9=d`4EMfio4D7$u$C~fdf;~gI2k@8?? z+tAWVf)H19@SK+UUbz(?w}~64D_6gO3>%ui&J%4CP7w!0z$D*IQPS!Q$1Sw4k(=k6 zoyNi%b%`YzTf;SFs`)gOmsprlPrgnTB4Mu~o@sN#OdPB-;{XS9LeZ@{J75pxEMBO9?>T5beD zf%RPw_u*Jth~v{|4oT`t4aumQkqJ+^>^XaW3m!2b$<#<-kbdB8rSip8v@cm2=;rC%L1Iug!>*mQv&`t1G@!%9q{BPYDxtl zUVcN?UiYV+kRKCz>&8to(F_ySMtLlE{hATW=H(>;aFGLWn4#1 z31`fi%PKn^yWd5$sUHPP|zs9qQI?7YR*cO91d_}#50x~eMw-19JXr{<&p zLWpp80)F7)1s@c|6w?YpN+`W7Bp58h23u-%TSVD2C$o#(D zDm&7_QR#^{P;mg_ySKYM91{gW<+m;Jko#}Zm8tp7Z%M1P?WdmE%%IiXDB$beFPy1N zibP0->*oZY9$Bj&$G559bW*>FZSW+ekA=6~K~1!`#p7;Mo1XXElZEV!V5Bm8T6}}P zSbV}wdDa;=!MX~*cH~*YX=NWiKD6`kLG>EBtg3c=n71mz`SI5gjLNPf%j zPVDp9?t!u9*ZZU*9fi^`>eBsPk>*_Y0YQJ+Slg+S)G%skD~job{pIV}QAZb_`NoNa z`J(0hUR*t_VxPsEjrpkkUibZxp6DlaOoqz!vY_wd4^EmwLgb%@e?sn4g%6s=*!A

>C~(jPXv@q#FsHL z@LtGe~Bh^aP>X1@H{QM=SM1V1Z?cY=Y`oy`I{P zPV!#)x?BKRbKkH1)*!suoqQZNtXu;S3iG5E%?x&y=9cEi?wI~2&GS%|YBU+E+(dfq z)<@%hJb{c&9R)<$+8W`$O3^iA+ee|^$!ZP69y4zTOKDw!;joGWJP_t|t(pc9_0TH?xy2uR9?7-^X@%bhUdutV(`^`WhianWS@G#Jb+OF!{l zu+T;Lq20l`jRnUxt=Iii)>N14Cj^rpx{X~GvjVaTQc3x85ULuIjTCF8i8#5Ajvu8%xP56>s=P7l~iOrpM>BM{&YDP5_L z!%It*27qPSz1=bI=rh#@OH>q|Q=PHAvnc)c?AP;_;KyPcmFY8oOyEkLh*I@82Xs`K z`*{M^>u5x=xU~`F<}hqs;eg`J+TPX;?FapiB*9QVlYKY?nn{rVPMssGUBhxY_O`d) zc|=Q+>ru)+(#asN^!%~f6=8c^O{!d4`opgLxu=fxqkcbC1MM)K_C~u?`)-c4*b;(aNh_g{RR&#J+Y?TENDDUO5{Wa#!N1WIbW!e zxAN266?+T@A4qfT;dXfaSy6em_gnLKzAYQH(n2V@4wvz~TUaY;$PqK=XK}&Ad-L)) z$jwVaMFKYKF_9P7#_f0Bh(|qEH{_0FxI+As(Z?`d#(bS0h6-zlE>y@z``q7viZssz#K2g7B+=%yvv+)zQ5Da& zH|20jcMN|FE^b@|_P{Pe#NvQl#05)Y@{kc*pt+{JuFnss2^$X!Y(K~8cW(K`ZSF%m9C zuOi*Qqd3csil*blV~L$Orbh~+%Ljp6cevLt3R+nB6Y$=GHQ;{>p>Z!@Ovp!j7i z2RBpgHt%wHodjaBs_kSwP-s)03rR;RsSLVb8qi5hm0TEf(%KA^x^bgwZH_YvbSbgMo;3;R!oCD z{VqSjtO}jaJ-t`CYn@*rm_b(ZLg}*QxMW3Yt4qdDAeALn`b=HQRb}gwUh=fYrW%1> zX|MalDzzh3`#CkI1Bb4|o`e_(JMW(5y%#qzLd1u46yi%>bmAkspDKUzO{6y(7>C-x z)<*qjb#Y~fng+y?a-UvB9byYGgfL5*5yyF(^GXNPhIF8R@%zwsR-FUZ#IV}@KTGWj zNh3YIF(NX8gw(9FXBd2HI!KgVHz(aN`iO&TRsw9ghd1~}B|WclBvdFj?B}}}mX3h1 z5fqxzav|7{U>*P{t##+9W*5QWU9o%}WN!bMH8z{jg z{;id4;&MxAPB_lIy$eCvbm#_tiX>GLT_1V~-Vi9-T%5uk!NAgT2dK;7YoyR>?`J5> z;q!m_xNrtJJr-b9#)TVYSg_r`H*RgoPmUhkbvwoTe)e+$w8Nudp&b*Wvuxn@mzAD( z!(Wq1F^+L>t+iXm+J0KwozQ0@G5z1Rm4J@l!Q%5c*|O6p?TS;9WTWE&UPp=U%aY_V zagr%j$KK>}|yF+pVzi^_f zllOAFT&C8WkX>objN&;^+^R#!{S{8G+b+`%@F+7P#hx19Za58p7s}*C1IHoMGBi3m zSf9VmtjVUopgTxk)izxPnOGJF*?zKX<{&_Yh6d9M4tun;*=ji2VnNEdSO3f%-;_X9 zC?ErEY0sa)D6m3vF)aBEwq?wu_opBC_1IQUkTGdef%oa5OVg3D+pLvyCgN@upA`2r zBk_AN#mAqS;;PKU`dJ2Q%M9vS=7%lyl+A>4<$JGoZy@PSU3yfi#CU5{oWn;*)0-Na z!}P_KnphbUIpZ_arG|Cxm8?zF8gof-@-o``pGxwM|&jolPMIxyNPvkr~SFm7R z;9QhIyK+!E=FYHR^+}%+VPe^Yx+)WS0Tz1Ra$Il-?T|>98O>F7Q^mbLBe&FaL)V}m zx74a)dMP0Ounb@bh9nfI{Nwc77r-BGgRDDw^S84L3K}Y8Hc{jLm{gor%U~wocs(_N zT

hT-$?A_PDh$Fp6uEvgpugzs&pk#xhx|HIAn9=_ipmJw1E>3a%Iuri1j(-QH<|lq7N@?@ppm(d1SjcmWZuFo zPk5lm7!Rf9o7#qd9b{#+9!L~Zbj4CrgaQF4S9$aAts{OVu4-x zWQdrKJUv%O3t(WqzfTd~i`z}TCq0K6Y_7tD>GL+7I)(jnwzo3jISr<6R5UhDY{AI5 z*0SNc^cAfrnQ%7e&P&4c&#qxStz&L<%`iao*@!F8)S{+PUC#aFV-cD@ahAOPg{*Nd z)J3fF$gJs*jyiJ(iTm8F?ZhZ8a-m9mYPget67Bl{e?DfAq9jVS3>iCUs$6GxCH=ie z+VbY?Ml*VQWL?epmnrG&F)gmuMZb+X`gZ#EqFyD@BmS*tqT> zvG>>1!=3Cy6jP5!pVc6 zhxEh=g^MLoS08ZI?%l~QZRL#kO|rCUVM@}{>q?Bv8xR*&T2;n~mbyore%k_xDv0Dl z^V6PbQQ0e2jl&4u!~PXJa+8@>lS43N5vP<}=sVoVsX-YC1dKF;P?C{oe=93`m>J+e zLeT5^9Lw;IuD686fJak3?G{3`m#b;+Okp@iCHnW*P9v&440D@qB5hB(mnv=L0YZF6 zw7z$!{jHxxk{FFY{!&+d#GVWTOb-IwAZHjy+Fp}CG;!L9hkA!^1VFvRx1s%R{_le0 z(omaauR33(yjq|D55(M}R6#G!hZbAM0KDhU7 zSIu(#zOHatps=Y(?*w-L^V;&I4B7f=nP`;2<=&NRnZmH$)x@xY&@fY z5bFIHR3d;w$A^Ben#p_Z6`}4wh~jJX;SFK%V6~O=I9K~w^a{L@7?vH6_cV{!UEr7w zAZDjYHwRq8xCXGAiNSp3y4UW+J)Lr;$bK3X?Miy!A^i)VrFZS+DaXpyaLIu%5fF&G zH|ce%#fB!Bo)*)aYswQ@%Pq(#~;} z2I<%s^0k_?n8XZ<{eXohee1IPT+qC^B=pbK$oz{|Z`r>e5pZajwE1J4^MqRMt=8Vy z4VLT~N2i7MjN1)-h70g7`W2)m&9DC=b}Izmx1;fVaA29y*(rF2;A>j*W0ce=U2-T{ zaOagOnd{}wy);7b!QU4nowD?0OgfZ1y;bi&;R*c&ydnJBQnxi_&AF7M&9HMA6J3_K zJ101Bje!jSLQ4@S``Q>xT4ITFmQFizxHy>1##P2e#T zYamzfpn9A-w_#((o{6C9{aM-smmL2`uSR5!DoFxT_yEZ$w6jdu3e%I@`5wxlMxOs2 zn<^(J_OYE6Qz!plM2tzSno&YWv*l-LB{l;TPa?HhHzoNs@mST5qi^tmm~A?Dd+ZKGaNBxqvT%7t+(5fN>qn?qU6f7_9_`$N`&Eg_Y! zYrLI+{%x9{Xz5wrYnDjTd#>GF!)Bl=JG@v{>{p-RlnQJ8fF({+%`&3T zOOJ;_JXx)`zxGX>19*kN?03rMOxeZzPa%xoPFqiad2;Ge8N(I`rXEj6whBXJT$3F>7kc?}wxpu`MWcwk5HKh>Eou-<3AQ(3NAOD-U% zieEWh_#CLJ>sH{0ddua<3Ka-vaaqC2N-{dh?4o1q16TW@B(fBM1VOAo2gr~VIol&$ zbE= zbGauw@&>x7&r{yp=xt*Y3#m)`>9Z>}*TG)|-!Q3V$2HllxhPO1G}=Sy=Bi9pwoI(! z+0E>32SDUk%KzNPcR1`ks|#>tIY+c&2Rv?%gKBFAbaRTV?KZRInXFCOCmFO-_JrQmC?H?U>I%#0qde2O_ap)5F%p? z`LCknfI+0e=tqItOl@O#LksMhL#1URN`2CvPfl(BzP{GYa&uWb9LVB=K^*gvpppFv zM-O$L`Wx}GJPI?xA(PP@239KWKX0pSTCW`Dx8+_6p$g|9-moM_&W5gy4-CtwYN2cQ z0tQ1ptt^|*6lYUmK28gF>N0NopU?-Z{e*1%&z+@(CKN9o9!DIHe_9Sd6@Lt*K<@j_ zTSk}U#FDFqK@)kAI(1UL$M@4dPxhJ_A^}yzy#HUg;=dn0KmiNnm-iW(KlN+k!aIo<#qAq>$Vz|>gyI8rhB1=;yIA1~ z>%Yw*0$f2kiLyS12#NU6(Kfkyd^BPBfFCuOMS)U+kwTg~7`PQiM`8l0bWsOo7`Z(e@R zw7hu}=MCDa895*16T7kX&S;l8;^BxJ22yS3v?Z4PUvJcp2oOWe==WDjSl7HKQ$x|_ z3CpEOv2DnAdSXJlzJ6oG!L$_CeR1R{Ll^0?1SK)3$V!CLwM()6UDz!_k@?&yA{&1*bJ9$s2QtdV6~9ugI+kRcevO9mK_B7Qc-h8RAHGAA zW@vCN*c{Lm$+4t>GE7nHK7cF@3A9jz;QoGTuhWGJ zh^LS2iHvjwHdwOxxx=Y;1k=DzsMnVyF+!e3#NmvrHp%<42bd8LwEN9)*{~B z*J}*h(nA7=PyCa7-|lO2rQ>$)_P;XaA*O2kmAtJ|_105dFqKRDXg}MgPZk;(peYx;Ae~6E>M=?kr zT|C5uSPXn@Q~V<~dAo3-tN5qkbw9**oK1-p%N)hUW6`H1w$%M|*&8Bk4hhr7a92-E zj#`&SIr1>2H*(DvAU@k?PycS_&CMfAf`=BIV3aC~B}ljgqoo!>s zYdMZgxk*h{zsfJnJIwFm_EV2UZITdGtD;&fsEi}gVI7~xnX4a%(OnJ_-57F$zF(LquWm6M&MyhmP zd%S#?c2EoXe1|L>drFs?A%|#d!lTm35S2d+jox2HZ)Nt|TjGq<(fj0IrSl;xA0;K( zp(%OsjTVD6&#Iqv?kS_!i3n(Z29HGXOL);m(N1S#nr zaICMX(6H^Fodx4VX1diMa}NJraz`IWXP1@s4*E<6Y}U-%3?KxG>NkuEMGKpGh=_C^ zu_r=K4@6HEymMZ%{eEkc49B7N8GPtnY6B@+3_L)>Cdpo6qs$# zjnf~hC}~Z{lJSXNS1tx|GeAhv+;q+n*Og$O+3Y)1_7uzJ!&;DyeAuKqMrDtT`m^k3 zXbyVw0QLx4Qfj*7t18vf869{|3g&B|nRRvi35X*$%==GFx4{aEQ+(t5iyKv8v3h+} z&xR*lN0QjSqcUByUtPJtU0VfS9X15!Y83G*+^HBaMR;Asw=#!j?;l=qXt=2`?F`FI z=8d|$ZzUlmmT3 zkBS@ON+$?y2WC^6cncZ2tCXVrKpXz(t24f6Q zVZo950VnZbw*E*^ZfB(Q#oP^3ol2}lTDkLdwB4i4+gvHzCC@#2wn4dBUqWrfEFt$E z{<9xK@zy-I6y)xK3fz(*@YH%_mv^8uW9c{p2*dAFb$9}8D8d9RO2#zyUdQEF&F1_i zRTpZyJj*d#vIljO-Y08gq%D+{wclD(b8>E<7|_MwYrOX!V7LJ@iNy9Qs;lSQANC*h zHQz(a3@x<`2eIN9g$tX5S(J;fmgRheYm);Rro|J^3wyc+O$%Y&2hs42;-nEHlbTlN z{_VL3nP=R_0hBpZF;D#X_xrB7D-AJDE)1SC4ZS}nwHr9sop~&zF@UzgL4~W6yCGZT z^tP^w+j0Oo#!wZSw49kdr(h0>#y_Ie-Oc7bmZX(&fXvlV7(+ThF2cgiyv~m_h+OUB zpv@3x54>!+5@_HdjF9>Xai?z!rR49863UVEA7M5 z=H{=H6da4avT&~ZE(_87>38+3ynP*;2X-hjQ}7d04D-w{pXo*6Di~uUW~2q6=RZJb z1e%pal0my)isbo>Zt+_3k2w9BF=ds7QSw_%IYzlomi9%efxKO~r+9!L!ooqY{*_0L zaq`Z0X%{=nxE_S$_CQ<9jto=dJwds7tSoU2F_?Tq31MMrzkTBxZjD;{r28?<=Q8Gj zx95t<0etc4P~8#hqngDToli)L8?zQyMv>q|?`_-tz^{n4YM0YkIypcv^wV%cJ58`( zinl^!y-<>kiMo7dvEb?0Uzy3LYiByXosOm?BZY+FylULLZBT!(%*_@z7-Rp2 zj&X)=vl&Tt(qolxHL%2+Pi{{b#qqmg34^TTo63dCPOu)}2(gE(4Zn={zs)dM=7%#L zQg4vh2qlsD=d^|y>GgjAQ4q5SKv|V6X68@OCL#4h@B5|4_KUlzr<~FAd2Cg?ozCiY z*J4guT6AW_fLKoM#!{mJ3M8(et)xbQWHH%3iJWz;)1GvREJ#Xt4E|mRDPkX=ZQaEh z6SLj+ukWk5px=boG->ha7p2fb00D4b)~Q}9Z=)cJp-o033ch7SD6VA=B6)nQSZX#w zy1z1^JfbPM@_jlw9hda6#cRk+?5UfE=^vV*Jg2`3Xoju|{j=J+__!BbwtD8*jmtSs za3u51`q=r&0I=0~y_QWdS;-WU^RzHeiDaVzLaL2DsIwn%RL!Pgz=4b;gs`v`Tzk`r z+-N(w@YDj$5did5M1YUx03T?JOJ$hs6$`MEC0@l03tJ`mw#mD%vdWm~JK97Gp_0wf zY^;oxJD++1$xBS%W-5jfw^XJWAV;ZYUMhgeYi4j~uhJ6B^TO4K zOKjg9@V0&>(E6TwYy0MRG2;meZsqeeyKSZld9Yc!fOx*g3yTKj^H8k)Z7YQV2q9n% z;=X}5`Lb9`MFsvj(0kb`aUODUdSA)L3w)=TPdw+ipm8V)U+ z3e&l-(|;#$dt9P;ZynV#xSr0GGhSxKb<1ML8srf6e9RMx7CAQ`?nGt1hJ84GUk-T2 z#q(i}`V7mMF7vZ*%(SGx9v*siG==>B62P4~=9j%h5#wD=suxB!KgXii0tlYf=FTs% zG|NzkRInL= zh>OPP`sAjD;8OYNA;b6DplM+vI?VLk)8fRATk)|dv23ubDX=(Vnz^L5R z4Qr^c&KJ@&Q$+XW6ytZ??miKM40+v?Ghj}~iV1gwLK3j z37_iX7dx`JZk;iKoAb<>Kz!&U0X0T+U?&s?e2>lPG>au`_A^c7PdJlh!av>L?A|;+ zhH=YH1abPi@tVmla97sc%Q;PiFuStcNgwZ-Pjm`e;*PzsC{E3D4E+8YW8gn@>u;bj zw0ur|KA{MmnriSbm?DJRPse#%kyS6jNc-g}lsdd!fFGbEFZk>?(^4&>ETFkKHJwKp z(?4yoAe&onR0o%K*rta*8^6|{wn_16C%6V^SD7&b}Bjo#16x` z0tz*1#mrhEp&f1f;JT2X@2)86(w17HuKgBt^vZ8DVnY9sokS#gjwnV2-_#Fz1KxC( zzvDsAC$S~}MFg590RthG+1r7z`3cF;`l0-QoiOYJz?|P1PM*-cWNAIPg{`}Cye-W!%)UbSDDL_{DlW}iv;N7T+YO^-z5T2K{V zs=;odc!T4Hdc)Aqz2WIR!pJ(g%fcR4(3IL830c45qfXtn{e~%9z3ym<)L+>=Zgu9v>I zlOvfzqxBXdltV=Q@Dy*&X3ldIM}e7O~oEApSebPd}H;Z(81|>JIh1~=Mp1f z`r{s{@XJYY%i_a}9m*)0)+-j9h{Gs1imy6(#|gse+&t>igyw*uNBFtf$d9)2?<*hA zOCy(pd^%aab+v4q!WrK!Sh+5HwWU>}2o4GL`JS*uX66PL;CkevCw=+GHo~8- z3pyKCxO%u@<8MGK8W=7Uj>T@x+z4tb!9T!ODfC$ucdh>aJr#68FeWxcr zDx8uYnXMkZ~LN21cdUrdc zZ|X^t1L~=_1qd)R2dLD;$~o~tiAcWK{!Wc-yhYA+>`UFphpjGCpfJVS`_}F;zNonJ zj5&_d$un*Dv{{yY=KCS3rl(H9rH~jpd>#|~Ljq1R6WJDXg+)hej`4e!JUx{Byg9rsdNdy|=an}jR5gW;A>M%WXHRA7A4p}jDMZE9ZnFtEg?60 zOv$%pQCMTjW%wCcPbGC38He*#+U1&a(yrJtYrP?4DCc*Y(}*Gh-tPn2RaCOog6*8sY}pobFa2K06NzXZ+d`O zKX}a7iXIwlbL2q(Xeg!;>Yx3y5VjA61j<>LpI4pE%=-|KgV{QjTe;bfC<*UCR3L(v zt}tAxzN6_f!9cM4>}QN`UeRL^;wfBr{A@1VxURV&Mn8z@vf?t_@3?PKSN-Wj}V}EICKenpU(4_kf8xdMq$Qj+0s4(2jHzX^3d%^LZE91oA&`)<^ z?WltOM zeL{P!5;D&~t-Q4(L+jOt_t~lKqcFPr-y~x`SqlbWxR#S${Y!mL#pg}@?~=}HW(BU5 zMHOwU7w(@a@b=T3g6mA3!0Ex}x19y$N|r@D*VJ~BwHC{)f7h1VwXLo<9dlap?7MBtgw6XL+S4u?@p3Ti^`=2r#!TyG6seT*DKZ2#}XMx5I_&&u6Nql z1)qJ!v~

&UJ2vd%2)8fb3iH{NI6*lB-yNDk6J4ywB!{IUn~xnJcZwUPC1bg9dl+T${0!)Pl$b~n3L3DyB zk__=cl%(HQWk|lUSerq0*0!L7Jo6m#86om8U+?NNteMU&EJ%7Xd0Bix4{{vS$j64q zXT$aeC8fuFnriQ9+UiTc%Yr>V2kZK*94+O}C@r-gNz6DI3!M4SoYhL2n*ndeg!+rc>BkFHHMZ*W9(ff~`J4Z92%R0XSG${`I@B}!U}sfb8|z;QtAG$JYc zgCJ5_6PjL3CmghPX(hrT2ArhBI1{L-m@?1;#Dpe=Ji^La? zO`dI({*aY!j|diXO)l8b8i@dNulB)IJR3Q$uSXn@o1#L9fs^>SD{SUi+)`NUp47V)K`#{S$^?%>8>#_3vwkP7i23@C#cxntN_m3BM&@tI>GJp1XW=!I;4?GkDXN z6*ERB>}IB=Q?vX=ylCb(zHTmxfk;`|$P1(caUgY2gbqu0e_pN+IovlmFSFkjtg*~@ zc5Bw3=QT=ab5076vld(Y}zkH#NQH z)@7@V`X0e}q9+eCAS5daxuSmtjK2n*h!f4o$7y?@=h;hEZc3%mw$diED2_5JXvVQd zhiv3H*vK~wpBy*XrzELdAwlt2^|B{3kxhX+4VR#9G%?GBwt&bF(3LpI(R@pcR4tVU zLW4n^b*7g(MLtyi1Davxl`1Jhae8SqcfX;{={8Plz4E`q9c0s~i&G1&G3?xDC%hYM zWyueY8+?@$C1&21ju=c9^ruv>W94UiCk)srtIB3-XcB3O!>3p8rxbpfL(CtmG_o=H zGD&4Q>~^eLlFC~HC)9Ud%X!OHMocvG9^ckh_x==0R0iClo`i7D_)h3H@bpJvl_r_2 zexMa`Rw*jl+i9!=q0fLs|*e(fT9u*#uOO>)I$!tEsVrDZ<_$~4vLXXAbU9_i|Wxlv}#O9X7 zFrIC^Xjphhz*lJRj{unDhX4S}baUJ~b>9tXOQ{w5ZCgeHg<h0Z0`P^5ve%sXiV0QIOgD${i3lPmX43GC$pE z+x#s%EL?G)m5~RX@X>Nm^O6J*%` zGr|n)1s8HkcTN?-S{d^jVkGEuHa!*RQrkPpxBNMwo#a3P9ey|RlyN$kNQx&?zxV1H zY3yN;$gmuD(c`wY69Gr;17u&@qK0gExztL%If;k*)Exs2HK%{A-Z@q2&nmnW57;a2 zR5L<>0UP{!2}Oo69+g}OscU9sJ94ua(-IPsSDmPecHJH>7BqK`z7QpSYF}I3P*1eb z87=BfPCtE)_>gV|wcj8Z!prc3>RZ)TO&IR8`4n9rnkI~6s!f!ynxPu-PSxxs=eEhYb82*4GQq3^lDSDe#ejdq$s%`&ZsMEwW?3Bz{-DcQsX1ed`ad`Is^vYg zk>EjL*WVqnp?{+fP>P#qF{?tBf6DP!R48(Y=b=!;yusgWg$O@s)$ccHY~oxUR62oj z0zae+LV-B>SB@B(La3wYE%WyW?4&i=4FLIAqj)c(=3Gh7>ZXp}u#taOYYiPUE76(M z;KKZEp}YXFU66m`u_gF^@|v=IZmHls``doh6BF1Pdt?1fg0R(5ol|#pdRZ{d~YP)ZVRp`SIU_J~wBI2RLeRpVcMR zH%))j7Rb2|->JtiV>v!=d~si4sMBK{BbPZ~2fZ8>hS)SX)f=qDDX=7Af~~`?oogL- zsmJp4*CR3>WBH28BhG3@6&Iyh0(#(GFT@=l+vm8>sxuOwR{!gRhX>$G zK}i4-I9dgOfB_b58;6MF%K2J@UVe`*U$(`D5%A{KvBFhXSc!%V1uK%h%gYNoH{xTL zX~H98AHTaa7e{<`S|+oG_Gk&aIL5zUz-Bw{rSQW{6S`I1U6!{W9UMc+P3r*RAI+f5K& zJeAh zWzo6ca}9M*O&_>%$)bM^wMxsaxjn|uS@E|SyNrjfL-d0*!=?8A!d^?-3RhCtGy2ry zKHN+{3LI4bi>|cX655=huy0YJ>i1Sl*8$}#ZwO9 z&Q?4B`D*z)xt@ar$q2Wu(NvHua%bFp=`j3maUbTFt#$n+IMZv;@U`nE7~g{;C|lBL zZ`41|(f8QAZL2JEc4eHktCqT#fus5(Fgo|FGm0h7du&`L!uM=u5{s-v&WF1-lLxJ| z#WhGHm-De;x|=>Z0>bCn-27Yj#`uNl0KJ4p#R~u}8W#>kiQb@#a7QuOobvJkpbEoI z@n7qfRbIS>3jjznv*ioY&_}I2r#c;z8ndG7;H!wp)UED*S5#P1EZWSINyHBwBgL8E zv;F1dm!%p?J14$CeJ#4OCen^`M{S+$RGynAUKg&9rbG)O?LXg>&ssGmBLuhOWNrp} z*Sa;Ol7A5KP)=-GW;K0fu%Q?Pjgh`36odE(1s*>B@5lx$ z^bY&>^4}dQ9sv(UApoUw&<%968`bvOd}4J%%3G?tYII5QI+yLS>P^WgR;F z0tn!gOOYhnvmUYc`<1fd>p7$T9OJ+LJZ(E?Tp^(F&n{^rEMo7Sgn&u_y>~e+Pd@Cy zmapF5smqZ~YhH4(0xb*$aV2+iWSNVoyttr6Qxk98r!jD16ko^B5Vhr_rvIs69_AHZ z82?69HRIM(%bV9c2Xneh;p+3(RO-OIgR;Hfn?7~?sragE+P4nqk}Vk*KjpQI>ezWT0(gKlCvoT@=GZa0!A#{Cx2rvqpkd zV!I6RwZILO*1mlke=GMpEpw zm!)Y?DV6m2QqRqI#8LlG01X%N=yr({nZEcoCONx4mB&jgClJKxod=Mlu{@PGitZy- zmd=pm3NV~SDKMicdCfjCMq`^5&EBo* z7e7e-%o@nbvb&>(r+X)1b+eH(4BZwAe$T^?nzCCG@jp9hm*DoW)$z!ZNC#zF(vrP- zoC@RkQoLgX(^cs9C=#Ae{o=_fRC0J8yjT$Fc$@)wv2XoJ2epLsNCs01K%E9Wffsp{ zzgIMTWozvD4{f;LN)RRzG)h86?+Y6GvS{5oPlu31@KaUi zhWsznpwy!DUxMQeQ>CZ39=c87aS1u~x9_~{<@J|^lK`Ft%;1JE@u6w&uvcpfdGu9D z$84HFz)S(AX_}^H#1#qvVBVUJ&RT>T^y-mW!fID-`rO_!)ylFzo4UUHQ<_+UKDedF z?*Um%4+BvLha`rFFJa=BW<%v$Xi1Ft4f>z}$X$`__Ax}&eu~a1c^Jp0E;%WaSKf^(^j#qe?KDS-d7l}6Xdv#?+-)6WLY3F*C$u^x$kY@N3s@D;4Y#(|PNAmO} zNt8_ogg1^_zXf4fz`3?9s=QqK=YU5q-;y=%NapRY1FEUHYtDM1XxwwMWc+KOm~i(3 z{I4q?<_;T+H1ZwPn#V&v<&ohxgf5m)Et zts{8i`nw;wEBH^R*Ee~1#D6wxNYixwxo=Ice_60;F`Z`hkMu3j=dbZFHjw-nRODCC=9bfGM-UM{S9e>5^DQJ5bPx;zP&VI3aE%XT- z0KhbjY07E%DFARKJ>}AHKJ&`2!|(+kugDhW1=EHoM-?jN+Xs>M zigZpEm$Smoj>+CzmR7`r;JquKKp$IZukD|SGo_2_EwLXO+z}_e6TRs;`LsyZvo@QY zlb$M)sv*Xul4D(^>h>JmphPH#n#Z14CjlM>bm)#=<6{o?pxRdQu#KJP2LKKL9@7rc zPh-^64*)1O4~#3bSlN17Y}Mwg;fLDbLzjoY@{EJ)Q{%hchzupW^DzEv9OlhW`moZG z{6+PhbuFtiIUK&+*BGiv4>JiXT?jY?&Ny(e>He0*;Igm*BKF6wD!JqCs!eTd`auaN#NhY2s%qm_DT4$}9ZTWd!u&lolj$(GyWhcY+bW-mFP?cXn}vNJ4`^wvYCO_$0_lO%6_ z#%}C2>ET=5{Zq?JN7F+{2v!iY1}SoS|Cp{%7a&+Jhdgwvv= z!xUQ{o6+T{Lil9t{B0B3j6Bw)L%JsUNUE0-Em@h1k2rbcK&?9Jh|{q~FpYp#$54{p zrrjeXR@Opo=ZBEtoWWbtqAt~3m%WdSH{EkE1VmgJfHvNK`)oD5rbF}8%McjBzI)(^*Q&kJvs zWx86INpH-^1=AM6P*%g5HZRvbkI!^#se%vPi>O5|=2)LMt9KVUY#XT>e`8}qN4p$C zws&v>_lan+tKExYyg25tkseP0$coI%*2^E>T{*ZoM;<)II7~zpsoSa-^gjhlIMPY0Y&-TOQ5eP`}|h!-y1y>KTpb+Xarcb~6~X8Pm)?Dw;_$G3Pi zEvc();l5CX#}A?*Hw71!zOADJyYDs!&LCXb^lX?z94!}a(%Q+$&ObXCcw&nh-G@Am0^j44dP#QM_gu_;rHwi9q#bLRv* zW*hFbJ<{GR>_F|!!%bv+zj0iNGVpk`(V(3zBFoQ1liM7{Y0x>m+>pQ6R2lNHIZNiR z_%CfgY^lMg!DOvsw_vai8UP*zH26+G>+?w4o)c{$5C1u^H=MvTaR30*n5JnIZJ+=E zwGX--3@SLG&Am?M)yW^MpZA|{jA;kvO&>MS#%N77)oLVvCM!(1Rqmb&$Fj0)eOANU zVf@&BUgi>(Z`B-0Z*|O5`_QmZ=J0zOx(?sXWCe6!hV6OxxHu*^OVK~XWpp5Z2H(V_ z&=xe#n@{*Za1K)$?uDr7!pEC~oGr;TYdft(TXZcUUFWRAxW&ht0*fx*IILV>HcLHc z?!FO!Chb~}R0jx$>sIWRKa#VWh)%zNuh_EF^4-f06`oR-7M(nl9Z>S)i1V2Hy0!(l zL>@fZv3;7?DKxl`xfUj%902|V^!Q5L^;y$)_OP15wUs=)5M2u_z`+mzW&qPPO{0hc z1pw(BW}1Qu{$KMuVGZR|cKGD5Ie+A_(q2yV$+IovnZ`B~^PcW_xAp^((VC|^l~aHI zIo9K1^xcX3xz=!PD-!J6-YbLRfH*r}c(NocrW>d0W0Fqm_#I2?@;C8(CetUnU+gXo z!lt}+ON&#iE9Z6X!D1Apt)sm4E4gMMm$J1)LX~%%8jyt0TYoSBvOAH;&Gcr`aG<5~ zUh3NnK9aq397@8@X~v$iz_!^S8A2Vms3a#8@5tEEpeCIbOdTM{%`ljPAYP2A1w=nx zi{C56Sllt<$SA$%;~6B+e#je5xwm@!2~l9Ow$f9 zrjf%>0l?4>!Sf%AKlsR`e|=98voVKW^aJSdwqvI}q7jZO>_ zYhI1kN0QAYWwZ@dd?((&O}`a?`2h3&P}RcKSugd)c4k^xWncN$m)i#!L@%>$!^!)6 zor+#H$<^?ZC!VB%5mJ-r<4^;+Jf~Rf0y=n4n>rew{hDOqhXZy`(n>VTWVt9GZ!AUg zSZ}=t#vAdxsX8ebUGCd_lHeCOCNOE!>e=<*>d&8rTb(Faj@f%bnc!lp72U2BeQ(-a z9jlF}o%zjJ7U7KXw;{6PBu{5&Qvd~Qk_7+&0001jNdN#A0002r7zc3>3jYB8{|Em9 z_x}U?`u_wNcqty6GKU>#A^|=HY~+P__iG(U6Ky3Ab$~uk0L&1A84$(}P)t)cehL8A zmK$&3puynzllLnk(xkkdKA*~79*{LIWpCAdx*XEDIUtP2tC}5y;JYdNHC#MR2LDQS zP?IK|cs8!x2;UNINn_I`KHc^;GUe{K+>mBx+o59M@710^Wbr7YgL5=FrzOe>xU_$H zC(}i{#mfn86lm)wHGcskt*NDduiPD2pwyEiE~p5RTJOZ$0^rE%(CsSAtz?QG;*4zEc_Gz%6$8< zb8;=a87I>R48Ol@J8jLM2i+$5)X4eNbH>(N%g>By!_Jx@r|ZeRaGK1UlH^PjsT*oDLsc(;(TpBZ zN`GU3!UNs}jQC1dz1DOaV+3u|wk_o0bI1_>fN2Mq#+XJ%6aZ}OHs;VR)2ZE2 z8F>*sX>Hc<3j(=w`{B-^?e0h0m|KlG<~-dp+&B+ET*nxt!jw#^M#G^9EtmIIMfkGh zn-soGv1kdK@Q|FLf7?XiqorG@)IB;dbW@jS%e^{4Fieo`EoF+Q#JiknY?tDWm!rIP z^3$gDQ#5}xgqos`QFS$0%PfKtAP0T^qe?c1uwA^dN1Iv+C)vU16Gk2T*2f;D#9Ci7 zp>;vY1}L25t~qzhl(edKshfm5OKHw)f8E=-@8t+8p*m=)K>-!l^rA!r^lJpBN7@=0 zFK?zj6vCVU9tEuUMBMwc&ScK1=@-xz^6&&5>ksfaW}v(oz_bI5dJ~U80RVPo$j%IW zpKonnK9bmdnqqlB=i|8^{HqrPA{tJE6#GR z%N{2%BAIf9*Q+1RuJ8~t7elVg!9St>LxYH3gSYmyyIlmGhaeR`cgliC-*ST!^`(fKa=d;FvH6m*1Dw|F_y~Y? zD#6bHG#&-4?9AHZvpQNCHfgA>xa?3bzK;a6TY9BF}q#fwyrEz<3o3C>gv3Gdm2wO z{_01CG$QG~^{Bj8pU%8xLN)WPtK5{>6I%7sHqf13qT24aU6QEa)`w*d(p@hAS{(CY zE3ZT67redc;Avef(T-qtSIBCznwwW-)fMbjd5=T8NnDGu)r~K6y_lv+S1sEWNh?JY z(CRVKN-xdRw>DEBcHw&*Mk*?M_mg#9CXddB39? z@(^#>=zo(z08^#cyti_TQUpb{j7aBW&TCYMWma`6Diuk2MHPleH44d#+D zsfIUuR?WEFKV&MaqRk(LYgdGyBv@*hrqQ!$%SpTcZ6;AD!pljflLg)ctn@C_NvL?{R_0XN&Z5d8i3_u%wKhRD8^tI z^Q%Y0Qn~-%XR|dgdz)pEC*9lp7kiU2oF^^no;uQ}y)7a2Cy$R!g2KL2h}bV$H7FEg zfwZ1C`g@eXHeIAG`xT8WLG8bSLUZ2x4l$;Rc(VX_X*4@mBob2FEKA>_Wg?u6?2@Q; zsm>TEYu~mdAF~uZxDx+U`@9LW%`kFTUP60B3hj_*u?joYTfF6a1-UPbbq;l=`E-jF zf@s_6I{*`-ZZ+GM;G;Nobc>gEf~yM+Ilk4IUoYSq06qmA=!w3^YuQONt;E_w9)1~M z_Xg2GF&zNVjAl$zk$wOG$l-uNm%;k;TFxTzxwl44)xB$%#U}aV_hjB=&pt85RMu!_ z+t?kNcWwHScxD~rk)_^kotjV*KDX%Zum6@stg<@1%HSP^Nu;ez*_wGFn@l(!{SG)6$y+K(7D#bH z>vi2D+WWHYk&DqJCUwT6qcW!+}#`KF}dVTfdw%5j*KR2d(m}znKK7Eo)^!fAi zt+7p7Y?J=p{_-lksjKdfh2O9G&ovfY6uiEQUS}zoK(^e%k}RN=+^OqB?3!nZ(!9vL zW?uTkqypi#Dm=+^ZoRUvBbdLa%=trSk*8kfO};Mjm+%rWDnV-ojl1?PdnF=5%(D0@iJ*n-g|UA1xWs? xpl4z_d^EOHZkBby#1F!qM9Ef0ssP>u{MmXwxBwrt8La>S00000K>M#sCjk{*w>1C& diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 0885951ae33..1c5ef38da2a 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -70,8 +70,6 @@ canShuttle: false title: comms-console-announcement-title-station-ai color: "#5ed7aa" - global: true # Corvax-Announcements - sound: /Audio/Corvax/Announcements/aiannounce.ogg # Corvax-Announcements - type: HolographicAvatar layerData: - sprite: Mobs/Silicon/station_ai.rsi From cba8bbe9f6a05fb76df836b8e1a0d4f0bd16f1a1 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:05:57 +0100 Subject: [PATCH 101/103] Update borg_modules.ftl (#2890) --- .../entities/objects/specific/robotics/borg_modules.ftl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl index 7c80e538866..bfc58af21bb 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/robotics/borg_modules.ftl @@ -68,6 +68,7 @@ ent-BorgModuleHarvesting = урожайный модуль киборга .desc = { ent-BaseBorgModule.desc } ent-BorgModuleClowning = клоунский модуль киборга .desc = { ent-BaseBorgModule.desc } +# Corvax-HiddenDesc-Start ent-BorgModuleSyndicateWeapon = кроваво-красный модуль киборга .desc = { ent-BaseBorgModule.desc } .suffix = оружейный модуль киборга @@ -83,3 +84,4 @@ ent-BorgModuleL6C = кроваво-красный модуль киборга ent-BorgModuleMartyr = кроваво-красный модуль киборга .desc = { ent-BaseBorgModule.desc } .suffix = модуль киборга Мученик +# Corvax-HiddenDesc-End From e1291d035fa551c9ec8aab7af365cbf1839f5438 Mon Sep 17 00:00:00 2001 From: Deerstop Date: Sat, 25 Jan 2025 07:24:46 +1100 Subject: [PATCH 102/103] Elkridge Depot fixes and changes (#34539) * fixed grav gen room, gave atmos room to branch off, replaced AME controller crate with AME controller * added rust to maints, expanded atmos, expanded bar, expanded cap bedroom, fixed some tiles under doors, removed some gamer loot * removed interrogator lamp and some more gamer loot * fixed some more tiles under doors, replaced intercomall with intercomcommand in bridge and vault * added clothing drobes to arrivals, added bin to HoP, more stuff i forgot * i forgot to move the file from /bin to /resources... --- Resources/Maps/elkridge.yml | 6381 +++++++++++++++++++++-------------- 1 file changed, 3872 insertions(+), 2509 deletions(-) diff --git a/Resources/Maps/elkridge.yml b/Resources/Maps/elkridge.yml index 2ac152f2223..f863e489916 100644 --- a/Resources/Maps/elkridge.yml +++ b/Resources/Maps/elkridge.yml @@ -64,11 +64,11 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADAQAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADIAAAAAABIAAAAAACIAAAAAADggAAAAAAIAAAAAADIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAGIAAAAAACIAAAAAABIAAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAfgAAAAACIAAAAAABIAAAAAABIAAAAAADggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAACIAAAAAACfgAAAAADIAAAAAAAfgAAAAACfgAAAAAABwAAAAACIAAAAAADIAAAAAABIAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAAAIAAAAAAD + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADAQAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADggAAAAAAIAAAAAADIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAACIAAAAAACfgAAAAADIAAAAAAAfgAAAAACfgAAAAAABwAAAAACIAAAAAADIAAAAAABIAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAAAIAAAAAAD version: 6 -1,-1: ind: -1,-1 - tiles: YgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAABAQAAAAAAYgAAAAAAIAAAAAACggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAACAQAAAAAAYgAAAAACIAAAAAABAQAAAAAAYgAAAAACYgAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAAAAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAcAAAAAAAIAAAAAACIAAAAAABggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAAgAAAAAAggAAAAAADQAAAAABYgAAAAAAYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAACAwAAAAADggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAgAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACfgAAAAADfgAAAAADIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAACfgAAAAADBwAAAAAGIAAAAAABggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAABfgAAAAADBwAAAAAEAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAABBwAAAAABfgAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADIAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACAQAAAAAAAQAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAAAIAAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACYgAAAAAAYgAAAAACAQAAAAAAYgAAAAABYgAAAAACCwAAAAAACwAAAAAACwAAAAAAYgAAAAAAIAAAAAACAQAAAAAAIAAAAAABCwAAAAAAIAAAAAADfgAAAAADfgAAAAAA + tiles: YgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAABAQAAAAAAYgAAAAAAIAAAAAACggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAACAQAAAAAAYgAAAAACIAAAAAABAQAAAAAAYgAAAAACYgAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAAAAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAcAAAAAAAIAAAAAACIAAAAAABggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAAgAAAAAAggAAAAAADQAAAAABYgAAAAAAYgAAAAAAAQAAAAAAggAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAgAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAAQAAAAAAggAAAAAABwAAAAAAfgAAAAAAfgAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAAwAAAAAABwAAAAAAfgAAAAAAfgAAAAABIAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADIAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACAQAAAAAAAQAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAAAIAAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACYgAAAAAAYgAAAAACAQAAAAAAYgAAAAABYgAAAAACCwAAAAAACwAAAAAACwAAAAAAYgAAAAAAIAAAAAACAQAAAAAAIAAAAAABCwAAAAAAIAAAAAADfgAAAAADfgAAAAAA version: 6 1,0: ind: 1,0 @@ -88,7 +88,7 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: ggAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAABwAAAAAGfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAfgAAAAADBwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAABgAAAAACcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACcAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAIAAAAAAAcAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAABBQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAAggAAAAAABwAAAAAGggAAAAAAAQAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAACBQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAfgAAAAACBwAAAAADDQAAAAAA + tiles: ggAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAABwAAAAAGfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAfgAAAAADBwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAABgAAAAACcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACcAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAIAAAAAAAcAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAABBQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAAggAAAAAABwAAAAAGggAAAAAAAQAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAACBQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAfgAAAAACBwAAAAADDQAAAAAA version: 6 2,0: ind: 2,0 @@ -124,11 +124,11 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAACAQAAAAAAYgAAAAABYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACAQAAAAAAIAAAAAABIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAACAQAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAABwAAAAADfgAAAAACIAAAAAADIAAAAAABIAAAAAABggAAAAAAYgAAAAABYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAABBwAAAAABIAAAAAACIAAAAAADIAAAAAACggAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAfgAAAAADfgAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAYgAAAAADYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAACAQAAAAAAYgAAAAABYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACAQAAAAAAIAAAAAABIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAACAQAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAABwAAAAADfgAAAAACIAAAAAADIAAAAAABIAAAAAABggAAAAAAYgAAAAABYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAABBwAAAAABIAAAAAACIAAAAAADIAAAAAACggAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAfgAAAAADfgAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAYgAAAAADYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAAABwAAAAADfgAAAAABggAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAABwAAAAAFfgAAAAABBwAAAAAGggAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAEBwAAAAAFAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAFfgAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAABcAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAADggAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAADAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAC + tiles: AgAAAAAAAAAAAAAAAgAAAAAAggAAAAAABwAAAAAAfgAAAAAABwAAAAADfgAAAAABggAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAABwAAAAAABwAAAAAFfgAAAAABBwAAAAAGggAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAEBwAAAAAFAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAFfgAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAABcAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAADggAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAADAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAC version: 6 1,1: ind: 1,1 @@ -140,7 +140,7 @@ entities: version: 6 1,-3: ind: 1,-3 - tiles: ggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: ggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -168,7 +168,7 @@ entities: version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,-4: ind: 2,-4 @@ -184,7 +184,7 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAABZAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAZAAAAAAAZAAAAAADZAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAZAAAAAAAZAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAABZAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAZAAAAAAAZAAAAAADZAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAZAAAAAAAZAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAA version: 6 -1,-4: ind: -1,-4 @@ -268,7 +268,7 @@ entities: version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAADDgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAACYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAAADgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAABDQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAADggAAAAAAggAAAAAABgAAAAADggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAADDgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAACYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAAADgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAABDQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAADggAAAAAAggAAAAAABgAAAAADggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA version: 6 -2,3: ind: -2,3 @@ -276,7 +276,7 @@ entities: version: 6 1,3: ind: 1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 @@ -284,11 +284,11 @@ entities: version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 @@ -412,6 +412,11 @@ entities: 10566: 56,-27 10567: 50,-27 10568: 47,-24 + 11079: 28,-28 + 11080: 28,-29 + 11489: 26,-42 + 11490: 27,-42 + 11491: 28,-42 - node: color: '#D4D4D496' id: BotGreyscale @@ -467,6 +472,7 @@ entities: 8320: -13,26 8321: -17,26 8322: -21,23 + 11081: 28,-30 - node: angle: 1.5707963267948966 rad color: '#D4D4D496' @@ -515,7 +521,6 @@ entities: 805: -25,-27 836: -22,-24 1426: -20,-14 - 6837: -5,-3 - node: color: '#9FED5896' id: BrickTileDarkEndN @@ -596,7 +601,6 @@ entities: 1424: -17,-14 6735: 4,-3 6736: 5,-3 - 6836: -4,-3 7569: 1,-3 7570: 2,-3 7571: 3,-3 @@ -620,6 +624,7 @@ entities: 6720: -5,2 6833: -5,-2 7502: -22,-22 + 11591: -5,-3 - node: color: '#334E6DC8' id: BrickTileSteelCornerNe @@ -645,9 +650,9 @@ entities: color: '#79150096' id: BrickTileSteelCornerNe decals: - 233: 6,-5 - 234: 7,-6 - 7579: 3,-5 + 11594: 6,-5 + 11595: 7,-6 + 11596: 3,-5 - node: color: '#8C347F96' id: BrickTileSteelCornerNe @@ -729,7 +734,7 @@ entities: color: '#79150096' id: BrickTileSteelCornerNw decals: - 235: 5,-5 + 11597: 5,-5 - node: color: '#8C347F96' id: BrickTileSteelCornerNw @@ -808,9 +813,9 @@ entities: color: '#79150096' id: BrickTileSteelCornerSe decals: - 239: 7,-7 - 7574: 2,-8 - 7575: 3,-7 + 11598: 7,-7 + 11599: 3,-7 + 11600: 2,-8 - node: color: '#9FED5896' id: BrickTileSteelCornerSe @@ -878,8 +883,7 @@ entities: color: '#79150096' id: BrickTileSteelCornerSw decals: - 242: 5,-7 - 7572: 0,-8 + 11601: 5,-7 - node: color: '#8C347F96' id: BrickTileSteelCornerSw @@ -985,8 +989,7 @@ entities: color: '#79150096' id: BrickTileSteelInnerNe decals: - 259: 6,-6 - 7576: 3,-6 + 11607: 3,-6 - node: color: '#8C347F96' id: BrickTileSteelInnerNe @@ -1058,7 +1061,7 @@ entities: color: '#79150096' id: BrickTileSteelInnerNw decals: - 254: 5,-6 + 11606: 5,-6 - node: color: '#8C347F96' id: BrickTileSteelInnerNw @@ -1119,8 +1122,8 @@ entities: color: '#79150096' id: BrickTileSteelInnerSe decals: - 7577: 2,-7 - 7578: 3,-6 + 11608: 2,-7 + 11609: 3,-6 - node: color: '#9FED5896' id: BrickTileSteelInnerSe @@ -1182,7 +1185,7 @@ entities: color: '#79150096' id: BrickTileSteelInnerSw decals: - 258: 5,-6 + 11610: 5,-6 - node: color: '#8C347F96' id: BrickTileSteelInnerSw @@ -1382,8 +1385,8 @@ entities: color: '#79150096' id: BrickTileSteelLineN decals: - 7580: 1,-5 - 7581: 2,-5 + 11611: 1,-5 + 11612: 2,-5 - node: color: '#9FED5896' id: BrickTileSteelLineN @@ -1509,8 +1512,10 @@ entities: color: '#79150096' id: BrickTileSteelLineS decals: - 245: 6,-7 - 7573: 1,-8 + 11602: 6,-7 + 11603: -1,-8 + 11604: 0,-8 + 11605: 1,-8 - node: color: '#8C347F96' id: BrickTileSteelLineS @@ -2623,6 +2628,105 @@ entities: 10630: 57,-20 10631: 57,-21 10632: 57,-22 + - node: + cleanable: True + color: '#D4D4D496' + id: Dirt + decals: + 11727: 11,-17 + 11728: 13,-18 + 11729: 12,-19 + 11730: -3,-8 + 11731: -5,-6 + 11732: -3,-5 + 11733: -5,-4 + 11734: -6,-5 + 11735: -2,6 + 11736: 1,6 + 11737: -1,4 + 11738: 3,4 + 11739: 1,3 + 11740: 4,6 + 11741: -1,10 + 11742: 0,9 + 11743: 4,8 + 11744: 3,9 + 11745: -18,8 + 11746: -17,7 + 11747: -18,6 + 11749: -26,0 + 11750: -28,-4 + 11751: -29,-3 + 11752: -28,-2 + 11753: -26,-21 + 11754: -24,-20 + 11755: -24,-23 + 11756: -26,-23 + 11757: -21,-27 + 11758: -19,-26 + 11759: -20,-25 + 11760: -37,-28 + 11761: -36,-26 + 11762: -37,-24 + 11763: -36,-22 + 11764: -34,-21 + 11765: -33,-23 + 11766: -34,-25 + 11767: -33,-27 + 11768: -29,-34 + 11769: -28,-36 + 11770: -32,-43 + 11771: -31,-42 + 11772: -29,-43 + 11773: -28,-42 + 11774: -26,-42 + 11775: -25,-44 + 11776: -13,-36 + 11777: -11,-37 + 11778: -13,-39 + 11779: -12,-40 + 11780: -11,-39 + 11781: -1,-34 + 11782: 1,-35 + 11783: 0,-33 + 11784: 2,-34 + 11785: 3,-33 + 11786: 4,-34 + 11787: 3,-35 + 11788: 41,-15 + 11789: 42,-16 + 11790: 41,-17 + 11791: -2,1 + 11792: -1,0 + 11793: -2,-1 + 11794: 2,-1 + 11795: 3,0 + 11796: 4,1 + 11797: 4,-1 + 11798: 0,35 + 11799: 1,34 + 11800: 2,35 + 11801: 36,27 + 11802: 38,26 + 11803: 36,25 + 11804: 37,26 + 11805: 38,24 + 11806: 30,26 + 11807: 31,25 + 11808: 32,26 + 11809: 47,-2 + 11810: 45,-1 + 11811: 46,0 + 11812: 55,-2 + 11813: 56,-1 + 11814: 56,1 + 11815: 57,0 + 11816: 58,1 + 11817: 59,0 + 11818: 59,-1 + 11819: 58,-2 + 11824: -28,1 + 11825: -27,0 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2661,9 +2765,7 @@ entities: 1748: 10,8 1749: 2,9 1751: -7,-8 - 1753: -4,-11 1754: -1,-10 - 1755: -5,-5 1757: 10,-8 1758: 15,-4 2087: -18,-6 @@ -2774,7 +2876,6 @@ entities: 2736: 6,22 2744: 3,38 2751: -22,55 - 2799: -5,-11 2850: -6,-38 2924: -25,-27 2926: -22,-19 @@ -2890,7 +2991,6 @@ entities: 5175: -2,20 5176: -4,19 5233: 2,-4 - 5240: -4,-10 5245: 28,-4 5246: 26,-2 5247: 29,-2 @@ -2955,9 +3055,6 @@ entities: 6159: 26,35 6161: 27,37 6214: 10,-19 - 6225: 22,-36 - 6226: 23,-38 - 6227: 24,-40 6228: 38,-40 6230: 40,-36 6266: -41,-10 @@ -2992,10 +3089,6 @@ entities: 6567: 1,-21 6568: 2,-23 6584: 30,-16 - 7585: 0,-8 - 7586: 1,-7 - 7587: 1,-5 - 7588: 3,-6 7619: 39,7 7620: 40,9 7626: 34,3 @@ -3051,7 +3144,6 @@ entities: 8801: 20,38 8802: 21,37 8821: 52,32 - 8822: -4,-3 8823: -2,-2 8824: -3,-1 8825: -4,2 @@ -3322,20 +3414,272 @@ entities: 10238: -29,-32 11070: -10,-19 11071: -7,-17 + 11492: 26,-42 + 11493: 28,-42 + 11494: 37,-29 + 11495: 38,-27 + 11496: 40,-28 + 11497: 40,-30 + 11504: 9,-7 + 11505: 11,-6 + 11506: 12,-8 + 11507: 16,-4 + 11508: 13,-11 + 11509: 12,-10 + 11510: 6,-10 + 11511: 4,-9 + 11512: 7,-9 + 11526: 6,41 + 11527: 9,41 + 11531: 23,43 + 11532: 16,19 + 11533: 17,27 + 11534: 19,26 + 11535: 17,31 + 11536: 19,30 + 11548: 26,30 + 11549: 26,32 + 11550: 28,31 + 11551: 29,32 + 11552: 33,29 + 11553: 31,28 + 11554: 28,27 + 11555: 28,25 + 11619: -1,-8 + 11620: -1,-5 + 11621: 1,-6 + 11622: 3,-5 + 11634: 5,-7 + 11635: 7,-6 + 11641: -6,-11 + 11642: -4,-11 + 11645: 24,2 + 11646: 23,-3 + 11647: 27,0 + 11648: 33,1 + 11649: 40,-1 + 11650: 42,1 + 11651: 43,2 + 11652: 41,4 + 11653: 47,2 + 11654: 45,2 + 11655: 45,4 + 11656: 46,-2 + 11657: 47,0 + 11658: 55,-1 + 11659: 58,-1 + 11660: 57,-3 + 11661: 48,6 + 11662: 48,9 + 11663: 50,7 + 11664: 51,9 + 11665: 50,8 + 11666: 45,12 + 11667: 48,12 + 11668: 44,8 + 11669: 45,16 + 11670: 44,17 + 11671: 43,19 + 11672: 44,20 + 11673: 46,18 + 11674: 48,17 + 11675: 46,22 + 11676: 47,23 + 11677: 47,28 + 11678: 46,27 + 11679: 47,26 + 11680: 40,24 + 11681: 41,25 + 11682: 37,27 + 11683: 37,24 + 11684: 36,21 + 11685: 42,22 + 11686: 43,25 + 11687: 42,28 + 11688: 34,21 + 11689: 38,31 + 11690: 42,31 + 11691: 43,29 + 11692: 46,31 + 11693: 49,30 + 11694: 50,31 + 11695: 51,32 + 11696: 52,30 + 11718: 39,-5 + 11719: 40,-7 + 11720: 45,-7 + 11726: 24,-15 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 1656: 5,-6 + 11082: 19,-36 + 11083: 20,-38 + 11084: 21,-40 + 11094: 38,-36 + 11095: 39,-38 + 11096: 39,-40 + 11120: 27,-41 + 11121: 29,-38 + 11122: 30,-35 + 11123: 27,-34 + 11124: 33,-42 + 11125: 34,-39 + 11126: 30,-33 + 11127: 30,-29 + 11128: 31,-28 + 11129: 29,-30 + 11149: 23,-24 + 11150: 25,-26 + 11151: 25,-24 + 11152: 24,-21 + 11153: 23,-19 + 11154: 28,-18 + 11155: 29,-21 + 11156: 27,-23 + 11157: 29,-25 + 11175: 22,-28 + 11176: 23,-29 + 11186: 42,-26 + 11187: 44,-25 + 11188: 44,-29 + 11189: 43,-28 + 11190: 47,-26 + 11191: 50,-28 + 11192: 47,-28 + 11193: 51,-26 + 11194: 54,-28 + 11195: 55,-26 + 11196: 50,-21 + 11197: 53,-20 + 11198: 54,-22 + 11199: 46,-21 + 11200: 47,-19 + 11201: 45,-17 + 11202: 46,-14 + 11203: 48,-16 + 11204: 47,-17 + 11205: 49,-14 + 11206: 53,-15 + 11207: 55,-14 + 11208: 56,-16 + 11209: 58,-14 + 11210: 60,-16 + 11211: 58,-17 + 11212: 58,-12 + 11213: 50,-12 + 11214: 47,-12 + 11215: 59,-21 + 11216: 60,-20 + 11217: 60,-17 + 11218: 58,-23 + 11219: 60,-25 + 11220: 58,-26 + 11221: 59,-28 + 11222: 62,-27 + 11223: 62,-24 + 11224: 62,-18 + 11225: 62,-15 + 11226: 50,-30 + 11227: 49,-30 + 11228: 58,-30 + 11229: 53,-27 + 11230: 58,-28 + 11278: 43,-9 + 11279: 39,-13 + 11284: 33,-8 + 11301: 21,-20 + 11302: 18,-14 + 11303: 20,-15 + 11308: 12,-22 + 11309: 16,-28 + 11310: 17,-31 + 11311: 19,-32 + 11316: 14,-31 + 11317: 12,-30 + 11321: 9,-27 + 11322: 10,-26 + 11329: 5,-20 + 11330: 13,-28 + 11331: -9,-39 + 11332: -7,-42 + 11333: -11,-43 + 11334: -13,-46 + 11335: -12,-47 + 11336: -13,-48 + 11337: -10,-46 + 11343: -16,-40 + 11345: -20,-49 + 11346: -19,-50 + 11347: -16,-50 + 11356: -27,-46 + 11357: -23,-47 + 11358: -34,-47 + 11359: -35,-46 + 11360: -38,-48 + 11361: -37,-46 + 11362: -38,-44 + 11363: -40,-43 + 11364: -39,-41 + 11365: -36,-42 + 11380: -38,-15 + 11381: -36,-13 + 11382: -32,-14 + 11386: -27,-13 + 11387: -25,-13 + 11388: -25,-14 + 11390: -23,3 + 11391: -24,4 + 11392: -21,6 + 11393: -24,8 + 11394: -20,3 + 11395: -17,4 + 11396: -13,5 + 11397: -23,9 + 11406: -22,12 + 11408: -30,27 + 11409: -29,29 + 11410: -25,28 + 11411: -21,30 + 11412: -18,28 + 11413: -22,33 + 11414: -19,32 + 11415: -14,31 + 11416: -13,29 + 11425: -23,36 + 11426: -22,39 + 11427: -24,46 + 11428: -24,48 + 11429: -23,47 + 11430: -22,46 + 11437: -23,56 + 11438: -24,53 + 11439: -20,55 + 11443: -12,58 + 11444: -11,57 + 11445: -9,57 + 11452: -4,50 + 11453: -8,47 + 11454: -4,45 + 11461: -2,39 + 11468: 1,32 + 11469: 2,29 + 11470: 3,30 + 11475: -4,25 + 11478: -3,32 + 11479: -1,12 + 11480: -2,14 + 11484: 6,13 + 11485: 8,14 + 11486: 11,14 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 1665: 5,-5 1668: 6,10 1679: -14,11 1680: -15,9 @@ -3748,9 +4092,6 @@ entities: 6213: 9,-19 6217: 9,-18 6224: 21,-5 - 6237: 23,-36 - 6238: 24,-38 - 6239: 23,-40 6240: 40,-38 6241: 39,-36 6272: -41,-8 @@ -3780,8 +4121,6 @@ entities: 6577: 1,-26 6578: 1,-26 6579: 0,-27 - 7593: 2,-7 - 7594: 1,-6 7622: 40,8 7623: 34,5 7624: 35,3 @@ -4046,6 +4385,114 @@ entities: 10239: -29,-31 10240: -24,-35 11074: -7,-18 + 11501: 37,-27 + 11502: 40,-29 + 11522: 10,-7 + 11523: 8,-10 + 11525: 7,13 + 11544: 22,31 + 11545: 17,30 + 11546: 18,27 + 11547: 21,28 + 11559: 29,31 + 11560: 27,30 + 11627: 0,-7 + 11628: 2,-6 + 11629: 2,-7 + 11630: 0,-5 + 11638: 5,-6 + 11639: 6,-7 + 11643: -5,-11 + 11715: 30,0 + 11716: 24,1 + 11717: 56,-2 + 11722: 40,-5 + 11723: 45,-6 + 11724: 39,-7 + 11725: 23,-16 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 11088: 21,-36 + 11089: 19,-38 + 11090: 20,-40 + 11091: 38,-38 + 11092: 39,-36 + 11093: 40,-40 + 11130: 28,-34 + 11131: 30,-36 + 11132: 28,-37 + 11133: 27,-39 + 11134: 30,-40 + 11135: 26,-41 + 11136: 25,-36 + 11137: 25,-33 + 11138: 34,-33 + 11139: 34,-37 + 11140: 33,-39 + 11141: 34,-41 + 11142: 31,-42 + 11143: 30,-39 + 11144: 35,-31 + 11145: 37,-32 + 11146: 39,-31 + 11147: 39,-29 + 11148: 33,-28 + 11166: 25,-25 + 11167: 27,-24 + 11168: 24,-23 + 11169: 23,-21 + 11170: 28,-21 + 11171: 29,-24 + 11172: 29,-26 + 11249: 52,-21 + 11250: 53,-18 + 11251: 46,-16 + 11252: 46,-23 + 11253: 46,-27 + 11254: 50,-26 + 11255: 55,-28 + 11256: 62,-26 + 11257: 59,-23 + 11258: 58,-20 + 11259: 59,-16 + 11260: 62,-16 + 11261: 55,-15 + 11262: 52,-14 + 11281: 42,-9 + 11282: 33,-14 + 11283: 31,-11 + 11286: 32,-8 + 11318: 13,-31 + 11319: 12,-26 + 11320: 12,-23 + 11341: -17,-39 + 11342: -16,-41 + 11350: -19,-49 + 11351: -17,-49 + 11372: -38,-39 + 11373: -38,-47 + 11374: -33,-47 + 11375: -40,-36 + 11383: -43,-16 + 11384: -37,-15 + 11385: -27,-14 + 11400: -23,4 + 11401: -23,8 + 11421: -12,31 + 11422: -11,32 + 11434: -24,54 + 11435: -23,53 + 11436: -21,55 + 11455: -4,46 + 11456: -5,50 + 11463: -2,38 + 11464: -5,34 + 11465: -3,33 + 11466: -2,32 - node: color: '#FFFFFFFF' id: DirtLight @@ -4261,7 +4708,6 @@ entities: 3260: 41,22 3267: -5,35 3268: 0,24 - 3295: 7,-6 4215: -9,30 4216: -7,32 4263: 12,30 @@ -4307,7 +4753,6 @@ entities: 5145: -26,31 5159: -11,24 5170: -3,21 - 5239: -5,-10 5253: 28,-2 5254: 29,-4 5323: -44,-13 @@ -4325,7 +4770,6 @@ entities: 6038: 17,0 6168: 27,36 6242: 39,-36 - 6243: 22,-40 6275: -39,-8 6304: -26,-33 6496: 44,6 @@ -4356,7 +4800,6 @@ entities: 8858: 0,-2 8859: 4,2 8860: 5,-2 - 8861: -5,-3 8895: -12,0 8896: -9,2 8897: -9,-2 @@ -4477,6 +4920,66 @@ entities: 10194: 10,23 10233: -8,-16 11075: -10,-17 + 11503: 37,-30 + 11561: 26,31 + 11562: 34,29 + 11631: 0,-6 + 11632: -1,-7 + 11633: 3,-6 + 11640: 6,-6 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 11173: 26,-25 + 11174: 22,-29 + 11177: 27,-33 + 11178: 29,-35 + 11179: 33,-34 + 11180: 28,-38 + 11181: 31,-41 + 11182: 25,-38 + 11183: 22,-32 + 11184: 33,-27 + 11185: 37,-31 + 11263: 54,-20 + 11264: 56,-21 + 11265: 48,-17 + 11266: 47,-21 + 11267: 43,-26 + 11268: 55,-30 + 11269: 54,-27 + 11270: 60,-28 + 11271: 59,-24 + 11272: 60,-21 + 11273: 49,-20 + 11274: 41,-19 + 11275: 33,-18 + 11276: 31,-14 + 11277: 40,-10 + 11287: 32,-7 + 11304: 20,-14 + 11305: 16,-22 + 11306: 17,-25 + 11307: 12,-24 + 11352: -18,-46 + 11353: -18,-50 + 11354: -24,-46 + 11355: -28,-45 + 11402: -24,5 + 11403: -24,9 + 11404: -20,6 + 11405: -21,12 + 11423: -14,32 + 11424: -23,37 + 11441: -22,54 + 11442: -13,57 + 11457: -5,51 + 11458: -5,49 + 11459: -3,49 + 11460: -2,37 - node: color: '#FFFFFFFF' id: DirtMedium @@ -4508,8 +5011,6 @@ entities: 1999: -14,7 2004: -26,12 2006: -14,4 - 2019: 5,-5 - 2020: 6,-5 2024: 6,9 2025: 1,10 2028: 2,16 @@ -4672,7 +5173,6 @@ entities: 5154: -11,25 5172: -2,21 5173: -2,19 - 5229: 6,-6 5241: 5,-10 5242: 14,-4 5255: 27,-4 @@ -4726,9 +5226,6 @@ entities: 6160: 26,36 6162: 27,37 6163: 26,34 - 6231: 24,-36 - 6232: 22,-40 - 6233: 22,-38 6234: 40,-40 6235: 38,-38 6236: 38,-36 @@ -4761,10 +5258,6 @@ entities: 6571: 2,-26 6572: 0,-27 6573: 0,-21 - 7589: 2,-6 - 7590: 3,-5 - 7591: 2,-8 - 7592: 3,-7 7621: 40,7 7629: 38,4 8221: -16,20 @@ -5010,6 +5503,169 @@ entities: 10204: -9,22 11072: -10,-18 11073: -7,-19 + 11498: 37,-28 + 11499: 40,-27 + 11500: 27,-42 + 11516: -2,-10 + 11517: 7,-10 + 11518: 6,-9 + 11519: 9,-6 + 11520: 12,-7 + 11521: 13,-10 + 11528: 7,41 + 11529: 10,41 + 11530: 23,42 + 11537: 19,27 + 11538: 18,30 + 11539: 16,20 + 11540: 22,28 + 11541: 21,31 + 11542: 23,32 + 11543: 24,34 + 11556: 27,31 + 11557: 24,31 + 11558: 27,25 + 11623: 0,-8 + 11624: 2,-8 + 11625: 3,-7 + 11626: 0,-4 + 11636: 5,-5 + 11637: 7,-7 + 11644: -6,-10 + 11697: 48,31 + 11698: 50,30 + 11699: 47,27 + 11700: 46,23 + 11701: 40,25 + 11702: 41,29 + 11703: 40,31 + 11704: 36,29 + 11705: 36,22 + 11706: 42,20 + 11707: 49,17 + 11708: 48,14 + 11709: 46,12 + 11710: 48,7 + 11711: 44,7 + 11712: 47,3 + 11713: 42,2 + 11714: 36,1 + 11721: 45,-5 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 11085: 19,-40 + 11086: 21,-38 + 11087: 20,-36 + 11097: 38,-40 + 11098: 40,-38 + 11099: 40,-36 + 11100: 26,-33 + 11101: 28,-36 + 11102: 31,-34 + 11103: 28,-33 + 11104: 31,-37 + 11105: 28,-39 + 11106: 26,-38 + 11107: 29,-42 + 11108: 32,-41 + 11109: 31,-40 + 11110: 34,-38 + 11111: 34,-27 + 11112: 33,-29 + 11113: 36,-32 + 11114: 40,-31 + 11115: 38,-29 + 11116: 27,-28 + 11117: 25,-29 + 11118: 24,-32 + 11119: 22,-31 + 11158: 26,-26 + 11159: 27,-25 + 11160: 24,-25 + 11161: 24,-22 + 11162: 23,-20 + 11163: 24,-18 + 11164: 29,-18 + 11165: 28,-22 + 11231: 45,-26 + 11232: 48,-27 + 11233: 47,-23 + 11234: 49,-21 + 11235: 57,-20 + 11236: 52,-22 + 11237: 45,-15 + 11238: 51,-16 + 11239: 54,-15 + 11240: 58,-15 + 11241: 59,-19 + 11242: 60,-27 + 11243: 57,-30 + 11244: 47,-30 + 11245: 45,-28 + 11246: 44,-26 + 11247: 40,-23 + 11248: 40,-19 + 11280: 40,-12 + 11285: 32,-6 + 11312: 12,-31 + 11313: 13,-30 + 11314: 14,-32 + 11315: 15,-31 + 11323: 9,-31 + 11324: 10,-32 + 11325: 8,-29 + 11326: 6,-32 + 11327: 4,-31 + 11328: 5,-26 + 11338: -13,-47 + 11339: -11,-46 + 11340: -13,-43 + 11344: -15,-40 + 11348: -17,-50 + 11349: -18,-49 + 11366: -40,-42 + 11367: -38,-41 + 11368: -37,-44 + 11369: -34,-39 + 11370: -37,-38 + 11371: -40,-39 + 11376: -40,-35 + 11377: -43,-17 + 11378: -43,-15 + 11379: -42,-16 + 11389: -25,-12 + 11398: -23,7 + 11399: -24,3 + 11407: -20,12 + 11417: -28,29 + 11418: -20,30 + 11419: -11,31 + 11420: -12,29 + 11431: -23,46 + 11432: -22,48 + 11433: -22,38 + 11440: -21,54 + 11446: -10,57 + 11447: -11,54 + 11448: -15,56 + 11449: -7,56 + 11450: -6,57 + 11451: -8,52 + 11462: -2,35 + 11471: 2,30 + 11472: 3,27 + 11473: 3,27 + 11474: -1,25 + 11476: 0,25 + 11481: -1,14 + 11482: 2,12 + 11483: 3,13 + 11487: 10,14 + 11488: 3,13 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -5081,6 +5737,7 @@ entities: decals: 6880: -2,1 6881: 2,1 + 11614: -1,-5 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe @@ -5106,17 +5763,16 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkInnerNw decals: - 7584: 1,-8 7816: 5,2 8292: -19,24 8293: -19,20 8361: -24,14 + 11618: 1,-5 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSe decals: 6821: 6,2 - 7796: -4,-3 8290: -21,26 8291: -22,22 8358: -28,17 @@ -5151,7 +5807,6 @@ entities: decals: 6890: -1,1 6891: 3,1 - 7583: 0,-8 7809: -2,2 7810: -1,2 7811: 0,2 @@ -5165,6 +5820,7 @@ entities: 8348: -27,14 8349: -26,14 8350: -25,14 + 11613: 0,-5 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS @@ -5185,15 +5841,14 @@ entities: 8725: 19,36 8726: 20,36 8727: 21,36 + 11592: -5,-3 + 11593: -4,-3 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: 6886: -2,0 6887: 2,0 - 7561: 1,-6 - 7562: 1,-7 - 7582: 1,-5 7808: 5,3 8299: -19,21 8300: -19,25 @@ -5206,6 +5861,9 @@ entities: 10125: 41,9 10126: 41,8 10127: 41,7 + 11615: -1,-6 + 11616: -1,-7 + 11617: -1,-8 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNe @@ -6498,10 +7156,8 @@ entities: 10982: -53,-28 10983: -55,-28 11003: -4,-12 - 11004: -5,-4 11007: 9,-12 11008: 13,-9 - 11011: 5,-4 11023: 14,-3 11024: 6,11 11025: 6,4 @@ -6513,6 +7169,7 @@ entities: 11061: 23,3 11062: 9,-28 11077: 12,-35 + 11581: -4,-9 - node: color: '#64646493' id: WarnLineGreyscaleE @@ -6864,10 +7521,7 @@ entities: 10937: -33,-14 10994: -70,-31 10995: -68,-31 - 10996: -7,-5 11001: 2,-10 - 11015: 4,-6 - 11016: 8,-6 11017: 7,-3 11018: 18,-4 11019: 22,-4 @@ -6882,6 +7536,8 @@ entities: 11053: -9,46 11054: -9,39 11055: -11,39 + 11578: -7,-10 + 11579: -2,-8 - node: color: '#D4D4D496' id: WarnLineS @@ -7051,10 +7707,8 @@ entities: 10990: -53,-34 10991: -55,-34 11002: -4,-12 - 11005: -5,-4 11006: 9,-12 11009: 13,-9 - 11010: 5,-4 11022: 14,-3 11028: 6,4 11029: 6,11 @@ -7066,6 +7720,7 @@ entities: 11060: 23,3 11063: 9,-28 11076: 12,-35 + 11580: -4,-9 - node: color: '#D4D4D496' id: WarnLineW @@ -7221,11 +7876,8 @@ entities: 10933: -33,-14 10992: -70,-31 10993: -68,-31 - 10997: -7,-5 11000: 2,-10 11012: 7,-3 - 11013: 8,-6 - 11014: 4,-6 11020: 18,-4 11021: 22,-4 11032: 5,8 @@ -7239,6 +7891,8 @@ entities: 11057: -9,39 11058: -9,46 11059: -11,46 + 11576: -2,-8 + 11577: -7,-10 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -7257,7 +7911,6 @@ entities: 7508: 2,20 7510: 4,-33 7527: 2,-33 - 7532: 0,-4 9510: -31,-42 9511: -25,-42 9519: -28,-42 @@ -7293,13 +7946,9 @@ entities: 7507: 0,20 7511: -1,-33 7526: 1,-33 - 7533: -3,-4 - 7536: -1,-4 - 7553: -3,-6 9512: -32,-42 9513: -26,-42 9520: -29,-42 - 9525: -27,1 9534: -13,-39 9539: -13,-36 9547: 8,-22 @@ -7312,6 +7961,8 @@ entities: 10168: 36,27 10214: 45,0 10220: 56,1 + 11563: -5,-4 + 11820: -28,1 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -7329,7 +7980,6 @@ entities: 7480: -19,-27 7512: 4,-35 7525: 2,-35 - 7557: 0,-7 9516: -31,-44 9517: -25,-44 9523: -25,0 @@ -7360,12 +8010,9 @@ entities: 7481: -26,-24 7513: -1,-35 7524: 1,-35 - 7552: -1,-7 - 7558: -3,-7 9514: -32,-44 9515: -26,-44 9521: -29,-43 - 9526: -27,0 9533: -13,-40 9541: -13,-37 9548: 8,-23 @@ -7380,6 +8027,10 @@ entities: 10219: 56,-3 10311: -21,-27 11078: -1,8 + 11567: -5,-8 + 11585: -5,-5 + 11590: -5,-7 + 11821: -28,0 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS @@ -7439,8 +8090,6 @@ entities: 7515: 4,-34 7529: 2,-34 7530: -28,-3 - 7545: 0,-5 - 7546: 0,-6 9506: -31,-43 9507: -25,-43 9559: 13,-18 @@ -7466,8 +8115,6 @@ entities: 7509: 1,20 7520: 0,-33 7523: 3,-33 - 7547: -2,-4 - 7554: -2,-6 9528: -26,1 9535: -12,-39 9540: -12,-36 @@ -7477,6 +8124,9 @@ entities: 9831: 1,35 10215: 46,0 10225: 57,1 + 11570: -4,-4 + 11571: -3,-4 + 11823: -27,1 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -7494,7 +8144,6 @@ entities: 7495: -24,-24 7516: 0,-35 7519: 3,-35 - 7559: -2,-7 9527: -26,0 9532: -12,-40 9543: -12,-37 @@ -7502,6 +8151,13 @@ entities: 9556: 12,-20 9572: 31,25 9830: 1,34 + 11568: -4,-8 + 11569: -3,-8 + 11586: -4,-5 + 11587: -3,-5 + 11588: -4,-7 + 11589: -3,-7 + 11822: -27,0 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -7531,9 +8187,6 @@ entities: 7514: -1,-34 7528: 1,-34 7531: -29,-3 - 7537: -1,-5 - 7538: -1,-6 - 7544: -3,-5 9508: -32,-43 9509: -26,-43 9550: 11,-18 @@ -7542,6 +8195,11 @@ entities: 10171: 36,25 10173: 36,26 10213: 45,-1 + 11565: -5,-6 + 11572: -2,-4 + 11573: -2,-5 + 11574: -2,-6 + 11575: -2,-7 - node: cleanable: True angle: 0.6806784082777885 rad @@ -7594,6 +8252,16 @@ entities: 8253: -21,21 8456: -21,24 8460: -24,26 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: burnt1 + decals: + 11293: 20,-24 + 11294: 30,-45 + 11295: 31,-44 + 11296: 32,-46 - node: cleanable: True color: '#FFFFFFFF' @@ -7625,6 +8293,14 @@ entities: 8251: -21,25 8458: -20,26 8461: -25,25 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: burnt2 + decals: + 11291: 20,-25 + 11292: 21,-24 - node: cleanable: True color: '#FFFFFFFF' @@ -7674,6 +8350,14 @@ entities: 6561: 2,-21 8457: -19,25 8462: -24,25 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: burnt3 + decals: + 11290: 19,-26 + 11300: 31,-46 - node: cleanable: True color: '#FFFFFFFF' @@ -7684,7 +8368,6 @@ entities: 3539: 25,26 3540: 34,13 3543: 25,4 - 3549: 7,-7 3550: 4,3 3551: 6,5 3557: -13,7 @@ -7716,6 +8399,17 @@ entities: 6562: 2,-25 6692: -21,-8 8459: -23,24 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: burnt4 + decals: + 11288: 19,-24 + 11289: 21,-26 + 11297: 30,-46 + 11298: 32,-45 + 11299: 30,-44 - node: cleanable: True angle: 2.251474735072685 rad @@ -7843,8 +8537,7 @@ entities: -1,1: 0: 7645 0,2: - 0: 2815 - 1: 1280 + 0: 4095 -1,2: 0: 3003 0,3: @@ -7858,8 +8551,7 @@ entities: 1,1: 0: 53237 1,2: - 0: 19679 - 1: 256 + 0: 19935 1,3: 0: 28924 1,-1: @@ -7868,13 +8560,13 @@ entities: 0: 56575 2,0: 0: 1279 - 2: 57344 + 1: 57344 2,3: 0: 4093 2,-1: 0: 65535 2,1: - 2: 3822 + 1: 3822 2,2: 0: 20206 2,4: @@ -7903,7 +8595,7 @@ entities: 0: 3071 -4,-1: 0: 64272 - 3: 4 + 2: 4 -5,0: 0: 14847 -4,1: @@ -7945,7 +8637,7 @@ entities: -2,4: 0: 30719 -1,-1: - 0: 65526 + 0: 65531 -1,4: 0: 29439 0,-4: @@ -7957,9 +8649,11 @@ entities: 0,-3: 0: 3854 -1,-3: - 0: 4049 + 0: 8145 0,-2: 0: 65527 + -1,-2: + 0: 48063 1,-4: 0: 65533 1,-3: @@ -7999,41 +8693,39 @@ entities: -5,-4: 0: 65519 -4,-3: - 3: 80 + 2: 80 0: 28672 -4,-2: 0: 6007 -5,-3: 0: 49152 - 3: 320 + 2: 320 -5,-2: 0: 3310 - 3: 4096 + 2: 4096 -5,-1: 0: 64256 - 3: 4 + 2: 4 -3,-4: 0: 65529 -3,-3: - 3: 256 + 2: 256 0: 52428 -3,-2: - 3: 4113 + 2: 4113 0: 52428 -3,-5: 0: 56777 -2,-4: 0: 65529 -2,-3: - 0: 40401 + 0: 8145 -2,-2: - 0: 63931 + 0: 55739 -2,-5: 0: 65521 -1,-5: 0: 49073 - -1,-2: - 0: 26214 5,0: 0: 47927 5,1: @@ -8129,11 +8821,10 @@ entities: -3,7: 0: 47611 -3,6: - 0: 742 - 4: 1024 + 0: 1766 -3,8: 0: 34947 - 3: 768 + 2: 768 -2,5: 0: 30583 -2,6: @@ -8203,13 +8894,14 @@ entities: 9,-5: 0: 61661 10,-4: - 0: 61543 + 0: 57447 + 3: 4096 10,-3: 0: 65535 10,-2: 0: 65520 10,-1: - 0: 65295 + 0: 61695 10,0: 0: 24017 10,-5: @@ -8219,7 +8911,7 @@ entities: 11,-5: 0: 65229 11,-3: - 3: 17638 + 2: 17638 0: 8 11,-2: 0: 61152 @@ -8231,13 +8923,13 @@ entities: 0: 32767 12,-3: 0: 15 - 3: 39408 + 2: 39408 12,-2: 0: 4368 - 3: 51400 + 2: 51400 12,-1: 0: 61440 - 3: 168 + 2: 168 9,0: 0: 28912 9,1: @@ -8264,33 +8956,33 @@ entities: 0: 61696 12,2: 0: 511 - 3: 32768 + 2: 32768 12,3: 0: 53505 - 3: 2184 + 2: 2184 4,-8: 0: 26222 3,-8: 0: 20477 4,-7: 0: 13095 - 5: 34816 + 4: 34816 3,-7: 0: 21791 4,-6: 0: 3888 - 5: 8 + 4: 8 3,-6: 0: 4049 5,-8: 0: 51663 - 3: 4096 + 2: 4096 5,-7: - 3: 1 - 5: 13056 + 2: 1 + 4: 13056 0: 34958 5,-6: - 5: 3 + 4: 3 0: 43912 6,-8: 0: 61183 @@ -8300,7 +8992,9 @@ entities: 0: 65535 6,-5: 0: 259 - 3: 3808 + 2: 3808 + 6,-9: + 0: 61166 7,-8: 0: 65535 7,-7: @@ -8331,29 +9025,29 @@ entities: 0: 65520 10,-9: 0: 17984 - 5: 1 - 3: 2444 + 4: 1 + 2: 2444 11,-8: 0: 14336 - 3: 200 + 2: 200 11,-7: 0: 65535 11,-6: 0: 56782 11,-9: - 3: 35225 + 2: 35225 12,-8: - 3: 242 + 2: 242 0: 32512 12,-7: 0: 16383 - 3: 49152 + 2: 49152 12,-6: 0: 62225 - 3: 3110 + 2: 3110 12,-5: 0: 12563 - 3: 50732 + 2: 50732 0,-8: 0: 2032 0,-9: @@ -8368,7 +9062,7 @@ entities: 0: 64860 1,-9: 0: 7508 - 3: 128 + 2: 128 1,-7: 0: 26210 1,-6: @@ -8380,81 +9074,81 @@ entities: 2,-6: 0: 10096 3,-9: - 0: 7543 - 3: 128 + 0: 7511 + 2: 128 12,-9: - 3: 29219 + 2: 29219 13,-8: - 3: 240 + 2: 240 0: 2048 13,-7: 0: 32767 - 3: 32768 + 2: 32768 13,-6: 0: 55074 - 3: 10325 + 2: 10325 13,-5: 0: 29223 - 3: 34136 + 2: 34136 13,-4: 0: 4095 14,-8: - 3: 240 + 2: 240 0: 32512 14,-7: 0: 61439 - 3: 4096 + 2: 4096 14,-6: - 3: 291 + 2: 291 0: 65228 14,-5: - 3: 4897 + 2: 4897 0: 60622 14,-4: 0: 32767 15,-8: - 3: 32816 + 2: 32816 15,-7: 0: 30545 - 3: 34952 + 2: 34952 15,-6: 0: 4439 - 3: 34952 + 2: 34952 15,-5: 0: 30545 - 3: 34952 + 2: 34952 15,-4: 0: 343 - 3: 34952 + 2: 34952 13,-3: - 3: 240 + 2: 240 0: 8 13,-1: 0: 63488 - 3: 32 + 2: 32 14,-3: 0: 15 - 3: 240 + 2: 240 13,-2: - 3: 2048 + 2: 2048 14,-2: - 3: 24320 + 2: 24320 14,-1: 0: 65392 13,0: 0: 8 - 3: 32 + 2: 32 14,0: 0: 127 - 3: 20480 + 2: 20480 15,-3: - 3: 248 + 2: 248 15,-2: - 3: 12544 + 2: 12544 15,-1: - 3: 52806 + 2: 52806 15,0: - 3: 13902 + 2: 13902 -4,-8: 0: 48049 -4,-9: @@ -8551,13 +9245,12 @@ entities: 0: 4095 -8,-1: 0: 2185 - 3: 4882 + 2: 4882 -9,-1: - 3: 3885 + 2: 3885 0: 2 -8,0: - 3: 18389 - 0: 2048 + 2: 18261 -7,-3: 0: 61262 -7,-2: @@ -8565,7 +9258,7 @@ entities: -7,-1: 0: 20479 -7,0: - 0: 238 + 0: 255 -6,-3: 0: 26470 -6,-2: @@ -8575,24 +9268,24 @@ entities: -6,0: 0: 45294 -8,3: - 3: 25456 + 2: 25456 -9,3: - 3: 34816 + 2: 34816 -8,1: - 3: 17988 + 2: 17988 0: 2048 -8,2: - 3: 1604 + 2: 1604 0: 2048 -8,4: - 3: 34614 + 2: 34614 -7,3: 0: 65358 -7,2: 0: 57352 -7,4: 0: 255 - 3: 57344 + 2: 57344 -7,1: 0: 8 -6,1: @@ -8603,7 +9296,7 @@ entities: 0: 64781 -6,4: 0: 3295 - 3: 4096 + 2: 4096 4,8: 0: 56732 5,4: @@ -8632,7 +9325,7 @@ entities: 0: 61679 7,8: 0: 11779 - 3: 128 + 2: 128 8,4: 0: 49072 8,5: @@ -8642,117 +9335,113 @@ entities: 8,7: 0: 61687 0,-11: - 3: 2207 + 2: 2207 0: 45056 0,-10: 0: 65523 -1,-11: 0: 45824 - 3: 4 + 2: 4 -1,-10: 0: 49081 1,-11: - 3: 1863 + 2: 1863 0: 28672 1,-10: 0: 21844 2,-9: - 3: 49 - 0: 1996 + 2: 49 + 0: 1868 2,-12: - 3: 4593 + 2: 4593 0: 3084 2,-13: - 3: 4593 + 2: 4593 0: 3084 2,-11: - 3: 4593 + 2: 4593 0: 3084 2,-10: - 3: 4593 + 2: 4593 0: 3084 3,-12: 0: 1991 - 3: 4144 + 2: 4144 3,-11: 0: 1991 - 3: 4144 + 2: 4144 3,-10: 0: 1991 - 3: 4144 + 2: 4144 3,-13: - 3: 4144 + 2: 4144 0: 1991 4,-12: 0: 4369 - 3: 17476 + 2: 17476 4,-11: - 0: 4369 - 3: 17484 + 0: 14097 + 2: 2124 4,-10: - 0: 4369 - 3: 19532 + 0: 4881 + 2: 8226 + 4: 8 + 5: 2048 4,-9: - 0: 3985 - 3: 108 + 0: 1841 + 2: 2050 + 6: 8 4,-13: 0: 4369 - 3: 17476 + 2: 17476 5,-11: - 3: 1199 - 0: 6912 + 2: 687 + 0: 36096 5,-10: - 3: 4113 - 0: 256 - 5: 12 - 6: 3072 + 4: 3 + 5: 768 + 2: 32904 + 0: 2048 5,-9: - 3: 1025 - 0: 2832 - 7: 12 + 6: 3 + 0: 3456 + 2: 520 5,-12: - 3: 40960 + 2: 40960 + 6,-12: + 2: 63624 6,-11: - 3: 495 - 0: 17920 + 2: 31 + 0: 60416 6,-10: - 5: 1 - 6: 256 - 3: 16452 - 0: 1024 - 6,-9: - 7: 1 - 3: 260 - 0: 1600 - 6,-12: - 3: 51336 + 0: 61166 6,-13: - 3: 32768 + 2: 32768 7,-12: - 3: 4356 - 5: 52224 + 2: 4356 + 4: 52224 7,-11: - 3: 1 - 0: 65024 - 5: 12 + 2: 1 + 0: 65280 + 4: 12 7,-10: 0: 65535 7,-13: - 3: 65100 + 2: 65100 8,-12: - 5: 4352 - 3: 52361 + 4: 4352 + 2: 52361 8,-11: - 5: 1 + 4: 1 0: 29440 - 3: 140 + 2: 140 8,-10: 0: 30583 -4,-12: 0: 56796 -4,-13: 0: 4352 - 3: 2252 + 2: 2252 -5,-12: 0: 3824 -4,-11: @@ -8765,22 +9454,22 @@ entities: 0: 14193 -3,-11: 0: 36658 - 3: 8 + 2: 8 -3,-10: 0: 14779 -3,-13: - 3: 35057 + 2: 35057 -2,-12: - 3: 61713 + 2: 61713 -2,-11: 0: 43776 - 3: 4 + 2: 4 -2,-10: 0: 43952 -1,-12: - 3: 28672 + 2: 28672 -8,-12: - 3: 10 + 2: 10 0: 3840 -9,-12: 0: 20192 @@ -8799,47 +9488,48 @@ entities: -7,-10: 0: 4095 -7,-13: - 3: 12239 + 2: 12239 0: 49152 -6,-12: 0: 20464 -6,-10: 0: 36863 -6,-13: - 3: 6087 + 2: 6087 -6,-11: 0: 20206 -5,-11: 0: 1911 -5,-13: - 0: 65024 + 7: 4096 + 0: 60928 -12,-4: 0: 65280 -13,-4: 0: 65024 -12,-3: 0: 2063 - 3: 42752 + 2: 42752 -13,-3: 0: 15 - 3: 3584 + 2: 3584 -12,-2: - 3: 26282 + 2: 26282 0: 34816 -12,-1: - 3: 3626 + 2: 3626 -11,-4: 0: 61678 -11,-3: 0: 61135 -11,-1: 0: 3 - 3: 3900 + 2: 3900 -11,-2: 0: 3822 -11,-5: 0: 25668 - 3: 1 + 2: 1 -10,-4: 0: 29935 -10,-3: @@ -8847,20 +9537,20 @@ entities: -10,-2: 0: 4095 -10,-1: - 3: 3885 + 2: 3885 0: 2 -12,-8: 0: 4095 -13,-8: 0: 4095 -12,-7: - 3: 12 + 2: 12 -11,-8: 0: 20479 -11,-7: 0: 18022 -11,-6: - 3: 1 + 2: 1 0: 17476 -11,-9: 0: 41843 @@ -8875,118 +9565,118 @@ entities: -10,-9: 0: 47803 -12,7: - 3: 10098 + 2: 10098 -13,7: - 3: 48945 + 2: 48945 -12,6: - 3: 11976 + 2: 11976 -12,8: - 3: 8823 + 2: 8823 -11,6: - 3: 15 + 2: 15 -11,7: 0: 25326 -11,8: 0: 3810 -10,6: - 3: 19 + 2: 19 0: 49152 -10,7: 0: 65533 -10,5: - 3: 61440 + 2: 61440 -10,8: 0: 52735 -9,5: - 3: 28672 + 2: 28672 -9,6: 0: 53248 - 3: 78 + 2: 78 -9,7: 0: 56733 -9,8: 0: 56733 -9,4: - 3: 136 + 2: 136 -8,6: - 3: 239 + 2: 239 0: 21504 -8,7: 0: 63941 8,-13: - 3: 62225 + 2: 62225 9,-12: - 3: 36864 + 2: 36864 9,-11: - 3: 1215 + 2: 1215 0: 6912 9,-10: - 3: 4113 + 2: 4113 0: 256 - 5: 12 + 4: 12 8: 3072 9,-9: - 3: 1025 + 2: 1025 0: 2832 - 5: 12 + 4: 12 10,-11: - 3: 295 + 2: 295 0: 17920 10,-10: - 5: 1 + 4: 1 8: 256 - 3: 18508 + 2: 18508 0: 1024 10,-12: - 3: 8192 + 2: 8192 11,-10: - 3: 65529 + 2: 65529 11,-11: - 3: 39304 + 2: 39304 11,-12: - 3: 34944 + 2: 34944 12,-12: - 3: 8994 + 2: 8994 12,-11: - 3: 562 + 2: 562 12,-10: - 3: 8960 + 2: 8960 4,-15: - 3: 22272 + 2: 22272 3,-15: - 3: 20224 + 2: 20224 4,-14: 0: 4369 - 3: 17476 + 2: 17476 3,-14: 0: 1991 - 3: 6192 + 2: 6192 6,-15: - 3: 49152 + 2: 49152 6,-14: - 3: 200 + 2: 200 7,-15: - 3: 61440 + 2: 61440 7,-14: - 3: 20212 + 2: 20212 8,-15: - 3: 61440 + 2: 61440 8,-14: - 3: 5113 + 2: 5113 9,-15: - 3: 4096 + 2: 4096 9,-14: - 3: 112 + 2: 112 -8,8: 0: 23821 - 3: 32768 + 2: 32768 -8,5: - 3: 34952 + 2: 34952 -7,5: - 3: 8240 + 2: 8240 0: 2176 -7,6: - 3: 273 + 2: 273 0: 2730 -7,7: 0: 64543 @@ -9002,58 +9692,58 @@ entities: 0: 24669 -5,8: 0: 15 - 3: 256 + 2: 256 -12,-9: - 3: 1024 + 2: 1024 -12,-10: - 3: 128 + 2: 128 -11,-10: - 3: 112 + 2: 112 0: 28672 -10,-11: 0: 65535 -10,-10: 0: 11252 -10,-12: - 3: 273 + 2: 273 0: 19652 -10,-13: - 3: 4096 + 2: 4096 0: 16384 -9,-11: 0: 21845 -9,-13: - 3: 55296 + 2: 55296 -4,-16: - 3: 20224 + 2: 20224 -5,-16: - 3: 40704 + 2: 40704 -4,-15: - 3: 15 + 2: 15 -5,-15: - 3: 15 + 2: 15 -3,-16: - 3: 9984 + 2: 9984 -3,-15: - 3: 7 + 2: 7 -8,-13: - 3: 3976 + 2: 3976 -8,-16: - 3: 35840 + 2: 35840 -8,-15: - 3: 12 + 2: 12 -7,-16: - 3: 12032 + 2: 12032 -7,-15: - 3: 58095 + 2: 58095 -7,-14: - 3: 11980 + 2: 11980 -6,-16: - 3: 24320 + 2: 24320 -6,-15: - 3: 4383 + 2: 4383 -6,-14: - 3: 4352 + 2: 4352 -16,-8: 0: 61439 -17,-8: @@ -9061,13 +9751,13 @@ entities: -16,-7: 0: 10 -17,-7: - 3: 8 + 2: 8 -16,-9: 0: 59904 -15,-8: 0: 4095 -15,-7: - 3: 10 + 2: 10 -14,-8: 0: 61439 -14,-7: @@ -9075,55 +9765,55 @@ entities: -14,-9: 0: 59904 -13,-7: - 3: 2 + 2: 2 -19,-7: - 3: 58436 + 2: 58436 -19,-6: - 3: 43690 + 2: 43690 -19,-5: - 3: 17642 + 2: 17642 -19,-8: - 3: 19592 + 2: 19592 -19,-4: - 3: 35908 + 2: 35908 -19,-9: - 3: 32768 + 2: 32768 -18,-8: - 3: 4898 + 2: 4898 0: 2248 -18,-7: - 3: 4369 + 2: 4369 -18,-5: - 3: 4368 + 2: 4368 -18,-4: - 3: 28433 + 2: 28433 -18,-9: - 3: 12288 + 2: 12288 -17,-9: - 3: 2048 + 2: 2048 -15,-9: - 3: 2560 + 2: 2560 -13,-9: - 3: 512 + 2: 512 -16,-4: - 3: 20224 + 2: 20224 -17,-4: - 3: 20224 + 2: 20224 -16,-3: - 3: 244 + 2: 244 -17,-3: - 3: 244 + 2: 244 -15,-4: - 3: 10112 + 2: 10112 -15,-3: - 3: 2162 + 2: 2162 -14,-4: 0: 64170 -14,-3: 0: 43695 8,8: 0: 1004 - 3: 11280 + 2: 11280 9,4: 0: 65520 9,5: @@ -9133,8 +9823,8 @@ entities: 9,7: 0: 55536 9,8: - 0: 49 - 3: 43968 + 0: 8753 + 2: 35264 10,4: 0: 56784 10,5: @@ -9145,7 +9835,7 @@ entities: 0: 55551 10,8: 0: 12 - 3: 16 + 2: 16 11,5: 0: 64791 11,6: @@ -9154,7 +9844,7 @@ entities: 0: 64541 11,8: 0: 1 - 3: 192 + 2: 192 12,4: 0: 35832 12,5: @@ -9170,7 +9860,7 @@ entities: 1,9: 0: 65535 1,10: - 3: 16 + 2: 16 0: 2248 2,9: 0: 65535 @@ -9179,62 +9869,65 @@ entities: 3,9: 0: 65535 3,10: - 3: 16 + 2: 16 4,9: 0: 57311 4,10: - 3: 16 + 2: 16 0: 12 5,9: 0: 64443 5,10: 0: 34959 - 3: 8704 + 2: 8704 5,11: - 3: 2 + 2: 2 0: 52424 5,12: - 3: 17476 + 2: 17476 0: 34952 6,9: 0: 7645 6,10: 0: 13 - 3: 8896 + 2: 8896 6,11: 0: 13104 - 3: 2 + 2: 2 6,12: - 3: 4369 + 2: 4369 7,10: - 0: 10987 - 3: 16 + 0: 2059 + 2: 8944 7,9: - 0: 10986 + 0: 10794 + 2: 192 7,11: - 0: 10986 + 2: 8930 + 0: 2056 7,12: - 0: 10986 + 2: 8930 + 0: 2056 8,9: - 0: 3855 - 3: 8432 + 0: 3983 + 2: 8304 8,10: - 0: 3855 - 3: 8432 + 0: 3983 + 2: 8304 8,11: - 0: 3855 - 3: 8432 + 0: 3983 + 2: 8304 -3,9: - 3: 32 + 2: 32 0: 57480 -3,10: - 3: 32 + 2: 32 0: 34944 -3,11: - 3: 2 + 2: 2 0: 3592 -3,12: - 3: 8194 + 2: 8194 0: 34952 -2,9: 0: 30523 @@ -9248,240 +9941,245 @@ entities: 0: 21873 -1,10: 0: 4369 - 3: 17472 + 2: 17472 -1,11: 0: 4913 -1,12: 0: 4403 - 3: 16384 + 2: 16384 8,12: - 0: 3855 - 3: 8432 + 0: 3983 + 2: 8304 9,9: - 3: 43770 + 0: 8754 + 2: 35016 9,10: - 3: 43770 + 0: 8754 + 2: 35016 9,11: - 3: 43770 + 0: 8754 + 2: 35016 9,12: - 3: 43770 + 0: 8754 + 2: 35016 12,8: - 3: 16 + 2: 16 0: 76 13,8: 0: 17 - 3: 76 + 2: 76 13,7: 0: 4352 - 3: 19522 + 2: 19522 14,8: - 3: 34959 + 2: 34959 14,7: - 3: 53128 + 2: 53128 15,8: - 3: 8448 + 2: 8448 14,9: - 3: 2184 + 2: 2184 15,9: - 3: 8754 + 2: 8754 13,4: 0: 13107 - 3: 52416 + 2: 52416 13,5: 0: 19 - 3: 8800 + 2: 8800 13,6: 0: 16 - 3: 8802 + 2: 8802 13,3: 0: 4096 - 3: 8192 + 2: 8192 14,4: - 3: 65276 + 2: 65276 14,5: - 3: 34956 + 2: 34956 14,3: - 3: 34952 + 2: 34952 15,4: - 3: 12850 + 2: 12850 15,5: - 3: 8994 + 2: 8994 14,6: - 3: 32776 + 2: 32776 15,7: - 3: 12835 + 2: 12835 15,6: - 3: 8754 + 2: 8754 15,3: - 3: 8994 + 2: 8994 -8,9: - 3: 3840 + 2: 3840 0: 12 -9,9: - 3: 32320 + 2: 32320 -7,9: 0: 1 - 3: 18368 + 2: 18368 -7,10: - 3: 43694 + 2: 43694 -7,11: - 3: 9742 + 2: 9742 -7,12: - 3: 34822 + 2: 34822 -6,11: 0: 30498 - 3: 8 + 2: 8 -6,9: 0: 26214 -6,10: 0: 8738 - 3: 128 + 2: 128 -6,12: 0: 26119 -13,8: - 3: 4415 + 2: 4415 -12,9: - 3: 2254 + 2: 2254 -11,9: - 3: 3840 + 2: 3840 -10,9: - 3: 62224 + 2: 62224 -14,8: - 3: 2127 + 2: 2127 -14,7: - 3: 24428 + 2: 24428 -14,9: - 3: 17600 + 2: 17600 -14,10: - 3: 76 + 2: 76 -13,9: - 3: 4369 + 2: 4369 -13,10: - 3: 17 + 2: 17 -14,5: - 3: 19520 + 2: 19520 -14,6: - 3: 17604 + 2: 17604 -13,5: - 3: 4369 + 2: 4369 -13,6: - 3: 4369 + 2: 4369 -13,4: - 3: 4096 + 2: 4096 -4,13: 0: 61440 - 3: 64 + 2: 64 -4,14: 0: 139 - 3: 8960 + 2: 8960 -5,13: 0: 61696 - 3: 64 + 2: 64 -5,14: 0: 8 - 3: 35840 + 2: 35840 -4,15: - 3: 63266 + 2: 63266 -5,15: - 3: 64648 + 2: 64648 -4,16: - 3: 146 + 2: 146 -3,13: 0: 65288 - 3: 2 + 2: 2 -3,14: 0: 2032 -3,15: - 3: 63488 + 2: 63488 -3,16: - 3: 249 + 2: 249 -2,13: 0: 19859 -2,14: - 3: 61440 + 2: 61440 0: 102 -2,15: - 3: 65433 + 2: 65433 -2,16: - 3: 244 + 2: 244 -1,13: 0: 273 - 3: 35020 + 2: 35020 -1,14: - 3: 6047 + 2: 6047 -1,15: - 3: 28928 + 2: 28928 -1,16: - 3: 2 + 2: 2 -7,15: - 3: 61440 + 2: 61440 -7,13: - 3: 8800 + 2: 8800 -7,14: - 3: 98 + 2: 98 0: 32768 -7,16: - 3: 228 + 2: 228 -6,13: 0: 40822 -6,14: 0: 12595 - 3: 51328 + 2: 51328 -6,15: - 3: 61440 + 2: 61440 -6,16: - 3: 242 + 2: 242 -5,16: - 3: 249 + 2: 249 5,13: - 3: 8740 + 2: 8740 0: 52424 5,14: - 3: 12 + 2: 12 6,13: - 3: 8737 + 2: 8737 0: 4368 6,14: - 3: 1 + 2: 1 7,13: - 0: 2794 - 3: 40960 + 2: 41698 + 0: 2056 7,14: - 3: 14 + 2: 14 8,13: - 0: 3855 - 3: 33008 + 0: 3983 + 2: 32880 8,14: - 3: 15 + 2: 127 12,0: - 3: 32 + 2: 32 13,1: - 3: 50696 + 2: 50696 0: 8192 13,2: 0: 34 - 3: 1740 + 2: 1740 14,1: - 3: 15 + 2: 15 15,1: - 3: 1 + 2: 1 14,2: - 3: 34944 + 2: 34944 15,2: - 3: 62064 + 2: 62064 2,-15: - 3: 24320 + 2: 24320 2,-14: - 3: 4593 + 2: 4593 0: 3084 9,13: - 3: 43770 + 0: 562 + 2: 43208 9,14: - 3: 15 + 2: 15 -19,-3: - 3: 136 + 2: 136 -18,-3: - 3: 246 + 2: 246 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -9498,21 +10196,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: @@ -9603,6 +10286,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.823984 + - 82.09976 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -9651,6 +10349,11 @@ entities: - 486 - 716 - 454 + - 5993 + - 3439 + - 5992 + - 3815 + - 14702 - uid: 811 components: - type: MetaData @@ -9664,10 +10367,10 @@ entities: - 2691 - 824 - 901 - - 853 - - 16330 - - 16329 - - 16331 + - 3815 + - 3439 + - 5992 + - 5993 - 1628 - 263 - 264 @@ -9680,6 +10383,7 @@ entities: - 197 - 243 - 1619 + - 14702 - uid: 813 components: - type: MetaData @@ -10462,23 +11166,6 @@ entities: - 10886 - 11195 - 5310 - - uid: 12673 - components: - - type: MetaData - name: air alarm (Atmospherics) - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-33.5 - parent: 2 - - type: DeviceList - devices: - - 9478 - - 7484 - - 9011 - - 13836 - - 13834 - - 13835 - - 13850 - uid: 12674 components: - type: MetaData @@ -11403,6 +12090,23 @@ entities: - 12404 - 10840 - 10841 + - uid: 14575 + components: + - type: MetaData + name: air alarm (Atmospherics) + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 9478 + - 7484 + - 9011 + - 13836 + - 13834 + - 13835 + - 13850 - uid: 14751 components: - type: MetaData @@ -11507,6 +12211,11 @@ entities: - type: Transform pos: -33.5,27.5 parent: 2 + - uid: 6003 + components: + - type: Transform + pos: 27.5,-41.5 + parent: 2 - uid: 6295 components: - type: Transform @@ -11634,6 +12343,14 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-5.5 parent: 2 + - uid: 5991 + components: + - type: MetaData + name: airlock (Bar) + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 2 - proto: AirlockBrigGlassLocked entities: - uid: 1939 @@ -11816,20 +12533,6 @@ entities: - type: Transform pos: -23.5,-7.5 parent: 2 - - uid: 4571 - components: - - type: MetaData - name: glass airlock (Bridge Evac) - - type: Transform - pos: -40.5,-10.5 - parent: 2 - - uid: 4574 - components: - - type: MetaData - name: glass airlock (Bridge Evac) - - type: Transform - pos: -41.5,-10.5 - parent: 2 - proto: AirlockCommandLocked entities: - uid: 50 @@ -11860,6 +12563,20 @@ entities: - type: Transform pos: -52.5,-10.5 parent: 2 + - uid: 4571 + components: + - type: MetaData + name: airlock (Bridge Evac) + - type: Transform + pos: -41.5,-10.5 + parent: 2 + - uid: 4574 + components: + - type: MetaData + name: airlock (Bridge Evac) + - type: Transform + pos: -40.5,-10.5 + parent: 2 - uid: 5451 components: - type: MetaData @@ -12078,6 +12795,20 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-41.5 parent: 2 + - uid: 9617 + components: + - type: MetaData + name: airlock (Station Anchor) + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - uid: 11339 + components: + - type: MetaData + name: airlock (Gravity Generator) + - type: Transform + pos: 38.5,-5.5 + parent: 2 - proto: AirlockEVAGlassLocked entities: - uid: 1710 @@ -12099,7 +12830,7 @@ entities: - uid: 1717 components: - type: MetaData - name: maintenance airlock (EVA) + name: maintenance access (EVA) - type: Transform pos: 20.5,-18.5 parent: 2 @@ -12983,11 +13714,6 @@ entities: - type: Transform pos: -2.5,13.5 parent: 2 - - uid: 693 - components: - - type: Transform - pos: -6.5,-4.5 - parent: 2 - uid: 694 components: - type: Transform @@ -12998,14 +13724,6 @@ entities: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 858 - components: - - type: MetaData - name: maintenance access (Service) - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 2 - uid: 1141 components: - type: Transform @@ -13223,7 +13941,7 @@ entities: pos: 47.5,5.5 parent: 2 - type: Door - secondsUntilStateChange: -256594.28 + secondsUntilStateChange: -282233.8 state: Opening - type: DeviceLinkSource lastSignals: @@ -13264,11 +13982,24 @@ entities: - type: Transform pos: -10.5,-43.5 parent: 2 + - uid: 14357 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 - uid: 14554 components: - type: Transform pos: -12.5,56.5 parent: 2 + - uid: 15509 + components: + - type: MetaData + name: maintenance access (Service) + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 2 - proto: AirlockMaintMedLocked entities: - uid: 459 @@ -14118,7 +14849,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12673 + - 14575 - uid: 10064 components: - type: Transform @@ -14868,6 +15599,36 @@ entities: - type: Transform pos: -34.5,-22.5 parent: 2 +- proto: AmeController + entities: + - uid: 2508 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 +- proto: AmePartFlatpack + entities: + - uid: 4557 + components: + - type: Transform + parent: 15672 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4558 + components: + - type: Transform + parent: 15672 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4591 + components: + - type: Transform + parent: 15672 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: APCBasic entities: - uid: 45 @@ -15047,6 +15808,14 @@ entities: - type: Transform pos: -24.5,-40.5 parent: 2 + - uid: 4449 + components: + - type: MetaData + name: APC (Bar) + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 2 - uid: 4473 components: - type: MetaData @@ -15387,13 +16156,13 @@ entities: - type: Transform pos: 40.5,-17.5 parent: 2 - - uid: 8786 + - uid: 8945 components: - type: MetaData name: APC (Atmospherics) - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-32.5 + pos: 35.5,-32.5 parent: 2 - uid: 9101 components: @@ -15658,14 +16427,6 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-33.5 parent: 2 - - uid: 16346 - components: - - type: MetaData - name: APC (Bar) - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 2 - proto: APCElectronics entities: - uid: 2249 @@ -15719,10 +16480,10 @@ entities: parent: 2 - proto: Ashtray entities: - - uid: 208 + - uid: 195 components: - type: Transform - pos: -2.688402,-7.2815943 + pos: -4.5188475,-6.370361 parent: 2 - uid: 296 components: @@ -15747,7 +16508,7 @@ entities: - uid: 14508 components: - type: Transform - pos: 33.39071,57.45458 + pos: 33.491795,61.631714 parent: 2 - uid: 16380 components: @@ -15895,6 +16656,11 @@ entities: parent: 2 - proto: AtmosFixBlockerMarker entities: + - uid: 2385 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 - uid: 2449 components: - type: Transform @@ -15910,21 +16676,6 @@ entities: - type: Transform pos: 40.5,-35.5 parent: 2 - - uid: 2452 - components: - - type: Transform - pos: 22.5,-39.5 - parent: 2 - - uid: 2453 - components: - - type: Transform - pos: 23.5,-39.5 - parent: 2 - - uid: 2454 - components: - - type: Transform - pos: 24.5,-39.5 - parent: 2 - uid: 2455 components: - type: Transform @@ -15940,6 +16691,16 @@ entities: - type: Transform pos: 40.5,-39.5 parent: 2 + - uid: 8943 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 2 + - uid: 12715 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 2 - uid: 12733 components: - type: Transform @@ -16094,37 +16855,37 @@ entities: parent: 2 - proto: AtmosFixNitrogenMarker entities: - - uid: 2440 + - uid: 14549 components: - type: Transform - pos: 22.5,-35.5 + pos: 19.5,-35.5 parent: 2 - - uid: 2441 + - uid: 14551 components: - type: Transform - pos: 23.5,-35.5 + pos: 20.5,-35.5 parent: 2 - - uid: 2442 + - uid: 14552 components: - type: Transform - pos: 24.5,-35.5 + pos: 21.5,-35.5 parent: 2 - proto: AtmosFixOxygenMarker entities: - - uid: 2443 + - uid: 2323 components: - type: Transform - pos: 22.5,-37.5 + pos: 19.5,-37.5 parent: 2 - - uid: 2444 + - uid: 8942 components: - type: Transform - pos: 23.5,-37.5 + pos: 20.5,-37.5 parent: 2 - - uid: 2445 + - uid: 14548 components: - type: Transform - pos: 24.5,-37.5 + pos: 21.5,-37.5 parent: 2 - proto: AtmosFixPlasmaMarker entities: @@ -16800,7 +17561,7 @@ entities: - uid: 16340 components: - type: Transform - pos: 1.4589906,-2.4393148 + pos: 1.6190121,-2.3009129 parent: 2 - proto: BooksBag entities: @@ -16902,18 +17663,18 @@ entities: parent: 2 - proto: BoozeDispenser entities: - - uid: 323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-7.5 - parent: 2 - uid: 8604 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,0.5 parent: 2 + - uid: 13974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 2 - proto: BorgCharger entities: - uid: 5132 @@ -16936,6 +17697,13 @@ entities: - type: Transform pos: -35.5,32.5 parent: 2 +- proto: BorgChargerCircuitboard + entities: + - uid: 16400 + components: + - type: Transform + pos: 31.979313,-18.066778 + parent: 2 - proto: BoxBodyBag entities: - uid: 4064 @@ -16987,7 +17755,7 @@ entities: - uid: 16013 components: - type: Transform - pos: 10.5347595,-19.391357 + pos: 13.292512,-18.000015 parent: 2 - uid: 16014 components: @@ -17072,7 +17840,7 @@ entities: - uid: 16009 components: - type: Transform - pos: 23.632082,-10.817182 + pos: 23.14036,-10.470763 parent: 2 - uid: 16010 components: @@ -17461,12 +18229,6 @@ entities: parent: 2 - proto: ButtonFrameJanitor entities: - - uid: 996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-3.5 - parent: 2 - uid: 6028 components: - type: Transform @@ -17477,6 +18239,12 @@ entities: - type: Transform pos: -26.5,-6.5 parent: 2 + - uid: 15679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 2 - uid: 15854 components: - type: Transform @@ -17555,11 +18323,6 @@ entities: parent: 2 - proto: CableApcExtension entities: - - uid: 5 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 2 - uid: 117 components: - type: Transform @@ -17575,21 +18338,11 @@ entities: - type: Transform pos: -13.5,24.5 parent: 2 - - uid: 195 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 2 - uid: 267 components: - type: Transform pos: -1.5,-8.5 parent: 2 - - uid: 325 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 2 - uid: 378 components: - type: Transform @@ -17615,21 +18368,6 @@ entities: - type: Transform pos: 23.5,37.5 parent: 2 - - uid: 495 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 2 - - uid: 496 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 2 - - uid: 497 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 2 - uid: 504 components: - type: Transform @@ -18075,30 +18813,10 @@ entities: - type: Transform pos: -4.5,9.5 parent: 2 - - uid: 732 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 2 - - uid: 754 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 2 - - uid: 755 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 2 - - uid: 756 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 2 - - uid: 757 + - uid: 721 components: - type: Transform - pos: -3.5,-9.5 + pos: 42.5,-3.5 parent: 2 - uid: 758 components: @@ -18360,6 +19078,11 @@ entities: - type: Transform pos: 40.5,-5.5 parent: 2 + - uid: 1799 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 2 - uid: 1817 components: - type: Transform @@ -18390,16 +19113,141 @@ entities: - type: Transform pos: -8.5,-41.5 parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 29.5,-41.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 30.5,-41.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 26.5,-39.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: 27.5,-39.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: 29.5,-40.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: 33.5,-40.5 + parent: 2 - uid: 2271 components: - type: Transform pos: -2.5,-17.5 parent: 2 + - uid: 2311 + components: + - type: Transform + pos: 28.5,-39.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: 33.5,-41.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: 31.5,-41.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 24.5,-42.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 - uid: 2569 components: - type: Transform pos: -6.5,21.5 parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 2 - uid: 2674 components: - type: Transform @@ -18460,11 +19308,6 @@ entities: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 2813 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - uid: 2830 components: - type: Transform @@ -18500,6 +19343,21 @@ entities: - type: Transform pos: 3.5,-5.5 parent: 2 + - uid: 2943 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 - uid: 2986 components: - type: Transform @@ -18515,11 +19373,6 @@ entities: - type: Transform pos: 1.5,-5.5 parent: 2 - - uid: 3001 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 2 - uid: 3011 components: - type: Transform @@ -18535,6 +19388,11 @@ entities: - type: Transform pos: -50.5,-12.5 parent: 2 + - uid: 3232 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 - uid: 3239 components: - type: Transform @@ -22720,11 +23578,6 @@ entities: - type: Transform pos: 44.5,-27.5 parent: 2 - - uid: 8889 - components: - - type: Transform - pos: 26.5,-32.5 - parent: 2 - uid: 8890 components: - type: Transform @@ -22790,60 +23643,15 @@ entities: - type: Transform pos: 33.5,-39.5 parent: 2 - - uid: 8925 - components: - - type: Transform - pos: 32.5,-39.5 - parent: 2 - - uid: 8926 - components: - - type: Transform - pos: 31.5,-39.5 - parent: 2 - - uid: 8927 - components: - - type: Transform - pos: 30.5,-39.5 - parent: 2 - uid: 8928 components: - type: Transform pos: 29.5,-39.5 parent: 2 - - uid: 8929 - components: - - type: Transform - pos: 29.5,-38.5 - parent: 2 - - uid: 8930 - components: - - type: Transform - pos: 29.5,-37.5 - parent: 2 - - uid: 8931 - components: - - type: Transform - pos: 29.5,-36.5 - parent: 2 - - uid: 8932 - components: - - type: Transform - pos: 29.5,-35.5 - parent: 2 - - uid: 8933 - components: - - type: Transform - pos: 29.5,-34.5 - parent: 2 - - uid: 8934 - components: - - type: Transform - pos: 29.5,-33.5 - parent: 2 - uid: 8935 components: - type: Transform - pos: 29.5,-32.5 + pos: 29.5,-38.5 parent: 2 - uid: 8936 components: @@ -22860,86 +23668,6 @@ entities: - type: Transform pos: 29.5,-44.5 parent: 2 - - uid: 8939 - components: - - type: Transform - pos: 31.5,-41.5 - parent: 2 - - uid: 8940 - components: - - type: Transform - pos: 31.5,-40.5 - parent: 2 - - uid: 8941 - components: - - type: Transform - pos: 23.5,-39.5 - parent: 2 - - uid: 8942 - components: - - type: Transform - pos: 24.5,-39.5 - parent: 2 - - uid: 8943 - components: - - type: Transform - pos: 25.5,-39.5 - parent: 2 - - uid: 8944 - components: - - type: Transform - pos: 26.5,-39.5 - parent: 2 - - uid: 8945 - components: - - type: Transform - pos: 23.5,-37.5 - parent: 2 - - uid: 8946 - components: - - type: Transform - pos: 24.5,-37.5 - parent: 2 - - uid: 8947 - components: - - type: Transform - pos: 25.5,-37.5 - parent: 2 - - uid: 8948 - components: - - type: Transform - pos: 26.5,-37.5 - parent: 2 - - uid: 8949 - components: - - type: Transform - pos: 23.5,-35.5 - parent: 2 - - uid: 8950 - components: - - type: Transform - pos: 24.5,-35.5 - parent: 2 - - uid: 8951 - components: - - type: Transform - pos: 25.5,-35.5 - parent: 2 - - uid: 8952 - components: - - type: Transform - pos: 26.5,-35.5 - parent: 2 - - uid: 8953 - components: - - type: Transform - pos: 26.5,-36.5 - parent: 2 - - uid: 8954 - components: - - type: Transform - pos: 26.5,-38.5 - parent: 2 - uid: 8955 components: - type: Transform @@ -23070,26 +23798,6 @@ entities: - type: Transform pos: 36.5,-40.5 parent: 2 - - uid: 8987 - components: - - type: Transform - pos: 26.5,-40.5 - parent: 2 - - uid: 8988 - components: - - type: Transform - pos: 26.5,-41.5 - parent: 2 - - uid: 8989 - components: - - type: Transform - pos: 26.5,-42.5 - parent: 2 - - uid: 8990 - components: - - type: Transform - pos: 27.5,-42.5 - parent: 2 - uid: 8991 components: - type: Transform @@ -26370,20 +27078,10 @@ entities: - type: Transform pos: 27.5,-30.5 parent: 2 - - uid: 12625 - components: - - type: Transform - pos: 28.5,-30.5 - parent: 2 - - uid: 12626 - components: - - type: Transform - pos: 29.5,-30.5 - parent: 2 - uid: 12627 components: - type: Transform - pos: 29.5,-31.5 + pos: 21.5,-39.5 parent: 2 - uid: 12628 components: @@ -26665,6 +27363,16 @@ entities: - type: Transform pos: 23.5,-8.5 parent: 2 + - uid: 12712 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 2 + - uid: 12716 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 2 - uid: 12859 components: - type: Transform @@ -26835,6 +27543,16 @@ entities: - type: Transform pos: -12.5,-46.5 parent: 2 + - uid: 14228 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 + - uid: 14229 + components: + - type: Transform + pos: 21.5,-37.5 + parent: 2 - uid: 14272 components: - type: Transform @@ -26850,11 +27568,91 @@ entities: - type: Transform pos: 23.5,38.5 parent: 2 + - uid: 14406 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 2 + - uid: 14421 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 2 - uid: 14486 components: - type: Transform pos: 12.5,-33.5 parent: 2 + - uid: 14556 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 2 + - uid: 14557 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 2 + - uid: 14558 + components: + - type: Transform + pos: 29.5,-35.5 + parent: 2 + - uid: 14559 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 2 + - uid: 14560 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 2 + - uid: 14561 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 2 + - uid: 14562 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - uid: 14563 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 2 + - uid: 14564 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 2 + - uid: 14569 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 14570 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 14571 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 14572 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 14697 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 - uid: 14737 components: - type: Transform @@ -26905,6 +27703,11 @@ entities: - type: Transform pos: -22.5,38.5 parent: 2 + - uid: 14928 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 - uid: 14937 components: - type: Transform @@ -26920,6 +27723,11 @@ entities: - type: Transform pos: -22.5,41.5 parent: 2 + - uid: 15111 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 - uid: 15206 components: - type: Transform @@ -26995,6 +27803,11 @@ entities: - type: Transform pos: -6.5,-41.5 parent: 2 + - uid: 15317 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 - uid: 15376 components: - type: Transform @@ -27160,6 +27973,31 @@ entities: - type: Transform pos: 47.5,-5.5 parent: 2 + - uid: 15731 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + pos: 24.5,-43.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + pos: 26.5,-43.5 + parent: 2 - uid: 15767 components: - type: Transform @@ -27395,15 +28233,15 @@ entities: - type: Transform pos: -13.5,32.5 parent: 2 - - uid: 16347 + - uid: 16416 components: - type: Transform - pos: 0.5,-7.5 + pos: 35.5,-31.5 parent: 2 - - uid: 16348 + - uid: 16417 components: - type: Transform - pos: 0.5,-6.5 + pos: 35.5,-32.5 parent: 2 - proto: CableApcStack entities: @@ -27446,6 +28284,11 @@ entities: - type: Transform pos: -9.14669,-7.357277 parent: 2 + - uid: 16402 + components: + - type: Transform + pos: 31.323063,-18.144903 + parent: 2 - proto: CablecuffsBroken entities: - uid: 16042 @@ -27455,6 +28298,26 @@ entities: parent: 2 - proto: CableHV entities: + - uid: 30 + components: + - type: Transform + pos: 13.5,-59.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: 14.5,-57.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: 16.5,-59.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 - uid: 539 components: - type: Transform @@ -27485,11 +28348,56 @@ entities: - type: Transform pos: 13.5,-6.5 parent: 2 + - uid: 693 + components: + - type: Transform + pos: 12.5,-57.5 + parent: 2 - uid: 696 components: - type: Transform pos: 9.5,-10.5 parent: 2 + - uid: 700 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: 16.5,-58.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: 14.5,-59.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: 14.5,-58.5 + parent: 2 - uid: 1062 components: - type: Transform @@ -27930,6 +28838,16 @@ entities: - type: Transform pos: 32.5,-10.5 parent: 2 + - uid: 2407 + components: + - type: Transform + pos: 10.5,-57.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: 11.5,-59.5 + parent: 2 - uid: 2542 components: - type: Transform @@ -28505,6 +29423,11 @@ entities: - type: Transform pos: 13.5,-35.5 parent: 2 + - uid: 3437 + components: + - type: Transform + pos: 32.5,58.5 + parent: 2 - uid: 3464 components: - type: Transform @@ -28535,16 +29458,6 @@ entities: - type: Transform pos: 33.5,-12.5 parent: 2 - - uid: 3815 - components: - - type: Transform - pos: 16.5,-54.5 - parent: 2 - - uid: 3895 - components: - - type: Transform - pos: 16.5,-55.5 - parent: 2 - uid: 3907 components: - type: Transform @@ -30220,11 +31133,6 @@ entities: - type: Transform pos: 13.5,-53.5 parent: 2 - - uid: 8395 - components: - - type: Transform - pos: 37.5,54.5 - parent: 2 - uid: 8396 components: - type: Transform @@ -30233,7 +31141,7 @@ entities: - uid: 8397 components: - type: Transform - pos: 37.5,53.5 + pos: 43.5,-10.5 parent: 2 - uid: 8410 components: @@ -30270,6 +31178,26 @@ entities: - type: Transform pos: 10.5,-55.5 parent: 2 + - uid: 8939 + components: + - type: Transform + pos: 34.5,58.5 + parent: 2 + - uid: 8989 + components: + - type: Transform + pos: 35.5,58.5 + parent: 2 + - uid: 8990 + components: + - type: Transform + pos: 37.5,57.5 + parent: 2 + - uid: 9036 + components: + - type: Transform + pos: 37.5,58.5 + parent: 2 - uid: 9082 components: - type: Transform @@ -30910,51 +31838,6 @@ entities: - type: Transform pos: -8.5,-4.5 parent: 2 - - uid: 9550 - components: - - type: Transform - pos: -7.5,-4.5 - parent: 2 - - uid: 9551 - components: - - type: Transform - pos: -6.5,-4.5 - parent: 2 - - uid: 9552 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 2 - - uid: 9553 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 2 - - uid: 9554 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 2 - - uid: 9555 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 2 - - uid: 9556 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 2 - - uid: 9557 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 2 - - uid: 9558 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 2 - uid: 9559 components: - type: Transform @@ -31065,6 +31948,16 @@ entities: - type: Transform pos: -6.5,-41.5 parent: 2 + - uid: 12775 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 12796 + components: + - type: Transform + pos: 12.5,-59.5 + parent: 2 - uid: 12808 components: - type: Transform @@ -31125,6 +32018,11 @@ entities: - type: Transform pos: 32.5,-13.5 parent: 2 + - uid: 14503 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 - uid: 14815 components: - type: Transform @@ -31150,6 +32048,16 @@ entities: - type: Transform pos: 32.5,-6.5 parent: 2 + - uid: 14888 + components: + - type: Transform + pos: 33.5,58.5 + parent: 2 + - uid: 15269 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 2 - uid: 15384 components: - type: Transform @@ -31170,6 +32078,11 @@ entities: - type: Transform pos: 11.5,-53.5 parent: 2 + - uid: 15527 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 - uid: 15618 components: - type: Transform @@ -31250,6 +32163,41 @@ entities: - type: Transform pos: 34.5,54.5 parent: 2 + - uid: 15681 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 15978 + components: + - type: Transform + pos: 31.5,56.5 + parent: 2 + - uid: 16059 + components: + - type: Transform + pos: 32.5,56.5 + parent: 2 + - uid: 16061 + components: + - type: Transform + pos: 33.5,56.5 + parent: 2 + - uid: 16088 + components: + - type: Transform + pos: 34.5,56.5 + parent: 2 + - uid: 16220 + components: + - type: Transform + pos: 35.5,56.5 + parent: 2 + - uid: 16239 + components: + - type: Transform + pos: 35.5,57.5 + parent: 2 - proto: CableHVStack entities: - uid: 5137 @@ -31291,11 +32239,6 @@ entities: parent: 2 - proto: CableMV entities: - - uid: 19 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 2 - uid: 139 components: - type: Transform @@ -31306,16 +32249,6 @@ entities: - type: Transform pos: -1.5,-8.5 parent: 2 - - uid: 310 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 2 - - uid: 312 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - uid: 356 components: - type: Transform @@ -31396,31 +32329,6 @@ entities: - type: Transform pos: 13.5,-7.5 parent: 2 - - uid: 506 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 2 - - uid: 507 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 2 - - uid: 508 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 2 - - uid: 509 - components: - - type: Transform - pos: 5.5,0.5 - parent: 2 - - uid: 510 - components: - - type: Transform - pos: 5.5,1.5 - parent: 2 - uid: 511 components: - type: Transform @@ -31821,16 +32729,41 @@ entities: - type: Transform pos: 12.5,-6.5 parent: 2 + - uid: 756 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 - uid: 803 components: - type: Transform - pos: 1.5,-5.5 + pos: 5.5,0.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: 5.5,1.5 parent: 2 - uid: 821 components: - type: Transform pos: -4.5,7.5 parent: 2 + - uid: 977 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 - uid: 992 components: - type: Transform @@ -31981,6 +32914,11 @@ entities: - type: Transform pos: 48.5,-13.5 parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 2 - uid: 1425 components: - type: Transform @@ -32141,6 +33079,11 @@ entities: - type: Transform pos: 11.5,-13.5 parent: 2 + - uid: 1795 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 2 - uid: 2011 components: - type: Transform @@ -32181,6 +33124,16 @@ entities: - type: Transform pos: -18.5,-38.5 parent: 2 + - uid: 2205 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 - uid: 2260 components: - type: Transform @@ -32191,6 +33144,21 @@ entities: - type: Transform pos: -2.5,-16.5 parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 2 - uid: 2516 components: - type: Transform @@ -32471,26 +33439,6 @@ entities: - type: Transform pos: -21.5,-40.5 parent: 2 - - uid: 3436 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 2 - - uid: 3437 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 2 - - uid: 3438 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 2 - - uid: 3439 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 2 - uid: 3447 components: - type: Transform @@ -33831,71 +34779,6 @@ entities: - type: Transform pos: -3.5,-9.5 parent: 2 - - uid: 5993 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 2 - - uid: 5994 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 2 - - uid: 5995 - components: - - type: Transform - pos: -4.5,-3.5 - parent: 2 - - uid: 5996 - components: - - type: Transform - pos: -4.5,-2.5 - parent: 2 - - uid: 5997 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 2 - - uid: 5998 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 2 - - uid: 5999 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 2 - - uid: 6000 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 2 - - uid: 6001 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 2 - - uid: 6002 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 2 - - uid: 6003 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 2 - - uid: 6004 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 2 - - uid: 6005 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 2 - uid: 6006 components: - type: Transform @@ -34926,6 +35809,11 @@ entities: - type: Transform pos: 14.5,34.5 parent: 2 + - uid: 7537 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 - uid: 7538 components: - type: Transform @@ -35346,21 +36234,6 @@ entities: - type: Transform pos: 30.5,-0.5 parent: 2 - - uid: 8787 - components: - - type: Transform - pos: 26.5,-32.5 - parent: 2 - - uid: 8788 - components: - - type: Transform - pos: 26.5,-31.5 - parent: 2 - - uid: 8789 - components: - - type: Transform - pos: 26.5,-30.5 - parent: 2 - uid: 8846 components: - type: Transform @@ -37451,6 +38324,11 @@ entities: - type: Transform pos: 32.5,-4.5 parent: 2 + - uid: 12626 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 2 - uid: 12860 components: - type: Transform @@ -37546,6 +38424,11 @@ entities: - type: Transform pos: -21.5,-41.5 parent: 2 + - uid: 13855 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 - uid: 13866 components: - type: Transform @@ -37676,6 +38559,11 @@ entities: - type: Transform pos: -15.5,-38.5 parent: 2 + - uid: 14217 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 2 - uid: 14303 components: - type: Transform @@ -37691,6 +38579,16 @@ entities: - type: Transform pos: 18.5,35.5 parent: 2 + - uid: 14506 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 14529 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 2 - uid: 14736 components: - type: Transform @@ -37811,6 +38709,16 @@ entities: - type: Transform pos: -19.5,-38.5 parent: 2 + - uid: 14935 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 14963 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 - uid: 15203 components: - type: Transform @@ -38191,16 +39099,6 @@ entities: - type: Transform pos: 38.5,-13.5 parent: 2 - - uid: 16349 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 2 - - uid: 16350 - components: - - type: Transform - pos: 0.5,-7.5 - parent: 2 - proto: CableMVStack entities: - uid: 5135 @@ -38314,6 +39212,20 @@ entities: - type: Transform pos: -33.3829,-20.528595 parent: 2 +- proto: CapacitorStockPart + entities: + - uid: 16401 + components: + - type: Transform + pos: 32.166813,-17.551153 + parent: 2 + - type: Stack + count: 2 + - uid: 16415 + components: + - type: Transform + pos: 27.703878,37.44894 + parent: 2 - proto: CaptainIDCard entities: - uid: 11350 @@ -38328,10 +39240,10 @@ entities: - type: Transform pos: 40.5,-29.5 parent: 2 - - uid: 2436 + - uid: 14218 components: - type: Transform - pos: 22.5,-39.5 + pos: 19.5,-39.5 parent: 2 - proto: Carpet entities: @@ -38429,6 +39341,18 @@ entities: - type: Transform pos: 9.5,-22.5 parent: 2 + - uid: 12718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,0.5 + parent: 2 + - uid: 14780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,1.5 + parent: 2 - proto: CarpetCyan entities: - uid: 6593 @@ -38484,6 +39408,11 @@ entities: parent: 2 - proto: Catwalk entities: + - uid: 88 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 - uid: 171 components: - type: Transform @@ -38494,6 +39423,27 @@ entities: - type: Transform pos: 33.5,-24.5 parent: 2 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: 16.5,-54.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 16.5,-57.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: 37.5,53.5 + parent: 2 - uid: 854 components: - type: Transform @@ -38695,6 +39645,11 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-20.5 parent: 2 + - uid: 1154 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 - uid: 1175 components: - type: Transform @@ -38873,6 +39828,47 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-10.5 parent: 2 + - uid: 2331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-34.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-36.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-37.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-39.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 16.5,-55.5 + parent: 2 - uid: 2522 components: - type: Transform @@ -38999,51 +39995,16 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-44.5 parent: 2 - - uid: 2833 + - uid: 2813 components: - type: Transform - pos: 16.5,-54.5 + pos: 16.5,-58.5 parent: 2 - uid: 2834 components: - type: Transform pos: 16.5,-50.5 parent: 2 - - uid: 2943 - components: - - type: Transform - pos: 26.5,-34.5 - parent: 2 - - uid: 2944 - components: - - type: Transform - pos: 26.5,-35.5 - parent: 2 - - uid: 2945 - components: - - type: Transform - pos: 26.5,-36.5 - parent: 2 - - uid: 2946 - components: - - type: Transform - pos: 26.5,-37.5 - parent: 2 - - uid: 2947 - components: - - type: Transform - pos: 26.5,-38.5 - parent: 2 - - uid: 2948 - components: - - type: Transform - pos: 26.5,-39.5 - parent: 2 - - uid: 2949 - components: - - type: Transform - pos: 26.5,-40.5 - parent: 2 - uid: 2950 components: - type: Transform @@ -39079,6 +40040,11 @@ entities: - type: Transform pos: 36.5,-37.5 parent: 2 + - uid: 3001 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 - uid: 3042 components: - type: Transform @@ -39105,6 +40071,12 @@ entities: - type: Transform pos: -18.5,-46.5 parent: 2 + - uid: 4622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 2 - uid: 5067 components: - type: Transform @@ -39157,30 +40129,6 @@ entities: - type: Transform pos: 41.5,-11.5 parent: 2 - - uid: 5989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-5.5 - parent: 2 - - uid: 5990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-6.5 - parent: 2 - - uid: 5991 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 2 - - uid: 5992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 2 - uid: 6040 components: - type: Transform @@ -39707,10 +40655,11 @@ entities: - type: Transform pos: -2.5,24.5 parent: 2 - - uid: 9617 + - uid: 10426 components: - type: Transform - pos: 16.5,-55.5 + rot: 1.5707963267948966 rad + pos: 23.5,-40.5 parent: 2 - uid: 10507 components: @@ -41274,11 +42223,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-30.5 parent: 2 - - uid: 13489 - components: - - type: Transform - pos: 42.5,-1.5 - parent: 2 - uid: 13523 components: - type: Transform @@ -41291,10 +42235,10 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,-31.5 parent: 2 - - uid: 13738 + - uid: 13778 components: - type: Transform - pos: 41.5,-1.5 + pos: 42.5,-2.5 parent: 2 - uid: 14037 components: @@ -41771,17 +42715,10 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,53.5 parent: 2 - - uid: 14503 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,54.5 - parent: 2 - uid: 14504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,53.5 + pos: 44.5,-9.5 parent: 2 - uid: 14505 components: @@ -41789,6 +42726,21 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,52.5 parent: 2 + - uid: 14565 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - uid: 14567 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 + - uid: 14576 + components: + - type: Transform + pos: 16.5,-59.5 + parent: 2 - uid: 14674 components: - type: Transform @@ -41807,6 +42759,12 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-10.5 parent: 2 + - uid: 14827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 2 - uid: 15253 components: - type: Transform @@ -41912,10 +42870,10 @@ entities: rot: 3.141592653589793 rad pos: 24.5,36.5 parent: 2 - - uid: 15839 + - uid: 15901 components: - type: Transform - pos: 43.5,-1.5 + pos: 14.5,-58.5 parent: 2 - uid: 16027 components: @@ -41977,6 +42935,26 @@ entities: - type: Transform pos: 36.5,-16.5 parent: 2 + - uid: 16254 + components: + - type: Transform + pos: 37.5,56.5 + parent: 2 + - uid: 16329 + components: + - type: Transform + pos: 37.5,57.5 + parent: 2 + - uid: 16330 + components: + - type: Transform + pos: 37.5,58.5 + parent: 2 + - uid: 16331 + components: + - type: Transform + pos: 35.5,57.5 + parent: 2 - uid: 16375 components: - type: Transform @@ -42004,7 +42982,7 @@ entities: - uid: 13785 components: - type: Transform - pos: 27.671509,37.939373 + pos: 27.240135,37.852577 parent: 2 - proto: Chair entities: @@ -42302,12 +43280,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.55629,-20.402246 parent: 2 - - uid: 728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.4965334,-6.398676 - parent: 2 - uid: 760 components: - type: Transform @@ -42337,23 +43309,17 @@ entities: rot: 1.5707963267948966 rad pos: 22.499483,-8.389568 parent: 2 - - uid: 7537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.67196,57.563953 - parent: 2 - uid: 7636 components: - type: Transform rot: 3.141592653589793 rad pos: 19.551804,39.69655 parent: 2 - - uid: 8527 + - uid: 8940 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.39071,57.54833 + pos: 32.254124,-38.51852 parent: 2 - uid: 9609 components: @@ -42366,17 +43332,24 @@ entities: rot: 1.5707963267948966 rad pos: -32.44567,-11.355937 parent: 2 - - uid: 14406 - components: - - type: Transform - pos: 32.633217,-36.41033 - parent: 2 - uid: 14407 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.445717,-37.582207 parent: 2 + - uid: 16346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.60117,61.45984 + parent: 2 + - uid: 16347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.491795,61.64734 + parent: 2 - uid: 16366 components: - type: Transform @@ -42950,13 +43923,6 @@ entities: - type: Transform pos: 27.5,10.5 parent: 2 -- proto: ChemDispenserEmpty - entities: - - uid: 677 - components: - - type: Transform - pos: 26.5,38.5 - parent: 2 - proto: ChemistryEmptyBottle01 entities: - uid: 8823 @@ -43033,16 +43999,6 @@ entities: bodyType: Static - proto: Cigar entities: - - uid: 734 - components: - - type: Transform - pos: -2.516527,-7.3284693 - parent: 2 - - uid: 905 - components: - - type: Transform - pos: -2.313402,-7.3128443 - parent: 2 - uid: 14033 components: - type: Transform @@ -43074,6 +44030,11 @@ entities: - type: Transform pos: -0.2998953,0.5194752 parent: 2 + - uid: 3895 + components: + - type: Transform + pos: 41.132133,26.684916 + parent: 2 - uid: 12797 components: - type: Transform @@ -43104,30 +44065,26 @@ entities: - type: Transform pos: 33.207268,-38.246517 parent: 2 - - uid: 16383 + - uid: 14518 components: - type: Transform - pos: -17.450197,18.73896 + pos: 41.486813,26.560337 parent: 2 - - uid: 16384 + - uid: 15109 components: - type: Transform - pos: -17.793947,18.67646 + pos: -4.4094725,-6.401611 parent: 2 -- proto: CigaretteSyndicate - entities: - - uid: 14357 + - uid: 16383 components: - type: Transform - pos: 41.146534,26.828377 + pos: -17.450197,18.73896 parent: 2 - - uid: 16061 + - uid: 16384 components: - type: Transform - parent: 16055 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -17.793947,18.67646 + parent: 2 - proto: CigarGold entities: - uid: 10369 @@ -43142,6 +44099,13 @@ entities: - type: Transform pos: -13.533066,-6.2796874 parent: 2 +- proto: CigCartonBlack + entities: + - uid: 14721 + components: + - type: Transform + pos: 48.574272,6.341091 + parent: 2 - proto: CircuitImprinter entities: - uid: 16381 @@ -43243,6 +44207,11 @@ entities: - type: Transform pos: -2.5,33.5 parent: 2 + - uid: 4620 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 - uid: 4704 components: - type: Transform @@ -43440,6 +44409,11 @@ entities: - type: Transform pos: 10.5,-5.5 parent: 2 + - uid: 1157 + components: + - type: Transform + pos: 37.5,-31.5 + parent: 2 - uid: 1247 components: - type: Transform @@ -43570,6 +44544,11 @@ entities: - type: Transform pos: -6.5,-38.5 parent: 2 + - uid: 15510 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 - proto: ClosetJanitorFilled entities: - uid: 109 @@ -43843,7 +44822,7 @@ entities: - uid: 15840 components: - type: Transform - pos: 43.650375,-1.3479055 + pos: 40.904457,-0.7000258 parent: 2 - uid: 16394 components: @@ -43855,7 +44834,7 @@ entities: - uid: 8493 components: - type: Transform - pos: 37.669296,-5.194439 + pos: 40.67693,-4.1979237 parent: 2 - proto: ClothingEyesGlassesCheapSunglasses entities: @@ -43899,20 +44878,6 @@ entities: - type: Transform pos: -70.281,-10.984222 parent: 2 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 6640 - components: - - type: Transform - pos: -2.1804788,22.571062 - parent: 2 -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 15842 - components: - - type: Transform - pos: 41.947968,-1.5498452 - parent: 2 - proto: ClothingHandsGlovesCombat entities: - uid: 2185 @@ -43944,7 +44909,7 @@ entities: - uid: 13753 components: - type: Transform - pos: 40.554234,33.41338 + pos: 46.43723,33.34558 parent: 2 - proto: ClothingHeadBandBotany entities: @@ -44077,7 +45042,7 @@ entities: - uid: 5138 components: - type: Transform - pos: -27.38747,14.612673 + pos: -26.503574,16.524607 parent: 2 - uid: 6641 components: @@ -44089,13 +45054,6 @@ entities: - type: Transform pos: 26.465076,-5.4179134 parent: 2 -- proto: ClothingHeadHelmetERTJanitor - entities: - - uid: 15269 - components: - - type: Transform - pos: 26.415586,-56.37533 - parent: 2 - proto: ClothingHeadsetMining entities: - uid: 15264 @@ -44110,6 +45068,13 @@ entities: - type: Transform pos: -26.26548,11.413899 parent: 2 +- proto: ClothingMaskGas + entities: + - uid: 16429 + components: + - type: Transform + pos: -8.569451,33.71903 + parent: 2 - proto: ClothingMaskGasMerc entities: - uid: 13758 @@ -44175,6 +45140,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingOuterApron + entities: + - uid: 16428 + components: + - type: Transform + pos: -8.397576,33.56278 + parent: 2 - proto: ClothingOuterApronBar entities: - uid: 5915 @@ -44236,13 +45208,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingShoesBootsJack - entities: - - uid: 8243 - components: - - type: Transform - pos: 12.608273,19.495178 - parent: 2 - proto: ClothingShoesBootsMag entities: - uid: 8169 @@ -44266,6 +45231,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingShoesBootsWork + entities: + - uid: 5293 + components: + - type: Transform + pos: 12.630562,19.620356 + parent: 2 - proto: ClothingUnderSocksCoder entities: - uid: 15213 @@ -44327,6 +45299,12 @@ entities: parent: 2 - proto: ComfyChair entities: + - uid: 496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 - uid: 2136 components: - type: Transform @@ -44354,6 +45332,12 @@ entities: - type: Transform pos: -28.5,-33.5 parent: 2 + - uid: 5994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 - uid: 7114 components: - type: Transform @@ -44487,6 +45471,12 @@ entities: parent: 2 - proto: ComputerBroken entities: + - uid: 2506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-0.5 + parent: 2 - uid: 6712 components: - type: Transform @@ -44508,11 +45498,6 @@ entities: - type: Transform pos: 44.5,32.5 parent: 2 - - uid: 10426 - components: - - type: Transform - pos: 42.5,-0.5 - parent: 2 - uid: 14048 components: - type: Transform @@ -44656,13 +45641,6 @@ entities: - type: Transform pos: -12.5,-32.5 parent: 2 -- proto: ComputerFrame - entities: - - uid: 13778 - components: - - type: Transform - pos: 43.5,-0.5 - parent: 2 - proto: ComputerId entities: - uid: 1774 @@ -44908,6 +45886,11 @@ entities: - type: Transform pos: 2.5,15.5 parent: 2 + - uid: 14291 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 - uid: 15254 components: - type: Transform @@ -44923,11 +45906,6 @@ entities: - type: Transform pos: 36.5,-22.5 parent: 2 - - uid: 16345 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 2 - proto: CondenserMachineCircuitBoard entities: - uid: 7473 @@ -45188,13 +46166,6 @@ entities: - type: Transform pos: 6.5,37.5 parent: 2 -- proto: CrateEngineeringAMEControl - entities: - - uid: 367 - components: - - type: Transform - pos: 39.5,-8.5 - parent: 2 - proto: CrateEngineeringAMEJar entities: - uid: 2634 @@ -45209,6 +46180,37 @@ entities: - type: Transform pos: 40.5,-12.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + 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: + - 4557 + - 4558 + - 4591 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateEngineeringCableBulk entities: - uid: 11345 @@ -45295,11 +46297,6 @@ entities: - type: Transform pos: 5.5,-8.5 parent: 2 - - uid: 720 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 2 - uid: 5308 components: - type: Transform @@ -45505,13 +46502,6 @@ entities: - type: Transform pos: -4.5,5.5 parent: 2 -- proto: CrateVendingMachineRestockChemVendFilled - entities: - - uid: 13724 - components: - - type: Transform - pos: 27.5,34.5 - parent: 2 - proto: CrayonBox entities: - uid: 12927 @@ -45714,6 +46704,13 @@ entities: - type: Transform pos: -3.5,21.5 parent: 2 +- proto: CyborgEndoskeleton + entities: + - uid: 14513 + components: + - type: Transform + pos: -27.066074,16.227732 + parent: 2 - proto: d6Dice entities: - uid: 9394 @@ -45791,10 +46788,10 @@ entities: parent: 2 - proto: DefaultStationBeaconBar entities: - - uid: 14291 + - uid: 4621 components: - type: Transform - pos: 0.5,-5.5 + pos: -0.5,-5.5 parent: 2 - proto: DefaultStationBeaconBotany entities: @@ -46308,23 +47305,11 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-8.5 parent: 2 - - uid: 479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-7.5 - parent: 2 - uid: 480 components: - type: Transform pos: -3.5,3.5 parent: 2 - - uid: 482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 2 - uid: 609 components: - type: Transform @@ -46336,6 +47321,18 @@ entities: rot: 3.141592653589793 rad pos: 14.5,9.5 parent: 2 + - uid: 1792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 - uid: 2558 components: - type: Transform @@ -46663,6 +47660,12 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-30.5 parent: 2 + - uid: 4997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 2 - uid: 6116 components: - type: Transform @@ -46836,11 +47839,11 @@ entities: - type: Transform pos: 7.5,24.5 parent: 2 - - uid: 16338 + - uid: 16423 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-2.5 + pos: 12.5,-13.5 parent: 2 - proto: DisposalPipe entities: @@ -46943,17 +47946,17 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,0.5 parent: 2 - - uid: 610 + - uid: 495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-2.5 + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 parent: 2 - - uid: 846 + - uid: 610 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 parent: 2 - uid: 988 components: @@ -47020,12 +48023,24 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,9.5 parent: 2 + - uid: 5341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 - uid: 5646 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-30.5 parent: 2 + - uid: 5996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 2 - uid: 10532 components: - type: Transform @@ -47283,12 +48298,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-13.5 parent: 2 - - uid: 12981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-13.5 - parent: 2 - uid: 12982 components: - type: Transform @@ -49495,23 +50504,15 @@ entities: rot: 3.141592653589793 rad pos: -42.5,-35.5 parent: 2 - - uid: 16333 + - uid: 16421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-4.5 - parent: 2 - - uid: 16335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-5.5 + pos: 12.5,-14.5 parent: 2 - - uid: 16336 + - uid: 16422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-6.5 + pos: 12.5,-15.5 parent: 2 - proto: DisposalTrunk entities: @@ -49702,6 +50703,12 @@ entities: - type: Transform pos: -63.5,-29.5 parent: 2 + - uid: 13530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 - uid: 14166 components: - type: Transform @@ -49732,11 +50739,11 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-36.5 parent: 2 - - uid: 16337 + - uid: 16420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 + rot: 1.5707963267948966 rad + pos: 11.5,-16.5 parent: 2 - proto: DisposalUnit entities: @@ -49755,14 +50762,6 @@ entities: - type: Transform pos: -3.5,12.5 parent: 2 - - uid: 812 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 2 - - type: DisposalUnit - recentlyEjected: - - 328 - uid: 1701 components: - type: Transform @@ -49788,6 +50787,16 @@ entities: - type: Transform pos: -6.5,-16.5 parent: 2 + - uid: 2812 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 - uid: 4029 components: - type: Transform @@ -50025,11 +51034,6 @@ entities: - type: Transform pos: -4.5,-38.5 parent: 2 - - uid: 4693 - components: - - type: Transform - pos: -30.5,-41.5 - parent: 2 - uid: 6037 components: - type: Transform @@ -50092,7 +51096,7 @@ entities: - uid: 14507 components: - type: Transform - pos: 33.79696,57.563953 + pos: 33.741795,61.58484 parent: 2 - proto: DrinkBeerGrowler entities: @@ -50109,7 +51113,7 @@ entities: - uid: 14450 components: - type: Transform - pos: 33.343834,57.98583 + pos: 33.304295,61.881714 parent: 2 - proto: DrinkBottleOfNothingFull entities: @@ -50151,11 +51155,6 @@ entities: - type: Transform pos: 6.653341,-6.3584204 parent: 2 - - uid: 427 - components: - - type: Transform - pos: 0.3676461,-7.2802954 - parent: 2 - uid: 3228 components: - type: Transform @@ -50253,16 +51252,6 @@ entities: - type: Transform pos: 6.418966,-6.4365454 parent: 2 - - uid: 328 - components: - - type: Transform - pos: 0.6238045,-7.432267 - parent: 2 - - uid: 341 - components: - - type: Transform - pos: 0.7113961,-7.2646704 - parent: 2 - uid: 9391 components: - type: Transform @@ -50273,6 +51262,11 @@ entities: - type: Transform pos: 37.292343,26.40349 parent: 2 + - uid: 9550 + components: + - type: Transform + pos: 26.36362,-56.31381 + parent: 2 - uid: 11095 components: - type: Transform @@ -50288,11 +51282,26 @@ entities: - type: Transform pos: -27.343176,-1.5369649 parent: 2 + - uid: 15734 + components: + - type: Transform + pos: -0.052975893,-3.6016946 + parent: 2 + - uid: 15735 + components: + - type: Transform + pos: -0.1311009,-3.3360696 + parent: 2 - uid: 16341 components: - type: Transform pos: 3.6412609,-0.07137632 parent: 2 + - uid: 16349 + components: + - type: Transform + pos: 26.58237,-56.735683 + parent: 2 - proto: DrinkTeapot entities: - uid: 908 @@ -50300,6 +51309,13 @@ entities: - type: Transform pos: 1.912011,-4.3345895 parent: 2 +- proto: DrinkTequilaBottleFull + entities: + - uid: 3991 + components: + - type: Transform + pos: 26.754246,-56.12631 + parent: 2 - proto: DrinkVodkaBottleFull entities: - uid: 13769 @@ -50333,7 +51349,7 @@ entities: - uid: 13784 components: - type: Transform - pos: 27.642355,37.74729 + pos: 27.72451,34.243202 parent: 2 - proto: EmergencyFunnyOxygenTankFilled entities: @@ -50344,6 +51360,18 @@ entities: parent: 2 - proto: EmergencyLight entities: + - uid: 2515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-32.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 - uid: 7773 components: - type: Transform @@ -50361,6 +51389,12 @@ entities: - type: Transform pos: 16.5,2.5 parent: 2 + - uid: 15338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-41.5 + parent: 2 - uid: 15477 components: - type: Transform @@ -50537,18 +51571,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-28.5 parent: 2 - - uid: 15509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-33.5 - parent: 2 - - uid: 15510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-41.5 - parent: 2 - uid: 15511 components: - type: Transform @@ -51021,12 +52043,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 2 - - uid: 16361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 2 - proto: EmergencyRollerBed entities: - uid: 4100 @@ -51108,6 +52124,11 @@ entities: parent: 2 - proto: ExtinguisherCabinetFilled entities: + - uid: 1257 + components: + - type: Transform + pos: 25.5,-41.5 + parent: 2 - uid: 4487 components: - type: Transform @@ -51355,11 +52376,6 @@ entities: destinationAddress: Captain's Office - proto: filingCabinetDrawerRandom entities: - - uid: 1792 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 2 - uid: 2032 components: - type: Transform @@ -51415,6 +52431,11 @@ entities: - type: Transform pos: 11.5,30.5 parent: 2 + - uid: 12981 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 - proto: filingCabinetRandom entities: - uid: 1045 @@ -51768,10 +52789,10 @@ entities: devices: - 243 - 197 - - 853 - - 16329 - - 16330 - - 16331 + - 3815 + - 5992 + - 3439 + - 5993 - 1620 - 1621 - 1622 @@ -51781,6 +52802,7 @@ entities: - 266 - 1628 - 1629 + - 14702 - uid: 14651 components: - type: MetaData @@ -52233,10 +53255,12 @@ entities: parent: 2 - type: DeviceList devices: - - 16331 - - 16330 - - 16329 - - 853 + - 5993 + - 3439 + - 5992 + - 3815 + - 14702 + - 1628 - proto: FireAlarmElectronics entities: - uid: 2284 @@ -52259,6 +53283,11 @@ entities: parent: 2 - proto: FireExtinguisher entities: + - uid: 1914 + components: + - type: Transform + pos: 29.351881,-29.496101 + parent: 2 - uid: 8474 components: - type: Transform @@ -52291,6 +53320,7 @@ entities: - 813 - 811 - 14641 + - 16327 - uid: 2595 components: - type: Transform @@ -52435,6 +53465,18 @@ entities: - 12732 - 8138 - 14665 + - uid: 14702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 488 + - 811 + - 14641 + - 16327 - uid: 15853 components: - type: Transform @@ -52610,17 +53652,54 @@ entities: - 811 - 14641 - 14651 - - uid: 853 + - uid: 3439 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-3.5 + pos: -1.5,-5.5 parent: 2 - type: DeviceNetwork deviceLists: + - 488 + - 811 + - 14641 - 16327 + - uid: 3815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 488 - 811 - 14641 + - 16327 + - uid: 5992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 488 + - 811 + - 14641 + - 16327 + - uid: 5993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 488 + - 811 + - 14641 + - 16327 - uid: 6141 components: - type: Transform @@ -52823,10 +53902,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12673 - 12724 - 14667 - 14665 + - 14575 - uid: 13853 components: - type: Transform @@ -52847,39 +53926,6 @@ entities: deviceLists: - 14671 - 14673 - - uid: 16329 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16327 - - 811 - - 14641 - - uid: 16330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16327 - - 811 - - 14641 - - uid: 16331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 16327 - - 811 - - 14641 - proto: FirelockElectronics entities: - uid: 2286 @@ -53830,9 +54876,9 @@ entities: - type: DeviceNetwork deviceLists: - 12724 - - 12673 - 14665 - 14667 + - 14575 - uid: 13835 components: - type: Transform @@ -53841,9 +54887,9 @@ entities: - type: DeviceNetwork deviceLists: - 12724 - - 12673 - 14665 - 14667 + - 14575 - uid: 13836 components: - type: Transform @@ -53851,10 +54897,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12673 - 12708 - 14666 - 14667 + - 14575 - uid: 14136 components: - type: Transform @@ -54229,10 +55275,10 @@ entities: parent: 2 - proto: GasCanisterBrokenBase entities: - - uid: 14421 + - uid: 11340 components: - type: Transform - pos: 34.5,-40.5 + pos: 26.5,-41.5 parent: 2 - proto: GasFilterFlipped entities: @@ -54250,17 +55296,23 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-37.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2330 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-39.5 parent: 2 - - uid: 2331 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2429 components: - type: Transform - pos: 28.5,-39.5 + pos: 25.5,-39.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 7803 components: - type: Transform @@ -54273,24 +55325,24 @@ entities: color: '#03FCDFFF' - proto: GasMinerCarbonDioxide entities: - - uid: 2340 + - uid: 1766 components: - type: Transform - pos: 23.5,-39.5 + pos: 20.5,-39.5 parent: 2 - proto: GasMinerNitrogenStation entities: - - uid: 2341 + - uid: 1763 components: - type: Transform - pos: 23.5,-35.5 + pos: 20.5,-35.5 parent: 2 - proto: GasMinerOxygenStation entities: - - uid: 2342 + - uid: 1762 components: - type: Transform - pos: 23.5,-37.5 + pos: 20.5,-37.5 parent: 2 - proto: GasMinerWaterVapor entities: @@ -54301,55 +55353,55 @@ entities: parent: 2 - proto: GasMixerFlipped entities: - - uid: 2504 + - uid: 2413 components: - type: Transform - pos: 29.5,-34.5 + pos: 32.5,-35.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2582 + - uid: 2430 components: - type: Transform - pos: 30.5,-35.5 + pos: 27.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasOutletInjector entities: - - uid: 2334 + - uid: 2231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-35.5 + rot: 1.5707963267948966 rad + pos: 21.5,-37.5 parent: 2 - - uid: 2335 + - uid: 2232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-37.5 + rot: 1.5707963267948966 rad + pos: 21.5,-39.5 parent: 2 - - uid: 2336 + - uid: 2247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-39.5 + rot: 1.5707963267948966 rad + pos: 21.5,-35.5 parent: 2 - - uid: 2337 + - uid: 2334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-35.5 + rot: -1.5707963267948966 rad + pos: 38.5,-35.5 parent: 2 - - uid: 2338 + - uid: 2335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-37.5 + rot: -1.5707963267948966 rad + pos: 38.5,-37.5 parent: 2 - - uid: 2339 + - uid: 2336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-39.5 + rot: -1.5707963267948966 rad + pos: 38.5,-39.5 parent: 2 - uid: 2622 components: @@ -54365,24 +55417,14 @@ entities: parent: 2 - proto: GasPassiveVent entities: - - uid: 2428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-35.5 - parent: 2 - - uid: 2429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-37.5 - parent: 2 - - uid: 2430 + - uid: 2415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-39.5 + rot: 1.5707963267948966 rad + pos: 22.5,-33.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2431 components: - type: Transform @@ -54401,12 +55443,6 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-39.5 parent: 2 - - uid: 2497 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-33.5 - parent: 2 - uid: 2709 components: - type: Transform @@ -54424,6 +55460,24 @@ entities: - type: Transform pos: 20.5,-24.5 parent: 2 + - uid: 8933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-35.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-39.5 + parent: 2 + - uid: 8944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-37.5 + parent: 2 - uid: 11240 components: - type: Transform @@ -54567,23 +55621,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2422 + - uid: 2375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-34.5 + rot: 3.141592653589793 rad + pos: 25.5,-40.5 parent: 2 - - uid: 2423 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2412 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-36.5 + pos: 27.5,-30.5 parent: 2 - - uid: 2424 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-38.5 + pos: 32.5,-31.5 parent: 2 - uid: 2425 components: @@ -54629,17 +55686,8 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-40.5 parent: 2 - - uid: 2492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-40.5 - parent: 2 - - uid: 2496 - components: - - type: Transform - pos: 28.5,-33.5 - parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2510 components: - type: Transform @@ -54662,6 +55710,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-36.5 + parent: 2 - uid: 3903 components: - type: Transform @@ -54751,6 +55805,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5198 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6096 components: - type: Transform @@ -54797,11 +55858,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-17.5 parent: 2 - - uid: 8236 - components: - - type: Transform - pos: 30.5,-31.5 - parent: 2 - uid: 8525 components: - type: Transform @@ -54981,6 +56037,24 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-36.5 + parent: 2 + - uid: 8952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-34.5 + parent: 2 - uid: 8973 components: - type: Transform @@ -56611,6 +57685,11 @@ entities: - type: Transform pos: 28.5,-21.5 parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 2 - uid: 2549 components: - type: Transform @@ -56632,20 +57711,14 @@ entities: - uid: 2696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-33.5 + rot: -1.5707963267948966 rad + pos: 31.5,-30.5 parent: 2 - uid: 2699 components: - type: Transform pos: 34.5,-31.5 parent: 2 - - uid: 2748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-30.5 - parent: 2 - uid: 3733 components: - type: Transform @@ -56788,11 +57861,11 @@ entities: color: '#0055CCFF' - proto: GasPipeHalf entities: - - uid: 2333 + - uid: 2310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-35.5 + rot: 1.5707963267948966 rad + pos: 31.5,-35.5 parent: 2 - uid: 2482 components: @@ -56843,17 +57916,17 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-17.5 parent: 2 - - uid: 14696 + - uid: 16407 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-37.5 + pos: 25.5,-35.5 parent: 2 - - uid: 14697 + - uid: 16408 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-37.5 + rot: -1.5707963267948966 rad + pos: 25.5,-37.5 parent: 2 - proto: GasPipeSensorDistribution entities: @@ -56890,6 +57963,12 @@ entities: color: '#990000FF' - proto: GasPipeStraight entities: + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 2 - uid: 215 components: - type: Transform @@ -57703,78 +58782,57 @@ entities: - type: Transform pos: 23.5,-30.5 parent: 2 - - uid: 2374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-34.5 - parent: 2 - - uid: 2375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-35.5 - parent: 2 - - uid: 2376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-36.5 - parent: 2 - - uid: 2377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-37.5 - parent: 2 - - uid: 2378 + - uid: 2242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-38.5 + rot: 1.5707963267948966 rad + pos: 22.5,-38.5 parent: 2 - - uid: 2379 + - uid: 2245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-39.5 + rot: 1.5707963267948966 rad + pos: 21.5,-38.5 parent: 2 - - uid: 2380 + - uid: 2281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-34.5 + rot: 1.5707963267948966 rad + pos: 23.5,-38.5 parent: 2 - - uid: 2381 + - uid: 2282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-35.5 + rot: 1.5707963267948966 rad + pos: 22.5,-34.5 parent: 2 - - uid: 2382 + - uid: 2283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-36.5 + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 parent: 2 - - uid: 2383 + - uid: 2287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-37.5 + rot: 1.5707963267948966 rad + pos: 20.5,-38.5 parent: 2 - - uid: 2384 + - uid: 2307 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-38.5 + pos: 30.5,-30.5 parent: 2 - - uid: 2385 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-39.5 + pos: 25.5,-38.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2386 components: - type: Transform @@ -57901,153 +58959,178 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-38.5 parent: 2 - - uid: 2407 + - uid: 2411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-39.5 + rot: 1.5707963267948966 rad + pos: 27.5,-40.5 parent: 2 - - uid: 2408 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-38.5 + pos: 32.5,-34.5 parent: 2 - - uid: 2409 + - uid: 2419 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-37.5 + pos: 39.5,-34.5 parent: 2 - - uid: 2410 + - uid: 2420 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-36.5 + pos: 39.5,-36.5 parent: 2 - - uid: 2411 + - uid: 2421 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-35.5 + pos: 39.5,-38.5 parent: 2 - - uid: 2412 + - uid: 2422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-34.5 + rot: 1.5707963267948966 rad + pos: 23.5,-39.5 parent: 2 - - uid: 2413 + - uid: 2423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-34.5 + rot: 1.5707963267948966 rad + pos: 22.5,-36.5 parent: 2 - - uid: 2414 + - uid: 2424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-36.5 + rot: 1.5707963267948966 rad + pos: 22.5,-39.5 parent: 2 - - uid: 2415 + - uid: 2428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-38.5 + rot: 1.5707963267948966 rad + pos: 28.5,-40.5 parent: 2 - - uid: 2416 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2434 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-38.5 + pos: 24.5,-33.5 parent: 2 - - uid: 2417 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-36.5 + rot: 1.5707963267948966 rad + pos: 21.5,-36.5 parent: 2 - - uid: 2418 + - uid: 2441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-34.5 + rot: 1.5707963267948966 rad + pos: 26.5,-40.5 parent: 2 - - uid: 2419 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-34.5 + rot: 1.5707963267948966 rad + pos: 23.5,-34.5 parent: 2 - - uid: 2420 + - uid: 2443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-36.5 + rot: 1.5707963267948966 rad + pos: 23.5,-35.5 parent: 2 - - uid: 2421 + - uid: 2444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-38.5 + rot: 1.5707963267948966 rad + pos: 23.5,-36.5 parent: 2 - - uid: 2469 + - uid: 2445 components: - type: Transform - pos: 28.5,-38.5 + rot: 1.5707963267948966 rad + pos: 22.5,-37.5 parent: 2 - - uid: 2470 + - uid: 2452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-40.5 + rot: 1.5707963267948966 rad + pos: 23.5,-37.5 parent: 2 - - uid: 2473 + - uid: 2453 components: - type: Transform - pos: 28.5,-34.5 + pos: 25.5,-34.5 parent: 2 - - uid: 2474 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2470 components: - type: Transform - pos: 28.5,-36.5 + rot: -1.5707963267948966 rad + pos: 29.5,-40.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2475 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-40.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2476 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-40.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2477 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-40.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2478 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-40.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2479 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-38.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2480 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-36.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2481 components: - type: Transform @@ -58063,33 +59146,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-33.5 - parent: 2 - - uid: 2505 + - uid: 2492 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-25.5 + pos: 25.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2507 + color: '#990000FF' + - uid: 2496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-33.5 + pos: 27.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2508 + - uid: 2505 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-32.5 + pos: -7.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -58101,28 +59176,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2513 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-36.5 - parent: 2 - - uid: 2514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-36.5 - parent: 2 - - uid: 2515 + - uid: 2559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-36.5 + rot: -1.5707963267948966 rad + pos: 29.5,-35.5 parent: 2 - - uid: 2559 + - uid: 2563 components: - type: Transform - pos: 30.5,-34.5 + pos: 32.5,-32.5 parent: 2 - uid: 2571 components: @@ -58131,11 +59194,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2581 - components: - - type: Transform - pos: 30.5,-32.5 - parent: 2 - uid: 2621 components: - type: Transform @@ -58187,6 +59245,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2945 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2975 components: - type: Transform @@ -58443,7 +59516,15 @@ entities: - uid: 5207 components: - type: Transform - pos: 28.5,-37.5 + pos: 25.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-39.5 parent: 2 - uid: 5300 components: @@ -58631,6 +59712,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 6640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-37.5 + parent: 2 - uid: 6653 components: - type: Transform @@ -59662,6 +60749,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 8787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-36.5 + parent: 2 + - uid: 8789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-34.5 + parent: 2 - uid: 8793 components: - type: Transform @@ -59883,6 +60982,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-34.5 + parent: 2 - uid: 8896 components: - type: Transform @@ -59969,6 +61074,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8949 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 2 + - uid: 8951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 + - uid: 8954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-34.5 + parent: 2 + - uid: 8987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-38.5 + parent: 2 - uid: 8998 components: - type: Transform @@ -60220,11 +61356,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 9630 - components: - - type: Transform - pos: 28.5,-35.5 - parent: 2 - uid: 9653 components: - type: Transform @@ -67848,17 +68979,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2471 + - uid: 2418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-18.5 + pos: 26.5,-34.5 parent: 2 - - uid: 2472 + - uid: 2471 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-36.5 + pos: 28.5,-18.5 parent: 2 - uid: 2485 components: @@ -67890,11 +69020,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2506 + - uid: 2498 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-35.5 + pos: 27.5,-35.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: 33.5,-36.5 parent: 2 - uid: 2511 components: @@ -67904,12 +69039,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-36.5 - parent: 2 - uid: 3490 components: - type: Transform @@ -69441,6 +70570,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 13856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-36.5 + parent: 2 - uid: 13879 components: - type: Transform @@ -69598,23 +70733,23 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-28.5 parent: 2 - - uid: 2498 + - uid: 2384 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-34.5 + pos: 25.5,-34.5 parent: 2 - - uid: 2499 + - uid: 2409 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-36.5 + pos: 25.5,-38.5 parent: 2 - - uid: 2500 + - uid: 2410 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-38.5 + pos: 25.5,-36.5 parent: 2 - uid: 2501 components: @@ -69732,12 +70867,14 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-21.5 parent: 2 - - uid: 2494 + - uid: 2497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-33.5 + rot: 1.5707963267948966 rad + pos: 23.5,-33.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVentPump entities: - uid: 368 @@ -69935,7 +71072,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12673 + - 14575 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7554 @@ -71542,7 +72679,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12673 + - 14575 - type: AtmosPipeColor color: '#990000FF' - uid: 9015 @@ -72616,6 +73753,11 @@ entities: parent: 2 - proto: Grille entities: + - uid: 19 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 - uid: 172 components: - type: Transform @@ -72626,6 +73768,21 @@ entities: - type: Transform pos: -5.5,2.5 parent: 2 + - uid: 269 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: 8.5,-61.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 11.5,-61.5 + parent: 2 - uid: 383 components: - type: Transform @@ -72646,31 +73803,51 @@ entities: - type: Transform pos: 18.5,4.5 parent: 2 - - uid: 871 + - uid: 507 components: - type: Transform - pos: 61.5,-23.5 + pos: 39.5,60.5 parent: 2 - - uid: 1108 + - uid: 510 components: - type: Transform - pos: 47.5,-10.5 + pos: -5.5,-6.5 parent: 2 - - uid: 1116 + - uid: 827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-11.5 + pos: -28.5,1.5 parent: 2 - - uid: 1150 + - uid: 846 components: - type: Transform - pos: 36.5,-17.5 + pos: 8.5,-60.5 parent: 2 - - uid: 1157 + - uid: 852 components: - type: Transform - pos: 44.5,-9.5 + pos: 12.5,-61.5 + parent: 2 + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,56.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: 61.5,-23.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: 36.5,-17.5 parent: 2 - uid: 1161 components: @@ -73078,21 +74255,6 @@ entities: - type: Transform pos: 35.5,-36.5 parent: 2 - - uid: 2205 - components: - - type: Transform - pos: 27.5,-34.5 - parent: 2 - - uid: 2207 - components: - - type: Transform - pos: 27.5,-40.5 - parent: 2 - - uid: 2210 - components: - - type: Transform - pos: 27.5,-39.5 - parent: 2 - uid: 2216 components: - type: Transform @@ -73108,10 +74270,17 @@ entities: - type: Transform pos: 35.5,-39.5 parent: 2 + - uid: 2236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-37.5 + parent: 2 - uid: 2238 components: - type: Transform - pos: 25.5,-39.5 + rot: 1.5707963267948966 rad + pos: 24.5,-36.5 parent: 2 - uid: 2239 components: @@ -73128,26 +74297,11 @@ entities: - type: Transform pos: 37.5,-37.5 parent: 2 - - uid: 2247 - components: - - type: Transform - pos: 25.5,-35.5 - parent: 2 - - uid: 2287 - components: - - type: Transform - pos: 27.5,-38.5 - parent: 2 - uid: 2306 components: - type: Transform pos: 35.5,-38.5 parent: 2 - - uid: 2307 - components: - - type: Transform - pos: 25.5,-37.5 - parent: 2 - uid: 2308 components: - type: Transform @@ -73158,21 +74312,6 @@ entities: - type: Transform pos: 37.5,-39.5 parent: 2 - - uid: 2311 - components: - - type: Transform - pos: 27.5,-36.5 - parent: 2 - - uid: 2312 - components: - - type: Transform - pos: 27.5,-37.5 - parent: 2 - - uid: 2313 - components: - - type: Transform - pos: 27.5,-35.5 - parent: 2 - uid: 2321 components: - type: Transform @@ -73253,21 +74392,6 @@ entities: - type: Transform pos: 44.5,-33.5 parent: 2 - - uid: 2367 - components: - - type: Transform - pos: 26.5,-43.5 - parent: 2 - - uid: 2368 - components: - - type: Transform - pos: 25.5,-43.5 - parent: 2 - - uid: 2369 - components: - - type: Transform - pos: 24.5,-43.5 - parent: 2 - uid: 2370 components: - type: Transform @@ -73283,6 +74407,12 @@ entities: - type: Transform pos: 20.5,-43.5 parent: 2 + - uid: 2408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-39.5 + parent: 2 - uid: 2460 components: - type: Transform @@ -73303,6 +74433,18 @@ entities: - type: Transform pos: 22.5,-25.5 parent: 2 + - uid: 2474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-38.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 - uid: 2576 components: - type: Transform @@ -73413,6 +74555,11 @@ entities: - type: Transform pos: -6.5,63.5 parent: 2 + - uid: 2833 + components: + - type: Transform + pos: 39.5,59.5 + parent: 2 - uid: 2847 components: - type: Transform @@ -73909,29 +75056,11 @@ entities: - type: Transform pos: -27.5,-8.5 parent: 2 - - uid: 4591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,0.5 - parent: 2 - uid: 4592 components: - type: Transform pos: -29.5,-2.5 parent: 2 - - uid: 4621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,0.5 - parent: 2 - - uid: 4622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,1.5 - parent: 2 - uid: 4633 components: - type: Transform @@ -74278,6 +75407,26 @@ entities: - type: Transform pos: 26.5,-26.5 parent: 2 + - uid: 6004 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: 45.5,-9.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 6079 + components: + - type: Transform + pos: 24.5,-44.5 + parent: 2 - uid: 6118 components: - type: Transform @@ -74644,11 +75793,6 @@ entities: - type: Transform pos: -28.5,-61.5 parent: 2 - - uid: 6467 - components: - - type: Transform - pos: 29.5,55.5 - parent: 2 - uid: 6481 components: - type: Transform @@ -74958,11 +76102,6 @@ entities: - type: Transform pos: 25.5,53.5 parent: 2 - - uid: 7893 - components: - - type: Transform - pos: 46.5,-10.5 - parent: 2 - uid: 7909 components: - type: Transform @@ -75796,6 +76935,11 @@ entities: - type: Transform pos: 29.5,54.5 parent: 2 + - uid: 8527 + components: + - type: Transform + pos: 45.5,-10.5 + parent: 2 - uid: 8687 components: - type: Transform @@ -75807,10 +76951,23 @@ entities: - type: Transform pos: 29.5,51.5 parent: 2 - - uid: 9036 + - uid: 8946 components: - type: Transform - pos: 44.5,-10.5 + rot: 1.5707963267948966 rad + pos: 22.5,-37.5 + parent: 2 + - uid: 8947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-39.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 parent: 2 - uid: 9043 components: @@ -75839,6 +76996,41 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-45.5 parent: 2 + - uid: 9551 + components: + - type: Transform + pos: 13.5,-61.5 + parent: 2 + - uid: 9552 + components: + - type: Transform + pos: 14.5,-61.5 + parent: 2 + - uid: 9553 + components: + - type: Transform + pos: 17.5,-61.5 + parent: 2 + - uid: 9554 + components: + - type: Transform + pos: 18.5,-61.5 + parent: 2 + - uid: 9555 + components: + - type: Transform + pos: 18.5,-60.5 + parent: 2 + - uid: 9556 + components: + - type: Transform + pos: 18.5,-58.5 + parent: 2 + - uid: 9558 + components: + - type: Transform + pos: 38.5,60.5 + parent: 2 - uid: 9997 components: - type: Transform @@ -75894,11 +77086,11 @@ entities: - type: Transform pos: -29.5,-35.5 parent: 2 - - uid: 11340 + - uid: 12673 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-43.5 + pos: 24.5,-34.5 parent: 2 - uid: 12839 components: @@ -75928,48 +77120,12 @@ entities: - type: Transform pos: 4.5,-43.5 parent: 2 - - uid: 14217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-41.5 - parent: 2 - - uid: 14218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-40.5 - parent: 2 - - uid: 14219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-37.5 - parent: 2 - uid: 14222 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-48.5 parent: 2 - - uid: 14227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-39.5 - parent: 2 - - uid: 14228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-36.5 - parent: 2 - - uid: 14229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-35.5 - parent: 2 - uid: 14230 components: - type: Transform @@ -76134,6 +77290,12 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-42.5 parent: 2 + - uid: 14534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 - uid: 14796 components: - type: Transform @@ -76145,6 +77307,11 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-6.5 parent: 2 + - uid: 15271 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 - uid: 15355 components: - type: Transform @@ -76179,31 +77346,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-47.5 parent: 2 - - uid: 15677 - components: - - type: Transform - pos: 31.5,56.5 - parent: 2 - - uid: 15678 - components: - - type: Transform - pos: 32.5,56.5 - parent: 2 - - uid: 15679 - components: - - type: Transform - pos: 33.5,56.5 - parent: 2 - - uid: 15680 - components: - - type: Transform - pos: 34.5,56.5 - parent: 2 - - uid: 15681 - components: - - type: Transform - pos: 35.5,56.5 - parent: 2 - uid: 15682 components: - type: Transform @@ -76219,12 +77361,6 @@ entities: - type: Transform pos: 39.5,52.5 parent: 2 - - uid: 15731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-51.5 - parent: 2 - uid: 15732 components: - type: Transform @@ -76237,42 +77373,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-53.5 parent: 2 - - uid: 15734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-57.5 - parent: 2 - - uid: 15735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-57.5 - parent: 2 - - uid: 15736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-57.5 - parent: 2 - - uid: 15737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-57.5 - parent: 2 - - uid: 15738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-57.5 - parent: 2 - - uid: 15739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-57.5 - parent: 2 - uid: 15740 components: - type: Transform @@ -76315,12 +77415,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-48.5 parent: 2 - - uid: 15747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-47.5 - parent: 2 - uid: 15748 components: - type: Transform @@ -76351,12 +77445,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-39.5 parent: 2 - - uid: 15753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,56.5 - parent: 2 - uid: 15754 components: - type: Transform @@ -76466,8 +77554,73 @@ entities: - type: Transform pos: -26.5,41.5 parent: 2 + - uid: 16332 + components: + - type: Transform + pos: 35.5,60.5 + parent: 2 + - uid: 16333 + components: + - type: Transform + pos: 34.5,60.5 + parent: 2 + - uid: 16334 + components: + - type: Transform + pos: 33.5,60.5 + parent: 2 + - uid: 16336 + components: + - type: Transform + pos: 31.5,60.5 + parent: 2 + - uid: 16337 + components: + - type: Transform + pos: 29.5,60.5 + parent: 2 + - uid: 16338 + components: + - type: Transform + pos: 29.5,59.5 + parent: 2 + - uid: 16344 + components: + - type: Transform + pos: 29.5,58.5 + parent: 2 + - uid: 16403 + components: + - type: Transform + pos: -44.5,-39.5 + parent: 2 + - uid: 16404 + components: + - type: Transform + pos: -43.5,-39.5 + parent: 2 + - uid: 16405 + components: + - type: Transform + pos: -42.5,-39.5 + parent: 2 + - uid: 16406 + components: + - type: Transform + pos: -41.5,-39.5 + parent: 2 - proto: GrilleSpawner entities: + - uid: 314 + components: + - type: Transform + pos: 10.5,-61.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 - uid: 1755 components: - type: Transform @@ -76493,6 +77646,11 @@ entities: - type: Transform pos: -0.5,55.5 parent: 2 + - uid: 3438 + components: + - type: Transform + pos: 39.5,57.5 + parent: 2 - uid: 3450 components: - type: Transform @@ -76608,6 +77766,11 @@ entities: - type: Transform pos: 49.5,-37.5 parent: 2 + - uid: 6467 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 2 - uid: 7113 components: - type: Transform @@ -76708,6 +77871,11 @@ entities: - type: Transform pos: -24.5,63.5 parent: 2 + - uid: 8395 + components: + - type: Transform + pos: 29.5,55.5 + parent: 2 - uid: 8406 components: - type: Transform @@ -76728,6 +77896,16 @@ entities: - type: Transform pos: -30.5,17.5 parent: 2 + - uid: 8528 + components: + - type: Transform + pos: 18.5,-43.5 + parent: 2 + - uid: 9557 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 2 - uid: 10230 components: - type: Transform @@ -76763,11 +77941,21 @@ entities: - type: Transform pos: 30.5,-48.5 parent: 2 + - uid: 14696 + components: + - type: Transform + pos: 18.5,-51.5 + parent: 2 - uid: 16145 components: - type: Transform pos: -26.5,40.5 parent: 2 + - uid: 16335 + components: + - type: Transform + pos: 32.5,60.5 + parent: 2 - proto: GunSafeDisabler entities: - uid: 3427 @@ -76855,20 +78043,6 @@ entities: - type: Transform pos: 36.5,-2.5 parent: 2 - - uid: 4997 - components: - - type: MetaData - name: high security door (Gravity Generator) - - type: Transform - pos: 38.5,-5.5 - parent: 2 - - uid: 15433 - components: - - type: MetaData - name: high security door (Station Anchor) - - type: Transform - pos: 44.5,-5.5 - parent: 2 - proto: HolopadAiCore entities: - uid: 14774 @@ -77004,10 +78178,10 @@ entities: parent: 2 - proto: HolopadEngineeringAtmosMain entities: - - uid: 14766 + - uid: 5 components: - type: Transform - pos: 31.5,-37.5 + pos: 29.5,-41.5 parent: 2 - proto: HolopadEngineeringAtmosTeg entities: @@ -77198,13 +78372,6 @@ entities: - type: Transform pos: -19.5,15.5 parent: 2 -- proto: HolopadScienceFront - entities: - - uid: 14721 - components: - - type: Transform - pos: -11.5,21.5 - parent: 2 - proto: HolopadScienceRnd entities: - uid: 16391 @@ -77694,11 +78861,13 @@ entities: rot: 3.141592653589793 rad pos: -41.5,30.5 parent: 2 - - uid: 14449 +- proto: IntercomCommand + entities: + - uid: 4421 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-5.5 + pos: -23.5,-6.5 parent: 2 - uid: 14474 components: @@ -77709,16 +78878,14 @@ entities: - uid: 14475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-5.5 + rot: 1.5707963267948966 rad + pos: -18.5,-5.5 parent: 2 -- proto: IntercomCommand - entities: - - uid: 4421 + - uid: 16409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-6.5 + rot: -1.5707963267948966 rad + pos: -25.5,-5.5 parent: 2 - proto: IntercomCommon entities: @@ -77990,13 +79157,6 @@ entities: - type: Transform pos: 0.46948135,19.865473 parent: 2 -- proto: LampInterrogator - entities: - - uid: 16075 - components: - - type: Transform - pos: -9.509186,58.65886 - parent: 2 - proto: LargeBeaker entities: - uid: 6738 @@ -78018,6 +79178,20 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: LeftArmBorg + entities: + - uid: 14514 + components: + - type: Transform + pos: -27.534824,16.087107 + parent: 2 +- proto: Lighter + entities: + - uid: 14933 + components: + - type: Transform + pos: -4.7553344,-6.4766946 + parent: 2 - proto: LightReplacer entities: - uid: 808 @@ -78098,13 +79272,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 16351: + 6001: - Pressed: Toggle - 16352: + 6000: - Pressed: Toggle - 230: + 6002: - Pressed: Toggle - 226: + 3436: - Pressed: Toggle - proto: LockableButtonCaptain entities: @@ -78119,12 +79293,14 @@ entities: linkedPorts: 4881: - Pressed: Toggle - 13974: + 996: - Pressed: Toggle 13978: - Pressed: Toggle 13977: - Pressed: Toggle + 755: + - Pressed: Toggle - proto: LockableButtonCargo entities: - uid: 6557 @@ -78479,10 +79655,10 @@ entities: parent: 2 - proto: LockerCaptainFilledNoLaser entities: - - uid: 4620 + - uid: 14573 components: - type: Transform - pos: -26.5,1.5 + pos: -27.5,1.5 parent: 2 - proto: LockerChemistryFilled entities: @@ -78683,6 +79859,11 @@ entities: - type: Transform pos: 35.5,17.5 parent: 2 + - uid: 16348 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 - proto: LockerMime entities: - uid: 273 @@ -78860,8 +80041,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8977377 + - 7.139109 - 0 - 0 - 0 @@ -78878,12 +80059,10 @@ entities: showEnts: False occludes: True ents: - - 16061 - - 16060 - - 16059 - - 16058 - - 16057 - 16056 + - 16057 + - 16058 + - 16060 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -78916,6 +80095,11 @@ entities: - type: Transform pos: 25.5,-29.5 parent: 2 + - uid: 2748 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 - uid: 2754 components: - type: Transform @@ -79025,11 +80209,6 @@ entities: - type: Transform pos: 43.5,2.5 parent: 2 - - uid: 15251 - components: - - type: Transform - pos: 29.5,32.5 - parent: 2 - uid: 15252 components: - type: Transform @@ -79084,7 +80263,7 @@ entities: - uid: 16204 components: - type: Transform - pos: 10.9722595,-19.469482 + pos: 11.323762,-19.48439 parent: 2 - proto: MachineAnomalyGenerator entities: @@ -79150,6 +80329,11 @@ entities: parent: 2 - proto: MachineFrame entities: + - uid: 2507 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 - uid: 3423 components: - type: Transform @@ -79167,10 +80351,11 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-40.5 parent: 2 - - uid: 12382 + - uid: 13489 components: - type: Transform - pos: 41.5,-0.5 + rot: -1.5707963267948966 rad + pos: 40.5,-2.5 parent: 2 - uid: 13683 components: @@ -79201,6 +80386,11 @@ entities: parent: 2 - proto: MachineFrameDestroyed entities: + - uid: 677 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 - uid: 5167 components: - type: Transform @@ -79248,6 +80438,11 @@ entities: - type: Transform pos: -11.473943,-33.730816 parent: 2 + - uid: 14449 + components: + - type: Transform + pos: -11.508567,-33.919952 + parent: 2 - proto: MaintenanceFluffSpawner entities: - uid: 13636 @@ -79320,15 +80515,15 @@ entities: - type: Transform pos: 38.5,31.5 parent: 2 - - uid: 13741 + - uid: 13742 components: - type: Transform - pos: 31.5,1.5 + pos: 8.5,-24.5 parent: 2 - - uid: 13742 + - uid: 14521 components: - type: Transform - pos: 8.5,-24.5 + pos: 41.5,5.5 parent: 2 - uid: 15449 components: @@ -79345,6 +80540,23 @@ entities: - type: Transform pos: -19.5,54.5 parent: 2 +- proto: MaintenanceInsulsSpawner + entities: + - uid: 2472 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - uid: 14524 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 - proto: MaintenancePlantSpawner entities: - uid: 372 @@ -79432,11 +80644,6 @@ entities: - type: Transform pos: 42.5,1.5 parent: 2 - - uid: 15838 - components: - - type: Transform - pos: 40.5,-1.5 - parent: 2 - uid: 15848 components: - type: Transform @@ -79459,10 +80666,10 @@ entities: - type: Transform pos: 12.5,-7.5 parent: 2 - - uid: 727 + - uid: 1835 components: - type: Transform - pos: -5.5,-9.5 + pos: 3.5,27.5 parent: 2 - uid: 10233 components: @@ -79564,11 +80771,6 @@ entities: - type: Transform pos: -23.5,46.5 parent: 2 - - uid: 16124 - components: - - type: Transform - pos: -23.5,47.5 - parent: 2 - proto: MaintenanceWeaponSpawner entities: - uid: 725 @@ -79586,11 +80788,6 @@ entities: - type: Transform pos: -22.5,5.5 parent: 2 - - uid: 13706 - components: - - type: Transform - pos: -16.5,30.5 - parent: 2 - uid: 13733 components: - type: Transform @@ -79814,11 +81011,6 @@ entities: - type: Transform pos: -5.576272,7.5283756 parent: 2 - - uid: 15271 - components: - - type: Transform - pos: 26.634336,-56.68783 - parent: 2 - proto: Morgue entities: - uid: 3117 @@ -79905,11 +81097,6 @@ entities: - type: Transform pos: 37.5,-28.5 parent: 2 - - uid: 2434 - components: - - type: Transform - pos: 22.5,-35.5 - parent: 2 - uid: 5305 components: - type: Transform @@ -79935,6 +81122,11 @@ entities: - type: Transform pos: 44.5,29.5 parent: 2 + - uid: 12625 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 - uid: 14206 components: - type: Transform @@ -80064,11 +81256,6 @@ entities: - type: Transform pos: 37.5,-27.5 parent: 2 - - uid: 2435 - components: - - type: Transform - pos: 22.5,-37.5 - parent: 2 - uid: 5306 components: - type: Transform @@ -80099,6 +81286,11 @@ entities: - type: Transform pos: 22.5,32.5 parent: 2 + - uid: 12382 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 - uid: 14215 components: - type: Transform @@ -80155,12 +81347,12 @@ entities: - uid: 16200 components: - type: Transform - pos: 11.2066345,-19.266357 + pos: 11.417512,-19.312515 parent: 2 - uid: 16201 components: - type: Transform - pos: 11.4566345,-19.516357 + pos: 11.605012,-19.468765 parent: 2 - uid: 16202 components: @@ -80464,6 +81656,16 @@ entities: - type: Transform pos: 26.557302,37.30886 parent: 2 + - uid: 16418 + components: + - type: Transform + pos: 32.716835,13.709434 + parent: 2 + - uid: 16419 + components: + - type: Transform + pos: 32.484386,13.476587 + parent: 2 - proto: PlaqueAtmos entities: - uid: 15273 @@ -81001,6 +82203,21 @@ entities: - type: Transform pos: 3.5,-2.5 parent: 2 + - uid: 14523 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - uid: 14525 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 14526 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 - uid: 14717 components: - type: Transform @@ -81358,12 +82575,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-6.5 parent: 2 - - uid: 13530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 2 - uid: 13532 components: - type: Transform @@ -81801,6 +83012,24 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-27.5 parent: 2 + - uid: 2204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-33.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-33.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-40.5 + parent: 2 - uid: 3612 components: - type: Transform @@ -81865,36 +83094,12 @@ entities: rot: 3.141592653589793 rad pos: 37.5,-31.5 parent: 2 - - uid: 12712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-31.5 - parent: 2 - - uid: 12713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-40.5 - parent: 2 - uid: 12714 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-40.5 parent: 2 - - uid: 12715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-32.5 - parent: 2 - - uid: 12716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-32.5 - parent: 2 - uid: 12720 components: - type: Transform @@ -82640,24 +83845,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-34.5 parent: 2 - - uid: 13854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-39.5 - parent: 2 - - uid: 13855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-37.5 - parent: 2 - - uid: 13856 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-35.5 - parent: 2 - uid: 13857 components: - type: Transform @@ -82688,6 +83875,24 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,-26.5 parent: 2 + - uid: 14545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-39.5 + parent: 2 + - uid: 14546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-37.5 + parent: 2 + - uid: 14547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-35.5 + parent: 2 - uid: 15256 components: - type: Transform @@ -82714,6 +83919,11 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-15.5 parent: 2 + - uid: 2202 + components: + - type: Transform + pos: 39.5,-26.5 + parent: 2 - uid: 4498 components: - type: Transform @@ -82749,6 +83959,12 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,13.5 parent: 2 + - uid: 9630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-31.5 + parent: 2 - uid: 10621 components: - type: Transform @@ -82771,18 +83987,6 @@ entities: - type: Transform pos: -24.5,-19.5 parent: 2 - - uid: 12718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 2 - - uid: 12719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-7.5 - parent: 2 - uid: 12737 components: - type: Transform @@ -82807,12 +84011,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-4.5 parent: 2 - - uid: 12804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 2 - uid: 12834 components: - type: Transform @@ -82944,12 +84142,30 @@ entities: - type: Transform pos: -25.5,1.5 parent: 2 + - uid: 14724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 14766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 2 - uid: 15594 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-6.5 parent: 2 + - uid: 15724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 2 - uid: 15730 components: - type: Transform @@ -83023,15 +84239,15 @@ entities: parent: 2 - proto: Rack entities: - - uid: 207 + - uid: 337 components: - type: Transform - pos: 0.5,-7.5 + pos: 6.5,-4.5 parent: 2 - - uid: 337 + - uid: 367 components: - type: Transform - pos: 6.5,-4.5 + pos: 41.5,5.5 parent: 2 - uid: 436 components: @@ -83044,11 +84260,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,8.5 parent: 2 - - uid: 721 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 2 - uid: 723 components: - type: Transform @@ -83089,6 +84300,11 @@ entities: - type: Transform pos: 40.5,-31.5 parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 - uid: 2632 components: - type: Transform @@ -83326,6 +84542,11 @@ entities: - type: Transform pos: -2.5,25.5 parent: 2 + - uid: 13738 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 - uid: 15266 components: - type: Transform @@ -83361,7 +84582,7 @@ entities: - uid: 9125 components: - type: Transform - pos: 23.819582,-10.707807 + pos: 23.843485,-10.439513 parent: 2 - proto: RagItem entities: @@ -83738,13 +84959,13 @@ entities: - type: Transform pos: 40.5,-0.5 parent: 2 - - uid: 16088 +- proto: RandomDrinkBottle + entities: + - uid: 5999 components: - type: Transform - pos: 42.5,-1.5 + pos: -0.5,-3.5 parent: 2 -- proto: RandomDrinkBottle - entities: - uid: 8606 components: - type: Transform @@ -83799,6 +85020,46 @@ entities: - type: Transform pos: -3.5,-38.5 parent: 2 + - uid: 9390 + components: + - type: Transform + pos: -23.5,47.5 + parent: 2 + - uid: 13706 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 15236 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 16124 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 2 + - uid: 16410 + components: + - type: Transform + pos: 36.5,27.5 + parent: 2 + - uid: 16412 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - uid: 16413 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 16414 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 - proto: RandomPainting entities: - uid: 2752 @@ -84142,11 +85403,6 @@ entities: - type: Transform pos: -2.5,-8.5 parent: 2 - - uid: 872 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 2 - uid: 1315 components: - type: Transform @@ -84632,11 +85888,6 @@ entities: - type: Transform pos: 24.5,-28.5 parent: 2 - - uid: 14928 - components: - - type: Transform - pos: 24.5,-32.5 - parent: 2 - uid: 14929 components: - type: Transform @@ -85123,21 +86374,6 @@ entities: - type: Transform pos: 37.5,-35.5 parent: 2 - - uid: 2202 - components: - - type: Transform - pos: 25.5,-37.5 - parent: 2 - - uid: 2204 - components: - - type: Transform - pos: 25.5,-39.5 - parent: 2 - - uid: 2206 - components: - - type: Transform - pos: 25.5,-35.5 - parent: 2 - uid: 2291 components: - type: Transform @@ -85168,6 +86404,24 @@ entities: - type: Transform pos: 31.5,-42.5 parent: 2 + - uid: 2381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-37.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-39.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 2 - uid: 5153 components: - type: Transform @@ -85185,6 +86439,11 @@ entities: parent: 2 - proto: ReinforcedWindow entities: + - uid: 325 + components: + - type: Transform + pos: 45.5,-10.5 + parent: 2 - uid: 1122 components: - type: Transform @@ -85346,11 +86605,6 @@ entities: - type: Transform pos: 35.5,-38.5 parent: 2 - - uid: 2209 - components: - - type: Transform - pos: 27.5,-34.5 - parent: 2 - uid: 2218 components: - type: Transform @@ -85361,11 +86615,6 @@ entities: - type: Transform pos: 35.5,-39.5 parent: 2 - - uid: 2220 - components: - - type: Transform - pos: 27.5,-39.5 - parent: 2 - uid: 2222 components: - type: Transform @@ -85376,30 +86625,10 @@ entities: - type: Transform pos: 35.5,-37.5 parent: 2 - - uid: 2224 - components: - - type: Transform - pos: 27.5,-38.5 - parent: 2 - - uid: 2281 - components: - - type: Transform - pos: 27.5,-35.5 - parent: 2 - - uid: 2282 - components: - - type: Transform - pos: 27.5,-36.5 - parent: 2 - - uid: 2283 - components: - - type: Transform - pos: 27.5,-37.5 - parent: 2 - - uid: 2310 + - uid: 2298 components: - type: Transform - pos: 27.5,-40.5 + pos: 45.5,-9.5 parent: 2 - uid: 2517 components: @@ -85439,8 +86668,7 @@ entities: - uid: 2727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-11.5 + pos: 45.5,-11.5 parent: 2 - uid: 2892 components: @@ -85695,12 +86923,6 @@ entities: - type: Transform pos: -27.5,-8.5 parent: 2 - - uid: 4557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,0.5 - parent: 2 - uid: 4563 components: - type: Transform @@ -85997,6 +87219,11 @@ entities: rot: 3.141592653589793 rad pos: 60.5,-0.5 parent: 2 + - uid: 7893 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 - uid: 7904 components: - type: Transform @@ -86082,7 +87309,7 @@ entities: - uid: 8092 components: - type: Transform - pos: 44.5,-9.5 + pos: -28.5,1.5 parent: 2 - uid: 8095 components: @@ -86094,15 +87321,28 @@ entities: - type: Transform pos: 34.5,-4.5 parent: 2 + - uid: 8236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-34.5 + parent: 2 - uid: 8249 components: - type: Transform pos: 28.5,-26.5 parent: 2 - - uid: 9081 + - uid: 8786 components: - type: Transform - pos: 44.5,-10.5 + rot: 1.5707963267948966 rad + pos: 24.5,-40.5 + parent: 2 + - uid: 8788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-37.5 parent: 2 - uid: 10528 components: @@ -86110,6 +87350,12 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-42.5 parent: 2 + - uid: 12713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-39.5 + parent: 2 - uid: 12879 components: - type: Transform @@ -86128,6 +87374,12 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-48.5 parent: 2 + - uid: 13854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 2 - uid: 14139 components: - type: Transform @@ -86168,6 +87420,18 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-4.5 parent: 2 + - uid: 14533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 + - uid: 14535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-38.5 + parent: 2 - uid: 14627 components: - type: Transform @@ -86327,7 +87591,7 @@ entities: - uid: 6737 components: - type: Transform - pos: -27.7082,14.599499 + pos: -26.98795,15.337107 parent: 2 - proto: ScrapCamera entities: @@ -86453,10 +87717,15 @@ entities: - type: Transform pos: 35.523155,-18.499912 parent: 2 + - uid: 14515 + components: + - type: Transform + pos: -26.507914,15.899607 + parent: 2 - uid: 15841 components: - type: Transform - pos: 41.432343,-1.0810952 + pos: 41.654457,-0.7625258 parent: 2 - proto: SecurityTechFab entities: @@ -86474,6 +87743,11 @@ entities: parent: 2 - proto: ShardGlass entities: + - uid: 8243 + components: + - type: Transform + pos: -9.270074,58.717693 + parent: 2 - uid: 13739 components: - type: Transform @@ -86563,7 +87837,7 @@ entities: - uid: 6741 components: - type: Transform - pos: -21.485023,14.577084 + pos: -15.388418,25.607353 parent: 2 - proto: SheetPlastic10 entities: @@ -86654,17 +87928,11 @@ entities: parent: 2 - proto: ShuttersNormal entities: - - uid: 226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 2 - - uid: 230 + - uid: 3436 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-4.5 + pos: -1.5,-3.5 parent: 2 - uid: 4706 components: @@ -86676,6 +87944,24 @@ entities: - type: Transform pos: 21.5,16.5 parent: 2 + - uid: 6000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 - uid: 14372 components: - type: Transform @@ -86700,20 +87986,20 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,1.5 parent: 2 - - uid: 16351 +- proto: ShuttersNormalOpen + entities: + - uid: 755 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-5.5 + pos: -28.5,1.5 parent: 2 - - uid: 16352 + - uid: 996 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-6.5 + pos: -28.5,0.5 parent: 2 -- proto: ShuttersNormalOpen - entities: - uid: 2332 components: - type: Transform @@ -86846,12 +88132,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,38.5 parent: 2 - - uid: 13974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,0.5 - parent: 2 - uid: 13977 components: - type: Transform @@ -86990,6 +88270,14 @@ entities: parent: 2 - proto: SignalButtonDirectional entities: + - uid: 841 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 2 - uid: 2643 components: - type: MetaData @@ -87393,18 +88681,6 @@ entities: linkedPorts: 15896: - Pressed: Toggle - - uid: 15901 - components: - - type: MetaData - name: signal button (Janitor) - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-3.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6281: - - Pressed: Toggle - proto: SignalSwitchDirectional entities: - uid: 9640 @@ -88341,10 +89617,10 @@ entities: - type: Transform pos: 22.5,-26.5 parent: 2 - - uid: 12775 + - uid: 15260 components: - type: Transform - pos: 28.5,-41.5 + pos: 28.5,-42.5 parent: 2 - proto: SignGravity entities: @@ -88979,6 +90255,11 @@ entities: parent: 2 - proto: SolarPanel entities: + - uid: 479 + components: + - type: Transform + pos: 10.5,-57.5 + parent: 2 - uid: 1296 components: - type: Transform @@ -89259,6 +90540,56 @@ entities: - type: Transform pos: 11.5,-53.5 parent: 2 + - uid: 15759 + components: + - type: Transform + pos: 12.5,-57.5 + parent: 2 + - uid: 15763 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + pos: 14.5,-57.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: 14.5,-59.5 + parent: 2 + - uid: 15842 + components: + - type: Transform + pos: 12.5,-59.5 + parent: 2 + - uid: 16350 + components: + - type: Transform + pos: 32.5,56.5 + parent: 2 + - uid: 16351 + components: + - type: Transform + pos: 34.5,56.5 + parent: 2 + - uid: 16352 + components: + - type: Transform + pos: 35.5,56.5 + parent: 2 + - uid: 16353 + components: + - type: Transform + pos: 34.5,58.5 + parent: 2 + - uid: 16354 + components: + - type: Transform + pos: 32.5,58.5 + parent: 2 - proto: SolarPanelBroken entities: - uid: 1299 @@ -89396,17 +90727,47 @@ entities: - type: Transform pos: 31.5,52.5 parent: 2 + - uid: 15753 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + pos: 13.5,-59.5 + parent: 2 + - uid: 15900 + components: + - type: Transform + pos: 10.5,-59.5 + parent: 2 + - uid: 16361 + components: + - type: Transform + pos: 33.5,56.5 + parent: 2 + - uid: 16398 + components: + - type: Transform + pos: 33.5,58.5 + parent: 2 + - uid: 16399 + components: + - type: Transform + pos: 35.5,58.5 + parent: 2 - proto: SolarTracker entities: - - uid: 11339 + - uid: 9081 components: - type: Transform - pos: 16.5,-55.5 + pos: 37.5,58.5 parent: 2 - - uid: 14506 + - uid: 15737 components: - type: Transform - pos: 37.5,54.5 + pos: 16.5,-59.5 parent: 2 - proto: SolidSecretDoor entities: @@ -89427,6 +90788,11 @@ entities: - type: Transform pos: 37.323593,25.80974 parent: 2 + - uid: 13724 + components: + - type: Transform + pos: 37.55199,26.713161 + parent: 2 - uid: 13861 components: - type: Transform @@ -89442,13 +90808,6 @@ entities: - type: Transform pos: 1.5077801,39.89814 parent: 2 -- proto: SpaceCash1000 - entities: - - uid: 9390 - components: - - type: Transform - pos: 37.667343,26.62224 - parent: 2 - proto: SpaceHeaterAnchored entities: - uid: 8075 @@ -89523,11 +90882,6 @@ entities: - type: Transform pos: 13.5,-18.5 parent: 2 - - uid: 15236 - components: - - type: Transform - pos: 3.5,10.5 - parent: 2 - uid: 15237 components: - type: Transform @@ -89573,6 +90927,11 @@ entities: - type: Transform pos: 24.5,4.5 parent: 2 + - uid: 16411 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 - proto: SpaceVillainArcadeFilled entities: - uid: 13998 @@ -89677,13 +91036,6 @@ entities: - type: Transform pos: 25.5,25.5 parent: 2 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 2812 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 2 - proto: SpawnMobParrot entities: - uid: 16182 @@ -90726,6 +92078,12 @@ entities: parent: 2 - proto: StoolBar entities: + - uid: 213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 2 - uid: 218 components: - type: Transform @@ -90744,23 +92102,11 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-1.5 parent: 2 - - uid: 269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 2 - - uid: 320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 2 - - uid: 841 + - uid: 734 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-5.5 + pos: -2.5,-5.5 parent: 2 - uid: 1688 components: @@ -90774,6 +92120,12 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,1.5 parent: 2 + - uid: 2367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 2 - uid: 8608 components: - type: Transform @@ -90798,6 +92150,12 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-0.5 parent: 2 + - uid: 15678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 - proto: StorageCanister entities: - uid: 1399 @@ -90943,10 +92301,10 @@ entities: parent: 2 - proto: SuitStorageCaptain entities: - - uid: 4449 + - uid: 1116 components: - type: Transform - pos: -26.5,0.5 + pos: -27.5,0.5 parent: 2 - proto: SuitStorageCE entities: @@ -91533,6 +92891,31 @@ entities: id: C12 - HoP's Bedroom - proto: SurveillanceCameraEngineering entities: + - uid: 8941 + components: + - type: MetaData + name: camera (E14 - Atmos South) + - type: Transform + pos: 29.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E14 - Atmos South + - uid: 8988 + components: + - type: MetaData + name: camera (E12 - Atmos West) + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-32.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E12 - Atmos West - uid: 15096 components: - type: MetaData @@ -91696,18 +93079,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: E10 - TEG - - uid: 15109 - components: - - type: MetaData - name: camera (E12 - Atmos West) - - type: Transform - pos: 27.5,-31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: E12 - Atmos West - uid: 15110 components: - type: MetaData @@ -91720,18 +93091,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: E13 - Atmos East - - uid: 15111 - components: - - type: MetaData - name: camera (E14 - Atmos South) - - type: Transform - pos: 33.5,-41.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: E14 - Atmos South - uid: 15112 components: - type: MetaData @@ -92849,12 +94208,13 @@ entities: - SurveillanceCameraService nameSet: True id: V12 - Spacebucks - - uid: 16334 + - uid: 15246 components: - type: MetaData name: camera (V02 - Bar) - type: Transform - pos: -2.5,-7.5 + rot: -1.5707963267948966 rad + pos: -4.5,-5.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: @@ -92959,20 +94319,6 @@ entities: - SurveillanceCameraEntertainment nameSet: True id: Reporter's Field Camera -- proto: SyndicateBusinessCard - entities: - - uid: 3232 - components: - - type: Transform - pos: 41.29652,26.466743 - parent: 2 - - uid: 16059 - components: - - type: Transform - parent: 16055 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: SyndieFlag entities: - uid: 16077 @@ -93047,11 +94393,11 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-20.5 parent: 2 - - uid: 8528 + - uid: 9401 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,57.5 + rot: 1.5707963267948966 rad + pos: -17.5,18.5 parent: 2 - uid: 9618 components: @@ -93135,6 +94481,12 @@ entities: rot: 3.141592653589793 rad pos: 4.5,23.5 parent: 2 + - uid: 13471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,14.5 + parent: 2 - uid: 13682 components: - type: Transform @@ -93208,6 +94560,22 @@ entities: - type: Transform pos: -64.5,-31.5 parent: 2 + - uid: 16075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,18.5 + parent: 2 + - uid: 16345 + components: + - type: Transform + pos: 33.5,61.5 + parent: 2 + - uid: 16427 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 - proto: TableCarpet entities: - uid: 8613 @@ -93479,12 +94847,6 @@ entities: - type: Transform pos: -31.5,-5.5 parent: 2 - - uid: 5293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,18.5 - parent: 2 - uid: 5303 components: - type: Transform @@ -93551,12 +94913,6 @@ entities: - type: Transform pos: -1.5,22.5 parent: 2 - - uid: 6735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,14.5 - parent: 2 - uid: 6736 components: - type: Transform @@ -93584,11 +94940,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,19.5 parent: 2 - - uid: 9401 - components: - - type: Transform - pos: -18.5,14.5 - parent: 2 - uid: 9504 components: - type: Transform @@ -93624,11 +94975,6 @@ entities: - type: Transform pos: -30.5,-5.5 parent: 2 - - uid: 13471 - components: - - type: Transform - pos: -17.5,18.5 - parent: 2 - uid: 13531 components: - type: Transform @@ -93730,6 +95076,16 @@ entities: parent: 2 - proto: TableCounterWood entities: + - uid: 210 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 - uid: 256 components: - type: Transform @@ -93753,28 +95109,21 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,10.5 parent: 2 - - uid: 802 + - uid: 312 components: - type: Transform - pos: -0.5,-5.5 + pos: -1.5,-3.5 parent: 2 - - uid: 827 + - uid: 341 components: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 856 + - uid: 427 components: - type: Transform - rot: -1.5707963267948966 rad pos: -0.5,-3.5 parent: 2 - - uid: 977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 2 - uid: 982 components: - type: Transform @@ -93883,10 +95232,10 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-35.5 parent: 2 - - uid: 12796 + - uid: 12804 components: - type: Transform - pos: -2.5,-7.5 + pos: -1.5,-5.5 parent: 2 - uid: 13765 components: @@ -93894,11 +95243,10 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,19.5 parent: 2 - - uid: 14933 + - uid: 14574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-6.5 + pos: 0.5,-7.5 parent: 2 - uid: 15421 components: @@ -93911,11 +95259,6 @@ entities: - type: Transform pos: -25.5,-5.5 parent: 2 - - uid: 15978 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 2 - proto: TableFancyBlue entities: - uid: 4662 @@ -94319,12 +95662,6 @@ entities: - type: Transform pos: 28.5,14.5 parent: 2 - - uid: 3990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-19.5 - parent: 2 - uid: 4054 components: - type: Transform @@ -94391,11 +95728,6 @@ entities: - type: Transform pos: -13.5,10.5 parent: 2 - - uid: 5128 - components: - - type: Transform - pos: -27.5,14.5 - parent: 2 - uid: 5129 components: - type: Transform @@ -94658,6 +95990,12 @@ entities: - type: Transform pos: -15.5,2.5 parent: 2 + - uid: 5995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 2 - uid: 6256 components: - type: Transform @@ -94938,9 +96276,16 @@ entities: parent: 2 - uid: 14361 components: + - type: MetaData + desc: A toolbox typically stocked with electrical gear. It is covered in dried blood. + name: bloodied electrical toolbox - type: Transform pos: -37.43985,-19.687504 parent: 2 + - type: Contraband + allowedDepartments: + - Security + severity: Minor - uid: 14380 components: - type: Transform @@ -94951,7 +96296,7 @@ entities: - uid: 8494 components: - type: Transform - pos: 37.66633,-5.694439 + pos: 40.14568,-4.1666737 parent: 2 - proto: ToolboxGoldFilled entities: @@ -95321,15 +96666,15 @@ entities: parent: 2 - proto: VendingMachineBooze entities: - - uid: 213 + - uid: 8593 components: - type: Transform - pos: 3.5,-6.5 + pos: 58.5,1.5 parent: 2 - - uid: 8593 + - uid: 15150 components: - type: Transform - pos: 58.5,1.5 + pos: 2.5,-7.5 parent: 2 - proto: VendingMachineCargoDrobe entities: @@ -95409,6 +96754,11 @@ entities: - type: Transform pos: 14.5,20.5 parent: 2 + - uid: 16424 + components: + - type: Transform + pos: -8.5,34.5 + parent: 2 - proto: VendingMachineCoffee entities: - uid: 5904 @@ -95527,6 +96877,13 @@ entities: - type: Transform pos: -9.5,-46.5 parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 6735 + components: + - type: Transform + pos: -27.5,14.5 + parent: 2 - proto: VendingMachineRobotics entities: - uid: 5124 @@ -95541,6 +96898,13 @@ entities: - type: Transform pos: 21.5,34.5 parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 5128 + components: + - type: Transform + pos: -21.5,14.5 + parent: 2 - proto: VendingMachineSec entities: - uid: 2051 @@ -95658,6 +97022,11 @@ entities: - type: Transform pos: 14.5,19.5 parent: 2 + - uid: 16426 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 - proto: VendingMachineYouTool entities: - uid: 6353 @@ -95721,6 +97090,11 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-8.5 parent: 2 + - uid: 328 + components: + - type: Transform + pos: 27.5,-42.5 + parent: 2 - uid: 1027 components: - type: Transform @@ -95817,11 +97191,6 @@ entities: - type: Transform pos: 22.5,-15.5 parent: 2 - - uid: 1154 - components: - - type: Transform - pos: 40.5,-2.5 - parent: 2 - uid: 1158 components: - type: Transform @@ -95884,12 +97253,6 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-12.5 parent: 2 - - uid: 1257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-12.5 - parent: 2 - uid: 1316 components: - type: Transform @@ -95967,11 +97330,6 @@ entities: - type: Transform pos: 37.5,-32.5 parent: 2 - - uid: 1402 - components: - - type: Transform - pos: 25.5,-40.5 - parent: 2 - uid: 1413 components: - type: Transform @@ -96739,91 +98097,22 @@ entities: - type: Transform pos: 19.5,-30.5 parent: 2 - - uid: 2212 - components: - - type: Transform - pos: 21.5,-35.5 - parent: 2 - uid: 2213 components: - type: Transform pos: 21.5,-36.5 parent: 2 - - uid: 2214 - components: - - type: Transform - pos: 21.5,-37.5 - parent: 2 - - uid: 2225 - components: - - type: Transform - pos: 22.5,-34.5 - parent: 2 - - uid: 2227 - components: - - type: Transform - pos: 24.5,-34.5 - parent: 2 - - uid: 2228 - components: - - type: Transform - pos: 25.5,-34.5 - parent: 2 - - uid: 2231 - components: - - type: Transform - pos: 24.5,-36.5 - parent: 2 - - uid: 2232 - components: - - type: Transform - pos: 25.5,-36.5 - parent: 2 - - uid: 2233 - components: - - type: Transform - pos: 22.5,-38.5 - parent: 2 - uid: 2235 components: - type: Transform - pos: 24.5,-38.5 - parent: 2 - - uid: 2236 - components: - - type: Transform - pos: 25.5,-38.5 - parent: 2 - - uid: 2237 - components: - - type: Transform - pos: 28.5,-41.5 - parent: 2 - - uid: 2242 - components: - - type: Transform - pos: 27.5,-32.5 - parent: 2 - - uid: 2245 - components: - - type: Transform - pos: 27.5,-33.5 + rot: 1.5707963267948966 rad + pos: 25.5,-41.5 parent: 2 - uid: 2246 components: - type: Transform pos: 38.5,-32.5 parent: 2 - - uid: 2250 - components: - - type: Transform - pos: 27.5,-41.5 - parent: 2 - - uid: 2254 - components: - - type: Transform - pos: 26.5,-32.5 - parent: 2 - uid: 2255 components: - type: Transform @@ -96909,16 +98198,6 @@ entities: - type: Transform pos: 34.5,-42.5 parent: 2 - - uid: 2295 - components: - - type: Transform - pos: 21.5,-39.5 - parent: 2 - - uid: 2298 - components: - - type: Transform - pos: 22.5,-40.5 - parent: 2 - uid: 2299 components: - type: Transform @@ -96959,6 +98238,12 @@ entities: - type: Transform pos: 29.5,-43.5 parent: 2 + - uid: 2382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-34.5 + parent: 2 - uid: 2518 components: - type: Transform @@ -98024,11 +99309,6 @@ entities: - type: Transform pos: -29.5,-4.5 parent: 2 - - uid: 4558 - components: - - type: Transform - pos: -27.5,1.5 - parent: 2 - uid: 4560 components: - type: Transform @@ -98894,6 +100174,12 @@ entities: - type: Transform pos: 40.5,-7.5 parent: 2 + - uid: 5997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-42.5 + parent: 2 - uid: 6128 components: - type: Transform @@ -99880,6 +101166,26 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,47.5 parent: 2 + - uid: 8927 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 2 + - uid: 8929 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 2 + - uid: 8930 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - uid: 8932 + components: + - type: Transform + pos: 18.5,-40.5 + parent: 2 - uid: 9041 components: - type: Transform @@ -99958,6 +101264,12 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-44.5 parent: 2 + - uid: 14227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-38.5 + parent: 2 - uid: 14232 components: - type: Transform @@ -99982,6 +101294,36 @@ entities: rot: 3.141592653589793 rad pos: -22.5,55.5 parent: 2 + - uid: 14520 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 + - uid: 14537 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 2 + - uid: 14538 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 2 + - uid: 14539 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 2 + - uid: 14541 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 2 + - uid: 14543 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 - uid: 14890 components: - type: Transform @@ -100237,11 +101579,6 @@ entities: - type: Transform pos: 34.5,-13.5 parent: 2 - - uid: 88 - components: - - type: Transform - pos: 42.5,-2.5 - parent: 2 - uid: 89 components: - type: Transform @@ -100337,11 +101674,6 @@ entities: - type: Transform pos: 40.5,-25.5 parent: 2 - - uid: 140 - components: - - type: Transform - pos: 24.5,-40.5 - parent: 2 - uid: 147 components: - type: Transform @@ -100442,6 +101774,11 @@ entities: - type: Transform pos: 44.5,-29.5 parent: 2 + - uid: 482 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 2 - uid: 555 components: - type: Transform @@ -100478,6 +101815,11 @@ entities: - type: Transform pos: 43.5,-14.5 parent: 2 + - uid: 754 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 - uid: 921 components: - type: Transform @@ -101039,36 +102381,11 @@ entities: - type: Transform pos: 21.5,-38.5 parent: 2 - - uid: 1762 - components: - - type: Transform - pos: 23.5,-34.5 - parent: 2 - - uid: 1763 - components: - - type: Transform - pos: 22.5,-36.5 - parent: 2 - - uid: 1766 - components: - - type: Transform - pos: 23.5,-36.5 - parent: 2 - - uid: 1795 - components: - - type: Transform - pos: 23.5,-38.5 - parent: 2 - uid: 1796 components: - type: Transform pos: 23.5,-32.5 parent: 2 - - uid: 1799 - components: - - type: Transform - pos: 25.5,-32.5 - parent: 2 - uid: 1800 components: - type: Transform @@ -101129,11 +102446,6 @@ entities: - type: Transform pos: 41.5,-40.5 parent: 2 - - uid: 1835 - components: - - type: Transform - pos: 23.5,-40.5 - parent: 2 - uid: 1843 components: - type: Transform @@ -101224,11 +102536,6 @@ entities: - type: Transform pos: 37.5,-13.5 parent: 2 - - uid: 1914 - components: - - type: Transform - pos: 44.5,-8.5 - parent: 2 - uid: 1916 components: - type: Transform @@ -101474,11 +102781,22 @@ entities: - type: Transform pos: -28.5,-46.5 parent: 2 + - uid: 2233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 2 - uid: 2234 components: - type: Transform pos: -27.5,-47.5 parent: 2 + - uid: 2237 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 - uid: 2244 components: - type: Transform @@ -101524,6 +102842,12 @@ entities: - type: Transform pos: -61.5,-33.5 parent: 2 + - uid: 2295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-41.5 + parent: 2 - uid: 2297 components: - type: Transform @@ -103394,16 +104718,6 @@ entities: - type: Transform pos: 34.5,-6.5 parent: 2 - - uid: 5198 - components: - - type: Transform - pos: 41.5,-2.5 - parent: 2 - - uid: 5209 - components: - - type: Transform - pos: 43.5,-2.5 - parent: 2 - uid: 5215 components: - type: Transform @@ -103522,6 +104836,16 @@ entities: rot: 3.141592653589793 rad pos: -21.5,44.5 parent: 2 + - uid: 8926 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 2 + - uid: 8931 + components: + - type: Transform + pos: 18.5,-39.5 + parent: 2 - uid: 9032 components: - type: Transform @@ -103582,6 +104906,11 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-0.5 parent: 2 + - uid: 13741 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 2 - uid: 13764 components: - type: Transform @@ -103603,6 +104932,12 @@ entities: - type: Transform pos: 48.5,-2.5 parent: 2 + - uid: 14219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-40.5 + parent: 2 - uid: 14231 components: - type: Transform @@ -103662,6 +104997,42 @@ entities: - type: Transform pos: -7.5,-42.5 parent: 2 + - uid: 14519 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 14522 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 14531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-36.5 + parent: 2 + - uid: 14536 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 2 + - uid: 14540 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 + - uid: 14542 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 14544 + components: + - type: Transform + pos: 20.5,-40.5 + parent: 2 - uid: 14830 components: - type: Transform @@ -103672,6 +105043,11 @@ entities: - type: Transform pos: -16.5,18.5 parent: 2 + - uid: 15251 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 - uid: 15340 components: - type: Transform @@ -104178,12 +105554,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-8.5 parent: 2 - - uid: 161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 2 - uid: 162 components: - type: Transform @@ -104261,11 +105631,6 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,10.5 parent: 2 - - uid: 210 - components: - - type: Transform - pos: -3.5,-8.5 - parent: 2 - uid: 251 components: - type: Transform @@ -104309,11 +105674,6 @@ entities: - type: Transform pos: -6.5,-8.5 parent: 2 - - uid: 700 - components: - - type: Transform - pos: -6.5,-9.5 - parent: 2 - uid: 701 components: - type: Transform @@ -104345,11 +105705,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-6.5 parent: 2 - - uid: 852 - components: - - type: Transform - pos: -3.5,-6.5 - parent: 2 - uid: 903 components: - type: Transform @@ -106189,6 +107544,11 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-34.5 parent: 2 + - uid: 12719 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 - uid: 13481 components: - type: Transform @@ -106225,11 +107585,6 @@ entities: - type: Transform pos: -23.5,-13.5 parent: 2 - - uid: 15150 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 2 - uid: 15926 components: - type: Transform @@ -106294,11 +107649,6 @@ entities: - type: Transform pos: -16.5,3.5 parent: 2 - - uid: 3991 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 2 - uid: 4502 components: - type: Transform @@ -106480,11 +107830,6 @@ entities: - type: Transform pos: -6.5,6.5 parent: 2 - - uid: 5428 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 2 - uid: 5429 components: - type: Transform @@ -106565,11 +107910,6 @@ entities: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 6079 - components: - - type: Transform - pos: -5.5,-7.5 - parent: 2 - uid: 6080 components: - type: Transform @@ -108091,17 +109431,10 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-32.5 parent: 2 - - uid: 14935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-7.5 - parent: 2 - - uid: 15900 + - uid: 15677 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-5.5 + pos: -4.5,-8.5 parent: 2 - uid: 16217 components: @@ -108159,6 +109492,18 @@ entities: showEnts: False occludes: True ent: null +- proto: WardrobeMixedFilled + entities: + - uid: 4693 + components: + - type: Transform + pos: -30.5,-41.5 + parent: 2 + - uid: 16425 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 - proto: WardrobePrisonFilled entities: - uid: 2144 @@ -108190,24 +109535,27 @@ entities: parent: 2 - proto: WarningCO2 entities: - - uid: 2324 + - uid: 2380 components: - type: Transform - pos: 25.5,-38.5 + rot: 1.5707963267948966 rad + pos: 22.5,-38.5 parent: 2 - proto: WarningN2 entities: - - uid: 2323 + - uid: 2254 components: - type: Transform - pos: 25.5,-34.5 + rot: 1.5707963267948966 rad + pos: 22.5,-34.5 parent: 2 - proto: WarningO2 entities: - - uid: 2316 + - uid: 2454 components: - type: Transform - pos: 25.5,-36.5 + rot: 1.5707963267948966 rad + pos: 22.5,-36.5 parent: 2 - proto: WarningPlasma entities: @@ -108540,12 +109888,6 @@ entities: parent: 2 - proto: Windoor entities: - - uid: 314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 2 - uid: 4263 components: - type: Transform @@ -109033,6 +110375,16 @@ entities: - type: Transform pos: 9.5,28.5 parent: 2 + - uid: 15433 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 15680 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 - uid: 15795 components: - type: Transform @@ -109105,11 +110457,16 @@ entities: parent: 2 - proto: WindowFrostedDirectional entities: - - uid: 30 + - uid: 161 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 208 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-3.5 + pos: -2.5,-3.5 parent: 2 - uid: 2172 components: @@ -109147,18 +110504,24 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,11.5 parent: 2 - - uid: 5341 + - uid: 5428 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-3.5 + pos: 0.5,-3.5 parent: 2 - - uid: 6014 + - uid: 5989 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 2 + - uid: 5990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 2 - uid: 15929 components: - type: Transform From cc6b03ad22c3df56e41051e0d8dfe863fb2ffda4 Mon Sep 17 00:00:00 2001 From: Roudenn Date: Sat, 25 Jan 2025 12:42:39 +0300 Subject: [PATCH 103/103] Update HolopadSystem.cs --- Content.Server/Holopad/HolopadSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Holopad/HolopadSystem.cs b/Content.Server/Holopad/HolopadSystem.cs index 8bdc81b0920..2c8fd158f1c 100644 --- a/Content.Server/Holopad/HolopadSystem.cs +++ b/Content.Server/Holopad/HolopadSystem.cs @@ -546,7 +546,7 @@ private void LinkHolopadToUser(Entity entity, EntityUid? user) entity.Comp.User = (user.Value, holopadUser); } - // Add the new user to PVS and sync their appearance with any + // Add the new user to PVS and sync their appearance with any // holopads connected to the one they are using _pvs.AddGlobalOverride(user.Value); SyncHolopadHologramAppearanceWithTarget(entity, entity.Comp.User); @@ -577,7 +577,7 @@ private void SyncHolopadHologramAppearanceWithTarget(Entity en continue; if (user == null) - _appearanceSystem.SetData(linkedHolopad.Comp.Hologram.Value.Owner, TypingIndicatorVisuals.IsTyping, false); + _appearanceSystem.SetData(linkedHolopad.Comp.Hologram.Value.Owner, TypingIndicatorVisuals.State, false); linkedHolopad.Comp.Hologram.Value.Comp.LinkedEntity = user; Dirty(linkedHolopad.Comp.Hologram.Value);